diff --git a/third_party/nixpkgs/doc/languages-frameworks/agda.section.md b/third_party/nixpkgs/doc/languages-frameworks/agda.section.md
index 2b7c35f68d..775a7a1a64 100644
--- a/third_party/nixpkgs/doc/languages-frameworks/agda.section.md
+++ b/third_party/nixpkgs/doc/languages-frameworks/agda.section.md
@@ -158,7 +158,23 @@ This can be overridden.
By default, Agda sources are files ending on `.agda`, or literate Agda files ending on `.lagda`, `.lagda.tex`, `.lagda.org`, `.lagda.md`, `.lagda.rst`. The list of recognised Agda source extensions can be extended by setting the `extraExtensions` config variable.
-## Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs}
+## Maintaining the Agda package set on Nixpkgs {#maintaining-the-agda-package-set-on-nixpkgs}
+
+We are aiming at providing all common Agda libraries as packages on `nixpkgs`,
+and keeping them up to date.
+Contributions and maintenance help is always appreciated,
+but the maintenance effort is typically low since the Agda ecosystem is quite small.
+
+The `nixpkgs` Agda package set tries to take up a role similar to that of [Stackage](https://www.stackage.org/) in the Haskell world.
+It is a curated set of libraries that:
+
+1. Always work together.
+2. Are as up-to-date as possible.
+
+While the Haskell ecosystem is huge, and Stackage is highly automatised,
+the Agda package set is small and can (still) be maintained by hand.
+
+### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs}
To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the top line of the `default.nix` can look like:
@@ -192,3 +208,49 @@ mkDerivation {
This library has a file called `.agda-lib`, and so we give an empty string to `libraryFile` as nothing precedes `.agda-lib` in the filename. This file contains `name: IAL-1.3`, and so we let `libraryName = "IAL-1.3"`. This library does not use an `Everything.agda` file and instead has a Makefile, so there is no need to set `everythingFile` and we set a custom `buildPhase`.
When writing an Agda package it is essential to make sure that no `.agda-lib` file gets added to the store as a single file (for example by using `writeText`). This causes Agda to think that the nix store is a Agda library and it will attempt to write to it whenever it typechecks something. See [https://github.com/agda/agda/issues/4613](https://github.com/agda/agda/issues/4613).
+
+In the pull request adding this library,
+you can test whether it builds correctly by writing in a comment:
+
+```
+@ofborg build agdaPackages.iowa-stdlib
+```
+
+### Maintaining Agda packages
+
+As mentioned before, the aim is to have a compatible, and up-to-date package set.
+These two conditions sometimes exclude each other:
+For example, if we update `agdaPackages.standard-library` because there was an upstream release,
+this will typically break many reverse dependencies,
+i.e. downstream Agda libraries that depend on the standard library.
+In `nixpkgs` we are typically among the first to notice this,
+since we have build tests in place to check this.
+
+In a pull request updating e.g. the standard library, you should write the following comment:
+
+```
+@ofborg build agdaPackages.standard-library.passthru.tests
+```
+
+This will build all reverse dependencies of the standard library,
+for example `agdaPackages.agda-categories`, or `agdaPackages.generic`.
+
+In some cases it is useful to build _all_ Agda packages.
+This can be done with the following Github comment:
+
+```
+@ofborg build agda.passthru.tests.allPackages
+```
+
+Sometimes, the builds of the reverse dependencies fail because they have not yet been updated and released.
+You should drop the maintainers a quick issue notifying them of the breakage,
+citing the build error (which you can get from the ofborg logs).
+If you are motivated, you might even send a pull request that fixes it.
+Usually, the maintainers will answer within a week or two with a new release.
+Bumping the version of that reverse dependency should be a further commit on your PR.
+
+In the rare case that a new release is not to be expected within an acceptable time,
+simply mark the broken package as broken by setting `meta.broken = true;`.
+This will exclude it from the build test.
+It can be added later when it is fixed,
+and does not hinder the advancement of the whole package set in the meantime.
diff --git a/third_party/nixpkgs/doc/languages-frameworks/dotnet.section.md b/third_party/nixpkgs/doc/languages-frameworks/dotnet.section.md
index 738d7bad27..9bf96f3198 100644
--- a/third_party/nixpkgs/doc/languages-frameworks/dotnet.section.md
+++ b/third_party/nixpkgs/doc/languages-frameworks/dotnet.section.md
@@ -28,8 +28,7 @@ mkShell {
packages = [
(with dotnetCorePackages; combinePackages [
sdk_3_1
- sdk_3_0
- sdk_2_1
+ sdk_5_0
])
];
}
@@ -64,9 +63,9 @@ $ dotnet --info
The `dotnetCorePackages.sdk_X_Y` is preferred over the old dotnet-sdk as both major and minor version are very important for a dotnet environment. If a given minor version isn't present (or was changed), then this will likely break your ability to build a project.
-## dotnetCorePackages.sdk vs dotnetCorePackages.net vs dotnetCorePackages.netcore vs dotnetCorePackages.aspnetcore {#dotnetcorepackages.sdk-vs-dotnetcorepackages.net-vs-dotnetcorepackages.netcore-vs-dotnetcorepackages.aspnetcore}
+## dotnetCorePackages.sdk vs dotnetCorePackages.runtime vs dotnetCorePackages.aspnetcore {#dotnetcorepackages.sdk-vs-dotnetcorepackages.runtime-vs-dotnetcorepackages.aspnetcore}
-The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given version. The `net`, `netcore` and `aspnetcore` packages are meant to serve as minimal runtimes to deploy alongside already built applications. For runtime versions >= .NET 5 `net` is used while `netcore` is used for older .NET Core runtime version.
+The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given version. The `runtime` and `aspnetcore` packages are meant to serve as minimal runtimes to deploy alongside already built applications.
## Packaging a Dotnet Application {#packaging-a-dotnet-application}
diff --git a/third_party/nixpkgs/doc/languages-frameworks/rust.section.md b/third_party/nixpkgs/doc/languages-frameworks/rust.section.md
index b2f045b11b..26eb9e26bd 100644
--- a/third_party/nixpkgs/doc/languages-frameworks/rust.section.md
+++ b/third_party/nixpkgs/doc/languages-frameworks/rust.section.md
@@ -237,22 +237,6 @@ where they are known to differ. But there are ways to customize the argument:
--target /nix/store/asdfasdfsadf-thumb-crazy.json # contains {"foo":"","bar":""}
```
-Finally, as an ad-hoc escape hatch, a computed target (string or JSON file
-path) can be passed directly to `buildRustPackage`:
-
-```nix
-pkgs.rustPlatform.buildRustPackage {
- /* ... */
- target = "x86_64-fortanix-unknown-sgx";
-}
-```
-
-This is useful to avoid rebuilding Rust tools, since they are actually target
-agnostic and don't need to be rebuilt. But in the future, we should always
-build the Rust tools and standard library crates separately so there is no
-reason not to take the `stdenv.hostPlatform.rustc`-modifying approach, and the
-ad-hoc escape hatch to `buildRustPackage` can be removed.
-
Note that currently custom targets aren't compiled with `std`, so `cargo test`
will fail. This can be ignored by adding `doCheck = false;` to your derivation.
diff --git a/third_party/nixpkgs/lib/licenses.nix b/third_party/nixpkgs/lib/licenses.nix
index bde2aaca2e..d305001a5c 100644
--- a/third_party/nixpkgs/lib/licenses.nix
+++ b/third_party/nixpkgs/lib/licenses.nix
@@ -153,6 +153,11 @@ in mkLicense lset) ({
free = false;
};
+ capec = {
+ fullName = "Common Attack Pattern Enumeration and Classification";
+ url = "https://capec.mitre.org/about/termsofuse.html";
+ };
+
clArtistic = {
spdxId = "ClArtistic";
fullName = "Clarified Artistic License";
diff --git a/third_party/nixpkgs/maintainers/maintainer-list.nix b/third_party/nixpkgs/maintainers/maintainer-list.nix
index 0f7e448b54..22116f0b23 100644
--- a/third_party/nixpkgs/maintainers/maintainer-list.nix
+++ b/third_party/nixpkgs/maintainers/maintainer-list.nix
@@ -1197,6 +1197,12 @@
email = "sivaraman.balaji@gmail.com";
name = "Balaji Sivaraman";
};
+ balodja = {
+ email = "balodja@gmail.com";
+ github = "balodja";
+ githubId = 294444;
+ name = "Vladimir Korolev";
+ };
baloo = {
email = "nixpkgs@superbaloo.net";
github = "baloo";
@@ -2437,6 +2443,12 @@
githubId = 4331004;
name = "Naoya Hatta";
};
+ dalpd = {
+ email = "denizalpd@ogr.iu.edu.tr";
+ github = "dalpd";
+ githubId = 16895361;
+ name = "Deniz Alp Durmaz";
+ };
DamienCassou = {
email = "damien@cassou.me";
github = "DamienCassou";
@@ -4082,6 +4094,12 @@
githubId = 16470252;
name = "Gemini Lasswell";
};
+ gbtb = {
+ email = "goodbetterthebeast3@gmail.com";
+ github = "gbtb";
+ githubId = 37017396;
+ name = "gbtb";
+ };
gebner = {
email = "gebner@gebner.org";
github = "gebner";
@@ -4409,6 +4427,16 @@
githubId = 54728477;
name = "Happy River";
};
+ hardselius = {
+ email = "martin@hardselius.dev";
+ github = "hardselius";
+ githubId = 1422583;
+ name = "Martin Hardselius";
+ keys = [{
+ longkeyid = "rsa4096/0x03A6E6F786936619";
+ fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619";
+ }];
+ };
haslersn = {
email = "haslersn@fius.informatik.uni-stuttgart.de";
github = "haslersn";
@@ -6973,6 +7001,12 @@
githubId = 458783;
name = "Martin Gammelsæter";
};
+ martfont = {
+ name = "Martino Fontana";
+ email = "tinozzo123@tutanota.com";
+ github = "SuperSamus";
+ githubId = 40663462;
+ };
marzipankaiser = {
email = "nixos@gaisseml.de";
github = "marzipankaiser";
@@ -10507,6 +10541,13 @@
githubId = 4477729;
name = "Sergey Mironov";
};
+ smitop = {
+ name = "Smitty van Bodegom";
+ email = "me@smitop.com";
+ matrix = "@smitop:kde.org";
+ github = "Smittyvb";
+ githubId = 10530973;
+ };
sna = {
email = "abouzahra.9@wright.edu";
github = "s-na";
@@ -12359,6 +12400,12 @@
githubId = 452;
name = "Yurii Rashkovskii";
};
+ yrd = {
+ name = "Yannik Rödel";
+ email = "nix@yannik.info";
+ github = "yrd";
+ githubId = 1820447;
+ };
ysndr = {
email = "me@ysndr.de";
github = "ysndr";
diff --git a/third_party/nixpkgs/maintainers/scripts/update-luarocks-packages b/third_party/nixpkgs/maintainers/scripts/update-luarocks-packages
index a465031b91..c559d5699d 100755
--- a/third_party/nixpkgs/maintainers/scripts/update-luarocks-packages
+++ b/third_party/nixpkgs/maintainers/scripts/update-luarocks-packages
@@ -33,8 +33,7 @@ TMP_FILE="$(mktemp)"
GENERATED_NIXFILE="pkgs/development/lua-modules/generated-packages.nix"
LUAROCKS_CONFIG="$NIXPKGS_PATH/maintainers/scripts/luarocks-config.lua"
-HEADER = """
-/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT!
+HEADER = """/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT!
Regenerate it with:
nixpkgs$ ./maintainers/scripts/update-luarocks-packages
@@ -99,9 +98,8 @@ class LuaEditor(Editor):
header2 = textwrap.dedent(
# header2 = inspect.cleandoc(
"""
- { self, stdenv, lib, fetchurl, fetchgit, ... } @ args:
- self: super:
- with self;
+ { self, stdenv, lib, fetchurl, fetchgit, callPackage, ... } @ args:
+ final: prev:
{
""")
f.write(header2)
@@ -199,6 +197,7 @@ def generate_pkg_nix(plug: LuaPlugin):
log.debug("running %s", ' '.join(cmd))
output = subprocess.check_output(cmd, text=True)
+ output = "callPackage(" + output.strip() + ") {};\n\n"
return (plug, output)
def main():
diff --git a/third_party/nixpkgs/maintainers/team-list.nix b/third_party/nixpkgs/maintainers/team-list.nix
index 75a7940aa8..4a1ca99a59 100644
--- a/third_party/nixpkgs/maintainers/team-list.nix
+++ b/third_party/nixpkgs/maintainers/team-list.nix
@@ -164,6 +164,16 @@ with lib.maintainers; {
scope = "Maintain Kodi and related packages.";
};
+ linux-kernel = {
+ members = [
+ TredwellGit
+ ma27
+ nequissimus
+ qyliss
+ ];
+ scope = "Maintain the Linux kernel.";
+ };
+
mate = {
members = [
j03
diff --git a/third_party/nixpkgs/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml b/third_party/nixpkgs/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
index 023f0f57a9..1e80f635f0 100644
--- a/third_party/nixpkgs/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
+++ b/third_party/nixpkgs/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
@@ -83,7 +83,8 @@
which introduced some breaking changes to the experimental OCI
manifest format. See
HIP
- 6 for more details.
+ 6 for more details. helmfile also
+ defaults to 0.141.0, which is the minimum compatible version.
@@ -1554,6 +1555,47 @@ Superuser created successfully.
encapsulation.
+
+
+ Changing systemd .socket units now restarts
+ them and stops the service that is activated by them.
+ Additionally, services with
+ stopOnChange = false don’t break anymore
+ when they are socket-activated.
+
+
+
+
+ The virtualisation.libvirtd module has been
+ refactored and updated with new options:
+
+
+
+
+ virtualisation.libvirtd.qemu* options
+ (e.g.:
+ virtualisation.libvirtd.qemuRunAsRoot)
+ were moved to
+ virtualisation.libvirtd.qemu
+ submodule,
+
+
+
+
+ software TPM1/TPM2 support (e.g.: Windows 11 guests)
+ (virtualisation.libvirtd.qemu.swtpm),
+
+
+
+
+ custom OVMF package (e.g.:
+ pkgs.OVMFFull with HTTP, CSM and Secure
+ Boot support)
+ (virtualisation.libvirtd.qemu.ovmf.package).
+
+
+
+
diff --git a/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2111.section.md b/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2111.section.md
index 658f3b59da..a598257f36 100644
--- a/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -29,6 +29,7 @@ In addition to numerous new and upgraded packages, this release has the followin
- Pantheon desktop has been updated to version 6. Due to changes of screen locker, if locking doesn't work for you, please try `gsettings set org.gnome.desktop.lockdown disable-lock-screen false`.
- `kubernetes-helm` now defaults to 3.7.0, which introduced some breaking changes to the experimental OCI manifest format. See [HIP 6](https://github.com/helm/community/blob/main/hips/hip-0006.md) for more details.
+ `helmfile` also defaults to 0.141.0, which is the minimum compatible version.
- GNOME has been upgraded to 41. Please take a look at their [Release Notes](https://help.gnome.org/misc/release-notes/41.0/) for details.
@@ -449,3 +450,10 @@ In addition to numerous new and upgraded packages, this release has the followin
- The `networking` module has a new `networking.fooOverUDP` option to configure Foo-over-UDP encapsulations.
- `networking.sits` now supports Foo-over-UDP encapsulation.
+
+- Changing systemd `.socket` units now restarts them and stops the service that is activated by them. Additionally, services with `stopOnChange = false` don't break anymore when they are socket-activated.
+
+- The `virtualisation.libvirtd` module has been refactored and updated with new options:
+ - `virtualisation.libvirtd.qemu*` options (e.g.: `virtualisation.libvirtd.qemuRunAsRoot`) were moved to [`virtualisation.libvirtd.qemu`](options.html#opt-virtualisation.libvirtd.qemu) submodule,
+ - software TPM1/TPM2 support (e.g.: Windows 11 guests) ([`virtualisation.libvirtd.qemu.swtpm`](options.html#opt-virtualisation.libvirtd.qemu.swtpm)),
+ - custom OVMF package (e.g.: `pkgs.OVMFFull` with HTTP, CSM and Secure Boot support) ([`virtualisation.libvirtd.qemu.ovmf.package`](options.html#opt-virtualisation.libvirtd.qemu.ovmf.package)).
diff --git a/third_party/nixpkgs/nixos/lib/build-vms.nix b/third_party/nixpkgs/nixos/lib/build-vms.nix
index 0f0bdb4a86..05d9ce89db 100644
--- a/third_party/nixpkgs/nixos/lib/build-vms.nix
+++ b/third_party/nixpkgs/nixos/lib/build-vms.nix
@@ -68,9 +68,8 @@ rec {
prefixLength = 24;
} ];
});
- in
- { key = "ip-address";
- config =
+
+ networkConfig =
{ networking.hostName = mkDefault m.fst;
networking.interfaces = listToAttrs interfaces;
@@ -96,7 +95,15 @@ rec {
in flip concatMap interfacesNumbered
({ fst, snd }: qemu-common.qemuNICFlags snd fst m.snd);
};
- }
+
+ in
+ { key = "ip-address";
+ config = networkConfig // {
+ # Expose the networkConfig items for tests like nixops
+ # that need to recreate the network config.
+ system.build.networkConfig = networkConfig;
+ };
+ }
)
(getAttr m.fst nodes)
] );
diff --git a/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix b/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
index 14015ab64a..e058e70f38 100644
--- a/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
+++ b/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
@@ -83,10 +83,13 @@ let
optionsListVisible = lib.filter (opt: opt.visible && !opt.internal) (lib.optionAttrSetToDocList options);
# Customly sort option list for the man page.
+ # Always ensure that the sort order matches sortXML.py!
optionsList = lib.sort optionLess optionsListDesc;
# Convert the list of options into an XML file.
- optionsXML = builtins.toFile "options.xml" (builtins.toXML optionsList);
+ # This file is *not* sorted sorted to save on eval time, since the docbook XML
+ # and the manpage depend on it and thus we evaluate this on every system rebuild.
+ optionsXML = builtins.toFile "options.xml" (builtins.toXML optionsListDesc);
optionsNix = builtins.listToAttrs (map (o: { name = o.name; value = removeAttrs o ["name" "visible" "internal"]; }) optionsList);
@@ -185,9 +188,10 @@ in {
exit 1
fi
+ ${pkgs.python3Minimal}/bin/python ${./sortXML.py} $optionsXML sorted.xml
${pkgs.libxslt.bin}/bin/xsltproc \
--stringparam revision '${revision}' \
- -o intermediate.xml ${./options-to-docbook.xsl} $optionsXML
+ -o intermediate.xml ${./options-to-docbook.xsl} sorted.xml
${pkgs.libxslt.bin}/bin/xsltproc \
-o "$out" ${./postprocess-option-descriptions.xsl} intermediate.xml
'';
diff --git a/third_party/nixpkgs/nixos/lib/make-options-doc/sortXML.py b/third_party/nixpkgs/nixos/lib/make-options-doc/sortXML.py
new file mode 100644
index 0000000000..717820788c
--- /dev/null
+++ b/third_party/nixpkgs/nixos/lib/make-options-doc/sortXML.py
@@ -0,0 +1,28 @@
+import xml.etree.ElementTree as ET
+import sys
+
+tree = ET.parse(sys.argv[1])
+# the xml tree is of the form
+# {all options, each an attrs}
+options = list(tree.getroot().find('list'))
+
+def sortKey(opt):
+ def order(s):
+ if s.startswith("enable"):
+ return 0
+ if s.startswith("package"):
+ return 1
+ return 2
+
+ return [
+ (order(p.attrib['value']), p.attrib['value'])
+ for p in opt.findall('attr[@name="loc"]/list/string')
+ ]
+
+# always ensure that the sort order matches the order used in the nix expression!
+options.sort(key=sortKey)
+
+doc = ET.Element("expr")
+newOptions = ET.SubElement(doc, "list")
+newOptions.extend(options)
+ET.ElementTree(doc).write(sys.argv[2], encoding='utf-8')
diff --git a/third_party/nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix b/third_party/nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix
index ad62dcd14a..310eba3621 100644
--- a/third_party/nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix
+++ b/third_party/nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix
@@ -1,6 +1,6 @@
let
pkgs = (import ../../../../../../default.nix {});
- machine = import "${pkgs.path}/nixos/lib/eval-config.nix" {
+ machine = import (pkgs.path + "/nixos/lib/eval-config.nix") {
system = "x86_64-linux";
modules = [
({config, ...}: { imports = [ ./system.nix ]; })
diff --git a/third_party/nixpkgs/nixos/modules/installer/tools/nixos-enter.sh b/third_party/nixpkgs/nixos/modules/installer/tools/nixos-enter.sh
index 450d776181..e57296b38e 100644
--- a/third_party/nixpkgs/nixos/modules/installer/tools/nixos-enter.sh
+++ b/third_party/nixpkgs/nixos/modules/installer/tools/nixos-enter.sh
@@ -68,7 +68,7 @@ mount --rbind /sys "$mountPoint/sys"
fi
# Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
- LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" chroot "$mountPoint" "$system/activate" 1>&2 || true
+ LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" IN_NIXOS_ENTER=1 chroot "$mountPoint" "$system/activate" 1>&2 || true
# Create /tmp
chroot "$mountPoint" systemd-tmpfiles --create --remove --exclude-prefix=/dev 1>&2 || true
diff --git a/third_party/nixpkgs/nixos/modules/programs/evince.nix b/third_party/nixpkgs/nixos/modules/programs/evince.nix
index 473fddb09d..c033230afb 100644
--- a/third_party/nixpkgs/nixos/modules/programs/evince.nix
+++ b/third_party/nixpkgs/nixos/modules/programs/evince.nix
@@ -4,7 +4,9 @@
with lib;
-{
+let cfg = config.programs.evince;
+
+in {
# Added 2019-08-09
imports = [
@@ -22,6 +24,13 @@ with lib;
enable = mkEnableOption
"Evince, the GNOME document viewer";
+ package = mkOption {
+ type = types.package;
+ default = pkgs.evince;
+ defaultText = literalExpression "pkgs.evince";
+ description = "Evince derivation to use.";
+ };
+
};
};
@@ -31,11 +40,11 @@ with lib;
config = mkIf config.programs.evince.enable {
- environment.systemPackages = [ pkgs.evince ];
+ environment.systemPackages = [ cfg.package ];
- services.dbus.packages = [ pkgs.evince ];
+ services.dbus.packages = [ cfg.package ];
- systemd.packages = [ pkgs.evince ];
+ systemd.packages = [ cfg.package ];
};
diff --git a/third_party/nixpkgs/nixos/modules/programs/git.nix b/third_party/nixpkgs/nixos/modules/programs/git.nix
index 6c60daf21f..06ce374b19 100644
--- a/third_party/nixpkgs/nixos/modules/programs/git.nix
+++ b/third_party/nixpkgs/nixos/modules/programs/git.nix
@@ -20,7 +20,7 @@ in
};
config = mkOption {
- type = types.attrs;
+ type = with types; attrsOf (attrsOf anything);
default = { };
example = {
init.defaultBranch = "main";
diff --git a/third_party/nixpkgs/nixos/modules/services/mail/roundcube.nix b/third_party/nixpkgs/nixos/modules/services/mail/roundcube.nix
index bf5abc7ba5..ac192c56aa 100644
--- a/third_party/nixpkgs/nixos/modules/services/mail/roundcube.nix
+++ b/third_party/nixpkgs/nixos/modules/services/mail/roundcube.nix
@@ -7,7 +7,7 @@ let
fpm = config.services.phpfpm.pools.roundcube;
localDB = cfg.database.host == "localhost";
user = cfg.database.username;
- phpWithPspell = pkgs.php74.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
+ phpWithPspell = pkgs.php80.withExtensions ({ enabled, all }: [ all.pspell ] ++ enabled);
in
{
options.services.roundcube = {
diff --git a/third_party/nixpkgs/nixos/modules/services/misc/subsonic.nix b/third_party/nixpkgs/nixos/modules/services/misc/subsonic.nix
index 340683ae6f..98b85918ad 100644
--- a/third_party/nixpkgs/nixos/modules/services/misc/subsonic.nix
+++ b/third_party/nixpkgs/nixos/modules/services/misc/subsonic.nix
@@ -109,7 +109,7 @@ let cfg = config.services.subsonic; in {
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
script = ''
- ${pkgs.jre}/bin/java -Xmx${toString cfg.maxMemory}m \
+ ${pkgs.jre8}/bin/java -Xmx${toString cfg.maxMemory}m \
-Dsubsonic.home=${cfg.home} \
-Dsubsonic.host=${cfg.listenAddress} \
-Dsubsonic.port=${toString cfg.port} \
diff --git a/third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/node.nix b/third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/node.nix
index baac21b050..5e5fc7cd55 100644
--- a/third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/node.nix
+++ b/third_party/nixpkgs/nixos/modules/services/monitoring/prometheus/exporters/node.nix
@@ -35,10 +35,15 @@ in
${concatMapStringsSep " " (x: "--no-collector." + x) cfg.disabledCollectors} \
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} ${concatStringsSep " " cfg.extraFlags}
'';
- # The systemd collector needs AF_UNIX
- RestrictAddressFamilies = lib.optional (lib.any (x: x == "systemd") cfg.enabledCollectors) "AF_UNIX";
+ RestrictAddressFamilies = optionals (any (collector: (collector == "logind" || collector == "systemd")) cfg.enabledCollectors) [
+ # needs access to dbus via unix sockets (logind/systemd)
+ "AF_UNIX"
+ ] ++ optionals (any (collector: (collector == "network_route" || collector == "wifi")) cfg.enabledCollectors) [
+ # needs netlink sockets for wireless collector
+ "AF_NETLINK"
+ ];
# The timex collector needs to access clock APIs
- ProtectClock = lib.any (x: x == "timex") cfg.disabledCollectors;
+ ProtectClock = any (collector: collector == "timex") cfg.disabledCollectors;
};
};
}
diff --git a/third_party/nixpkgs/nixos/modules/services/network-filesystems/samba.nix b/third_party/nixpkgs/nixos/modules/services/network-filesystems/samba.nix
index 3fedaeb495..9ed755d046 100644
--- a/third_party/nixpkgs/nixos/modules/services/network-filesystems/samba.nix
+++ b/third_party/nixpkgs/nixos/modules/services/network-filesystems/samba.nix
@@ -87,13 +87,20 @@ in
If you use the firewall consider adding the following:
- networking.firewall.allowedTCPPorts = [ 139 445 ];
- networking.firewall.allowedUDPPorts = [ 137 138 ];
+ services.samba.openFirewall = true;
'';
};
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to automatically open the necessary ports in the firewall.
+ '';
+ };
+
enableNmbd = mkOption {
type = types.bool;
default = true;
@@ -235,7 +242,10 @@ in
};
security.pam.services.samba = {};
- environment.systemPackages = [ config.services.samba.package ];
+ environment.systemPackages = [ cfg.package ];
+
+ networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ 139 445 ];
+ networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [ 137 138 ];
})
];
diff --git a/third_party/nixpkgs/nixos/modules/services/security/privacyidea.nix b/third_party/nixpkgs/nixos/modules/services/security/privacyidea.nix
index e78c4383e4..05f4995cc4 100644
--- a/third_party/nixpkgs/nixos/modules/services/security/privacyidea.nix
+++ b/third_party/nixpkgs/nixos/modules/services/security/privacyidea.nix
@@ -272,7 +272,7 @@ in
(mkIf cfg.ldap-proxy.enable {
systemd.services.privacyidea-ldap-proxy = let
- ldap-proxy-env = pkgs.python2.withPackages (ps: [ ps.privacyidea-ldap-proxy ]);
+ ldap-proxy-env = pkgs.python3.withPackages (ps: [ ps.privacyidea-ldap-proxy ]);
in {
description = "privacyIDEA LDAP proxy";
wantedBy = [ "multi-user.target" ];
diff --git a/third_party/nixpkgs/nixos/modules/services/torrent/transmission.nix b/third_party/nixpkgs/nixos/modules/services/torrent/transmission.nix
index 34a5219c95..b8cfcf3912 100644
--- a/third_party/nixpkgs/nixos/modules/services/torrent/transmission.nix
+++ b/third_party/nixpkgs/nixos/modules/services/torrent/transmission.nix
@@ -152,6 +152,8 @@ in
install -d -m '${cfg.downloadDirPermissions}' -o '${cfg.user}' -g '${cfg.group}' '${cfg.settings.download-dir}'
'' + optionalString cfg.settings.incomplete-dir-enabled ''
install -d -m '${cfg.downloadDirPermissions}' -o '${cfg.user}' -g '${cfg.group}' '${cfg.settings.incomplete-dir}'
+ '' + optionalString cfg.settings.watch-dir-enabled ''
+ install -d -m '${cfg.downloadDirPermissions}' -o '${cfg.user}' -g '${cfg.group}' '${cfg.settings.watch-dir}'
'';
assertions = [
diff --git a/third_party/nixpkgs/nixos/modules/services/web-apps/hedgedoc.nix b/third_party/nixpkgs/nixos/modules/services/web-apps/hedgedoc.nix
index b434f16e9b..e0c00fe67e 100644
--- a/third_party/nixpkgs/nixos/modules/services/web-apps/hedgedoc.nix
+++ b/third_party/nixpkgs/nixos/modules/services/web-apps/hedgedoc.nix
@@ -539,6 +539,69 @@ in
Specify the OAuth token URL.
'';
};
+ baseURL = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the OAuth base URL.
+ '';
+ };
+ userProfileURL = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the OAuth userprofile URL.
+ '';
+ };
+ userProfileUsernameAttr = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the name of the attribute for the username from the claim.
+ '';
+ };
+ userProfileDisplayNameAttr = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the name of the attribute for the display name from the claim.
+ '';
+ };
+ userProfileEmailAttr = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the name of the attribute for the email from the claim.
+ '';
+ };
+ scope = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the OAuth scope.
+ '';
+ };
+ providerName = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the name to be displayed for this strategy.
+ '';
+ };
+ rolesClaim = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify the role claim name.
+ '';
+ };
+ accessRole = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = ''
+ Specify role which should be included in the ID token roles claim to grant access
+ '';
+ };
clientID = mkOption {
type = types.str;
description = ''
diff --git a/third_party/nixpkgs/nixos/modules/services/web-apps/jitsi-meet.nix b/third_party/nixpkgs/nixos/modules/services/web-apps/jitsi-meet.nix
index e4f31c3a93..2eacd87ae6 100644
--- a/third_party/nixpkgs/nixos/modules/services/web-apps/jitsi-meet.nix
+++ b/third_party/nixpkgs/nixos/modules/services/web-apps/jitsi-meet.nix
@@ -144,6 +144,8 @@ in
'';
};
+ caddy.enable = mkEnableOption "Whether to enablle caddy reverse proxy to expose jitsi-meet";
+
prosody.enable = mkOption {
type = bool;
default = true;
@@ -322,6 +324,42 @@ in
};
};
+ services.caddy = mkIf cfg.caddy.enable {
+ enable = mkDefault true;
+ virtualHosts.${cfg.hostName} = {
+ extraConfig =
+ let
+ templatedJitsiMeet = pkgs.runCommand "templated-jitsi-meet" {} ''
+ cp -R ${pkgs.jitsi-meet}/* .
+ for file in *.html **/*.html ; do
+ ${pkgs.sd}/bin/sd '' '{{ include "$1" }}' $file
+ done
+ rm config.js
+ rm interface_config.js
+ cp -R . $out
+ cp ${overrideJs "${pkgs.jitsi-meet}/config.js" "config" (recursiveUpdate defaultCfg cfg.config) cfg.extraConfig} $out/config.js
+ cp ${overrideJs "${pkgs.jitsi-meet}/interface_config.js" "interfaceConfig" cfg.interfaceConfig ""} $out/interface_config.js
+ cp ./libs/external_api.min.js $out/external_api.js
+ '';
+ in ''
+ handle /http-bind {
+ header Host ${cfg.hostName}
+ reverse_proxy 127.0.0.1:5280
+ }
+ handle /xmpp-websocket {
+ reverse_proxy 127.0.0.1:5280
+ }
+ handle {
+ templates
+ root * ${templatedJitsiMeet}
+ try_files {path} {path}
+ try_files {path} /index.html
+ file_server
+ }
+ '';
+ };
+ };
+
services.jitsi-videobridge = mkIf cfg.videobridge.enable {
enable = true;
xmppConfigs."localhost" = {
diff --git a/third_party/nixpkgs/nixos/modules/services/x11/desktop-managers/pantheon.nix b/third_party/nixpkgs/nixos/modules/services/x11/desktop-managers/pantheon.nix
index 10969a373b..112f493b81 100644
--- a/third_party/nixpkgs/nixos/modules/services/x11/desktop-managers/pantheon.nix
+++ b/third_party/nixpkgs/nixos/modules/services/x11/desktop-managers/pantheon.nix
@@ -219,6 +219,7 @@ in
] config.environment.pantheon.excludePackages);
programs.evince.enable = mkDefault true;
+ programs.evince.package = pkgs.pantheon.evince;
programs.file-roller.enable = mkDefault true;
# Settings from elementary-default-settings
diff --git a/third_party/nixpkgs/nixos/modules/system/activation/switch-to-configuration.pl b/third_party/nixpkgs/nixos/modules/system/activation/switch-to-configuration.pl
index 053496441d..e105502cf3 100644
--- a/third_party/nixpkgs/nixos/modules/system/activation/switch-to-configuration.pl
+++ b/third_party/nixpkgs/nixos/modules/system/activation/switch-to-configuration.pl
@@ -11,7 +11,6 @@ use Cwd 'abs_path';
my $out = "@out@";
-# FIXME: maybe we should use /proc/1/exe to get the current systemd.
my $curSystemd = abs_path("/run/current-system/sw/bin");
# To be robust against interruption, record what units need to be started etc.
@@ -19,13 +18,16 @@ my $startListFile = "/run/nixos/start-list";
my $restartListFile = "/run/nixos/restart-list";
my $reloadListFile = "/run/nixos/reload-list";
-# Parse restart/reload requests by the activation script
+# Parse restart/reload requests by the activation script.
+# Activation scripts may write newline-separated units to this
+# file and switch-to-configuration will handle them. While
+# `stopIfChanged = true` is ignored, switch-to-configuration will
+# handle `restartIfChanged = false` and `reloadIfChanged = true`.
+# This also works for socket-activated units.
my $restartByActivationFile = "/run/nixos/activation-restart-list";
-my $reloadByActivationFile = "/run/nixos/activation-reload-list";
my $dryRestartByActivationFile = "/run/nixos/dry-activation-restart-list";
-my $dryReloadByActivationFile = "/run/nixos/dry-activation-reload-list";
-make_path("/run/nixos", { mode => 0755 });
+make_path("/run/nixos", { mode => oct(755) });
my $action = shift @ARGV;
@@ -147,6 +149,92 @@ sub fingerprintUnit {
return abs_path($s) . (-f "${s}.d/overrides.conf" ? " " . abs_path "${s}.d/overrides.conf" : "");
}
+sub handleModifiedUnit {
+ my ($unit, $baseName, $newUnitFile, $activePrev, $unitsToStop, $unitsToStart, $unitsToReload, $unitsToRestart, $unitsToSkip) = @_;
+
+ if ($unit eq "sysinit.target" || $unit eq "basic.target" || $unit eq "multi-user.target" || $unit eq "graphical.target" || $unit =~ /\.slice$/ || $unit =~ /\.path$/) {
+ # Do nothing. These cannot be restarted directly.
+ # Slices and Paths don't have to be restarted since
+ # properties (resource limits and inotify watches)
+ # seem to get applied on daemon-reload.
+ } elsif ($unit =~ /\.mount$/) {
+ # Reload the changed mount unit to force a remount.
+ $unitsToReload->{$unit} = 1;
+ recordUnit($reloadListFile, $unit);
+ } else {
+ my $unitInfo = parseUnit($newUnitFile);
+ if (boolIsTrue($unitInfo->{'X-ReloadIfChanged'} // "no")) {
+ $unitsToReload->{$unit} = 1;
+ recordUnit($reloadListFile, $unit);
+ }
+ elsif (!boolIsTrue($unitInfo->{'X-RestartIfChanged'} // "yes") || boolIsTrue($unitInfo->{'RefuseManualStop'} // "no") || boolIsTrue($unitInfo->{'X-OnlyManualStart'} // "no")) {
+ $unitsToSkip->{$unit} = 1;
+ } else {
+ # If this unit is socket-activated, then stop it instead
+ # of restarting it to make sure the new version of it is
+ # socket-activated.
+ my $socketActivated = 0;
+ if ($unit =~ /\.service$/) {
+ my @sockets = split / /, ($unitInfo->{Sockets} // "");
+ if (scalar @sockets == 0) {
+ @sockets = ("$baseName.socket");
+ }
+ foreach my $socket (@sockets) {
+ if (-e "$out/etc/systemd/system/$socket") {
+ $socketActivated = 1;
+ $unitsToStop->{$unit} = 1;
+ # If the socket was not running previously,
+ # start it now.
+ if (not defined $activePrev->{$socket}) {
+ $unitsToStart->{$socket} = 1;
+ }
+ }
+ }
+ }
+
+ # Don't do the rest of this for socket-activated units
+ # because we handled these above where we stop the unit.
+ # Since only services can be socket-activated, the
+ # following condition always evaluates to `true` for
+ # non-service units.
+ if ($socketActivated) {
+ return;
+ }
+
+ # If we are restarting a socket, also stop the corresponding
+ # service. This is required because restarting a socket
+ # when the service is already activated fails.
+ if ($unit =~ /\.socket$/) {
+ my $service = $unitInfo->{Service} // "";
+ if ($service eq "") {
+ $service = "$baseName.service";
+ }
+ if (defined $activePrev->{$service}) {
+ $unitsToStop->{$service} = 1;
+ }
+ $unitsToRestart->{$unit} = 1;
+ recordUnit($restartListFile, $unit);
+ } else {
+ # Always restart non-services instead of stopping and starting them
+ # because it doesn't make sense to stop them with a config from
+ # the old evaluation.
+ if (!boolIsTrue($unitInfo->{'X-StopIfChanged'} // "yes") || $unit !~ /\.service$/) {
+ # This unit should be restarted instead of
+ # stopped and started.
+ $unitsToRestart->{$unit} = 1;
+ recordUnit($restartListFile, $unit);
+ } else {
+ # We write to a file to ensure that the
+ # service gets restarted if we're interrupted.
+ $unitsToStart->{$unit} = 1;
+ recordUnit($startListFile, $unit);
+ $unitsToStop->{$unit} = 1;
+ }
+ }
+ }
+ }
+}
+
# Figure out what units need to be stopped, started, restarted or reloaded.
my (%unitsToStop, %unitsToSkip, %unitsToStart, %unitsToRestart, %unitsToReload);
@@ -219,65 +307,7 @@ while (my ($unit, $state) = each %{$activePrev}) {
}
elsif (fingerprintUnit($prevUnitFile) ne fingerprintUnit($newUnitFile)) {
- if ($unit eq "sysinit.target" || $unit eq "basic.target" || $unit eq "multi-user.target" || $unit eq "graphical.target") {
- # Do nothing. These cannot be restarted directly.
- } elsif ($unit =~ /\.mount$/) {
- # Reload the changed mount unit to force a remount.
- $unitsToReload{$unit} = 1;
- recordUnit($reloadListFile, $unit);
- } elsif ($unit =~ /\.socket$/ || $unit =~ /\.path$/ || $unit =~ /\.slice$/) {
- # FIXME: do something?
- } else {
- my $unitInfo = parseUnit($newUnitFile);
- if (boolIsTrue($unitInfo->{'X-ReloadIfChanged'} // "no")) {
- $unitsToReload{$unit} = 1;
- recordUnit($reloadListFile, $unit);
- }
- elsif (!boolIsTrue($unitInfo->{'X-RestartIfChanged'} // "yes") || boolIsTrue($unitInfo->{'RefuseManualStop'} // "no") || boolIsTrue($unitInfo->{'X-OnlyManualStart'} // "no")) {
- $unitsToSkip{$unit} = 1;
- } else {
- if (!boolIsTrue($unitInfo->{'X-StopIfChanged'} // "yes")) {
- # This unit should be restarted instead of
- # stopped and started.
- $unitsToRestart{$unit} = 1;
- recordUnit($restartListFile, $unit);
- } else {
- # If this unit is socket-activated, then stop the
- # socket unit(s) as well, and restart the
- # socket(s) instead of the service.
- my $socketActivated = 0;
- if ($unit =~ /\.service$/) {
- my @sockets = split / /, ($unitInfo->{Sockets} // "");
- if (scalar @sockets == 0) {
- @sockets = ("$baseName.socket");
- }
- foreach my $socket (@sockets) {
- if (defined $activePrev->{$socket}) {
- $unitsToStop{$socket} = 1;
- # Only restart sockets that actually
- # exist in new configuration:
- if (-e "$out/etc/systemd/system/$socket") {
- $unitsToStart{$socket} = 1;
- recordUnit($startListFile, $socket);
- $socketActivated = 1;
- }
- }
- }
- }
-
- # If the unit is not socket-activated, record
- # that this unit needs to be started below.
- # We write this to a file to ensure that the
- # service gets restarted if we're interrupted.
- if (!$socketActivated) {
- $unitsToStart{$unit} = 1;
- recordUnit($startListFile, $unit);
- }
-
- $unitsToStop{$unit} = 1;
- }
- }
- }
+ handleModifiedUnit($unit, $baseName, $newUnitFile, $activePrev, \%unitsToStop, \%unitsToStart, \%unitsToReload, \%unitsToRestart, %unitsToSkip);
}
}
}
@@ -362,8 +392,6 @@ sub filterUnits {
}
my @unitsToStopFiltered = filterUnits(\%unitsToStop);
-my @unitsToStartFiltered = filterUnits(\%unitsToStart);
-
# Show dry-run actions.
if ($action eq "dry-activate") {
@@ -375,21 +403,44 @@ if ($action eq "dry-activate") {
print STDERR "would activate the configuration...\n";
system("$out/dry-activate", "$out");
- $unitsToRestart{$_} = 1 foreach
- split('\n', read_file($dryRestartByActivationFile, err_mode => 'quiet') // "");
+ # Handle the activation script requesting the restart or reload of a unit.
+ my %unitsToAlsoStop;
+ my %unitsToAlsoSkip;
+ foreach (split('\n', read_file($dryRestartByActivationFile, err_mode => 'quiet') // "")) {
+ my $unit = $_;
+ my $baseUnit = $unit;
+ my $newUnitFile = "$out/etc/systemd/system/$baseUnit";
- $unitsToReload{$_} = 1 foreach
- split('\n', read_file($dryReloadByActivationFile, err_mode => 'quiet') // "");
+ # Detect template instances.
+ if (!-e $newUnitFile && $unit =~ /^(.*)@[^\.]*\.(.*)$/) {
+ $baseUnit = "$1\@.$2";
+ $newUnitFile = "$out/etc/systemd/system/$baseUnit";
+ }
+
+ my $baseName = $baseUnit;
+ $baseName =~ s/\.[a-z]*$//;
+
+ handleModifiedUnit($unit, $baseName, $newUnitFile, $activePrev, \%unitsToAlsoStop, \%unitsToStart, \%unitsToReload, \%unitsToRestart, %unitsToAlsoSkip);
+ }
+ unlink($dryRestartByActivationFile);
+
+ my @unitsToAlsoStopFiltered = filterUnits(\%unitsToAlsoStop);
+ if (scalar(keys %unitsToAlsoStop) > 0) {
+ print STDERR "would stop the following units as well: ", join(", ", @unitsToAlsoStopFiltered), "\n"
+ if scalar @unitsToAlsoStopFiltered;
+ }
+
+ print STDERR "would NOT restart the following changed units as well: ", join(", ", sort(keys %unitsToAlsoSkip)), "\n"
+ if scalar(keys %unitsToAlsoSkip) > 0;
print STDERR "would restart systemd\n" if $restartSystemd;
- print STDERR "would restart the following units: ", join(", ", sort(keys %unitsToRestart)), "\n"
- if scalar(keys %unitsToRestart) > 0;
- print STDERR "would start the following units: ", join(", ", @unitsToStartFiltered), "\n"
- if scalar @unitsToStartFiltered;
print STDERR "would reload the following units: ", join(", ", sort(keys %unitsToReload)), "\n"
if scalar(keys %unitsToReload) > 0;
- unlink($dryRestartByActivationFile);
- unlink($dryReloadByActivationFile);
+ print STDERR "would restart the following units: ", join(", ", sort(keys %unitsToRestart)), "\n"
+ if scalar(keys %unitsToRestart) > 0;
+ my @unitsToStartFiltered = filterUnits(\%unitsToStart);
+ print STDERR "would start the following units: ", join(", ", @unitsToStartFiltered), "\n"
+ if scalar @unitsToStartFiltered;
exit 0;
}
@@ -400,7 +451,7 @@ if (scalar (keys %unitsToStop) > 0) {
print STDERR "stopping the following units: ", join(", ", @unitsToStopFiltered), "\n"
if scalar @unitsToStopFiltered;
# Use current version of systemctl binary before daemon is reexeced.
- system("$curSystemd/systemctl", "stop", "--", sort(keys %unitsToStop)); # FIXME: ignore errors?
+ system("$curSystemd/systemctl", "stop", "--", sort(keys %unitsToStop));
}
print STDERR "NOT restarting the following changed units: ", join(", ", sort(keys %unitsToSkip)), "\n"
@@ -414,12 +465,38 @@ system("$out/activate", "$out") == 0 or $res = 2;
# Handle the activation script requesting the restart or reload of a unit.
# We can only restart and reload (not stop/start) because the units to be
-# stopped are already stopped before the activation script is run.
-$unitsToRestart{$_} = 1 foreach
- split('\n', read_file($restartByActivationFile, err_mode => 'quiet') // "");
+# stopped are already stopped before the activation script is run. We do however
+# make an exception for services that are socket-activated and that have to be stopped
+# instead of being restarted.
+my %unitsToAlsoStop;
+my %unitsToAlsoSkip;
+foreach (split('\n', read_file($restartByActivationFile, err_mode => 'quiet') // "")) {
+ my $unit = $_;
+ my $baseUnit = $unit;
+ my $newUnitFile = "$out/etc/systemd/system/$baseUnit";
-$unitsToReload{$_} = 1 foreach
- split('\n', read_file($reloadByActivationFile, err_mode => 'quiet') // "");
+ # Detect template instances.
+ if (!-e $newUnitFile && $unit =~ /^(.*)@[^\.]*\.(.*)$/) {
+ $baseUnit = "$1\@.$2";
+ $newUnitFile = "$out/etc/systemd/system/$baseUnit";
+ }
+
+ my $baseName = $baseUnit;
+ $baseName =~ s/\.[a-z]*$//;
+
+ handleModifiedUnit($unit, $baseName, $newUnitFile, $activePrev, \%unitsToAlsoStop, \%unitsToStart, \%unitsToReload, \%unitsToRestart, %unitsToAlsoSkip);
+}
+unlink($restartByActivationFile);
+
+my @unitsToAlsoStopFiltered = filterUnits(\%unitsToAlsoStop);
+if (scalar(keys %unitsToAlsoStop) > 0) {
+ print STDERR "stopping the following units as well: ", join(", ", @unitsToAlsoStopFiltered), "\n"
+ if scalar @unitsToAlsoStopFiltered;
+ system("$curSystemd/systemctl", "stop", "--", sort(keys %unitsToAlsoStop));
+}
+
+print STDERR "NOT restarting the following changed units as well: ", join(", ", sort(keys %unitsToAlsoSkip)), "\n"
+ if scalar(keys %unitsToAlsoSkip) > 0;
# Restart systemd if necessary. Note that this is done using the
# current version of systemd, just in case the new one has trouble
@@ -460,14 +537,40 @@ if (scalar(keys %unitsToReload) > 0) {
print STDERR "reloading the following units: ", join(", ", sort(keys %unitsToReload)), "\n";
system("@systemd@/bin/systemctl", "reload", "--", sort(keys %unitsToReload)) == 0 or $res = 4;
unlink($reloadListFile);
- unlink($reloadByActivationFile);
}
# Restart changed services (those that have to be restarted rather
# than stopped and started).
if (scalar(keys %unitsToRestart) > 0) {
print STDERR "restarting the following units: ", join(", ", sort(keys %unitsToRestart)), "\n";
- system("@systemd@/bin/systemctl", "restart", "--", sort(keys %unitsToRestart)) == 0 or $res = 4;
+
+ # We split the units to be restarted into sockets and non-sockets.
+ # This is because restarting sockets may fail which is not bad by
+ # itself but which will prevent changes on the sockets. We usually
+ # restart the socket and stop the service before that. Restarting
+ # the socket will fail however when the service was re-activated
+ # in the meantime. There is no proper way to prevent that from happening.
+ my @unitsWithErrorHandling = grep { $_ !~ /\.socket$/ } sort(keys %unitsToRestart);
+ my @unitsWithoutErrorHandling = grep { $_ =~ /\.socket$/ } sort(keys %unitsToRestart);
+
+ if (scalar(@unitsWithErrorHandling) > 0) {
+ system("@systemd@/bin/systemctl", "restart", "--", @unitsWithErrorHandling) == 0 or $res = 4;
+ }
+ if (scalar(@unitsWithoutErrorHandling) > 0) {
+ # Don't print warnings from systemctl
+ no warnings 'once';
+ open(OLDERR, ">&", \*STDERR);
+ close(STDERR);
+
+ my $ret = system("@systemd@/bin/systemctl", "restart", "--", @unitsWithoutErrorHandling);
+
+ # Print stderr again
+ open(STDERR, ">&OLDERR");
+
+ if ($ret ne 0) {
+ print STDERR "warning: some sockets failed to restart. Please check your journal (journalctl -eb) and act accordingly.\n";
+ }
+ }
unlink($restartListFile);
unlink($restartByActivationFile);
}
@@ -478,6 +581,7 @@ if (scalar(keys %unitsToRestart) > 0) {
# that are symlinks to other units. We shouldn't start both at the
# same time because we'll get a "Failed to add path to set" error from
# systemd.
+my @unitsToStartFiltered = filterUnits(\%unitsToStart);
print STDERR "starting the following units: ", join(", ", @unitsToStartFiltered), "\n"
if scalar @unitsToStartFiltered;
system("@systemd@/bin/systemctl", "start", "--", sort(keys %unitsToStart)) == 0 or $res = 4;
@@ -485,7 +589,7 @@ unlink($startListFile);
# Print failed and new units.
-my (@failed, @new, @restarting);
+my (@failed, @new);
my $activeNew = getActiveUnits;
while (my ($unit, $state) = each %{$activeNew}) {
if ($state->{state} eq "failed") {
@@ -501,7 +605,9 @@ while (my ($unit, $state) = each %{$activeNew}) {
push @failed, $unit;
}
}
- elsif ($state->{state} ne "failed" && !defined $activePrev->{$unit}) {
+ # Ignore scopes since they are not managed by this script but rather
+ # created and managed by third-party services via the systemd dbus API.
+ elsif ($state->{state} ne "failed" && !defined $activePrev->{$unit} && $unit !~ /\.scope$/) {
push @new, $unit;
}
}
diff --git a/third_party/nixpkgs/nixos/modules/system/activation/top-level.nix b/third_party/nixpkgs/nixos/modules/system/activation/top-level.nix
index 026fd1791d..68da910d29 100644
--- a/third_party/nixpkgs/nixos/modules/system/activation/top-level.nix
+++ b/third_party/nixpkgs/nixos/modules/system/activation/top-level.nix
@@ -84,6 +84,13 @@ let
export localeArchive="${config.i18n.glibcLocales}/lib/locale/locale-archive"
substituteAll ${./switch-to-configuration.pl} $out/bin/switch-to-configuration
chmod +x $out/bin/switch-to-configuration
+ ${optionalString (pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) ''
+ if ! output=$($perl/bin/perl -c $out/bin/switch-to-configuration 2>&1); then
+ echo "switch-to-configuration syntax is not valid:"
+ echo "$output"
+ exit 1
+ fi
+ ''}
echo -n "${toString config.system.extraDependencies}" > $out/extra-dependencies
diff --git a/third_party/nixpkgs/nixos/modules/system/boot/luksroot.nix b/third_party/nixpkgs/nixos/modules/system/boot/luksroot.nix
index fb5269e43d..f0d3170dc5 100644
--- a/third_party/nixpkgs/nixos/modules/system/boot/luksroot.nix
+++ b/third_party/nixpkgs/nixos/modules/system/boot/luksroot.nix
@@ -332,6 +332,7 @@ let
if [ $? == 0 ]; then
echo -ne "$new_salt\n$new_iterations" > /crypt-storage${dev.yubikey.storage.path}
+ sync /crypt-storage${dev.yubikey.storage.path}
else
echo "Warning: Could not update LUKS key, current challenge persists!"
fi
diff --git a/third_party/nixpkgs/nixos/modules/virtualisation/libvirtd.nix b/third_party/nixpkgs/nixos/modules/virtualisation/libvirtd.nix
index 77b43d9d84..121e7286bc 100644
--- a/third_party/nixpkgs/nixos/modules/virtualisation/libvirtd.nix
+++ b/third_party/nixpkgs/nixos/modules/virtualisation/libvirtd.nix
@@ -13,23 +13,140 @@ let
'';
ovmfFilePrefix = if pkgs.stdenv.isAarch64 then "AAVMF" else "OVMF";
qemuConfigFile = pkgs.writeText "qemu.conf" ''
- ${optionalString cfg.qemuOvmf ''
+ ${optionalString cfg.qemu.ovmf.enable ''
nvram = [ "/run/libvirt/nix-ovmf/${ovmfFilePrefix}_CODE.fd:/run/libvirt/nix-ovmf/${ovmfFilePrefix}_VARS.fd" ]
''}
- ${optionalString (!cfg.qemuRunAsRoot) ''
+ ${optionalString (!cfg.qemu.runAsRoot) ''
user = "qemu-libvirtd"
group = "qemu-libvirtd"
''}
- ${cfg.qemuVerbatimConfig}
+ ${cfg.qemu.verbatimConfig}
'';
dirName = "libvirt";
subDirs = list: [ dirName ] ++ map (e: "${dirName}/${e}") list;
-in {
+ ovmfModule = types.submodule {
+ options = {
+ enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Allows libvirtd to take advantage of OVMF when creating new
+ QEMU VMs with UEFI boot.
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.OVMF;
+ defaultText = literalExpression "pkgs.OVMF";
+ example = literalExpression "pkgs.OVMFFull";
+ description = ''
+ OVMF package to use.
+ '';
+ };
+ };
+ };
+
+ swtpmModule = types.submodule {
+ options = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Allows libvirtd to use swtpm to create an emulated TPM.
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.swtpm;
+ defaultText = literalExpression "pkgs.swtpm";
+ description = ''
+ swtpm package to use.
+ '';
+ };
+ };
+ };
+
+ qemuModule = types.submodule {
+ options = {
+ package = mkOption {
+ type = types.package;
+ default = pkgs.qemu;
+ defaultText = literalExpression "pkgs.qemu";
+ description = ''
+ Qemu package to use with libvirt.
+ `pkgs.qemu` can emulate alien architectures (e.g. aarch64 on x86)
+ `pkgs.qemu_kvm` saves disk space allowing to emulate only host architectures.
+ '';
+ };
+
+ runAsRoot = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ If true, libvirtd runs qemu as root.
+ If false, libvirtd runs qemu as unprivileged user qemu-libvirtd.
+ Changing this option to false may cause file permission issues
+ for existing guests. To fix these, manually change ownership
+ of affected files in /var/lib/libvirt/qemu to qemu-libvirtd.
+ '';
+ };
+
+ verbatimConfig = mkOption {
+ type = types.lines;
+ default = ''
+ namespaces = []
+ '';
+ description = ''
+ Contents written to the qemu configuration file, qemu.conf.
+ Make sure to include a proper namespace configuration when
+ supplying custom configuration.
+ '';
+ };
+
+ ovmf = mkOption {
+ type = ovmfModule;
+ default = { };
+ description = ''
+ QEMU's OVMF options.
+ '';
+ };
+
+ swtpm = mkOption {
+ type = swtpmModule;
+ default = { };
+ description = ''
+ QEMU's swtpm options.
+ '';
+ };
+ };
+ };
+in
+{
imports = [
(mkRemovedOptionModule [ "virtualisation" "libvirtd" "enableKVM" ]
- "Set the option `virtualisation.libvirtd.qemuPackage' instead.")
+ "Set the option `virtualisation.libvirtd.qemu.package' instead.")
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuPackage" ]
+ [ "virtualisation" "libvirtd" "qemu" "package" ])
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuRunAsRoot" ]
+ [ "virtualisation" "libvirtd" "qemu" "runAsRoot" ])
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuVerbatimConfig" ]
+ [ "virtualisation" "libvirtd" "qemu" "verbatimConfig" ])
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuOvmf" ]
+ [ "virtualisation" "libvirtd" "qemu" "ovmf" "enable" ])
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuOvmfPackage" ]
+ [ "virtualisation" "libvirtd" "qemu" "ovmf" "package" ])
+ (mkRenamedOptionModule
+ [ "virtualisation" "libvirtd" "qemuSwtpm" ]
+ [ "virtualisation" "libvirtd" "qemu" "swtpm" "enable" ])
];
###### interface
@@ -56,17 +173,6 @@ in {
'';
};
- qemuPackage = mkOption {
- type = types.package;
- default = pkgs.qemu;
- defaultText = literalExpression "pkgs.qemu";
- description = ''
- Qemu package to use with libvirt.
- `pkgs.qemu` can emulate alien architectures (e.g. aarch64 on x86)
- `pkgs.qemu_kvm` saves disk space allowing to emulate only host architectures.
- '';
- };
-
extraConfig = mkOption {
type = types.lines;
default = "";
@@ -76,39 +182,6 @@ in {
'';
};
- qemuRunAsRoot = mkOption {
- type = types.bool;
- default = true;
- description = ''
- If true, libvirtd runs qemu as root.
- If false, libvirtd runs qemu as unprivileged user qemu-libvirtd.
- Changing this option to false may cause file permission issues
- for existing guests. To fix these, manually change ownership
- of affected files in /var/lib/libvirt/qemu to qemu-libvirtd.
- '';
- };
-
- qemuVerbatimConfig = mkOption {
- type = types.lines;
- default = ''
- namespaces = []
- '';
- description = ''
- Contents written to the qemu configuration file, qemu.conf.
- Make sure to include a proper namespace configuration when
- supplying custom configuration.
- '';
- };
-
- qemuOvmf = mkOption {
- type = types.bool;
- default = true;
- description = ''
- Allows libvirtd to take advantage of OVMF when creating new
- QEMU VMs with UEFI boot.
- '';
- };
-
extraOptions = mkOption {
type = types.listOf types.str;
default = [ ];
@@ -119,7 +192,7 @@ in {
};
onBoot = mkOption {
- type = types.enum ["start" "ignore" ];
+ type = types.enum [ "start" "ignore" ];
default = "start";
description = ''
Specifies the action to be done to / on the guests when the host boots.
@@ -131,7 +204,7 @@ in {
};
onShutdown = mkOption {
- type = types.enum ["shutdown" "suspend" ];
+ type = types.enum [ "shutdown" "suspend" ];
default = "suspend";
description = ''
When shutting down / restarting the host what method should
@@ -149,6 +222,13 @@ in {
'';
};
+ qemu = mkOption {
+ type = qemuModule;
+ default = { };
+ description = ''
+ QEMU related options.
+ '';
+ };
};
@@ -161,13 +241,19 @@ in {
assertion = config.security.polkit.enable;
message = "The libvirtd module currently requires Polkit to be enabled ('security.polkit.enable = true').";
}
+ {
+ assertion = builtins.elem "fd" cfg.qemu.ovmf.package.outputs;
+ message = "The option 'virtualisation.libvirtd.qemuOvmfPackage' needs a package that has an 'fd' output.";
+ }
];
environment = {
# this file is expected in /etc/qemu and not sysconfdir (/var/lib)
- etc."qemu/bridge.conf".text = lib.concatMapStringsSep "\n" (e:
- "allow ${e}") cfg.allowedBridges;
- systemPackages = with pkgs; [ libressl.nc iptables cfg.package cfg.qemuPackage ];
+ etc."qemu/bridge.conf".text = lib.concatMapStringsSep "\n"
+ (e:
+ "allow ${e}")
+ cfg.allowedBridges;
+ systemPackages = with pkgs; [ libressl.nc iptables cfg.package cfg.qemu.package ];
etc.ethertypes.source = "${pkgs.ebtables}/etc/ethertypes";
};
@@ -209,17 +295,17 @@ in {
cp -f ${qemuConfigFile} /var/lib/${dirName}/qemu.conf
# stable (not GC'able as in /nix/store) paths for using in section of xml configs
- for emulator in ${cfg.package}/libexec/libvirt_lxc ${cfg.qemuPackage}/bin/qemu-kvm ${cfg.qemuPackage}/bin/qemu-system-*; do
+ for emulator in ${cfg.package}/libexec/libvirt_lxc ${cfg.qemu.package}/bin/qemu-kvm ${cfg.qemu.package}/bin/qemu-system-*; do
ln -s --force "$emulator" /run/${dirName}/nix-emulators/
done
for helper in libexec/qemu-bridge-helper bin/qemu-pr-helper; do
- ln -s --force ${cfg.qemuPackage}/$helper /run/${dirName}/nix-helpers/
+ ln -s --force ${cfg.qemu.package}/$helper /run/${dirName}/nix-helpers/
done
- ${optionalString cfg.qemuOvmf ''
- ln -s --force ${pkgs.OVMF.fd}/FV/${ovmfFilePrefix}_CODE.fd /run/${dirName}/nix-ovmf/
- ln -s --force ${pkgs.OVMF.fd}/FV/${ovmfFilePrefix}_VARS.fd /run/${dirName}/nix-ovmf/
+ ${optionalString cfg.qemu.ovmf.enable ''
+ ln -s --force ${cfg.qemu.ovmf.package.fd}/FV/${ovmfFilePrefix}_CODE.fd /run/${dirName}/nix-ovmf/
+ ln -s --force ${cfg.qemu.ovmf.package.fd}/FV/${ovmfFilePrefix}_VARS.fd /run/${dirName}/nix-ovmf/
''}
'';
@@ -235,15 +321,20 @@ in {
systemd.services.libvirtd = {
requires = [ "libvirtd-config.service" ];
after = [ "libvirtd-config.service" ]
- ++ optional vswitch.enable "ovs-vswitchd.service";
+ ++ optional vswitch.enable "ovs-vswitchd.service";
environment.LIBVIRTD_ARGS = escapeShellArgs (
- [ "--config" configFile
- "--timeout" "120" # from ${libvirt}/var/lib/sysconfig/libvirtd
- ] ++ cfg.extraOptions);
+ [
+ "--config"
+ configFile
+ "--timeout"
+ "120" # from ${libvirt}/var/lib/sysconfig/libvirtd
+ ] ++ cfg.extraOptions
+ );
- path = [ cfg.qemuPackage ] # libvirtd requires qemu-img to manage disk images
- ++ optional vswitch.enable vswitch.package;
+ path = [ cfg.qemu.package ] # libvirtd requires qemu-img to manage disk images
+ ++ optional vswitch.enable vswitch.package
+ ++ optional cfg.qemu.swtpm.enable cfg.qemu.swtpm.package;
serviceConfig = {
Type = "notify";
diff --git a/third_party/nixpkgs/nixos/tests/all-tests.nix b/third_party/nixpkgs/nixos/tests/all-tests.nix
index a6eb2c0325..12b6700829 100644
--- a/third_party/nixpkgs/nixos/tests/all-tests.nix
+++ b/third_party/nixpkgs/nixos/tests/all-tests.nix
@@ -311,6 +311,7 @@ in
nitter = handleTest ./nitter.nix {};
nix-serve = handleTest ./nix-ssh-serve.nix {};
nix-ssh-serve = handleTest ./nix-ssh-serve.nix {};
+ nixops = handleTest ./nixops/default.nix {};
nixos-generate-config = handleTest ./nixos-generate-config.nix {};
node-red = handleTest ./node-red.nix {};
nomad = handleTest ./nomad.nix {};
diff --git a/third_party/nixpkgs/nixos/tests/docker-tools.nix b/third_party/nixpkgs/nixos/tests/docker-tools.nix
index e482223436..7110187e8d 100644
--- a/third_party/nixpkgs/nixos/tests/docker-tools.nix
+++ b/third_party/nixpkgs/nixos/tests/docker-tools.nix
@@ -383,5 +383,18 @@ import ./make-test-python.nix ({ pkgs, ... }: {
docker.succeed(
"tar -tf ${examples.exportBash} | grep '\./bin/bash' > /dev/null"
)
+
+ with subtest("Ensure bare paths in contents are loaded correctly"):
+ docker.succeed(
+ "docker load --input='${examples.build-image-with-path}'",
+ "docker run --rm build-image-with-path bash -c '[[ -e /hello.txt ]]'",
+ "docker rmi build-image-with-path",
+ )
+ docker.succeed(
+ "${examples.layered-image-with-path} | docker load",
+ "docker run --rm layered-image-with-path bash -c '[[ -e /hello.txt ]]'",
+ "docker rmi layered-image-with-path",
+ )
+
'';
})
diff --git a/third_party/nixpkgs/nixos/tests/nixops/default.nix b/third_party/nixpkgs/nixos/tests/nixops/default.nix
new file mode 100644
index 0000000000..4520b42684
--- /dev/null
+++ b/third_party/nixpkgs/nixos/tests/nixops/default.nix
@@ -0,0 +1,115 @@
+{ pkgs, ... }:
+let
+ inherit (pkgs) lib;
+
+ tests = {
+ # TODO: uncomment stable
+ # - Blocked on https://github.com/NixOS/nixpkgs/issues/138584 which has a
+ # PR in staging: https://github.com/NixOS/nixpkgs/pull/139986
+ # - Alternatively, blocked on a NixOps 2 release
+ # https://github.com/NixOS/nixops/issues/1242
+ # stable = testsLegacyNetwork { nixopsPkg = pkgs.nixops; };
+ unstable = testsForPackage { nixopsPkg = pkgs.nixopsUnstable; };
+
+ # inherit testsForPackage;
+ };
+
+ testsForPackage = lib.makeOverridable (args: lib.recurseIntoAttrs {
+ legacyNetwork = testLegacyNetwork args;
+ });
+
+ testLegacyNetwork = { nixopsPkg }: pkgs.nixosTest ({
+ nodes = {
+ deployer = { config, lib, nodes, pkgs, ... }: {
+ imports = [ ../../modules/installer/cd-dvd/channel.nix ];
+ environment.systemPackages = [ nixopsPkg ];
+ nix.binaryCaches = lib.mkForce [ ];
+ users.users.person.isNormalUser = true;
+ virtualisation.writableStore = true;
+ virtualisation.memorySize = 1024 /*MiB*/;
+ virtualisation.pathsInNixDB = [
+ pkgs.hello
+ pkgs.figlet
+
+ # This includes build dependencies all the way down. Not efficient,
+ # but we do need build deps to an *arbitrary* depth, which is hard to
+ # determine.
+ (allDrvOutputs nodes.server.config.system.build.toplevel)
+ ];
+ };
+ server = { lib, ... }: {
+ imports = [ ./legacy/base-configuration.nix ];
+ };
+ };
+
+ testScript = { nodes }:
+ let
+ deployerSetup = pkgs.writeScript "deployerSetup" ''
+ #!${pkgs.runtimeShell}
+ set -eux -o pipefail
+ cp --no-preserve=mode -r ${./legacy} unicorn
+ cp --no-preserve=mode ${../ssh-keys.nix} unicorn/ssh-keys.nix
+ mkdir -p ~/.ssh
+ cp ${snakeOilPrivateKey} ~/.ssh/id_ed25519
+ chmod 0400 ~/.ssh/id_ed25519
+ '';
+ serverNetworkJSON = pkgs.writeText "server-network.json"
+ (builtins.toJSON nodes.server.config.system.build.networkConfig);
+ in
+ ''
+ import shlex
+
+ def deployer_do(cmd):
+ cmd = shlex.quote(cmd)
+ return deployer.succeed(f"su person -l -c {cmd} &>/dev/console")
+
+ start_all()
+
+ deployer_do("cat /etc/hosts")
+
+ deployer_do("${deployerSetup}")
+ deployer_do("cp ${serverNetworkJSON} unicorn/server-network.json")
+
+ # Establish that ssh works, regardless of nixops
+ # Easy way to accept the server host key too.
+ server.wait_for_open_port(22)
+ deployer.wait_for_unit("network.target")
+
+ # Put newlines on console, to flush the console reader's line buffer
+ # in case nixops' last output did not end in a newline, as is the case
+ # with a status line (if implemented?)
+ deployer.succeed("while sleep 60s; do echo [60s passed] >/dev/console; done &")
+
+ deployer_do("cd ~/unicorn; ssh -oStrictHostKeyChecking=accept-new root@server echo hi")
+
+ # Create and deploy
+ deployer_do("cd ~/unicorn; nixops create")
+
+ deployer_do("cd ~/unicorn; nixops deploy --confirm")
+
+ deployer_do("cd ~/unicorn; nixops ssh server 'hello | figlet'")
+ '';
+ });
+
+ inherit (import ../ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey;
+
+ /*
+ Return a store path with a closure containing everything including
+ derivations and all build dependency outputs, all the way down.
+ */
+ allDrvOutputs = pkg:
+ let name = lib.strings.sanitizeDerivationName "allDrvOutputs-${pkg.pname or pkg.name or "unknown"}";
+ in
+ pkgs.runCommand name { refs = pkgs.writeReferencesToFile pkg.drvPath; } ''
+ touch $out
+ while read ref; do
+ case $ref in
+ *.drv)
+ cat $ref >>$out
+ ;;
+ esac
+ done <$refs
+ '';
+
+in
+tests
diff --git a/third_party/nixpkgs/nixos/tests/nixops/legacy/base-configuration.nix b/third_party/nixpkgs/nixos/tests/nixops/legacy/base-configuration.nix
new file mode 100644
index 0000000000..dba960f595
--- /dev/null
+++ b/third_party/nixpkgs/nixos/tests/nixops/legacy/base-configuration.nix
@@ -0,0 +1,31 @@
+{ lib, modulesPath, pkgs, ... }:
+let
+ ssh-keys =
+ if builtins.pathExists ../../ssh-keys.nix
+ then # Outside sandbox
+ ../../ssh-keys.nix
+ else # In sandbox
+ ./ssh-keys.nix;
+
+ inherit (import ssh-keys pkgs)
+ snakeOilPrivateKey snakeOilPublicKey;
+in
+{
+ imports = [
+ (modulesPath + "/virtualisation/qemu-vm.nix")
+ (modulesPath + "/testing/test-instrumentation.nix")
+ ];
+ virtualisation.writableStore = true;
+ nix.binaryCaches = lib.mkForce [ ];
+ virtualisation.graphics = false;
+ documentation.enable = false;
+ services.qemuGuest.enable = true;
+ boot.loader.grub.enable = false;
+
+ services.openssh.enable = true;
+ users.users.root.openssh.authorizedKeys.keys = [
+ snakeOilPublicKey
+ ];
+ security.pam.services.sshd.limits =
+ [{ domain = "*"; item = "memlock"; type = "-"; value = 1024; }];
+}
diff --git a/third_party/nixpkgs/nixos/tests/nixops/legacy/nixops.nix b/third_party/nixpkgs/nixos/tests/nixops/legacy/nixops.nix
new file mode 100644
index 0000000000..795dc2a718
--- /dev/null
+++ b/third_party/nixpkgs/nixos/tests/nixops/legacy/nixops.nix
@@ -0,0 +1,15 @@
+{
+ network = {
+ description = "Legacy Network using and legacy state.";
+ # NB this is not really what makes it a legacy network; lack of flakes is.
+ storage.legacy = { };
+ };
+ server = { lib, pkgs, ... }: {
+ deployment.targetEnv = "none";
+ imports = [
+ ./base-configuration.nix
+ (lib.modules.importJSON ./server-network.json)
+ ];
+ environment.systemPackages = [ pkgs.hello pkgs.figlet ];
+ };
+}
diff --git a/third_party/nixpkgs/nixos/tests/samba.nix b/third_party/nixpkgs/nixos/tests/samba.nix
index d1d50caabf..252c3dd9c7 100644
--- a/third_party/nixpkgs/nixos/tests/samba.nix
+++ b/third_party/nixpkgs/nixos/tests/samba.nix
@@ -20,6 +20,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
server =
{ ... }:
{ services.samba.enable = true;
+ services.samba.openFirewall = true;
services.samba.shares.public =
{ path = "/public";
"read only" = true;
@@ -27,8 +28,6 @@ import ./make-test-python.nix ({ pkgs, ... }:
"guest ok" = "yes";
comment = "Public samba share.";
};
- networking.firewall.allowedTCPPorts = [ 139 445 ];
- networking.firewall.allowedUDPPorts = [ 137 138 ];
};
};
diff --git a/third_party/nixpkgs/nixos/tests/switch-test.nix b/third_party/nixpkgs/nixos/tests/switch-test.nix
index 78adf7ffa7..4caa7d98f4 100644
--- a/third_party/nixpkgs/nixos/tests/switch-test.nix
+++ b/third_party/nixpkgs/nixos/tests/switch-test.nix
@@ -7,15 +7,224 @@ import ./make-test-python.nix ({ pkgs, ...} : {
};
nodes = {
- machine = { ... }: {
+ machine = { config, pkgs, lib, ... }: {
+ environment.systemPackages = [ pkgs.socat ]; # for the socket activation stuff
users.mutableUsers = false;
+
+ specialisation = {
+ # A system with a simple socket-activated unit
+ simple-socket.configuration = {
+ systemd.services.socket-activated.serviceConfig = {
+ ExecStart = pkgs.writeScript "socket-test.py" /* python */ ''
+ #!${pkgs.python3}/bin/python3
+
+ from socketserver import TCPServer, StreamRequestHandler
+ import socket
+
+ class Handler(StreamRequestHandler):
+ def handle(self):
+ self.wfile.write("hello".encode("utf-8"))
+
+ class Server(TCPServer):
+ def __init__(self, server_address, handler_cls):
+ # Invoke base but omit bind/listen steps (performed by systemd activation!)
+ TCPServer.__init__(
+ self, server_address, handler_cls, bind_and_activate=False)
+ # Override socket
+ self.socket = socket.fromfd(3, self.address_family, self.socket_type)
+
+ if __name__ == "__main__":
+ server = Server(("localhost", 1234), Handler)
+ server.serve_forever()
+ '';
+ };
+ systemd.sockets.socket-activated = {
+ wantedBy = [ "sockets.target" ];
+ listenStreams = [ "/run/test.sock" ];
+ socketConfig.SocketMode = lib.mkDefault "0777";
+ };
+ };
+
+ # The same system but the socket is modified
+ modified-socket.configuration = {
+ imports = [ config.specialisation.simple-socket.configuration ];
+ systemd.sockets.socket-activated.socketConfig.SocketMode = "0666";
+ };
+
+ # The same system but the service is modified
+ modified-service.configuration = {
+ imports = [ config.specialisation.simple-socket.configuration ];
+ systemd.services.socket-activated.serviceConfig.X-Test = "test";
+ };
+
+ # The same system but both service and socket are modified
+ modified-service-and-socket.configuration = {
+ imports = [ config.specialisation.simple-socket.configuration ];
+ systemd.services.socket-activated.serviceConfig.X-Test = "some_value";
+ systemd.sockets.socket-activated.socketConfig.SocketMode = "0444";
+ };
+
+ # A system with a socket-activated service and some simple services
+ service-and-socket.configuration = {
+ imports = [ config.specialisation.simple-socket.configuration ];
+ systemd.services.simple-service = {
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ };
+ };
+
+ systemd.services.simple-restart-service = {
+ stopIfChanged = false;
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ };
+ };
+
+ systemd.services.simple-reload-service = {
+ reloadIfChanged = true;
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ ExecReload = "${pkgs.coreutils}/bin/true";
+ };
+ };
+
+ systemd.services.no-restart-service = {
+ restartIfChanged = false;
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ };
+ };
+ };
+
+ # The same system but with an activation script that restarts all services
+ restart-and-reload-by-activation-script.configuration = {
+ imports = [ config.specialisation.service-and-socket.configuration ];
+ system.activationScripts.restart-and-reload-test = {
+ supportsDryActivation = true;
+ deps = [];
+ text = ''
+ if [ "$NIXOS_ACTION" = dry-activate ]; then
+ f=/run/nixos/dry-activation-restart-list
+ else
+ f=/run/nixos/activation-restart-list
+ fi
+ cat <> "$f"
+ simple-service.service
+ simple-restart-service.service
+ simple-reload-service.service
+ no-restart-service.service
+ socket-activated.service
+ EOF
+ '';
+ };
+ };
+
+ # A system with a timer
+ with-timer.configuration = {
+ systemd.timers.test-timer = {
+ wantedBy = [ "timers.target" ];
+ timerConfig.OnCalendar = "@1395716396"; # chosen by fair dice roll
+ };
+ systemd.services.test-timer = {
+ serviceConfig = {
+ Type = "oneshot";
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ };
+ };
+ };
+
+ # The same system but with another time
+ with-timer-modified.configuration = {
+ imports = [ config.specialisation.with-timer.configuration ];
+ systemd.timers.test-timer.timerConfig.OnCalendar = lib.mkForce "Fri 2012-11-23 16:00:00";
+ };
+
+ # A system with a systemd mount
+ with-mount.configuration = {
+ systemd.mounts = [
+ {
+ description = "Testmount";
+ what = "tmpfs";
+ type = "tmpfs";
+ where = "/testmount";
+ options = "size=1M";
+ wantedBy = [ "local-fs.target" ];
+ }
+ ];
+ };
+
+ # The same system but with another time
+ with-mount-modified.configuration = {
+ systemd.mounts = [
+ {
+ description = "Testmount";
+ what = "tmpfs";
+ type = "tmpfs";
+ where = "/testmount";
+ options = "size=10M";
+ wantedBy = [ "local-fs.target" ];
+ }
+ ];
+ };
+
+ # A system with a path unit
+ with-path.configuration = {
+ systemd.paths.test-watch = {
+ wantedBy = [ "paths.target" ];
+ pathConfig.PathExists = "/testpath";
+ };
+ systemd.services.test-watch = {
+ serviceConfig = {
+ Type = "oneshot";
+ ExecStart = "${pkgs.coreutils}/bin/touch /testpath-modified";
+ };
+ };
+ };
+
+ # The same system but watching another file
+ with-path-modified.configuration = {
+ imports = [ config.specialisation.with-path.configuration ];
+ systemd.paths.test-watch.pathConfig.PathExists = lib.mkForce "/testpath2";
+ };
+
+ # A system with a slice
+ with-slice.configuration = {
+ systemd.slices.testslice.sliceConfig.MemoryMax = "1"; # don't allow memory allocation
+ systemd.services.testservice = {
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ ExecStart = "${pkgs.coreutils}/bin/true";
+ Slice = "testslice.slice";
+ };
+ };
+ };
+
+ # The same system but the slice allows to allocate memory
+ with-slice-non-crashing.configuration = {
+ imports = [ config.specialisation.with-slice.configuration ];
+ systemd.slices.testslice.sliceConfig.MemoryMax = lib.mkForce null;
+ };
+ };
};
other = { ... }: {
users.mutableUsers = true;
};
};
- testScript = {nodes, ...}: let
+ testScript = { nodes, ... }: let
originalSystem = nodes.machine.config.system.build.toplevel;
otherSystem = nodes.other.config.system.build.toplevel;
@@ -27,12 +236,182 @@ import ./make-test-python.nix ({ pkgs, ...} : {
set -o pipefail
exec env -i "$@" | tee /dev/stderr
'';
- in ''
+ in /* python */ ''
+ def switch_to_specialisation(name, action="test"):
+ out = machine.succeed(f"${originalSystem}/specialisation/{name}/bin/switch-to-configuration {action} 2>&1")
+ assert_lacks(out, "switch-to-configuration line") # Perl warnings
+ return out
+
+ def assert_contains(haystack, needle):
+ if needle not in haystack:
+ print("The haystack that will cause the following exception is:")
+ print("---")
+ print(haystack)
+ print("---")
+ raise Exception(f"Expected string '{needle}' was not found")
+
+ def assert_lacks(haystack, needle):
+ if needle in haystack:
+ print("The haystack that will cause the following exception is:")
+ print("---")
+ print(haystack, end="")
+ print("---")
+ raise Exception(f"Unexpected string '{needle}' was found")
+
+
machine.succeed(
"${stderrRunner} ${originalSystem}/bin/switch-to-configuration test"
)
machine.succeed(
"${stderrRunner} ${otherSystem}/bin/switch-to-configuration test"
)
+
+ with subtest("systemd sockets"):
+ machine.succeed("${originalSystem}/bin/switch-to-configuration test")
+
+ # Simple socket is created
+ out = switch_to_specialisation("simple-socket")
+ assert_lacks(out, "stopping the following units:")
+ # not checking for reload because dbus gets reloaded
+ assert_lacks(out, "restarting the following units:")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_contains(out, "the following new units were started: socket-activated.socket\n")
+ assert_lacks(out, "as well:")
+ machine.succeed("[ $(stat -c%a /run/test.sock) = 777 ]")
+
+ # Changing the socket restarts it
+ out = switch_to_specialisation("modified-socket")
+ assert_lacks(out, "stopping the following units:")
+ #assert_lacks(out, "reloading the following units:")
+ assert_contains(out, "restarting the following units: socket-activated.socket\n")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+ machine.succeed("[ $(stat -c%a /run/test.sock) = 666 ]") # change was applied
+
+ # The unit is properly activated when the socket is accessed
+ if machine.succeed("socat - UNIX-CONNECT:/run/test.sock") != "hello":
+ raise Exception("Socket was not properly activated")
+
+ # Changing the socket restarts it and ignores the active service
+ out = switch_to_specialisation("simple-socket")
+ assert_contains(out, "stopping the following units: socket-activated.service\n")
+ assert_lacks(out, "reloading the following units:")
+ assert_contains(out, "restarting the following units: socket-activated.socket\n")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+ machine.succeed("[ $(stat -c%a /run/test.sock) = 777 ]") # change was applied
+
+ # Changing the service does nothing when the service is not active
+ out = switch_to_specialisation("modified-service")
+ assert_lacks(out, "stopping the following units:")
+ assert_lacks(out, "reloading the following units:")
+ assert_lacks(out, "restarting the following units:")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+
+ # Activating the service and modifying it stops it but leaves the socket untouched
+ machine.succeed("socat - UNIX-CONNECT:/run/test.sock")
+ out = switch_to_specialisation("simple-socket")
+ assert_contains(out, "stopping the following units: socket-activated.service\n")
+ assert_lacks(out, "reloading the following units:")
+ assert_lacks(out, "restarting the following units:")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+
+ # Activating the service and both the service and the socket stops the service and restarts the socket
+ machine.succeed("socat - UNIX-CONNECT:/run/test.sock")
+ out = switch_to_specialisation("modified-service-and-socket")
+ assert_contains(out, "stopping the following units: socket-activated.service\n")
+ assert_lacks(out, "reloading the following units:")
+ assert_contains(out, "restarting the following units: socket-activated.socket\n")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+
+ with subtest("restart and reload by activation file"):
+ out = switch_to_specialisation("service-and-socket")
+ # Switch to a system where the example services get restarted
+ # by the activation script
+ out = switch_to_specialisation("restart-and-reload-by-activation-script")
+ assert_lacks(out, "stopping the following units:")
+ assert_contains(out, "stopping the following units as well: simple-service.service, socket-activated.service\n")
+ assert_contains(out, "reloading the following units: simple-reload-service.service\n")
+ assert_contains(out, "restarting the following units: simple-restart-service.service\n")
+ assert_contains(out, "\nstarting the following units: simple-service.service")
+
+ # The same, but in dry mode
+ switch_to_specialisation("service-and-socket")
+ out = switch_to_specialisation("restart-and-reload-by-activation-script", action="dry-activate")
+ assert_lacks(out, "would stop the following units:")
+ assert_contains(out, "would stop the following units as well: simple-service.service, socket-activated.service\n")
+ assert_contains(out, "would reload the following units: simple-reload-service.service\n")
+ assert_contains(out, "would restart the following units: simple-restart-service.service\n")
+ assert_contains(out, "\nwould start the following units: simple-service.service")
+
+ with subtest("mounts"):
+ switch_to_specialisation("with-mount")
+ out = machine.succeed("mount | grep 'on /testmount'")
+ assert_contains(out, "size=1024k")
+
+ out = switch_to_specialisation("with-mount-modified")
+ assert_lacks(out, "stopping the following units:")
+ assert_contains(out, "reloading the following units: testmount.mount\n")
+ assert_lacks(out, "restarting the following units:")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+ # It changed
+ out = machine.succeed("mount | grep 'on /testmount'")
+ assert_contains(out, "size=10240k")
+
+ with subtest("timers"):
+ switch_to_specialisation("with-timer")
+ out = machine.succeed("systemctl show test-timer.timer")
+ assert_contains(out, "OnCalendar=2014-03-25 02:59:56 UTC")
+
+ out = switch_to_specialisation("with-timer-modified")
+ assert_lacks(out, "stopping the following units:")
+ assert_lacks(out, "reloading the following units:")
+ assert_contains(out, "restarting the following units: test-timer.timer\n")
+ assert_lacks(out, "\nstarting the following units:")
+ assert_lacks(out, "the following new units were started:")
+ assert_lacks(out, "as well:")
+ # It changed
+ out = machine.succeed("systemctl show test-timer.timer")
+ assert_contains(out, "OnCalendar=Fri 2012-11-23 16:00:00")
+
+ with subtest("paths"):
+ switch_to_specialisation("with-path")
+ machine.fail("test -f /testpath-modified")
+
+ # touch the file, unit should be triggered
+ machine.succeed("touch /testpath")
+ machine.wait_until_succeeds("test -f /testpath-modified")
+
+ machine.succeed("rm /testpath /testpath-modified")
+ switch_to_specialisation("with-path-modified")
+
+ machine.succeed("touch /testpath")
+ machine.fail("test -f /testpath-modified")
+ machine.succeed("touch /testpath2")
+ machine.wait_until_succeeds("test -f /testpath-modified")
+
+ # This test ensures that changes to slice configuration get applied.
+ # We test this by having a slice that allows no memory allocation at
+ # all and starting a service within it. If the service crashes, the slice
+ # is applied and if we modify the slice to allow memory allocation, the
+ # service should successfully start.
+ with subtest("slices"):
+ machine.succeed("echo 0 > /proc/sys/vm/panic_on_oom") # allow OOMing
+ out = switch_to_specialisation("with-slice")
+ machine.fail("systemctl start testservice.service")
+ out = switch_to_specialisation("with-slice-non-crashing")
+ machine.succeed("systemctl start testservice.service")
+ machine.succeed("echo 1 > /proc/sys/vm/panic_on_oom") # disallow OOMing
+
'';
})
diff --git a/third_party/nixpkgs/pkgs/applications/audio/mimic/default.nix b/third_party/nixpkgs/pkgs/applications/audio/mimic/default.nix
index cd24bec303..870584d357 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/mimic/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/mimic/default.nix
@@ -7,9 +7,9 @@ stdenv.mkDerivation rec {
version = "1.3.0.1";
src = fetchFromGitHub {
- rev = version;
- repo = "mimic1";
owner = "MycroftAI";
+ repo = "mimic1";
+ rev = version;
sha256 = "1agwgby9ql8r3x5rd1rgx3xp9y4cdg4pi3kqlz3vanv9na8nf3id";
};
diff --git a/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix b/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
index 012315a7d7..d37cec15ff 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
@@ -14,16 +14,16 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "ncspot";
- version = "0.8.2";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "hrkfdn";
repo = "ncspot";
rev = "v${version}";
- sha256 = "1rs1jy7zzfgqzr64ld8whn0wlw8n7rk1svxx0xfxm3ynmgc7sd68";
+ sha256 = "07qqs5q64zaxl3b2091vjihqb35fm0136cm4zibrgpx21akmbvr2";
};
- cargoSha256 = "10g7gdi1iz751wa60vr4fs0cvfsgs3pfcp8pnywicl0vsdp25fmc";
+ cargoSha256 = "0sdbba32f56z2q7kha5fxw2f00hikbz9sf4zl4wfl2i9b13j7mj0";
cargoBuildFlags = [ "--no-default-features" "--features" "${lib.concatStringsSep "," features}" ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/pavucontrol/default.nix b/third_party/nixpkgs/pkgs/applications/audio/pavucontrol/default.nix
index c7f12a8df6..41e5eeb822 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/pavucontrol/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/pavucontrol/default.nix
@@ -1,26 +1,35 @@
-{ fetchurl, fetchpatch, lib, stdenv, pkg-config, intltool, libpulseaudio,
-gtkmm3 , libcanberra-gtk3, gnome, wrapGAppsHook }:
+{ fetchurl
+, fetchpatch
+, lib
+, stdenv
+, pkg-config
+, intltool
+, libpulseaudio
+, gtkmm3
+, libsigcxx
+, libcanberra-gtk3
+, json-glib
+, gnome
+, wrapGAppsHook
+}:
stdenv.mkDerivation rec {
pname = "pavucontrol";
- version = "4.0";
+ version = "5.0";
src = fetchurl {
url = "https://freedesktop.org/software/pulseaudio/${pname}/${pname}-${version}.tar.xz";
- sha256 = "1qhlkl3g8d7h72xjskii3g1l7la2cavwp69909pzmbi2jyn5pi4g";
+ sha256 = "sha256-zityw7XxpwrQ3xndgXUPlFW9IIcNHTo20gU2ry6PTno=";
};
- patches = [
- # Can be removed with the next version bump
- # https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/merge_requests/20
- (fetchpatch {
- name = "streamwidget-fix-drop-down-wayland.patch";
- url = "https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/commit/ae278b8643cf1089f66df18713c8154208d9a505.patch";
- sha256 = "066vhxjz6gmi2sp2n4pa1cdsxjnq6yml5js094g5n7ld34p84dpj";
- })];
-
- buildInputs = [ libpulseaudio gtkmm3 libcanberra-gtk3
- gnome.adwaita-icon-theme ];
+ buildInputs = [
+ libpulseaudio
+ gtkmm3
+ libsigcxx
+ libcanberra-gtk3
+ json-glib
+ gnome.adwaita-icon-theme
+ ];
nativeBuildInputs = [ pkg-config intltool wrapGAppsHook ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix b/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
index 74ed00dc5a..ffc2d72891 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/ptcollab/default.nix
@@ -13,13 +13,13 @@
mkDerivation rec {
pname = "ptcollab";
- version = "0.4.3";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "yuxshao";
repo = "ptcollab";
rev = "v${version}";
- sha256 = "sha256-bFFWPl7yaTwCKz7/f9Vk6mg0roUnig0dFERS4IE4R7g=";
+ sha256 = "sha256-sN3O8m+ib6Chb/RXTFbNWW6PnrolCHpmC/avRX93AH4=";
};
nativeBuildInputs = [ qmake pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/reaper/default.nix b/third_party/nixpkgs/pkgs/applications/audio/reaper/default.nix
index 773560c83c..a7063b9f3e 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/reaper/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/reaper/default.nix
@@ -17,12 +17,14 @@
stdenv.mkDerivation rec {
pname = "reaper";
- version = "6.29";
+ version = "6.38";
src = fetchurl {
- url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.targetPlatform.qemuArch}.tar.xz";
- hash = if stdenv.isx86_64 then "sha256-DOul6J2Y7szy4+Q4SeO0uG6PSuU+MELE7ky8W3mSpTQ="
- else "sha256-67iTi6bFlbQtyCjnPIjK8K/3aV+zaCsWBRCWmgYonM4=";
+ url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz";
+ hash = {
+ x86_64-linux = "sha256-K5EnrmzP8pyW9dR1fbMzkPzpS6aHm8JF1+m3afnH4rU=";
+ aarch64-linux = "sha256-6wNWDXjQNyfU2l9Xi9JtmAuoKtHuIY5cvNMjYkwh2Sk=";
+ }.${stdenv.hostPlatform.system};
};
nativeBuildInputs = [
@@ -76,6 +78,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.reaper.fm/";
license = licenses.unfree;
platforms = [ "x86_64-linux" "aarch64-linux" ];
- maintainers = with maintainers; [ jfrankenau ilian ];
+ maintainers = with maintainers; [ jfrankenau ilian orivej ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/audio/tonelib-gfx/default.nix b/third_party/nixpkgs/pkgs/applications/audio/tonelib-gfx/default.nix
index 00be093455..108f39925b 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/tonelib-gfx/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/tonelib-gfx/default.nix
@@ -1,65 +1,58 @@
-{ stdenv
-, dpkg
-, lib
-, autoPatchelfHook
+{ lib
+, stdenv
, fetchurl
-, gtk3
-, glib
-, desktop-file-utils
+, autoPatchelfHook
+, dpkg
, alsa-lib
-, libjack2
-, harfbuzz
-, fribidi
-, pango
, freetype
+, libglvnd
, curl
+, libXcursor
+, libXinerama
+, libXrandr
+, libXrender
+, libjack2
}:
stdenv.mkDerivation rec {
pname = "tonelib-gfx";
- version = "4.6.6";
+ version = "4.7.0";
src = fetchurl {
- url = "https://www.tonelib.net/download/0509/ToneLib-GFX-amd64.deb";
- sha256 = "sha256-wdX3SQSr0IZHsTUl+1Y0iETme3gTyryexhZ/9XHkGeo=";
+ url = "https://www.tonelib.net/download/0930/ToneLib-GFX-amd64.deb";
+ hash = "sha256-BcbX0dz94B4mj6QeQsnuZmwXAaXH+yJjnrUPgEYVqkU=";
};
+ nativeBuildInputs = [ autoPatchelfHook dpkg ];
+
buildInputs = [
- dpkg
- gtk3
- glib
- desktop-file-utils
+ stdenv.cc.cc.lib
alsa-lib
- libjack2
- harfbuzz
- fribidi
- pango
freetype
+ libglvnd
+ ] ++ runtimeDependencies;
+
+ runtimeDependencies = map lib.getLib [
+ curl
+ libXcursor
+ libXinerama
+ libXrandr
+ libXrender
+ libjack2
];
- nativeBuildInputs = [
- autoPatchelfHook
- ];
-
- unpackPhase = ''
- mkdir -p $TMP/ $out/
- dpkg -x $src $TMP
- '';
+ unpackCmd = "dpkg -x $curSrc source";
installPhase = ''
- cp -R $TMP/usr/* $out/
- mv $out/bin/ToneLib-GFX $out/bin/tonelib-gfx
- '';
-
- runtimeDependencies = [
- (lib.getLib curl)
- ];
+ mv usr $out
+ substituteInPlace $out/share/applications/ToneLib-GFX.desktop --replace /usr/ $out/
+ '';
meta = with lib; {
description = "Tonelib GFX is an amp and effects modeling software for electric guitar and bass.";
homepage = "https://tonelib.net/";
license = licenses.unfree;
- maintainers = with maintainers; [ dan4ik605743 ];
- platforms = platforms.linux;
+ maintainers = with maintainers; [ dan4ik605743 orivej ];
+ platforms = [ "x86_64-linux" ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/blockchains/electrs/default.nix b/third_party/nixpkgs/pkgs/applications/blockchains/electrs/default.nix
index ae06fe7ff2..d37ace7107 100644
--- a/third_party/nixpkgs/pkgs/applications/blockchains/electrs/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/blockchains/electrs/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "electrs";
- version = "0.9.0";
+ version = "0.9.1";
src = fetchFromGitHub {
owner = "romanz";
repo = pname;
rev = "v${version}";
- sha256 = "04dqbn2nfzllxfcn3v9vkfy2hn2syihijr575621r1pj65pcgf8y";
+ hash = "sha256-GDO8iGntQncvdJiDMBJk9GrGF9JToasbLRzju3S0TS0=";
};
- cargoSha256 = "0hl8q62lankrab8gq9vxmkn68drs0hw5pk0q6aiq8fxsb63dzsw0";
+ cargoHash = "sha256-Ms785+3Z4xEUW8FRRu1FIHk7HSWYLBThKlJDFjW6j0I=";
# needed for librocksdb-sys
nativeBuildInputs = [ llvmPackages.clang ];
diff --git a/third_party/nixpkgs/pkgs/applications/blockchains/electrs/update.sh b/third_party/nixpkgs/pkgs/applications/blockchains/electrs/update.sh
new file mode 100755
index 0000000000..3e4d90db59
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/blockchains/electrs/update.sh
@@ -0,0 +1,39 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -i bash -p coreutils curl jq git gnupg common-updater-scripts
+set -euo pipefail
+
+# Fetch latest release, GPG-verify the tag, update derivation
+
+scriptDir=$(cd "${BASH_SOURCE[0]%/*}" && pwd)
+nixpkgs=$(realpath "$scriptDir"/../../../..)
+
+oldVersion=$(nix-instantiate --eval -E "(import \"$nixpkgs\" { config = {}; overlays = []; }).electrs.version" | tr -d '"')
+version=$(curl -s --show-error "https://api.github.com/repos/romanz/electrs/releases/latest" | jq -r '.tag_name' | tail -c +2)
+
+if [[ $version == $oldVersion ]]; then
+ echo "Already at latest version $version"
+ exit 0
+fi
+echo "New version: $version"
+
+tmpdir=$(mktemp -d /tmp/electrs-verify-gpg.XXX)
+repo=$tmpdir/repo
+trap "rm -rf $tmpdir" EXIT
+
+git clone --depth 1 --branch v${version} -c advice.detachedHead=false https://github.com/romanz/electrs $repo
+
+export GNUPGHOME=$tmpdir
+echo
+echo "Fetching romanz's key"
+gpg --keyserver hkps://keys.openpgp.org --recv-keys 15c8c3574ae4f1e25f3f35c587cae5fa46917cbb 2> /dev/null
+echo
+echo "Verifying commit"
+git -C $repo verify-tag v${version}
+
+rm -rf $repo/.git
+hash=$(nix hash path $repo)
+
+(cd "$nixpkgs" && update-source-version electrs "$version" "$hash")
+sed -i 's|cargoHash = .*|cargoHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";|' "$scriptDir/default.nix"
+echo
+echo "electrs: $oldVersion -> $version"
diff --git a/third_party/nixpkgs/pkgs/applications/blockchains/wasabiwallet/default.nix b/third_party/nixpkgs/pkgs/applications/blockchains/wasabiwallet/default.nix
index 2fe128f1d2..0b90fc10bb 100644
--- a/third_party/nixpkgs/pkgs/applications/blockchains/wasabiwallet/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/blockchains/wasabiwallet/default.nix
@@ -2,7 +2,7 @@
, fetchurl
, makeDesktopItem
, curl
-, dotnet-netcore
+, dotnetCorePackages
, fontconfig
, krb5
, openssl
@@ -11,9 +11,10 @@
}:
let
+ dotnet-runtime = dotnetCorePackages.runtime_5_0;
libPath = lib.makeLibraryPath [
curl
- dotnet-netcore
+ dotnet-runtime
fontconfig.lib
krb5
openssl
diff --git a/third_party/nixpkgs/pkgs/applications/editors/android-studio/common.nix b/third_party/nixpkgs/pkgs/applications/editors/android-studio/common.nix
index 8062d26b28..1393ae9430 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/android-studio/common.nix
+++ b/third_party/nixpkgs/pkgs/applications/editors/android-studio/common.nix
@@ -214,9 +214,9 @@ in runCommand
# source-code itself).
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; rec {
- stable = [ meutraa ];
- beta = [ meutraa ];
- canary = [ meutraa ];
+ stable = [ meutraa fabianhjr ];
+ beta = [ meutraa fabianhjr ];
+ canary = [ meutraa fabianhjr ];
dev = canary;
}."${channel}";
};
diff --git a/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix b/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
index 9cee648550..af4fc5c997 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/editors/android-studio/default.nix
@@ -9,8 +9,8 @@ let
inherit buildFHSUserEnv;
};
stableVersion = {
- version = "2020.3.1.24"; # "Android Studio Arctic Fox (2020.3.1)"
- sha256Hash = "0k8jcq8vpjayvwm9wqcrjhnp7dly0h4bb8nxspck5zmi8q2ar67l";
+ version = "2020.3.1.25"; # "Android Studio Arctic Fox (2020.3.1)"
+ sha256Hash = "10gpwb130bzp6a9g958cjqcb2gsm0vdgm08nm5xy45xdh54nxjfg";
};
betaVersion = {
version = "2021.1.1.14"; # "Android Studio Bumblebee (2021.1.1) Beta 1"
diff --git a/third_party/nixpkgs/pkgs/applications/editors/jetbrains/default.nix b/third_party/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
index db2d36e338..05ee956e46 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/editors/jetbrains/default.nix
@@ -242,12 +242,12 @@ in
clion = buildClion rec {
name = "clion-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "C/C++ IDE. New. Intelligent. Cross-platform";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/cpp/CLion-${version}.tar.gz";
- sha256 = "0knl0ca15cj0nggyfhd7s0szxr2vp7xvvp3nna3mplssfn59zf9d"; /* updated by script */
+ sha256 = "09qbzkxyk435s4n04s12ncjyri024wj9pwz8wgjjsswpfa69dhr5"; /* updated by script */
};
wmClass = "jetbrains-clion";
update-channel = "CLion RELEASE"; # channel's id as in http://www.jetbrains.com/updates/updates.xml
@@ -255,12 +255,12 @@ in
datagrip = buildDataGrip rec {
name = "datagrip-${version}";
- version = "2021.2.2"; /* updated by script */
+ version = "2021.2.4"; /* updated by script */
description = "Your Swiss Army Knife for Databases and SQL";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/datagrip/${name}.tar.gz";
- sha256 = "18dammsvd43x8cx0plzwgankmzfv7j79z0nsdagd540v99c2r2v3"; /* updated by script */
+ sha256 = "1vj9ihzw07bh30ngy8mj027ljq9zzd904k61f8jbfpw75vknh8f6"; /* updated by script */
};
wmClass = "jetbrains-datagrip";
update-channel = "DataGrip RELEASE";
@@ -268,12 +268,12 @@ in
goland = buildGoland rec {
name = "goland-${version}";
- version = "2021.2.2"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "Up and Coming Go IDE";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/go/${name}.tar.gz";
- sha256 = "0ayqvyd24klafm09kls4fdp2acqsvh0zhm4wsrmrshlpmdqd5vjk"; /* updated by script */
+ sha256 = "1n0yrk05xv4pard82b6z349ksiw8k75s9525pnpa2ny1ay1klhdg"; /* updated by script */
};
wmClass = "jetbrains-goland";
update-channel = "GoLand RELEASE";
@@ -281,12 +281,12 @@ in
idea-community = buildIdea rec {
name = "idea-community-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
license = lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
- sha256 = "1af43c51ryvqc7c9r3kz2266j0nvz50xw1vhfjbd74c3ycj8a1zz"; /* updated by script */
+ sha256 = "166rhssyizn40rlar7ym7gkwz2aawp58qqvrs60w3cwwvjvb0bjq"; /* updated by script */
};
wmClass = "jetbrains-idea-ce";
update-channel = "IntelliJ IDEA RELEASE";
@@ -294,12 +294,12 @@ in
idea-ultimate = buildIdea rec {
name = "idea-ultimate-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIU-${version}-no-jbr.tar.gz";
- sha256 = "1257a9d9h3ybdsnm74jmgzp1rfi1629gv9kr0w2nhmxj7ghhbx4w"; /* updated by script */
+ sha256 = "1d0kk2yydrbzvdy6dy9jqr182panidmbf2hy80gvi5ph2r5rv1qd"; /* updated by script */
};
wmClass = "jetbrains-idea";
update-channel = "IntelliJ IDEA RELEASE";
@@ -307,13 +307,13 @@ in
mps = buildMps rec {
name = "mps-${version}";
- version = "2021.1.3"; /* updated by script */
- versionMajorMinor = "2021.1"; /* updated by script */
+ version = "2021.2.1"; /* updated by script */
+ versionMajorMinor = "2021.2"; /* updated by script */
description = "Create your own domain-specific language";
license = lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/mps/${versionMajorMinor}/MPS-${version}.tar.gz";
- sha256 = "0w1nchaa2d3z3mdp43mvifnbibl1ribyc98dm7grnwvrqk72pabf"; /* updated by script */
+ sha256 = "1yawjc5xwga1mmlsl3068ml532941mq08i9ji3dhj1nwdkyav2jz"; /* updated by script */
};
wmClass = "jetbrains-mps";
update-channel = "MPS RELEASE";
@@ -321,12 +321,12 @@ in
phpstorm = buildPhpStorm rec {
name = "phpstorm-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "Professional IDE for Web and PHP developers";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz";
- sha256 = "1iqnq38d71wbl1iqhqr5as1802s53m3220vq4g42mdjgdj296bdk"; /* updated by script */
+ sha256 = "1avcm4fnkn0jkw85s505yz5kjbxzk038463sjdsca04pv5yhsdp0"; /* updated by script */
};
wmClass = "jetbrains-phpstorm";
update-channel = "PhpStorm RELEASE";
@@ -334,12 +334,12 @@ in
pycharm-community = buildPycharm rec {
name = "pycharm-community-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.2"; /* updated by script */
description = "PyCharm Community Edition";
license = lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/python/${name}.tar.gz";
- sha256 = "1z59yvk3wrqn0c9581vvv62wxf4fyybha426ipyqml8c405z27y4"; /* updated by script */
+ sha256 = "0s9kk3n5ac6lvqi2yw9gvvm45865jchiwyrs8pq2dgdkgaligrjv"; /* updated by script */
};
wmClass = "jetbrains-pycharm-ce";
update-channel = "PyCharm RELEASE";
@@ -347,12 +347,12 @@ in
pycharm-professional = buildPycharm rec {
name = "pycharm-professional-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.2"; /* updated by script */
description = "PyCharm Professional Edition";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/python/${name}.tar.gz";
- sha256 = "0sh9kdr53dhhq171p9lmsvci3qzlds4vzyqx12mzfvfs7svri1w2"; /* updated by script */
+ sha256 = "0mgmmf926n3ipr8fxn6f9hsa5vkil8yrw5qlixi8nwnx7chmkp56"; /* updated by script */
};
wmClass = "jetbrains-pycharm";
update-channel = "PyCharm RELEASE";
@@ -360,12 +360,12 @@ in
rider = buildRider rec {
name = "rider-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.2"; /* updated by script */
description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/rider/JetBrains.Rider-${version}.tar.gz";
- sha256 = "1b5ih6q8kyds8px7gldfz1m9ap3kk27yswwxy1735c83094l2nlm"; /* updated by script */
+ sha256 = "17xx8mz3dr5iqlr0lsiy8a6cxz3wp5vg8z955cdv0hf8b5rncqfa"; /* updated by script */
};
wmClass = "jetbrains-rider";
update-channel = "Rider RELEASE";
@@ -373,12 +373,12 @@ in
ruby-mine = buildRubyMine rec {
name = "ruby-mine-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.3"; /* updated by script */
description = "The Most Intelligent Ruby and Rails IDE";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz";
- sha256 = "09blnm6han2rmdvjbr1va081zndzvjr1i0m3njaiwcb9rf2axm32"; /* updated by script */
+ sha256 = "0bbq5ya1dxrgaqqqsc4in4rgv7v292hww3bb0vpzwz6dmc2jly1i"; /* updated by script */
};
wmClass = "jetbrains-rubymine";
update-channel = "RubyMine RELEASE";
@@ -386,12 +386,12 @@ in
webstorm = buildWebStorm rec {
name = "webstorm-${version}";
- version = "2021.2.1"; /* updated by script */
+ version = "2021.2.2"; /* updated by script */
description = "Professional IDE for Web and JavaScript development";
license = lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz";
- sha256 = "12i9f5sw02gcgviflfs6gwmnxvzhgmm4v4447am0syl4nq8nyv1s"; /* updated by script */
+ sha256 = "1a3vlqza9nbc4a2qxrzdckmq003zx1db9dy7wx462amc8sbh6v92"; /* updated by script */
};
wmClass = "jetbrains-webstorm";
update-channel = "WebStorm RELEASE";
diff --git a/third_party/nixpkgs/pkgs/applications/editors/rstudio/default.nix b/third_party/nixpkgs/pkgs/applications/editors/rstudio/default.nix
index d338a5b961..3ccdd70c45 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/rstudio/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/editors/rstudio/default.nix
@@ -42,7 +42,7 @@ let
src = fetchFromGitHub {
owner = "rstudio";
repo = "rstudio";
- rev = version;
+ rev = "v${version}";
sha256 = "sha256-9c1bNsf8kJjpcZ2cMV/pPNtXQkFOntX29a1cdnXpllE=";
};
diff --git a/third_party/nixpkgs/pkgs/applications/editors/vscode/vscode.nix b/third_party/nixpkgs/pkgs/applications/editors/vscode/vscode.nix
index b5ba0c15ff..d08f80fda6 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/vscode/vscode.nix
+++ b/third_party/nixpkgs/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 = "069jdwqs9z2z95mjs9nx58rp1516dyyqn5bc0vgr7xvlbis97lq0";
- x86_64-darwin = "1bd32dkpyfgknxqn76jcwpa47rac9q14glbf5sb1rh9rfav0m1m8";
- aarch64-linux = "1axxnys3pd2qrvj6mqpa5cih44b4dbpgi8mvn616d8d45jgdnc1r";
- aarch64-darwin = "0bdp0k20lfwpsl1a3dz6c97s0b5bp3rhb66jwgbyyc16zrz79r1z";
- armv7l-linux = "077w5hvc4brb56zs0w37nr4a8vlcij5z3yrv3rz16p58nnkj56hs";
+ x86_64-linux = "1yfaf9qdaf6njvj8kilmivyl0nnhdvd9hbzpf8hv3kw5rfpdvy89";
+ x86_64-darwin = "10rx5aif61xipf5lcjzkidz9dhbm5gc2wf87c2j456nixaxbx0b4";
+ aarch64-linux = "13h4ffdm9y9p3jnqcjvapykbm73bkjy5jaqwhsi293f9r7jfp9rf";
+ aarch64-darwin = "07nmrxc25rfp5ibarhg3c14ksk2ymqmsnc55hicvvhw93g2qczby";
+ armv7l-linux = "1gz1mmw2vp986l9sm7rd6hypxs70sz63sbmzyxwfqpvj973dl23q";
}.${system};
in
callPackage ./generic.nix rec {
# Please backport all compatible updates to the stable release.
# This is important for the extension ecosystem.
- version = "1.61.1";
+ version = "1.61.2";
pname = "vscode";
executableName = "code" + lib.optionalString isInsiders "-insiders";
diff --git a/third_party/nixpkgs/pkgs/applications/editors/vscode/vscodium.nix b/third_party/nixpkgs/pkgs/applications/editors/vscode/vscodium.nix
index 7f8a0aba0a..f014bf1fda 100644
--- a/third_party/nixpkgs/pkgs/applications/editors/vscode/vscodium.nix
+++ b/third_party/nixpkgs/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 = "0ic7h5aq1lyplk01bydqwrvz40h59sf0n0q4gxj844k4qidy14md";
- x86_64-darwin = "15s3vj7740ksb82gdjqpxw6cyd45ymdpacamkqk800929cv715qs";
- aarch64-linux = "0n3bxggfzlr1cqarq861yfqka3qfgpwvk8j22l7dv4vki06f8jzy";
- armv7l-linux = "0jksfdals8xf3vh5hqrd40pj5qn8byjrakjnrv926qznxjj152bn";
+ x86_64-linux = "1q260kjhyx8djl82275ii63z1mzypsz7rkz3pj1n2wjkwsnw276x";
+ x86_64-darwin = "1scx155rm8j6dwn0i31b6ajsdxcn1n24p3k6dx248w0zyiwd5wm1";
+ aarch64-linux = "1j788a0p767i65ying9pfg6rss8l7g76n2323dnmj12bhxs6cqd1";
+ armv7l-linux = "1yfwmfxpilfv2h3pp698pg4wr6dnyzwg0r266xiwsw7z38jh54fk";
}.${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.61.1";
+ version = "1.61.2";
pname = "vscodium";
executableName = "codium";
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/epick/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/epick/default.nix
new file mode 100644
index 0000000000..f70f072aea
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/graphics/epick/default.nix
@@ -0,0 +1,56 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, stdenv
+, python3
+, libGL
+, libX11
+, libXcursor
+, libXi
+, libXrandr
+, libxcb
+, libxkbcommon
+, AppKit
+, IOKit
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "epick";
+ version = "0.5.1";
+
+ src = fetchFromGitHub {
+ owner = "vv9k";
+ repo = pname;
+ rev = version;
+ sha256 = "0l7m45bqx62nrwi0r4pdwxcq37s7h3nnawk9nq2zpvl9wcgnx3gc";
+ };
+
+ cargoSha256 = "sha256-LERV3+zwt5oVfyueGfxM7HsOha4cuWTkPyvPQwHSZqo=";
+
+ nativeBuildInputs = lib.optional stdenv.isLinux python3;
+
+ buildInputs = lib.optionals stdenv.isLinux [
+ libGL
+ libX11
+ libXcursor
+ libXi
+ libXrandr
+ libxcb
+ libxkbcommon
+ ] ++ lib.optionals stdenv.isDarwin [
+ AppKit
+ IOKit
+ ];
+
+ postFixup = lib.optionalString stdenv.isLinux ''
+ patchelf --set-rpath ${lib.makeLibraryPath buildInputs} $out/bin/epick
+ '';
+
+ meta = with lib; {
+ description = "Simple color picker that lets the user create harmonic palettes with ease";
+ homepage = "https://github.com/vv9k/epick";
+ changelog = "https://github.com/vv9k/epick/blob/${version}/CHANGELOG.md";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/image-roll/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/image-roll/default.nix
new file mode 100644
index 0000000000..eb5761fbd5
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/graphics/image-roll/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, glib
+, pkg-config
+, wrapGAppsHook
+, gtk3
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "image-roll";
+ version = "1.3.1";
+
+ src = fetchFromGitHub {
+ owner = "weclaw1";
+ repo = pname;
+ rev = version;
+ sha256 = "007jzmrn4cnqbi6fy5lxanbwa4pc72fbcv9irk3pfd0wspp05s8j";
+ };
+
+ cargoSha256 = "sha256-dRRBfdGTXtoNbp7OWqOdNECXHCpj0ipkCOvcdekW+G4=";
+
+ nativeBuildInputs = [ glib pkg-config wrapGAppsHook ];
+
+ buildInputs = [ gtk3 ];
+
+ meta = with lib; {
+ description = "Simple and fast GTK image viewer with basic image manipulation tools";
+ homepage = "https://github.com/weclaw1/image-roll";
+ license = licenses.mit;
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/ipe/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/ipe/default.nix
index 72c79d7dc5..c454ed0422 100644
--- a/third_party/nixpkgs/pkgs/applications/graphics/ipe/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/graphics/ipe/default.nix
@@ -1,7 +1,9 @@
{ lib
, mkDerivation
+, makeDesktopItem
, fetchurl
, pkg-config
+, copyDesktopItems
, cairo
, freetype
, ghostscript
@@ -26,7 +28,7 @@ mkDerivation rec {
sourceRoot = "${pname}-${version}/src";
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config copyDesktopItems ];
buildInputs = [
cairo
@@ -42,19 +44,39 @@ mkDerivation rec {
zlib
];
- IPEPREFIX=placeholder "out";
- URWFONTDIR="${texlive}/texmf-dist/fonts/type1/urw/";
+ IPEPREFIX = placeholder "out";
+ URWFONTDIR = "${texlive}/texmf-dist/fonts/type1/urw/";
LUA_PACKAGE = "lua";
- qtWrapperArgs = [ "--prefix PATH : ${texlive}/bin" ];
+ qtWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ texlive ]}" ];
enableParallelBuilding = true;
- # TODO: make .desktop entry
+ desktopItems = [
+ (makeDesktopItem {
+ name = pname;
+ desktopName = "Ipe";
+ genericName = "Drawing editor";
+ comment = "A drawing editor for creating figures in PDF format";
+ exec = "ipe";
+ icon = "ipe";
+ mimeType = "text/xml;application/pdf";
+ categories = "Graphics;Qt;";
+ extraDesktopEntries = {
+ StartupWMClass = "ipe";
+ StartupNotify = "true";
+ };
+ })
+ ];
+
+ postInstall = ''
+ mkdir -p $out/share/icons/hicolor/128x128/apps
+ ln -s $out/share/ipe/${version}/icons/icon_128x128.png $out/share/icons/hicolor/128x128/apps/ipe.png
+ '';
meta = with lib; {
description = "An editor for drawing figures";
- homepage = "http://ipe.otfried.org"; # https not available
+ homepage = "http://ipe.otfried.org"; # https not available
license = licenses.gpl3Plus;
longDescription = ''
Ipe is an extensible drawing editor for creating figures in PDF and Postscript format.
diff --git a/third_party/nixpkgs/pkgs/applications/misc/1password/default.nix b/third_party/nixpkgs/pkgs/applications/misc/1password/default.nix
index 8f4ea3df18..9e9e5c28e5 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/1password/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/1password/default.nix
@@ -2,24 +2,27 @@
stdenv.mkDerivation rec {
pname = "1password";
- version = "1.11.2";
+ version = "1.12.2";
src =
- if stdenv.isLinux then fetchzip {
- url = {
- "i686-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
- "x86_64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
- "aarch64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_arm_v${version}.zip";
- }.${stdenv.hostPlatform.system};
- sha256 = {
- "i686-linux" = "0rh5bakj9qd43cf6wj5v46a3h98kcwqyc0f1yw72wvcacvjycyjz";
- "x86_64-linux" = "00nf0cb8cxk1pvzr1wq778wvikzrlzy38r3rzkq44whdpdj50jzx";
- "aarch64-linux" = "1gv282z49bj3ln5na4wb1z5455a64cyd54fp5i96k8shaxd0apxf";
- }.${stdenv.hostPlatform.system};
- stripRoot = false;
- } else fetchurl {
- url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_apple_universal_v${version}.pkg";
- sha256 = "1pqdjr6d23j9fpwgahb0s1ni1bpjv9jajs1hapgq5kdrww2w7nhm";
- };
+ if stdenv.isLinux then
+ fetchzip
+ {
+ url = {
+ "i686-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
+ "x86_64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
+ "aarch64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_arm_v${version}.zip";
+ }.${stdenv.hostPlatform.system};
+ sha256 = {
+ "i686-linux" = "tCm/vDBASPN9FBSVRJ6BrFc7hdtZWPEAgvokJhjazPg=";
+ "x86_64-linux" = "3VkVMuTAfeEowkguJi2fd1kG7GwO1VN5GBPgNaH3Zv4=";
+ "aarch64-linux" = "vWoA/0ZfdwVniHmxC4nH1QIc6bjdb00+SwlkIWc9BPs=";
+ }.${stdenv.hostPlatform.system};
+ stripRoot = false;
+ } else
+ fetchurl {
+ url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_apple_universal_v${version}.pkg";
+ sha256 = "xG/6YZdkJxr5Py90rkIyG4mK40yFTmNSfih9jO2uF+4=";
+ };
buildInputs = lib.optionals stdenv.isDarwin [ xar cpio ];
@@ -43,11 +46,11 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
- description = "1Password command-line tool";
- homepage = "https://support.1password.com/command-line/";
+ description = "1Password command-line tool";
+ homepage = "https://support.1password.com/command-line/";
downloadPage = "https://app-updates.agilebits.com/product_history/CLI";
- maintainers = with maintainers; [ joelburget marsam ];
- license = licenses.unfree;
- platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
+ maintainers = with maintainers; [ joelburget marsam ];
+ license = licenses.unfree;
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/misc/authy/default.nix b/third_party/nixpkgs/pkgs/applications/misc/authy/default.nix
index f242794bff..70a5075ae6 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/authy/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/authy/default.nix
@@ -11,8 +11,8 @@ in
stdenv.mkDerivation rec {
pname = "authy";
- version = "1.8.4";
- rev = "6";
+ version = "1.9.0";
+ rev = "7";
buildInputs = [
alsa-lib
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://api.snapcraft.io/api/v1/snaps/download/H8ZpNgIoPyvmkgxOWw5MSzsXK1wRZiHn_${rev}.snap";
- sha256 = "07h4mgp229nlvw9ifiiyzph26aa61w4x4f1xya8vw580blrk1ph9";
+ sha256 = "10az47cc3lgsdi0ixmmna08nqf9xm7gsl1ph00wfwrxzsi05ygx3";
};
nativeBuildInputs = [ autoPatchelfHook makeWrapper squashfsTools ];
diff --git a/third_party/nixpkgs/pkgs/applications/misc/calibre/default.nix b/third_party/nixpkgs/pkgs/applications/misc/calibre/default.nix
index 0153d30a52..e11efa8f8d 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/calibre/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/calibre/default.nix
@@ -1,6 +1,7 @@
{ lib
, mkDerivation
, fetchurl
+, fetchpatch
, poppler_utils
, pkg-config
, libpng
@@ -26,18 +27,21 @@
mkDerivation rec {
pname = "calibre";
- version = "5.24.0";
+ version = "5.29.0";
src = fetchurl {
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
- hash = "sha256:18dr577nv7ijw3ar6mrk2xrc54mlrqkaj5jrc6s5sirl0710fdfg";
+ sha256 = "sha256-9ymHEpTHDUM3NAGoeSETzKRLKgJLRY4eEli6N5lbZug=";
};
+ # https://sources.debian.org/patches/calibre/5.29.0+dfsg-1
patches = [
- # Plugin installation (very insecure) disabled (from Debian)
- ./disable_plugins.patch
- # Automatic version update disabled by default (from Debian)
- ./no_updates_dialog.patch
+ # allow for plugin update check, but no calibre version check
+ (fetchpatch {
+ name = "0001_only_plugin_update.patch";
+ url = "https://sources.debian.org/data/main/c/calibre/5.29.0%2Bdfsg-1/debian/patches/0001-only-plugin-update.patch";
+ sha256 = "sha256-aGT8rJ/eQKAkmyHBWdY0ouZuWvDwtLVJU5xY6d3hY3k=";
+ })
]
++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
diff --git a/third_party/nixpkgs/pkgs/applications/misc/calibre/disable_plugins.patch b/third_party/nixpkgs/pkgs/applications/misc/calibre/disable_plugins.patch
deleted file mode 100644
index 9ef1dd0425..0000000000
--- a/third_party/nixpkgs/pkgs/applications/misc/calibre/disable_plugins.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Disable plugin dialog. It uses a totally non-authenticated and non-trusted way of installing arbitrary code.
-Author: Martin Pitt
-Bug-Debian: http://bugs.debian.org/640026
-
-Index: calibre-0.8.29+dfsg/src/calibre/gui2/actions/preferences.py
-===================================================================
---- calibre-0.8.29+dfsg.orig/src/calibre/gui2/actions/preferences.py 2011-12-16 05:49:14.000000000 +0100
-+++ calibre-0.8.29+dfsg/src/calibre/gui2/actions/preferences.py 2011-12-20 19:29:04.798468930 +0100
-@@ -28,8 +28,6 @@
- pm.addAction(QIcon(I('config.png')), _('Preferences'), self.do_config)
- cm('welcome wizard', _('Run welcome wizard'),
- icon='wizard.png', triggered=self.gui.run_wizard)
-- cm('plugin updater', _('Get plugins to enhance calibre'),
-- icon='plugins/plugin_updater.png', triggered=self.get_plugins)
- if not DEBUG:
- pm.addSeparator()
- cm('restart', _('Restart in debug mode'), icon='debug.png',
diff --git a/third_party/nixpkgs/pkgs/applications/misc/calibre/no_updates_dialog.patch b/third_party/nixpkgs/pkgs/applications/misc/calibre/no_updates_dialog.patch
deleted file mode 100644
index faaaf2c199..0000000000
--- a/third_party/nixpkgs/pkgs/applications/misc/calibre/no_updates_dialog.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -burN calibre-2.9.0.orig/src/calibre/gui2/main.py calibre-2.9.0/src/calibre/gui2/main.py
---- calibre-2.9.0.orig/src/calibre/gui2/main.py 2014-11-09 20:09:54.081231882 +0800
-+++ calibre-2.9.0/src/calibre/gui2/main.py 2014-11-09 20:15:48.193033844 +0800
-@@ -37,8 +37,9 @@
- help=_('Start minimized to system tray.'))
- parser.add_option('-v', '--verbose', default=0, action='count',
- help=_('Ignored, do not use. Present only for legacy reasons'))
-- parser.add_option('--no-update-check', default=False, action='store_true',
-- help=_('Do not check for updates'))
-+ parser.add_option('--update-check', dest='no_update_check', default=True,
-+ action='store_false',
-+ help=_('Check for updates'))
- parser.add_option('--ignore-plugins', default=False, action='store_true',
- help=_('Ignore custom plugins, useful if you installed a plugin'
- ' that is preventing calibre from starting'))
diff --git a/third_party/nixpkgs/pkgs/applications/misc/dbeaver/default.nix b/third_party/nixpkgs/pkgs/applications/misc/dbeaver/default.nix
index 0e501135a9..1fec32d9f7 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/dbeaver/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/dbeaver/default.nix
@@ -18,13 +18,13 @@
stdenv.mkDerivation rec {
pname = "dbeaver";
- version = "21.2.2"; # When updating also update fetchedMavenDeps.sha256
+ version = "21.2.3"; # When updating also update fetchedMavenDeps.sha256
src = fetchFromGitHub {
owner = "dbeaver";
repo = "dbeaver";
rev = version;
- sha256 = "6FQd7UGX19Ez/updybia/tzl+9GYyPPzPGFsV67Enq0=";
+ sha256 = "0xu/uMMloCUuhKs392kn6qJzlobDNuvwlHGdS/gGAB8=";
};
fetchedMavenDeps = stdenv.mkDerivation {
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
dontFixup = true;
outputHashAlgo = "sha256";
outputHashMode = "recursive";
- outputHash = "VHOIK6sOAP+O9HicUiE2avLcppRzocPUf1XIcyuGw30=";
+ outputHash = "7Sm1hAoi5xc4MLONOD8ySLLkpao0qmlMRRva/8zR210=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/misc/fuzzel/default.nix b/third_party/nixpkgs/pkgs/applications/misc/fuzzel/default.nix
index e43304c5bc..e099414c0c 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/fuzzel/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/fuzzel/default.nix
@@ -13,29 +13,24 @@
, tllist
, fcft
, enableCairo ? true
-, enablePNG ? true
-, enableSVG ? true
+, withPNGBackend ? "libpng"
+, withSVGBackend ? "librsvg"
# Optional dependencies
, cairo
, librsvg
, libpng
}:
-let
- # Courtesy of sternenseemann and FRidh, commit c9a7fdfcfb420be8e0179214d0d91a34f5974c54
- mesonFeatureFlag = opt: b: "-D${opt}=${if b then "enabled" else "disabled"}";
-in
-
stdenv.mkDerivation rec {
pname = "fuzzel";
- version = "1.6.1";
+ version = "1.6.4";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fuzzel";
rev = version;
- sha256 = "sha256-JW5sAlTprSRIdFbmSaUreGtNccERgQMGEW+WCSscYQk=";
+ sha256 = "sha256-wl3dO6EwLXWf0XtAIml1NlNRIvpIQJuq1pxLmo/pAUE=";
};
nativeBuildInputs = [
@@ -54,15 +49,15 @@ stdenv.mkDerivation rec {
tllist
fcft
] ++ lib.optional enableCairo cairo
- ++ lib.optional enablePNG libpng
- ++ lib.optional enableSVG librsvg;
+ ++ lib.optional (withPNGBackend == "libpng") libpng
+ ++ lib.optional (withSVGBackend == "librsvg") librsvg;
mesonBuildType = "release";
mesonFlags = [
- (mesonFeatureFlag "enable-cairo" enableCairo)
- (mesonFeatureFlag "enable-png" enablePNG)
- (mesonFeatureFlag "enable-svg" enableSVG)
+ "-Denable-cairo=${if enableCairo then "enabled" else "disabled"}"
+ "-Dpng-backend=${withPNGBackend}"
+ "-Dsvg-backend=${withSVGBackend}"
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix b/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
index 949eb48f39..7e34ec0a36 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
@@ -1,12 +1,12 @@
-{ lib, stdenv, fetchurl, appimageTools, makeWrapper, electron }:
+{ lib, stdenv, fetchurl, appimageTools, makeWrapper, electron_13 }:
stdenv.mkDerivation rec {
pname = "logseq";
- version = "0.3.5";
+ version = "0.4.2";
src = fetchurl {
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
- sha256 = "ruJALAI0YQNwG8An5VzoJX06Qu/pXZ9zsrPZ7EH+5Pk=";
+ sha256 = "BEDScQtGfkp74Gx3RKK8ItNQ9JD8AJkl1zdS/gZqyXk=";
name = "${pname}-${version}.AppImage";
};
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
'';
postFixup = ''
- makeWrapper ${electron}/bin/electron $out/bin/${pname} \
+ makeWrapper ${electron_13}/bin/electron $out/bin/${pname} \
--add-flags $out/share/${pname}/resources/app
'';
diff --git a/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix b/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
index 2d70daa94e..fed9d245c1 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
@@ -15,6 +15,11 @@
, webkitgtk
, wrapGAppsHook
+ # check inputs
+, xvfb-run
+, nose
+, flake8
+
# python dependencies
, dbus-python
, distro
@@ -46,7 +51,7 @@
let
# See lutris/util/linux.py
- binPath = lib.makeBinPath [
+ requiredTools = [
xrandr
pciutils
psmisc
@@ -64,6 +69,8 @@ let
xorg.xkbcomp
];
+ binPath = lib.makeBinPath requiredTools;
+
gstDeps = with gst_all_1; [
gst-libav
gst-plugins-bad
@@ -76,13 +83,13 @@ let
in
buildPythonApplication rec {
pname = "lutris-original";
- version = "0.5.8.4";
+ version = "0.5.9.1";
src = fetchFromGitHub {
owner = "lutris";
repo = "lutris";
rev = "v${version}";
- sha256 = "sha256-5ivXIgDyM9PRvuUhPFPgziXDvggcL+p65kI2yOaiS1M=";
+ sha256 = "sha256-ykPJneCKbFKv0x/EDo9PkRb1LkMeFeYzTDmvE3ShNe0=";
};
nativeBuildInputs = [ wrapGAppsHook ];
@@ -111,6 +118,20 @@ buildPythonApplication rec {
python_magic
];
+ checkInputs = [ xvfb-run nose flake8 ] ++ requiredTools;
+ preCheck = "export HOME=$PWD";
+ checkPhase = ''
+ runHook preCheck
+ xvfb-run -s '-screen 0 800x600x24' make test
+ runHook postCheck
+ '';
+
+ # unhardcodes xrandr and fixes nosetests
+ # upstream in progress: https://github.com/lutris/lutris/pull/3754
+ patches = [
+ ./fixes.patch
+ ];
+
# avoid double wrapping
dontWrapGApps = true;
makeWrapperArgs = [
@@ -121,8 +142,6 @@ buildPythonApplication rec {
# see https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
- preCheck = "export HOME=$PWD";
-
meta = with lib; {
homepage = "https://lutris.net";
description = "Open Source gaming platform for GNU/Linux";
diff --git a/third_party/nixpkgs/pkgs/applications/misc/lutris/fixes.patch b/third_party/nixpkgs/pkgs/applications/misc/lutris/fixes.patch
new file mode 100644
index 0000000000..42482453f6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/misc/lutris/fixes.patch
@@ -0,0 +1,67 @@
+diff --git a/Makefile b/Makefile
+index 821a9500..75affa77 100644
+--- a/Makefile
++++ b/Makefile
+@@ -25,12 +25,12 @@ release: build-source upload upload-ppa
+
+ test:
+ rm tests/fixtures/pga.db -f
+- nosetests3
++ nosetests
+
+ cover:
+ rm tests/fixtures/pga.db -f
+ rm tests/coverage/ -rf
+- nosetests3 --with-coverage --cover-package=lutris --cover-html --cover-html-dir=tests/coverage
++ nosetests --with-coverage --cover-package=lutris --cover-html --cover-html-dir=tests/coverage
+
+ pgp-renew:
+ osc signkey --extend home:strycore
+diff --git a/lutris/util/graphics/xrandr.py b/lutris/util/graphics/xrandr.py
+index f788c94c..5544dbe9 100644
+--- a/lutris/util/graphics/xrandr.py
++++ b/lutris/util/graphics/xrandr.py
+@@ -5,6 +5,7 @@ from collections import namedtuple
+
+ from lutris.util.log import logger
+ from lutris.util.system import read_process_output
++from lutris.util.linux import LINUX_SYSTEM
+
+ Output = namedtuple("Output", ("name", "mode", "position", "rotation", "primary", "rate"))
+
+@@ -12,7 +13,7 @@ Output = namedtuple("Output", ("name", "mode", "position", "rotation", "primary"
+ def _get_vidmodes():
+ """Return video modes from XrandR"""
+ logger.debug("Retrieving video modes from XrandR")
+- return read_process_output(["xrandr"]).split("\n")
++ return read_process_output([LINUX_SYSTEM.get("xrandr")]).split("\n")
+
+
+ def get_outputs(): # pylint: disable=too-many-locals
+@@ -76,7 +77,7 @@ def turn_off_except(display):
+ for output in get_outputs():
+ if output.name != display:
+ logger.info("Turning off %s", output[0])
+- subprocess.Popen(["xrandr", "--output", output.name, "--off"])
++ subprocess.Popen([LINUX_SYSTEM.get("xrandr"), "--output", output.name, "--off"])
+
+
+ def get_resolutions():
+@@ -111,7 +112,7 @@ def change_resolution(resolution):
+ logger.warning("Resolution %s doesn't exist.", resolution)
+ else:
+ logger.info("Changing resolution to %s", resolution)
+- subprocess.Popen(["xrandr", "-s", resolution])
++ subprocess.Popen([LINUX_SYSTEM.get("xrandr"), "-s", resolution])
+ else:
+ for display in resolution:
+ logger.debug("Switching to %s on %s", display.mode, display.name)
+@@ -128,7 +129,7 @@ def change_resolution(resolution):
+ logger.info("Switching resolution of %s to %s", display.name, display.mode)
+ subprocess.Popen(
+ [
+- "xrandr",
++ LINUX_SYSTEM.get("xrandr"),
+ "--output",
+ display.name,
+ "--mode",
diff --git a/third_party/nixpkgs/pkgs/applications/misc/rootbar/default.nix b/third_party/nixpkgs/pkgs/applications/misc/rootbar/default.nix
index d50cefb2a7..eab821c6dc 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/rootbar/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/rootbar/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
- homepage = "https://github.com/alexays/waybar";
+ homepage = "https://hg.sr.ht/~scoopta/rootbar";
description = "A bar for Wayland WMs";
longDescription = ''
Root Bar is a bar for wlroots based wayland compositors such as sway and
diff --git a/third_party/nixpkgs/pkgs/applications/misc/themechanger/default.nix b/third_party/nixpkgs/pkgs/applications/misc/themechanger/default.nix
index 7dd52c8cce..d2b92fa250 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/themechanger/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/themechanger/default.nix
@@ -15,14 +15,14 @@
python3Packages.buildPythonApplication rec {
pname = "themechanger";
- version = "0.10.1";
+ version = "0.10.2";
format = "other";
src = fetchFromGitHub {
owner = "ALEX11BR";
repo = "ThemeChanger";
rev = "v${version}";
- sha256 = "1bxxn5bmdwaxfvyh6z2rxklwnxgvv6kh5y9m8r1k7d0n4msx1x2h";
+ sha256 = "00z1npm3lpvf0wc9z2v58pc4nxxh8x9m158kxf1k0qlz536jrzqr";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix b/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
index 3b159d4b7f..687dc7a49a 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/upwork/default.nix
@@ -6,15 +6,13 @@
stdenv.mkDerivation rec {
pname = "upwork";
- version = "5.6.8.0";
+ version = "5.6.9.3";
src = fetchurl {
- url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_8_0_836f43f6f6be4149/${pname}_${version}_amd64.deb";
- sha256 = "b3a52f773d633837882dc107b206006325722ca5d5d5a1e8bdf5453f872e1b6f";
+ url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_9_3_10c2eb9781db4d7f/${pname}_${version}_amd64.deb";
+ sha256 = "0b884aa6992d438cee09f58673780218a00a823e03c114b0c753947020c0a327";
};
- dontWrapGApps = true;
-
nativeBuildInputs = [
dpkg
wrapGAppsHook
@@ -31,6 +29,10 @@ stdenv.mkDerivation rec {
libPath = lib.makeLibraryPath buildInputs;
+ dontWrapGApps = true;
+ dontBuild = true;
+ dontConfigure = true;
+
unpackPhase = ''
dpkg-deb -x ${src} ./
'';
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
index 8cc2725e79..6e890ccb6c 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
@@ -1,8 +1,8 @@
{
"stable": {
- "version": "94.0.4606.81",
- "sha256": "16755mfqxxmvslm9ix060safrnml91ckj5p85960jj5g5hmslwbh",
- "sha256bin64": "1d3z5np6b6jax7afak7f0yh76kmmdggdjlrzwyhy8hgrv7c7rsdz",
+ "version": "95.0.4638.54",
+ "sha256": "1zb1009gg9962axn2l1krycz7ml20i8z2n3ka2psxpg68pbqivry",
+ "sha256bin64": "0mf9jfzwz6nkz1yg8lndz1gmsvmdh1rxhqkv0vd9nr04h5x9b41a",
"deps": {
"gn": {
"version": "2021-08-11",
@@ -12,15 +12,15 @@
}
},
"chromedriver": {
- "version": "94.0.4606.61",
- "sha256_linux": "1l7ls8qqqd9q3a20a459q40jd9djzf67s8qfdmfj44vwgidiw0fj",
- "sha256_darwin": "1b43agdd6vw5zarrbbk1sgmdr6n3d9cdl4dcikk304yplh58d49v"
+ "version": "95.0.4638.17",
+ "sha256_linux": "0jqq2h3rjancq9gk4w29gcr4b3z4irnkbvcj97fdsnksck9y5h2q",
+ "sha256_darwin": "0vl73i28xq3z5njg4287j08pb2sfd28amc8hkm4ddq5dgqpim0l8"
}
},
"beta": {
- "version": "95.0.4638.49",
- "sha256": "11fiq6p2d99hl166pf39g83pk7m7ibi1zz19wj7qmcc7ql7006jz",
- "sha256bin64": "04s81fnr01jq74fpl5n6jg8iw5iw6sdwyz40zja68h1crxh5d6d6",
+ "version": "95.0.4638.54",
+ "sha256": "1zb1009gg9962axn2l1krycz7ml20i8z2n3ka2psxpg68pbqivry",
+ "sha256bin64": "06d0kjnrv8z74icc6nahllxbwn3xxwn0vgc7ss47402zrqig8lch",
"deps": {
"gn": {
"version": "2021-08-11",
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
index a33c261bf2..a2b61a66e1 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/default.nix
@@ -1,9 +1,9 @@
{ lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }:
let
- version = "0.17.2";
- sha256 = "0kcdx4ldnshk4pqq37a7p08xr5cpsjrbrifk9fc3jbiw39m09mhf";
- manifestsSha256 = "1v6md4xh4sq1vmb5a8qvb66l101fq75lmv2s4j2z3walssb5mmgj";
+ version = "0.18.3";
+ sha256 = "0nvvjc0ml1irn7vxyq4m43qimp128cx8hczk21y5m39i2rg4yzx4";
+ manifestsSha256 = "1qgw9ij0b85vvdx03wmbbwanhq1hf69wphy58lsqwf33rdq0bb1m";
manifests = fetchzip {
url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz";
@@ -23,7 +23,7 @@ buildGoModule rec {
inherit sha256;
};
- vendorSha256 = "sha256-glifJ0V3RwS7E6EWZsCa88m0MK883RhPSXCsAmMggVs=";
+ vendorSha256 = "0vgi5cnvmc98xa2ibpgvvqlc90hf3gj3v17yqncid596ig3dnqsc";
nativeBuildInputs = [ installShellFiles ];
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh
index 9c211f626a..1ded63d4d8 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/fluxcd/update.sh
@@ -20,11 +20,11 @@ setKV () {
setKV version ${VERSION}
setKV sha256 ${SHA256}
setKV manifestsSha256 ${SPEC_SHA256}
-setKV vendorSha256 ""
+setKV vendorSha256 "0000000000000000000000000000000000000000000000000000" # The same as lib.fakeSha256
cd ../../../../../
set +e
-VENDOR_SHA256=$(nix-build --no-out-link -A fluxcd 2>&1 | grep "got:" | cut -d':' -f2 | sed 's| ||g')
+VENDOR_SHA256=$(nix-build --no-out-link -A fluxcd 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g')
set -e
cd - > /dev/null
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix
index c9ce179e23..a802ce6794 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "helmfile";
- version = "0.140.1";
+ version = "0.141.0";
src = fetchFromGitHub {
owner = "roboll";
repo = "helmfile";
rev = "v${version}";
- sha256 = "sha256-QnGu/EGzgWva/EA6gKrDzWgjX6OrfZKzWIhRqKbexjU=";
+ sha256 = "sha256-UwjV3xgnZa0Emzw4FP/+gHh1ES6MTihrrlGKUBH6O9Q=";
};
vendorSha256 = "sha256-HKHMeDnIDmQ7AjuS2lYCMphTHGD1JgQuBYDJe2+PEk4=";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/default.nix
index 78dffeb20e..822a2c4b70 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/default.nix
@@ -243,6 +243,9 @@ stdenv.mkDerivation rec {
pname = "k3s";
version = k3sVersion;
+ # `src` here is a workaround for the updateScript bot. It couldn't be empty.
+ src = builtins.filterSource (path: type: false) ./.;
+
# Important utilities used by the kubelet, see
# https://github.com/kubernetes/kubernetes/issues/26093#issuecomment-237202494
# Note the list in that issue is stale and some aren't relevant for k3s.
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/update.sh b/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/update.sh
index 7956e807e9..34257fcda2 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/update.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/k3s/update.sh
@@ -12,7 +12,7 @@ LATEST_TAG_RAWFILE=${WORKDIR}/latest_tag.json
curl --silent ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
https://api.github.com/repos/k3s-io/k3s/releases > ${LATEST_TAG_RAWFILE}
-LATEST_TAG_NAME=$(jq 'map(.tag_name)' ${LATEST_TAG_RAWFILE} | grep -v -e rc -e engine | sed 's/["|,| ]//g' | sort -r | head -n1)
+LATEST_TAG_NAME=$(jq 'map(.tag_name)' ${LATEST_TAG_RAWFILE} | grep -v -e rc -e engine | sed 's/["|,| ]//g' | sort -V -r | head -n1)
K3S_VERSION=$(echo ${LATEST_TAG_NAME} | sed 's/^v//')
K3S_COMMIT=$(curl --silent ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/kubecfg/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/kubecfg/default.nix
index 61e2913405..c46c6ed263 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/kubecfg/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/kubecfg/default.nix
@@ -15,6 +15,8 @@ buildGoPackage {
goPackagePath = "github.com/bitnami/kubecfg";
+ ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
+
meta = {
description = "A tool for managing Kubernetes resources as code";
homepage = "https://github.com/bitnami/kubecfg";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-edge.sh b/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-edge.sh
index 8bf49452b3..937d41a794 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-edge.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-edge.sh
@@ -5,13 +5,11 @@ set -x -eu -o pipefail
cd $(dirname "$0")
-TAG=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} \
+VERSION=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} \
--silent https://api.github.com/repos/linkerd/linkerd2/releases | \
- jq 'map(.tag_name)' | grep edge | sed 's/["|,| ]//g' | sort -r | head -n1)
+ jq 'map(.tag_name)' | grep edge | sed 's/["|,| ]//g' | sed 's/edge-//' | sort -V -r | head -n1)
-VERSION=$(echo ${TAG} | sed 's/^edge-//')
-
-SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/linkerd/linkerd2/archive/refs/tags/${TAG}.tar.gz)
+SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/linkerd/linkerd2/archive/refs/tags/edge-${VERSION}.tar.gz)
setKV () {
sed -i "s|$1 = \".*\"|$1 = \"${2:-}\"|" ./edge.nix
@@ -19,11 +17,11 @@ setKV () {
setKV version ${VERSION}
setKV sha256 ${SHA256}
-setKV vendorSha256 "" # Necessary to force clean build.
+setKV vendorSha256 "0000000000000000000000000000000000000000000000000000" # Necessary to force clean build.
cd ../../../../../
set +e
-VENDOR_SHA256=$(nix-build --no-out-link -A linkerd_edge 2>&1 | grep "got:" | cut -d':' -f2 | sed 's| ||g')
+VENDOR_SHA256=$(nix-build --no-out-link -A linkerd_edge 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g')
set -e
cd - > /dev/null
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-stable.sh b/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-stable.sh
index 37314ac1c4..5ec96af796 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-stable.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/linkerd/update-stable.sh
@@ -5,13 +5,11 @@ set -x -eu -o pipefail
cd $(dirname "$0")
-TAG=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} \
- --silent https://api.github.com/repos/linkerd/linkerd2/releases/latest | \
- jq -r '.tag_name')
+VERSION=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} \
+ --silent https://api.github.com/repos/linkerd/linkerd2/releases | \
+ jq 'map(.tag_name)' | grep stable | sed 's/["|,| ]//g' | sed 's/stable-//' | sort -V -r | head -n1)
-VERSION=$(echo ${TAG} | sed 's/^stable-//')
-
-SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/linkerd/linkerd2/archive/refs/tags/${TAG}.tar.gz)
+SHA256=$(nix-prefetch-url --quiet --unpack https://github.com/linkerd/linkerd2/archive/refs/tags/stable-${VERSION}.tar.gz)
setKV () {
sed -i "s|$1 = \".*\"|$1 = \"${2:-}\"|" ./default.nix
@@ -19,11 +17,11 @@ setKV () {
setKV version ${VERSION}
setKV sha256 ${SHA256}
-setKV vendorSha256 "" # Necessary to force clean build.
+setKV vendorSha256 "0000000000000000000000000000000000000000000000000000" # Necessary to force clean build.
cd ../../../../../
set +e
-VENDOR_SHA256=$(nix-build --no-out-link -A linkerd 2>&1 | grep "got:" | cut -d':' -f2 | sed 's| ||g')
+VENDOR_SHA256=$(nix-build --no-out-link -A linkerd 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g')
set -e
cd - > /dev/null
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/nixops/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/nixops/default.nix
index 91f5cb8266..4002f7478b 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/nixops/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/nixops/default.nix
@@ -1,4 +1,5 @@
-{ pkgs
+{ nixosTests
+, pkgs
, poetry2nix
, lib
, overrides ? (self: super: {})
@@ -59,10 +60,17 @@ let
}
).python;
-in interpreter.pkgs.nixops.withPlugins(ps: [
- ps.nixops-encrypted-links
- ps.nixops-virtd
- ps.nixops-aws
- ps.nixops-gcp
- ps.nixopsvbox
-])
+ pkg = interpreter.pkgs.nixops.withPlugins(ps: [
+ ps.nixops-encrypted-links
+ ps.nixops-virtd
+ ps.nixops-aws
+ ps.nixops-gcp
+ ps.nixopsvbox
+ ]) // rec {
+ # Workaround for https://github.com/NixOS/nixpkgs/issues/119407
+ # TODO after #1199407: Use .overrideAttrs(pkg: old: { passthru.tests = .....; })
+ tests = nixosTests.nixops.unstable.override { nixopsPkg = pkg; };
+ # Not strictly necessary, but probably expected somewhere; part of the workaround:
+ passthru.tests = tests;
+ };
+in pkg
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
index 1c52f56437..e07b9b88dd 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "terragrunt";
- version = "0.33.0";
+ version = "0.35.1";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-FvgB0jG6PEvhrT9Au/Uv9XSgKx+zNw8zETpg2dJ6QX4=";
+ sha256 = "sha256-DCum3vCrN530Z0VW0WEoLtjN+kre/mU9O+sJxckZgfc=";
};
vendorSha256 = "sha256-y84EFmoJS4SeA5YFIVFU0iWa5NnjU5yvOj7OFE+jGN0=";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/flexget/default.nix b/third_party/nixpkgs/pkgs/applications/networking/flexget/default.nix
index e9c85450f4..96ed5a86a1 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/flexget/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/flexget/default.nix
@@ -2,14 +2,14 @@
python3Packages.buildPythonApplication rec {
pname = "flexget";
- version = "3.1.139";
+ version = "3.1.140";
# Fetch from GitHub in order to use `requirements.in`
src = fetchFromGitHub {
owner = "flexget";
repo = "flexget";
rev = "v${version}";
- sha256 = "0gnj89q5mv5qiy6zsp85sswmwzm0y73nffjj3vrccx5lmxd955nv";
+ sha256 = "15ngmpqqx902l7gxg2lb6h8q8vmjk247jbqhc92l1apr1imjqcc5";
};
postPatch = ''
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
index ad68fcb4b7..997882bbc8 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
@@ -1,20 +1,15 @@
-{ lib, stdenv, bitlbee }:
+{ lib, runCommandLocal, bitlbee }:
with lib;
-plugins:
-
-stdenv.mkDerivation {
- inherit bitlbee plugins;
- name = "bitlbee-plugins";
+plugins: runCommandLocal "bitlbee-plugins" {
+ inherit plugins;
buildInputs = [ bitlbee plugins ];
- phases = [ "installPhase" ];
- installPhase = ''
- mkdir -p $out/lib/bitlbee
- for plugin in $plugins; do
- for thing in $(ls $plugin/lib/bitlbee); do
- ln -s $plugin/lib/bitlbee/$thing $out/lib/bitlbee/
- done
+} ''
+ mkdir -p $out/lib/bitlbee
+ for plugin in $plugins; do
+ for thing in $(ls $plugin/lib/bitlbee); do
+ ln -s $plugin/lib/bitlbee/$thing $out/lib/bitlbee/
done
- '';
-}
+ done
+''
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop-yarndeps.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop-yarndeps.nix
deleted file mode 100644
index f17cfd900a..0000000000
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop-yarndeps.nix
+++ /dev/null
@@ -1,5533 +0,0 @@
-{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec {
- offline_cache = linkFarm "offline" packages;
- packages = [
- {
- name = "7zip_bin___7zip_bin_5.1.1.tgz";
- path = fetchurl {
- name = "7zip_bin___7zip_bin_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.1.1.tgz";
- sha1 = "9274ec7460652f9c632c59addf24efb1684ef876";
- };
- }
- {
- name = "_actions_core___core_1.5.0.tgz";
- path = fetchurl {
- name = "_actions_core___core_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/@actions/core/-/core-1.5.0.tgz";
- sha1 = "885b864700001a1b9a6fba247833a036e75ad9d3";
- };
- }
- {
- name = "_actions_github___github_5.0.0.tgz";
- path = fetchurl {
- name = "_actions_github___github_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/@actions/github/-/github-5.0.0.tgz";
- sha1 = "1754127976c50bd88b2e905f10d204d76d1472f8";
- };
- }
- {
- name = "_actions_http_client___http_client_1.0.11.tgz";
- path = fetchurl {
- name = "_actions_http_client___http_client_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/@actions/http-client/-/http-client-1.0.11.tgz";
- sha1 = "c58b12e9aa8b159ee39e7dd6cbd0e91d905633c0";
- };
- }
- {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz";
- sha1 = "23b08d740e83f49c5e59945fbf1b43e80bbf4edb";
- };
- }
- {
- name = "_babel_generator___generator_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_generator___generator_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.4.tgz";
- sha1 = "85acb159a267ca6324f9793986991ee2022a05b0";
- };
- }
- {
- name = "_babel_helper_function_name___helper_function_name_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_helper_function_name___helper_function_name_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz";
- sha1 = "845744dafc4381a4a5fb6afa6c3d36f98a787ebc";
- };
- }
- {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz";
- sha1 = "098818934a137fce78b536a3e015864be1e2879b";
- };
- }
- {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz";
- sha1 = "09993a3259c0e918f99d104261dfdfc033f178df";
- };
- }
- {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz";
- sha1 = "aecab92dcdbef6a10aa3b62ab204b085f776e257";
- };
- }
- {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz";
- sha1 = "6654d171b2024f6d8ee151bf2509699919131d48";
- };
- }
- {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz";
- sha1 = "6861a52f03966405001f6aa534a01a24d99e8cd9";
- };
- }
- {
- name = "_babel_parser___parser_7.15.6.tgz";
- path = fetchurl {
- name = "_babel_parser___parser_7.15.6.tgz";
- url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.6.tgz";
- sha1 = "043b9aa3c303c0722e5377fef9197f4cf1796549";
- };
- }
- {
- name = "_babel_runtime___runtime_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_runtime___runtime_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz";
- sha1 = "fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a";
- };
- }
- {
- name = "_babel_template___template_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_template___template_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz";
- sha1 = "51898d35dcf3faa670c4ee6afcfd517ee139f194";
- };
- }
- {
- name = "_babel_traverse___traverse_7.15.4.tgz";
- path = fetchurl {
- name = "_babel_traverse___traverse_7.15.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz";
- sha1 = "ff8510367a144bfbff552d9e18e28f3e2889c22d";
- };
- }
- {
- name = "_babel_types___types_7.15.6.tgz";
- path = fetchurl {
- name = "_babel_types___types_7.15.6.tgz";
- url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz";
- sha1 = "99abdc48218b2881c058dd0a7ab05b99c9be758f";
- };
- }
- {
- name = "_develar_schema_utils___schema_utils_2.6.5.tgz";
- path = fetchurl {
- name = "_develar_schema_utils___schema_utils_2.6.5.tgz";
- url = "https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz";
- sha1 = "3ece22c5838402419a6e0425f85742b961d9b6c6";
- };
- }
- {
- name = "_electron_get___get_1.13.0.tgz";
- path = fetchurl {
- name = "_electron_get___get_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/@electron/get/-/get-1.13.0.tgz";
- sha1 = "95c6bcaff4f9a505ea46792424f451efea89228c";
- };
- }
- {
- name = "_electron_universal___universal_1.0.5.tgz";
- path = fetchurl {
- name = "_electron_universal___universal_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/@electron/universal/-/universal-1.0.5.tgz";
- sha1 = "b812340e4ef21da2b3ee77b2b4d35c9b86defe37";
- };
- }
- {
- name = "_eslint_eslintrc___eslintrc_0.3.0.tgz";
- path = fetchurl {
- name = "_eslint_eslintrc___eslintrc_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz";
- sha1 = "d736d6963d7003b6514e6324bec9c602ac340318";
- };
- }
- {
- name = "_gar_promisify___promisify_1.1.2.tgz";
- path = fetchurl {
- name = "_gar_promisify___promisify_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz";
- sha1 = "30aa825f11d438671d585bd44e7fd564535fc210";
- };
- }
- {
- name = "_jimp_bmp___bmp_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_bmp___bmp_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.1.tgz";
- sha1 = "6e2da655b2ba22e721df0795423f34e92ef13768";
- };
- }
- {
- name = "_jimp_core___core_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_core___core_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.1.tgz";
- sha1 = "68c4288f6ef7f31a0f6b859ba3fb28dae930d39d";
- };
- }
- {
- name = "_jimp_custom___custom_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_custom___custom_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.1.tgz";
- sha1 = "28b659c59e20a1d75a0c46067bd3f4bd302cf9c5";
- };
- }
- {
- name = "_jimp_gif___gif_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_gif___gif_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.1.tgz";
- sha1 = "d1f7c3a58f4666482750933af8b8f4666414f3ca";
- };
- }
- {
- name = "_jimp_jpeg___jpeg_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_jpeg___jpeg_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.1.tgz";
- sha1 = "3b7bb08a4173f2f6d81f3049b251df3ee2ac8175";
- };
- }
- {
- name = "_jimp_plugin_blit___plugin_blit_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_blit___plugin_blit_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.1.tgz";
- sha1 = "09ea919f9d326de3b9c2826fe4155da37dde8edb";
- };
- }
- {
- name = "_jimp_plugin_blur___plugin_blur_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_blur___plugin_blur_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.1.tgz";
- sha1 = "e614fa002797dcd662e705d4cea376e7db968bf5";
- };
- }
- {
- name = "_jimp_plugin_circle___plugin_circle_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_circle___plugin_circle_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.1.tgz";
- sha1 = "20e3194a67ca29740aba2630fd4d0a89afa27491";
- };
- }
- {
- name = "_jimp_plugin_color___plugin_color_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_color___plugin_color_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.1.tgz";
- sha1 = "0f298ba74dee818b663834cd80d53e56f3755233";
- };
- }
- {
- name = "_jimp_plugin_contain___plugin_contain_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_contain___plugin_contain_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.1.tgz";
- sha1 = "3c5f5c495fd9bb08a970739d83694934f58123f2";
- };
- }
- {
- name = "_jimp_plugin_cover___plugin_cover_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_cover___plugin_cover_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.1.tgz";
- sha1 = "0e8caec16a40abe15b1b32e5383a603a3306dc41";
- };
- }
- {
- name = "_jimp_plugin_crop___plugin_crop_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_crop___plugin_crop_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.1.tgz";
- sha1 = "b362497c873043fe47ba881ab08604bf7226f50f";
- };
- }
- {
- name = "_jimp_plugin_displace___plugin_displace_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_displace___plugin_displace_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.1.tgz";
- sha1 = "4dd9db518c3e78de9d723f86a234bf98922afe8d";
- };
- }
- {
- name = "_jimp_plugin_dither___plugin_dither_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_dither___plugin_dither_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.1.tgz";
- sha1 = "b47de2c0bb09608bed228b41c3cd01a85ec2d45b";
- };
- }
- {
- name = "_jimp_plugin_fisheye___plugin_fisheye_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_fisheye___plugin_fisheye_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.1.tgz";
- sha1 = "f625047b6cdbe1b83b89e9030fd025ab19cdb1a4";
- };
- }
- {
- name = "_jimp_plugin_flip___plugin_flip_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_flip___plugin_flip_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.1.tgz";
- sha1 = "7a99ea22bde802641017ed0f2615870c144329bb";
- };
- }
- {
- name = "_jimp_plugin_gaussian___plugin_gaussian_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_gaussian___plugin_gaussian_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.1.tgz";
- sha1 = "0845e314085ccd52e34fad9a83949bc0d81a68e8";
- };
- }
- {
- name = "_jimp_plugin_invert___plugin_invert_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_invert___plugin_invert_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.1.tgz";
- sha1 = "7e6f5a15707256f3778d06921675bbcf18545c97";
- };
- }
- {
- name = "_jimp_plugin_mask___plugin_mask_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_mask___plugin_mask_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.1.tgz";
- sha1 = "e7f2460e05c3cda7af5e76f33ccb0579f66f90df";
- };
- }
- {
- name = "_jimp_plugin_normalize___plugin_normalize_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_normalize___plugin_normalize_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.1.tgz";
- sha1 = "032dfd88eefbc4dedc8b1b2d243832e4f3af30c8";
- };
- }
- {
- name = "_jimp_plugin_print___plugin_print_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_print___plugin_print_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.1.tgz";
- sha1 = "66b803563f9d109825970714466e6ab9ae639ff6";
- };
- }
- {
- name = "_jimp_plugin_resize___plugin_resize_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_resize___plugin_resize_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.1.tgz";
- sha1 = "65e39d848ed13ba2d6c6faf81d5d590396571d10";
- };
- }
- {
- name = "_jimp_plugin_rotate___plugin_rotate_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_rotate___plugin_rotate_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.1.tgz";
- sha1 = "53fb5d51a4b3d05af9c91c2a8fffe5d7a1a47c8c";
- };
- }
- {
- name = "_jimp_plugin_scale___plugin_scale_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_scale___plugin_scale_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.1.tgz";
- sha1 = "89f6ba59feed3429847ed226aebda33a240cc647";
- };
- }
- {
- name = "_jimp_plugin_shadow___plugin_shadow_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_shadow___plugin_shadow_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.1.tgz";
- sha1 = "a7af892a740febf41211e10a5467c3c5c521a04c";
- };
- }
- {
- name = "_jimp_plugin_threshold___plugin_threshold_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugin_threshold___plugin_threshold_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.1.tgz";
- sha1 = "34f3078f9965145b7ae26c53a32ad74b1195bbf5";
- };
- }
- {
- name = "_jimp_plugins___plugins_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_plugins___plugins_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.1.tgz";
- sha1 = "9f08544c97226d6460a16ced79f57e85bec3257b";
- };
- }
- {
- name = "_jimp_png___png_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_png___png_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.1.tgz";
- sha1 = "f24cfc31529900b13a2dd9d4fdb4460c1e4d814e";
- };
- }
- {
- name = "_jimp_tiff___tiff_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_tiff___tiff_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.1.tgz";
- sha1 = "0e8756695687d7574b6bc73efab0acd4260b7a12";
- };
- }
- {
- name = "_jimp_types___types_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_types___types_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.1.tgz";
- sha1 = "0dbab37b3202315c91010f16c31766d35a2322cc";
- };
- }
- {
- name = "_jimp_utils___utils_0.16.1.tgz";
- path = fetchurl {
- name = "_jimp_utils___utils_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.1.tgz";
- sha1 = "2f51e6f14ff8307c4aa83d5e1a277da14a9fe3f7";
- };
- }
- {
- name = "_malept_cross_spawn_promise___cross_spawn_promise_1.1.1.tgz";
- path = fetchurl {
- name = "_malept_cross_spawn_promise___cross_spawn_promise_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz";
- sha1 = "504af200af6b98e198bce768bc1730c6936ae01d";
- };
- }
- {
- name = "_malept_flatpak_bundler___flatpak_bundler_0.4.0.tgz";
- path = fetchurl {
- name = "_malept_flatpak_bundler___flatpak_bundler_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz";
- sha1 = "e8a32c30a95d20c2b1bb635cc580981a06389858";
- };
- }
- {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz";
- path = fetchurl {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz";
- sha1 = "7619c2eb21b25483f6d167548b4cfd5a7488c3d5";
- };
- }
- {
- name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz";
- path = fetchurl {
- name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz";
- sha1 = "5bd262af94e9d25bd1e71b05deed44876a222e8b";
- };
- }
- {
- name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz";
- path = fetchurl {
- name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz";
- sha1 = "e95737e8bb6746ddedf69c556953494f196fe69a";
- };
- }
- {
- name = "_npmcli_fs___fs_1.0.0.tgz";
- path = fetchurl {
- name = "_npmcli_fs___fs_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.0.0.tgz";
- sha1 = "589612cfad3a6ea0feafcb901d29c63fd52db09f";
- };
- }
- {
- name = "_npmcli_git___git_2.1.0.tgz";
- path = fetchurl {
- name = "_npmcli_git___git_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/git/-/git-2.1.0.tgz";
- sha1 = "2fbd77e147530247d37f325930d457b3ebe894f6";
- };
- }
- {
- name = "_npmcli_installed_package_contents___installed_package_contents_1.0.7.tgz";
- path = fetchurl {
- name = "_npmcli_installed_package_contents___installed_package_contents_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz";
- sha1 = "ab7408c6147911b970a8abe261ce512232a3f4fa";
- };
- }
- {
- name = "_npmcli_move_file___move_file_1.1.2.tgz";
- path = fetchurl {
- name = "_npmcli_move_file___move_file_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz";
- sha1 = "1a82c3e372f7cae9253eb66d72543d6b8685c674";
- };
- }
- {
- name = "_npmcli_node_gyp___node_gyp_1.0.2.tgz";
- path = fetchurl {
- name = "_npmcli_node_gyp___node_gyp_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-1.0.2.tgz";
- sha1 = "3cdc1f30e9736dbc417373ed803b42b1a0a29ede";
- };
- }
- {
- name = "_npmcli_promise_spawn___promise_spawn_1.3.2.tgz";
- path = fetchurl {
- name = "_npmcli_promise_spawn___promise_spawn_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz";
- sha1 = "42d4e56a8e9274fba180dabc0aea6e38f29274f5";
- };
- }
- {
- name = "_npmcli_run_script___run_script_1.8.6.tgz";
- path = fetchurl {
- name = "_npmcli_run_script___run_script_1.8.6.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-1.8.6.tgz";
- sha1 = "18314802a6660b0d4baa4c3afe7f1ad39d8c28b7";
- };
- }
- {
- name = "_octokit_auth_token___auth_token_2.4.5.tgz";
- path = fetchurl {
- name = "_octokit_auth_token___auth_token_2.4.5.tgz";
- url = "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.5.tgz";
- sha1 = "568ccfb8cb46f36441fac094ce34f7a875b197f3";
- };
- }
- {
- name = "_octokit_core___core_3.5.1.tgz";
- path = fetchurl {
- name = "_octokit_core___core_3.5.1.tgz";
- url = "https://registry.yarnpkg.com/@octokit/core/-/core-3.5.1.tgz";
- sha1 = "8601ceeb1ec0e1b1b8217b960a413ed8e947809b";
- };
- }
- {
- name = "_octokit_endpoint___endpoint_6.0.12.tgz";
- path = fetchurl {
- name = "_octokit_endpoint___endpoint_6.0.12.tgz";
- url = "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz";
- sha1 = "3b4d47a4b0e79b1027fb8d75d4221928b2d05658";
- };
- }
- {
- name = "_octokit_graphql___graphql_4.8.0.tgz";
- path = fetchurl {
- name = "_octokit_graphql___graphql_4.8.0.tgz";
- url = "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz";
- sha1 = "664d9b11c0e12112cbf78e10f49a05959aa22cc3";
- };
- }
- {
- name = "_octokit_openapi_types___openapi_types_10.2.2.tgz";
- path = fetchurl {
- name = "_octokit_openapi_types___openapi_types_10.2.2.tgz";
- url = "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-10.2.2.tgz";
- sha1 = "6c1c839d7d169feabaf1d2a69c79439c75d979cd";
- };
- }
- {
- name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.16.3.tgz";
- path = fetchurl {
- name = "_octokit_plugin_paginate_rest___plugin_paginate_rest_2.16.3.tgz";
- url = "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.3.tgz";
- sha1 = "6dbf74a12a53e04da6ca731d4c93f20c0b5c6fe9";
- };
- }
- {
- name = "_octokit_plugin_request_log___plugin_request_log_1.0.4.tgz";
- path = fetchurl {
- name = "_octokit_plugin_request_log___plugin_request_log_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz";
- sha1 = "5e50ed7083a613816b1e4a28aeec5fb7f1462e85";
- };
- }
- {
- name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.10.4.tgz";
- path = fetchurl {
- name = "_octokit_plugin_rest_endpoint_methods___plugin_rest_endpoint_methods_5.10.4.tgz";
- url = "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.4.tgz";
- sha1 = "97e85eb7375e30b9bf193894670f9da205e79408";
- };
- }
- {
- name = "_octokit_request_error___request_error_2.1.0.tgz";
- path = fetchurl {
- name = "_octokit_request_error___request_error_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz";
- sha1 = "9e150357831bfc788d13a4fd4b1913d60c74d677";
- };
- }
- {
- name = "_octokit_request___request_5.6.1.tgz";
- path = fetchurl {
- name = "_octokit_request___request_5.6.1.tgz";
- url = "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.1.tgz";
- sha1 = "f97aff075c37ab1d427c49082fefeef0dba2d8ce";
- };
- }
- {
- name = "_octokit_rest___rest_18.10.0.tgz";
- path = fetchurl {
- name = "_octokit_rest___rest_18.10.0.tgz";
- url = "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.10.0.tgz";
- sha1 = "8a0add9611253e0e31d3ed5b4bc941a3795a7648";
- };
- }
- {
- name = "_octokit_types___types_6.28.1.tgz";
- path = fetchurl {
- name = "_octokit_types___types_6.28.1.tgz";
- url = "https://registry.yarnpkg.com/@octokit/types/-/types-6.28.1.tgz";
- sha1 = "ab990d1fe952226055e81c7650480e6bacfb877c";
- };
- }
- {
- name = "_sindresorhus_is___is_0.14.0.tgz";
- path = fetchurl {
- name = "_sindresorhus_is___is_0.14.0.tgz";
- url = "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz";
- sha1 = "9fb3a3cf3132328151f353de4632e01e52102bea";
- };
- }
- {
- name = "_szmarczak_http_timer___http_timer_1.1.2.tgz";
- path = fetchurl {
- name = "_szmarczak_http_timer___http_timer_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz";
- sha1 = "b1665e2c461a2cd92f4c1bbf50d5454de0d4b421";
- };
- }
- {
- name = "_tootallnate_once___once_1.1.2.tgz";
- path = fetchurl {
- name = "_tootallnate_once___once_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz";
- sha1 = "ccb91445360179a04e7fe6aff78c00ffc1eeaf82";
- };
- }
- {
- name = "_types_auto_launch___auto_launch_5.0.2.tgz";
- path = fetchurl {
- name = "_types_auto_launch___auto_launch_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.2.tgz";
- sha1 = "4970f01e5dd27572489b7fe77590204a19f86bd0";
- };
- }
- {
- name = "_types_counterpart___counterpart_0.18.1.tgz";
- path = fetchurl {
- name = "_types_counterpart___counterpart_0.18.1.tgz";
- url = "https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.1.tgz";
- sha1 = "b1b784d9e54d9879f0a8cb12f2caedab65430fe8";
- };
- }
- {
- name = "_types_debug___debug_4.1.7.tgz";
- path = fetchurl {
- name = "_types_debug___debug_4.1.7.tgz";
- url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz";
- sha1 = "7cc0ea761509124709b8b2d1090d8f6c17aadb82";
- };
- }
- {
- name = "_types_fs_extra___fs_extra_9.0.12.tgz";
- path = fetchurl {
- name = "_types_fs_extra___fs_extra_9.0.12.tgz";
- url = "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.12.tgz";
- sha1 = "9b8f27973df8a7a3920e8461517ebf8a7d4fdfaf";
- };
- }
- {
- name = "_types_glob___glob_7.1.4.tgz";
- path = fetchurl {
- name = "_types_glob___glob_7.1.4.tgz";
- url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz";
- sha1 = "ea59e21d2ee5c517914cb4bc8e4153b99e566672";
- };
- }
- {
- name = "_types_json_schema___json_schema_7.0.9.tgz";
- path = fetchurl {
- name = "_types_json_schema___json_schema_7.0.9.tgz";
- url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz";
- sha1 = "97edc9037ea0c38585320b28964dde3b39e4660d";
- };
- }
- {
- name = "_types_minimatch___minimatch_3.0.5.tgz";
- path = fetchurl {
- name = "_types_minimatch___minimatch_3.0.5.tgz";
- url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz";
- sha1 = "1001cc5e6a3704b83c236027e77f2f58ea010f40";
- };
- }
- {
- name = "_types_minimist___minimist_1.2.2.tgz";
- path = fetchurl {
- name = "_types_minimist___minimist_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz";
- sha1 = "ee771e2ba4b3dc5b372935d549fd9617bf345b8c";
- };
- }
- {
- name = "_types_ms___ms_0.7.31.tgz";
- path = fetchurl {
- name = "_types_ms___ms_0.7.31.tgz";
- url = "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz";
- sha1 = "31b7ca6407128a3d2bbc27fe2d21b345397f6197";
- };
- }
- {
- name = "_types_node___node_16.9.1.tgz";
- path = fetchurl {
- name = "_types_node___node_16.9.1.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz";
- sha1 = "0611b37db4246c937feef529ddcc018cf8e35708";
- };
- }
- {
- name = "_types_node___node_14.17.16.tgz";
- path = fetchurl {
- name = "_types_node___node_14.17.16.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.16.tgz";
- sha1 = "2b9252bd4fdf0393696190cd9550901dd967c777";
- };
- }
- {
- name = "_types_node___node_14.17.21.tgz";
- path = fetchurl {
- name = "_types_node___node_14.17.21.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.21.tgz";
- sha1 = "6359d8cf73481e312a43886fa50afc70ce5592c6";
- };
- }
- {
- name = "_types_plist___plist_3.0.2.tgz";
- path = fetchurl {
- name = "_types_plist___plist_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/plist/-/plist-3.0.2.tgz";
- sha1 = "61b3727bba0f5c462fe333542534a0c3e19ccb01";
- };
- }
- {
- name = "_types_verror___verror_1.10.5.tgz";
- path = fetchurl {
- name = "_types_verror___verror_1.10.5.tgz";
- url = "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.5.tgz";
- sha1 = "2a1413aded46e67a1fe2386800e291123ed75eb1";
- };
- }
- {
- name = "_types_yargs_parser___yargs_parser_20.2.1.tgz";
- path = fetchurl {
- name = "_types_yargs_parser___yargs_parser_20.2.1.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz";
- sha1 = "3b9ce2489919d9e4fea439b76916abc34b2df129";
- };
- }
- {
- name = "_types_yargs___yargs_16.0.4.tgz";
- path = fetchurl {
- name = "_types_yargs___yargs_16.0.4.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz";
- sha1 = "26aad98dd2c2a38e421086ea9ad42b9e51642977";
- };
- }
- {
- name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_eslint_plugin___eslint_plugin_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.1.tgz";
- sha1 = "e938603a136f01dcabeece069da5fb2e331d4498";
- };
- }
- {
- name = "_typescript_eslint_experimental_utils___experimental_utils_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_experimental_utils___experimental_utils_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.1.tgz";
- sha1 = "0c900f832f270b88e13e51753647b02d08371ce5";
- };
- }
- {
- name = "_typescript_eslint_parser___parser_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_parser___parser_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.31.1.tgz";
- sha1 = "8f9a2672033e6f6d33b1c0260eebdc0ddf539064";
- };
- }
- {
- name = "_typescript_eslint_scope_manager___scope_manager_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_scope_manager___scope_manager_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.31.1.tgz";
- sha1 = "0c21e8501f608d6a25c842fcf59541ef4f1ab561";
- };
- }
- {
- name = "_typescript_eslint_types___types_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_types___types_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.31.1.tgz";
- sha1 = "5f255b695627a13401d2fdba5f7138bc79450d66";
- };
- }
- {
- name = "_typescript_eslint_typescript_estree___typescript_estree_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_typescript_estree___typescript_estree_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.1.tgz";
- sha1 = "4a04d5232cf1031232b7124a9c0310b577a62d17";
- };
- }
- {
- name = "_typescript_eslint_visitor_keys___visitor_keys_4.31.1.tgz";
- path = fetchurl {
- name = "_typescript_eslint_visitor_keys___visitor_keys_4.31.1.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.1.tgz";
- sha1 = "f2e7a14c7f20c4ae07d7fc3c5878c4441a1da9cc";
- };
- }
- {
- name = "abbrev___abbrev_1.1.1.tgz";
- path = fetchurl {
- name = "abbrev___abbrev_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz";
- sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8";
- };
- }
- {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- path = fetchurl {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz";
- sha1 = "7ed5bb55908b3b2f1bc55c6af1653bada7f07937";
- };
- }
- {
- name = "acorn___acorn_7.4.1.tgz";
- path = fetchurl {
- name = "acorn___acorn_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz";
- sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa";
- };
- }
- {
- name = "agent_base___agent_base_6.0.2.tgz";
- path = fetchurl {
- name = "agent_base___agent_base_6.0.2.tgz";
- url = "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz";
- sha1 = "49fff58577cfee3f37176feab4c22e00f86d7f77";
- };
- }
- {
- name = "agentkeepalive___agentkeepalive_4.1.4.tgz";
- path = fetchurl {
- name = "agentkeepalive___agentkeepalive_4.1.4.tgz";
- url = "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.1.4.tgz";
- sha1 = "d928028a4862cb11718e55227872e842a44c945b";
- };
- }
- {
- name = "aggregate_error___aggregate_error_3.1.0.tgz";
- path = fetchurl {
- name = "aggregate_error___aggregate_error_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz";
- sha1 = "92670ff50f5359bdb7a3e0d40d0ec30c5737687a";
- };
- }
- {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- path = fetchurl {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz";
- sha1 = "31f29da5ab6e00d1c2d329acf7b5929614d5014d";
- };
- }
- {
- name = "ajv___ajv_6.12.6.tgz";
- path = fetchurl {
- name = "ajv___ajv_6.12.6.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz";
- sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4";
- };
- }
- {
- name = "ajv___ajv_8.6.3.tgz";
- path = fetchurl {
- name = "ajv___ajv_8.6.3.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz";
- sha1 = "11a66527761dc3e9a3845ea775d2d3c0414e8764";
- };
- }
- {
- name = "allchange___allchange_1.0.3.tgz";
- path = fetchurl {
- name = "allchange___allchange_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/allchange/-/allchange-1.0.3.tgz";
- sha1 = "f8814ddfbcfe39a01bf4570778ee7e6d9ff0ebb3";
- };
- }
- {
- name = "ansi_align___ansi_align_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_align___ansi_align_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz";
- sha1 = "b536b371cf687caaef236c18d3e21fe3797467cb";
- };
- }
- {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- path = fetchurl {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348";
- };
- }
- {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- }
- {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- }
- {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz";
- sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997";
- };
- }
- {
- name = "ansi_regex___ansi_regex_5.0.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz";
- sha1 = "082cb2c89c9fe8659a311a53bd6a4dc5301db304";
- };
- }
- {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d";
- };
- }
- {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz";
- sha1 = "edd803628ae71c04c85ae7a0906edad34b648937";
- };
- }
- {
- name = "any_base___any_base_1.1.0.tgz";
- path = fetchurl {
- name = "any_base___any_base_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz";
- sha1 = "ae101a62bc08a597b4c9ab5b7089d456630549fe";
- };
- }
- {
- name = "anymatch___anymatch_3.1.2.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz";
- sha1 = "c0557c096af32f106198f4f4e2a383537e378716";
- };
- }
- {
- name = "app_builder_bin___app_builder_bin_3.5.13.tgz";
- path = fetchurl {
- name = "app_builder_bin___app_builder_bin_3.5.13.tgz";
- url = "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-3.5.13.tgz";
- sha1 = "6dd7f4de34a4e408806f99b8c7d6ef1601305b7e";
- };
- }
- {
- name = "app_builder_lib___app_builder_lib_22.11.4.tgz";
- path = fetchurl {
- name = "app_builder_lib___app_builder_lib_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.11.4.tgz";
- sha1 = "f476e8f1c843d2bcce0348d60e2deae3a71b3474";
- };
- }
- {
- name = "applescript___applescript_1.0.0.tgz";
- path = fetchurl {
- name = "applescript___applescript_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz";
- sha1 = "bb87af568cad034a4e48c4bdaf6067a3a2701317";
- };
- }
- {
- name = "aproba___aproba_1.2.0.tgz";
- path = fetchurl {
- name = "aproba___aproba_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz";
- sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a";
- };
- }
- {
- name = "archiver_utils___archiver_utils_2.1.0.tgz";
- path = fetchurl {
- name = "archiver_utils___archiver_utils_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-2.1.0.tgz";
- sha1 = "e8a460e94b693c3e3da182a098ca6285ba9249e2";
- };
- }
- {
- name = "archiver___archiver_5.3.0.tgz";
- path = fetchurl {
- name = "archiver___archiver_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz";
- sha1 = "dd3e097624481741df626267564f7dd8640a45ba";
- };
- }
- {
- name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz";
- path = fetchurl {
- name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz";
- sha1 = "b15474a932adab4ff8a50d9adfa7e4e926f21146";
- };
- }
- {
- name = "argparse___argparse_1.0.10.tgz";
- path = fetchurl {
- name = "argparse___argparse_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz";
- sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
- };
- }
- {
- name = "argparse___argparse_2.0.1.tgz";
- path = fetchurl {
- name = "argparse___argparse_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz";
- sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38";
- };
- }
- {
- name = "array_union___array_union_2.1.0.tgz";
- path = fetchurl {
- name = "array_union___array_union_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz";
- sha1 = "b798420adbeb1de828d84acd8a2e23d3efe85e8d";
- };
- }
- {
- name = "asar___asar_2.1.0.tgz";
- path = fetchurl {
- name = "asar___asar_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/asar/-/asar-2.1.0.tgz";
- sha1 = "97c6a570408c4e38a18d4a3fb748a621b5a7844e";
- };
- }
- {
- name = "asar___asar_3.1.0.tgz";
- path = fetchurl {
- name = "asar___asar_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/asar/-/asar-3.1.0.tgz";
- sha1 = "70b0509449fe3daccc63beb4d3c7d2e24d3c6473";
- };
- }
- {
- name = "asn1___asn1_0.2.4.tgz";
- path = fetchurl {
- name = "asn1___asn1_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz";
- sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136";
- };
- }
- {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- path = fetchurl {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- }
- {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- path = fetchurl {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz";
- sha1 = "483143c567aeed4785759c0865786dc77d7d2e31";
- };
- }
- {
- name = "async_exit_hook___async_exit_hook_2.0.1.tgz";
- path = fetchurl {
- name = "async_exit_hook___async_exit_hook_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz";
- sha1 = "8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3";
- };
- }
- {
- name = "async___async_0.9.2.tgz";
- path = fetchurl {
- name = "async___async_0.9.2.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- }
- {
- name = "async___async_3.2.1.tgz";
- path = fetchurl {
- name = "async___async_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-3.2.1.tgz";
- sha1 = "d3274ec66d107a47476a4c49136aacdb00665fc8";
- };
- }
- {
- name = "asynckit___asynckit_0.4.0.tgz";
- path = fetchurl {
- name = "asynckit___asynckit_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- }
- {
- name = "at_least_node___at_least_node_1.0.0.tgz";
- path = fetchurl {
- name = "at_least_node___at_least_node_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz";
- sha1 = "602cd4b46e844ad4effc92a8011a3c46e0238dc2";
- };
- }
- {
- name = "atomically___atomically_1.7.0.tgz";
- path = fetchurl {
- name = "atomically___atomically_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/atomically/-/atomically-1.7.0.tgz";
- sha1 = "c07a0458432ea6dbc9a3506fffa424b48bccaafe";
- };
- }
- {
- name = "auto_launch___auto_launch_5.0.5.tgz";
- path = fetchurl {
- name = "auto_launch___auto_launch_5.0.5.tgz";
- url = "https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.5.tgz";
- sha1 = "d14bd002b1ef642f85e991a6195ff5300c8ad3c0";
- };
- }
- {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- path = fetchurl {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- }
- {
- name = "aws4___aws4_1.11.0.tgz";
- path = fetchurl {
- name = "aws4___aws4_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz";
- sha1 = "d61f46d83b2519250e2784daf5b09479a8b41c59";
- };
- }
- {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- path = fetchurl {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz";
- sha1 = "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee";
- };
- }
- {
- name = "base64_js___base64_js_1.5.1.tgz";
- path = fetchurl {
- name = "base64_js___base64_js_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz";
- sha1 = "1b1b440160a5bf7ad40b650f095963481903930a";
- };
- }
- {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- path = fetchurl {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- }
- {
- name = "before_after_hook___before_after_hook_2.2.2.tgz";
- path = fetchurl {
- name = "before_after_hook___before_after_hook_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz";
- sha1 = "a6e8ca41028d90ee2c24222f201c90956091613e";
- };
- }
- {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- path = fetchurl {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz";
- sha1 = "75f502eeaf9ffde42fc98829645be4ea76bd9e2d";
- };
- }
- {
- name = "bl___bl_4.1.0.tgz";
- path = fetchurl {
- name = "bl___bl_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz";
- sha1 = "451535264182bec2fbbc83a62ab98cf11d9f7b3a";
- };
- }
- {
- name = "bluebird_lst___bluebird_lst_1.0.9.tgz";
- path = fetchurl {
- name = "bluebird_lst___bluebird_lst_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/bluebird-lst/-/bluebird-lst-1.0.9.tgz";
- sha1 = "a64a0e4365658b9ab5fe875eb9dfb694189bb41c";
- };
- }
- {
- name = "bluebird___bluebird_3.7.2.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.7.2.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz";
- sha1 = "9f229c15be272454ffa973ace0dbee79a1b0c36f";
- };
- }
- {
- name = "bmp_js___bmp_js_0.1.0.tgz";
- path = fetchurl {
- name = "bmp_js___bmp_js_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz";
- sha1 = "e05a63f796a6c1ff25f4771ec7adadc148c07233";
- };
- }
- {
- name = "boolean___boolean_3.1.4.tgz";
- path = fetchurl {
- name = "boolean___boolean_3.1.4.tgz";
- url = "https://registry.yarnpkg.com/boolean/-/boolean-3.1.4.tgz";
- sha1 = "f51a2fb5838a99e06f9b6ec1edb674de67026435";
- };
- }
- {
- name = "boxen___boxen_5.1.1.tgz";
- path = fetchurl {
- name = "boxen___boxen_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/boxen/-/boxen-5.1.1.tgz";
- sha1 = "4faca6a437885add0bf8d99082e272d480814cd4";
- };
- }
- {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- path = fetchurl {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd";
- };
- }
- {
- name = "braces___braces_3.0.2.tgz";
- path = fetchurl {
- name = "braces___braces_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz";
- sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107";
- };
- }
- {
- name = "buffer_crc32___buffer_crc32_0.2.13.tgz";
- path = fetchurl {
- name = "buffer_crc32___buffer_crc32_0.2.13.tgz";
- url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
- sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
- };
- }
- {
- name = "buffer_equal___buffer_equal_0.0.1.tgz";
- path = fetchurl {
- name = "buffer_equal___buffer_equal_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz";
- sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b";
- };
- }
- {
- name = "buffer_equal___buffer_equal_1.0.0.tgz";
- path = fetchurl {
- name = "buffer_equal___buffer_equal_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz";
- sha1 = "59616b498304d556abd466966b22eeda3eca5fbe";
- };
- }
- {
- name = "buffer_from___buffer_from_1.1.2.tgz";
- path = fetchurl {
- name = "buffer_from___buffer_from_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz";
- sha1 = "2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5";
- };
- }
- {
- name = "buffer___buffer_5.7.1.tgz";
- path = fetchurl {
- name = "buffer___buffer_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz";
- sha1 = "ba62e7c13133053582197160851a8f648e99eed0";
- };
- }
- {
- name = "builder_util_runtime___builder_util_runtime_8.7.5.tgz";
- path = fetchurl {
- name = "builder_util_runtime___builder_util_runtime_8.7.5.tgz";
- url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.7.5.tgz";
- sha1 = "fbe59e274818885e0d2e358d5b7017c34ae6b0f5";
- };
- }
- {
- name = "builder_util___builder_util_22.11.4.tgz";
- path = fetchurl {
- name = "builder_util___builder_util_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/builder-util/-/builder-util-22.11.4.tgz";
- sha1 = "5deee8e067d6e3248791977ce2928b98fe514342";
- };
- }
- {
- name = "builtins___builtins_1.0.3.tgz";
- path = fetchurl {
- name = "builtins___builtins_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz";
- sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
- };
- }
- {
- name = "cacache___cacache_15.3.0.tgz";
- path = fetchurl {
- name = "cacache___cacache_15.3.0.tgz";
- url = "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz";
- sha1 = "dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb";
- };
- }
- {
- name = "cacheable_request___cacheable_request_6.1.0.tgz";
- path = fetchurl {
- name = "cacheable_request___cacheable_request_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz";
- sha1 = "20ffb8bd162ba4be11e9567d823db651052ca912";
- };
- }
- {
- name = "callsites___callsites_3.1.0.tgz";
- path = fetchurl {
- name = "callsites___callsites_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz";
- sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73";
- };
- }
- {
- name = "camelcase___camelcase_6.2.0.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz";
- sha1 = "924af881c9d525ac9d87f40d964e5cea982a1809";
- };
- }
- {
- name = "caseless___caseless_0.12.0.tgz";
- path = fetchurl {
- name = "caseless___caseless_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- }
- {
- name = "chalk___chalk_2.4.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz";
- sha1 = "cd42541677a54333cf541a49108c1432b44c9424";
- };
- }
- {
- name = "chalk___chalk_4.1.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz";
- sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01";
- };
- }
- {
- name = "chokidar___chokidar_3.5.2.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz";
- sha1 = "dba3976fcadb016f66fd365021d91600d01c1e75";
- };
- }
- {
- name = "chownr___chownr_1.1.4.tgz";
- path = fetchurl {
- name = "chownr___chownr_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz";
- sha1 = "6fc9d7b42d32a583596337666e7d08084da2cc6b";
- };
- }
- {
- name = "chownr___chownr_2.0.0.tgz";
- path = fetchurl {
- name = "chownr___chownr_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz";
- sha1 = "15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece";
- };
- }
- {
- name = "chromium_pickle_js___chromium_pickle_js_0.2.0.tgz";
- path = fetchurl {
- name = "chromium_pickle_js___chromium_pickle_js_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz";
- sha1 = "04a106672c18b085ab774d983dfa3ea138f22205";
- };
- }
- {
- name = "ci_info___ci_info_2.0.0.tgz";
- path = fetchurl {
- name = "ci_info___ci_info_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz";
- sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46";
- };
- }
- {
- name = "ci_info___ci_info_3.2.0.tgz";
- path = fetchurl {
- name = "ci_info___ci_info_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz";
- sha1 = "2876cb948a498797b5236f0095bc057d0dca38b6";
- };
- }
- {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- path = fetchurl {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz";
- sha1 = "ee8472dbb129e727b31e8a10a427dee9dfe4008b";
- };
- }
- {
- name = "cli_boxes___cli_boxes_2.2.1.tgz";
- path = fetchurl {
- name = "cli_boxes___cli_boxes_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz";
- sha1 = "ddd5035d25094fce220e9cab40a45840a440318f";
- };
- }
- {
- name = "cli_color___cli_color_2.0.0.tgz";
- path = fetchurl {
- name = "cli_color___cli_color_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/cli-color/-/cli-color-2.0.0.tgz";
- sha1 = "11ecfb58a79278cf6035a60c54e338f9d837897c";
- };
- }
- {
- name = "cli_truncate___cli_truncate_1.1.0.tgz";
- path = fetchurl {
- name = "cli_truncate___cli_truncate_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz";
- sha1 = "2b2dfd83c53cfd3572b87fc4d430a808afb04086";
- };
- }
- {
- name = "cliui___cliui_7.0.4.tgz";
- path = fetchurl {
- name = "cliui___cliui_7.0.4.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz";
- sha1 = "a0265ee655476fc807aea9df3df8df7783808b4f";
- };
- }
- {
- name = "clone_response___clone_response_1.0.2.tgz";
- path = fetchurl {
- name = "clone_response___clone_response_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz";
- sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
- };
- }
- {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- path = fetchurl {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- }
- {
- name = "color_convert___color_convert_1.9.3.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_1.9.3.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz";
- sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8";
- };
- }
- {
- name = "color_convert___color_convert_2.0.1.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz";
- sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3";
- };
- }
- {
- name = "color_name___color_name_1.1.3.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- }
- {
- name = "color_name___color_name_1.1.4.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz";
- sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2";
- };
- }
- {
- name = "colors___colors_1.0.3.tgz";
- path = fetchurl {
- name = "colors___colors_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz";
- sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
- };
- }
- {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- path = fetchurl {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz";
- sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f";
- };
- }
- {
- name = "commander___commander_2.9.0.tgz";
- path = fetchurl {
- name = "commander___commander_2.9.0.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
- };
- }
- {
- name = "commander___commander_2.20.3.tgz";
- path = fetchurl {
- name = "commander___commander_2.20.3.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz";
- sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33";
- };
- }
- {
- name = "commander___commander_5.1.0.tgz";
- path = fetchurl {
- name = "commander___commander_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz";
- sha1 = "46abbd1652f8e059bddaef99bbdcb2ad9cf179ae";
- };
- }
- {
- name = "compress_commons___compress_commons_4.1.1.tgz";
- path = fetchurl {
- name = "compress_commons___compress_commons_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.1.tgz";
- sha1 = "df2a09a7ed17447642bad10a85cc9a19e5c42a7d";
- };
- }
- {
- name = "concat_map___concat_map_0.0.1.tgz";
- path = fetchurl {
- name = "concat_map___concat_map_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- }
- {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- path = fetchurl {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz";
- sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34";
- };
- }
- {
- name = "conf___conf_7.1.2.tgz";
- path = fetchurl {
- name = "conf___conf_7.1.2.tgz";
- url = "https://registry.yarnpkg.com/conf/-/conf-7.1.2.tgz";
- sha1 = "d9678a9d8f04de8bf5cd475105da8fdae49c2ec4";
- };
- }
- {
- name = "config_chain___config_chain_1.1.13.tgz";
- path = fetchurl {
- name = "config_chain___config_chain_1.1.13.tgz";
- url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz";
- sha1 = "fad0795aa6a6cdaff9ed1b68e9dff94372c232f4";
- };
- }
- {
- name = "configstore___configstore_5.0.1.tgz";
- path = fetchurl {
- name = "configstore___configstore_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz";
- sha1 = "d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96";
- };
- }
- {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- path = fetchurl {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
- };
- }
- {
- name = "core_js___core_js_3.18.2.tgz";
- path = fetchurl {
- name = "core_js___core_js_3.18.2.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-3.18.2.tgz";
- sha1 = "63a551e8a29f305cd4123754846e65896619ba5b";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.3.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz";
- sha1 = "a6042d3634c2b27e9328f837b965fac83808db85";
- };
- }
- {
- name = "counterpart___counterpart_0.18.6.tgz";
- path = fetchurl {
- name = "counterpart___counterpart_0.18.6.tgz";
- url = "https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz";
- sha1 = "cf6b60d8ef99a4b44b8bf6445fa99b4bd1b2f9dd";
- };
- }
- {
- name = "crc_32___crc_32_1.2.0.tgz";
- path = fetchurl {
- name = "crc_32___crc_32_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.0.tgz";
- sha1 = "cb2db6e29b88508e32d9dd0ec1693e7b41a18208";
- };
- }
- {
- name = "crc32_stream___crc32_stream_4.0.2.tgz";
- path = fetchurl {
- name = "crc32_stream___crc32_stream_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.2.tgz";
- sha1 = "c922ad22b38395abe9d3870f02fa8134ed709007";
- };
- }
- {
- name = "crc___crc_3.8.0.tgz";
- path = fetchurl {
- name = "crc___crc_3.8.0.tgz";
- url = "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz";
- sha1 = "ad60269c2c856f8c299e2c4cc0de4556914056c6";
- };
- }
- {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- path = fetchurl {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz";
- sha1 = "f73a85b9d5d41d045551c177e2882d4ac85728a6";
- };
- }
- {
- name = "crypto_random_string___crypto_random_string_2.0.0.tgz";
- path = fetchurl {
- name = "crypto_random_string___crypto_random_string_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz";
- sha1 = "ef2a7a966ec11083388369baa02ebead229b30d5";
- };
- }
- {
- name = "cuint___cuint_0.2.2.tgz";
- path = fetchurl {
- name = "cuint___cuint_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz";
- sha1 = "408086d409550c2631155619e9fa7bcadc3b991b";
- };
- }
- {
- name = "d___d_1.0.1.tgz";
- path = fetchurl {
- name = "d___d_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz";
- sha1 = "8698095372d58dbee346ffd0c7093f99f8f9eb5a";
- };
- }
- {
- name = "dashdash___dashdash_1.14.1.tgz";
- path = fetchurl {
- name = "dashdash___dashdash_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- }
- {
- name = "date_names___date_names_0.1.13.tgz";
- path = fetchurl {
- name = "date_names___date_names_0.1.13.tgz";
- url = "https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz";
- sha1 = "c4358f6f77c8056e2f5ea68fdbb05f0bf1e53bd0";
- };
- }
- {
- name = "debounce_fn___debounce_fn_4.0.0.tgz";
- path = fetchurl {
- name = "debounce_fn___debounce_fn_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-4.0.0.tgz";
- sha1 = "ed76d206d8a50e60de0dd66d494d82835ffe61c7";
- };
- }
- {
- name = "debug___debug_4.3.2.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz";
- sha1 = "f0a49c18ac8779e31d4a0c6029dfb76873c7428b";
- };
- }
- {
- name = "debug___debug_2.6.9.tgz";
- path = fetchurl {
- name = "debug___debug_2.6.9.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz";
- sha1 = "5d128515df134ff327e90a4c93f4e077a536341f";
- };
- }
- {
- name = "debug___debug_3.2.7.tgz";
- path = fetchurl {
- name = "debug___debug_3.2.7.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz";
- sha1 = "72580b7e9145fb39b6676f9c5e5fb100b934179a";
- };
- }
- {
- name = "decompress_response___decompress_response_3.3.0.tgz";
- path = fetchurl {
- name = "decompress_response___decompress_response_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz";
- sha1 = "80a4dd323748384bfa248083622aedec982adff3";
- };
- }
- {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- path = fetchurl {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz";
- sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac";
- };
- }
- {
- name = "deep_is___deep_is_0.1.4.tgz";
- path = fetchurl {
- name = "deep_is___deep_is_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz";
- sha1 = "a6f2dce612fadd2ef1f519b73551f17e85199831";
- };
- }
- {
- name = "defer_to_connect___defer_to_connect_1.1.3.tgz";
- path = fetchurl {
- name = "defer_to_connect___defer_to_connect_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz";
- sha1 = "331ae050c08dcf789f8c83a7b81f0ed94f4ac591";
- };
- }
- {
- name = "define_properties___define_properties_1.1.3.tgz";
- path = fetchurl {
- name = "define_properties___define_properties_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz";
- sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1";
- };
- }
- {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- path = fetchurl {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- }
- {
- name = "delegates___delegates_1.0.0.tgz";
- path = fetchurl {
- name = "delegates___delegates_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
- };
- }
- {
- name = "depd___depd_1.1.2.tgz";
- path = fetchurl {
- name = "depd___depd_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz";
- sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
- };
- }
- {
- name = "deprecation___deprecation_2.3.1.tgz";
- path = fetchurl {
- name = "deprecation___deprecation_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz";
- sha1 = "6368cbdb40abf3373b525ac87e4a260c3a700919";
- };
- }
- {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- path = fetchurl {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
- };
- }
- {
- name = "detect_node___detect_node_2.1.0.tgz";
- path = fetchurl {
- name = "detect_node___detect_node_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz";
- sha1 = "c9c70775a49c3d03bc2c06d9a73be550f978f8b1";
- };
- }
- {
- name = "dir_compare___dir_compare_2.4.0.tgz";
- path = fetchurl {
- name = "dir_compare___dir_compare_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/dir-compare/-/dir-compare-2.4.0.tgz";
- sha1 = "785c41dc5f645b34343a4eafc50b79bac7f11631";
- };
- }
- {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- path = fetchurl {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz";
- sha1 = "56dbf73d992a4a93ba1584f4534063fd2e41717f";
- };
- }
- {
- name = "dmg_builder___dmg_builder_22.11.4.tgz";
- path = fetchurl {
- name = "dmg_builder___dmg_builder_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.11.4.tgz";
- sha1 = "8e3a31bd835d51d3b686d1a6be6c0d08d3e7b1f4";
- };
- }
- {
- name = "dmg_license___dmg_license_1.0.9.tgz";
- path = fetchurl {
- name = "dmg_license___dmg_license_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.9.tgz";
- sha1 = "a2fb8d692af0e30b0730b5afc91ed9edc2d9cb4f";
- };
- }
- {
- name = "doctrine___doctrine_3.0.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz";
- sha1 = "addebead72a6574db783639dc87a121773973961";
- };
- }
- {
- name = "dom_walk___dom_walk_0.1.2.tgz";
- path = fetchurl {
- name = "dom_walk___dom_walk_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz";
- sha1 = "0c548bef048f4d1f2a97249002236060daa3fd84";
- };
- }
- {
- name = "dot_prop___dot_prop_5.3.0.tgz";
- path = fetchurl {
- name = "dot_prop___dot_prop_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz";
- sha1 = "90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88";
- };
- }
- {
- name = "dotenv_expand___dotenv_expand_5.1.0.tgz";
- path = fetchurl {
- name = "dotenv_expand___dotenv_expand_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz";
- sha1 = "3fbaf020bfd794884072ea26b1e9791d45a629f0";
- };
- }
- {
- name = "dotenv___dotenv_9.0.2.tgz";
- path = fetchurl {
- name = "dotenv___dotenv_9.0.2.tgz";
- url = "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.2.tgz";
- sha1 = "dacc20160935a37dea6364aa1bef819fb9b6ab05";
- };
- }
- {
- name = "duplexer3___duplexer3_0.1.4.tgz";
- path = fetchurl {
- name = "duplexer3___duplexer3_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz";
- sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
- };
- }
- {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- path = fetchurl {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
- };
- }
- {
- name = "ejs___ejs_3.1.6.tgz";
- path = fetchurl {
- name = "ejs___ejs_3.1.6.tgz";
- url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz";
- sha1 = "5bfd0a0689743bb5268b3550cceeebbc1702822a";
- };
- }
- {
- name = "electron_builder_squirrel_windows___electron_builder_squirrel_windows_22.11.4.tgz";
- path = fetchurl {
- name = "electron_builder_squirrel_windows___electron_builder_squirrel_windows_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-22.11.4.tgz";
- sha1 = "6dc50a26396d813f58a4d8e5b90ee3cedb56f4d8";
- };
- }
- {
- name = "electron_builder___electron_builder_22.11.4.tgz";
- path = fetchurl {
- name = "electron_builder___electron_builder_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.11.4.tgz";
- sha1 = "aadb57a4fc90863e82ebdbc66131400fc3bb4c82";
- };
- }
- {
- name = "electron_devtools_installer___electron_devtools_installer_3.2.0.tgz";
- path = fetchurl {
- name = "electron_devtools_installer___electron_devtools_installer_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-3.2.0.tgz";
- sha1 = "acc48d24eb7033fe5af284a19667e73b78d406d0";
- };
- }
- {
- name = "electron_notarize___electron_notarize_1.1.1.tgz";
- path = fetchurl {
- name = "electron_notarize___electron_notarize_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/electron-notarize/-/electron-notarize-1.1.1.tgz";
- sha1 = "3ed274b36158c1beb1dbef14e7faf5927e028629";
- };
- }
- {
- name = "electron_publish___electron_publish_22.11.4.tgz";
- path = fetchurl {
- name = "electron_publish___electron_publish_22.11.4.tgz";
- url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.11.4.tgz";
- sha1 = "0f526edb7e0c3f0155103ff3b8a2e363a3a392f1";
- };
- }
- {
- name = "electron_store___electron_store_6.0.1.tgz";
- path = fetchurl {
- name = "electron_store___electron_store_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/electron-store/-/electron-store-6.0.1.tgz";
- sha1 = "2178b9dc37aeb749d99cf9d1d1bc090890b922dc";
- };
- }
- {
- name = "electron_window_state___electron_window_state_5.0.3.tgz";
- path = fetchurl {
- name = "electron_window_state___electron_window_state_5.0.3.tgz";
- url = "https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz";
- sha1 = "4f36d09e3f953d87aff103bf010f460056050aa8";
- };
- }
- {
- name = "electron___electron_13.5.1.tgz";
- path = fetchurl {
- name = "electron___electron_13.5.1.tgz";
- url = "https://registry.yarnpkg.com/electron/-/electron-13.5.1.tgz";
- sha1 = "76c02c39be228532f886a170b472cbd3d93f0d0f";
- };
- }
- {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz";
- sha1 = "933a04052860c85e83c122479c4748a8e4c72156";
- };
- }
- {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz";
- sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37";
- };
- }
- {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- path = fetchurl {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz";
- sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
- };
- }
- {
- name = "encoding___encoding_0.1.13.tgz";
- path = fetchurl {
- name = "encoding___encoding_0.1.13.tgz";
- url = "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz";
- sha1 = "56574afdd791f54a8e9b2785c0582a2d26210fa9";
- };
- }
- {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- path = fetchurl {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz";
- sha1 = "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0";
- };
- }
- {
- name = "enquirer___enquirer_2.3.6.tgz";
- path = fetchurl {
- name = "enquirer___enquirer_2.3.6.tgz";
- url = "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz";
- sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d";
- };
- }
- {
- name = "env_paths___env_paths_2.2.1.tgz";
- path = fetchurl {
- name = "env_paths___env_paths_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz";
- sha1 = "420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2";
- };
- }
- {
- name = "err_code___err_code_2.0.3.tgz";
- path = fetchurl {
- name = "err_code___err_code_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz";
- sha1 = "23c2f3b756ffdfc608d30e27c9a941024807e7f9";
- };
- }
- {
- name = "es5_ext___es5_ext_0.10.53.tgz";
- path = fetchurl {
- name = "es5_ext___es5_ext_0.10.53.tgz";
- url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz";
- sha1 = "93c5a3acfdbef275220ad72644ad02ee18368de1";
- };
- }
- {
- name = "es6_error___es6_error_4.1.1.tgz";
- path = fetchurl {
- name = "es6_error___es6_error_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz";
- sha1 = "9e3af407459deed47e9a91f9b885a84eb05c561d";
- };
- }
- {
- name = "es6_iterator___es6_iterator_2.0.3.tgz";
- path = fetchurl {
- name = "es6_iterator___es6_iterator_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz";
- sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
- };
- }
- {
- name = "es6_symbol___es6_symbol_3.1.3.tgz";
- path = fetchurl {
- name = "es6_symbol___es6_symbol_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz";
- sha1 = "bad5d3c1bcdac28269f4cb331e431c78ac705d18";
- };
- }
- {
- name = "es6_weak_map___es6_weak_map_2.0.3.tgz";
- path = fetchurl {
- name = "es6_weak_map___es6_weak_map_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz";
- sha1 = "b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53";
- };
- }
- {
- name = "escalade___escalade_3.1.1.tgz";
- path = fetchurl {
- name = "escalade___escalade_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz";
- sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40";
- };
- }
- {
- name = "escape_goat___escape_goat_2.1.1.tgz";
- path = fetchurl {
- name = "escape_goat___escape_goat_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz";
- sha1 = "1b2dc77003676c457ec760b2dc68edb648188675";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
- sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34";
- };
- }
- {
- name = "eslint_config_google___eslint_config_google_0.14.0.tgz";
- path = fetchurl {
- name = "eslint_config_google___eslint_config_google_0.14.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz";
- sha1 = "4f5f8759ba6e11b424294a219dbfa18c508bcc1a";
- };
- }
- {
- name = "2306b3d4da4eba908b256014b979f1d3d43d2945";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/matrix-org/eslint-plugin-matrix-org.git";
- rev = "2306b3d4da4eba908b256014b979f1d3d43d2945";
- sha256 = "0ywgrls2phviz47kzsjrxijkdbs1ky77471fbq9cnpj0fs3si81c";
- };
- in
- runCommand "2306b3d4da4eba908b256014b979f1d3d43d2945" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz";
- sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c";
- };
- }
- {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- path = fetchurl {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz";
- sha1 = "d2de5e03424e707dc10c74068ddedae708741b27";
- };
- }
- {
- name = "eslint_utils___eslint_utils_3.0.0.tgz";
- path = fetchurl {
- name = "eslint_utils___eslint_utils_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz";
- sha1 = "8aebaface7345bb33559db0a1f13a1d2d48c3672";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz";
- sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz";
- sha1 = "f65328259305927392c938ed44eb0a5c9b2bd303";
- };
- }
- {
- name = "eslint___eslint_7.18.0.tgz";
- path = fetchurl {
- name = "eslint___eslint_7.18.0.tgz";
- url = "https://registry.yarnpkg.com/eslint/-/eslint-7.18.0.tgz";
- sha1 = "7fdcd2f3715a41fe6295a16234bd69aed2c75e67";
- };
- }
- {
- name = "espree___espree_7.3.1.tgz";
- path = fetchurl {
- name = "espree___espree_7.3.1.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz";
- sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6";
- };
- }
- {
- name = "esprima___esprima_4.0.1.tgz";
- path = fetchurl {
- name = "esprima___esprima_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz";
- sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71";
- };
- }
- {
- name = "esquery___esquery_1.4.0.tgz";
- path = fetchurl {
- name = "esquery___esquery_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
- sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
- };
- }
- {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- path = fetchurl {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz";
- sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921";
- };
- }
- {
- name = "estraverse___estraverse_4.3.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz";
- sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d";
- };
- }
- {
- name = "estraverse___estraverse_5.2.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz";
- sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880";
- };
- }
- {
- name = "esutils___esutils_2.0.3.tgz";
- path = fetchurl {
- name = "esutils___esutils_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz";
- sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64";
- };
- }
- {
- name = "event_emitter___event_emitter_0.3.5.tgz";
- path = fetchurl {
- name = "event_emitter___event_emitter_0.3.5.tgz";
- url = "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz";
- sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
- };
- }
- {
- name = "except___except_0.1.3.tgz";
- path = fetchurl {
- name = "except___except_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/except/-/except-0.1.3.tgz";
- sha1 = "98261c91958551536b44482238e9783fb73d292a";
- };
- }
- {
- name = "exif_parser___exif_parser_0.1.12.tgz";
- path = fetchurl {
- name = "exif_parser___exif_parser_0.1.12.tgz";
- url = "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz";
- sha1 = "58a9d2d72c02c1f6f02a0ef4a9166272b7760922";
- };
- }
- {
- name = "exit_on_epipe___exit_on_epipe_1.0.1.tgz";
- path = fetchurl {
- name = "exit_on_epipe___exit_on_epipe_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz";
- sha1 = "0bdd92e87d5285d267daa8171d0eb06159689692";
- };
- }
- {
- name = "ext___ext_1.5.0.tgz";
- path = fetchurl {
- name = "ext___ext_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/ext/-/ext-1.5.0.tgz";
- sha1 = "e93b97ae0cb23f8370380f6107d2d2b7887687ad";
- };
- }
- {
- name = "extend___extend_3.0.2.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz";
- sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa";
- };
- }
- {
- name = "extract_zip___extract_zip_1.7.0.tgz";
- path = fetchurl {
- name = "extract_zip___extract_zip_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz";
- sha1 = "556cc3ae9df7f452c493a0cfb51cc30277940927";
- };
- }
- {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- }
- {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz";
- sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f";
- };
- }
- {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- path = fetchurl {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
- sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525";
- };
- }
- {
- name = "fast_glob___fast_glob_3.2.7.tgz";
- path = fetchurl {
- name = "fast_glob___fast_glob_3.2.7.tgz";
- url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz";
- sha1 = "fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1";
- };
- }
- {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- path = fetchurl {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
- sha1 = "874bf69c6f404c2b5d99c481341399fd55892633";
- };
- }
- {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- path = fetchurl {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
- };
- }
- {
- name = "fastq___fastq_1.13.0.tgz";
- path = fetchurl {
- name = "fastq___fastq_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz";
- sha1 = "616760f88a7526bdfc596b7cab8c18938c36b98c";
- };
- }
- {
- name = "fd_slicer___fd_slicer_1.1.0.tgz";
- path = fetchurl {
- name = "fd_slicer___fd_slicer_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz";
- sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
- };
- }
- {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- path = fetchurl {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz";
- sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027";
- };
- }
- {
- name = "file_type___file_type_9.0.0.tgz";
- path = fetchurl {
- name = "file_type___file_type_9.0.0.tgz";
- url = "https://registry.yarnpkg.com/file-type/-/file-type-9.0.0.tgz";
- sha1 = "a68d5ad07f486414dfb2c8866f73161946714a18";
- };
- }
- {
- name = "filelist___filelist_1.0.2.tgz";
- path = fetchurl {
- name = "filelist___filelist_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz";
- sha1 = "80202f21462d4d1c2e214119b1807c1bc0380e5b";
- };
- }
- {
- name = "fill_range___fill_range_7.0.1.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz";
- sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40";
- };
- }
- {
- name = "find_npm_prefix___find_npm_prefix_1.0.2.tgz";
- path = fetchurl {
- name = "find_npm_prefix___find_npm_prefix_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/find-npm-prefix/-/find-npm-prefix-1.0.2.tgz";
- sha1 = "8d8ce2c78b3b4b9e66c8acc6a37c231eb841cfdf";
- };
- }
- {
- name = "find_up___find_up_3.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz";
- sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73";
- };
- }
- {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- path = fetchurl {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz";
- sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11";
- };
- }
- {
- name = "flatted___flatted_3.2.2.tgz";
- path = fetchurl {
- name = "flatted___flatted_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz";
- sha1 = "64bfed5cb68fe3ca78b3eb214ad97b63bedce561";
- };
- }
- {
- name = "foreachasync___foreachasync_3.0.0.tgz";
- path = fetchurl {
- name = "foreachasync___foreachasync_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz";
- sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
- };
- }
- {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- path = fetchurl {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- }
- {
- name = "form_data___form_data_2.3.3.tgz";
- path = fetchurl {
- name = "form_data___form_data_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz";
- sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6";
- };
- }
- {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- path = fetchurl {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz";
- sha1 = "6be0de9be998ce16af8afc24497b9ee9b7ccd9ad";
- };
- }
- {
- name = "fs_extra___fs_extra_10.0.0.tgz";
- path = fetchurl {
- name = "fs_extra___fs_extra_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz";
- sha1 = "9ff61b655dde53fb34a82df84bb214ce802e17c1";
- };
- }
- {
- name = "fs_extra___fs_extra_8.1.0.tgz";
- path = fetchurl {
- name = "fs_extra___fs_extra_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz";
- sha1 = "49d43c45a88cd9677668cb7be1b46efdb8d2e1c0";
- };
- }
- {
- name = "fs_extra___fs_extra_9.1.0.tgz";
- path = fetchurl {
- name = "fs_extra___fs_extra_9.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz";
- sha1 = "5954460c764a8da2094ba3554bf839e6b9a7c86d";
- };
- }
- {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz";
- sha1 = "ccff8570841e7fe4265693da88936c55aed7f7c7";
- };
- }
- {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz";
- sha1 = "7f5036fdbf12c63c169190cbe4199c852271f9fb";
- };
- }
- {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- path = fetchurl {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- }
- {
- name = "fsevents___fsevents_2.3.2.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz";
- sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a";
- };
- }
- {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- path = fetchurl {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
- };
- }
- {
- name = "gauge___gauge_2.7.4.tgz";
- path = fetchurl {
- name = "gauge___gauge_2.7.4.tgz";
- url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
- };
- }
- {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz";
- sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
- };
- }
- {
- name = "get_stream___get_stream_4.1.0.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz";
- sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5";
- };
- }
- {
- name = "get_stream___get_stream_5.2.0.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz";
- sha1 = "4966a1795ee5ace65e706c4b7beb71257d6e22d3";
- };
- }
- {
- name = "getpass___getpass_0.1.7.tgz";
- path = fetchurl {
- name = "getpass___getpass_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- }
- {
- name = "gifwrap___gifwrap_0.9.2.tgz";
- path = fetchurl {
- name = "gifwrap___gifwrap_0.9.2.tgz";
- url = "https://registry.yarnpkg.com/gifwrap/-/gifwrap-0.9.2.tgz";
- sha1 = "348e286e67d7cf57942172e1e6f05a71cee78489";
- };
- }
- {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
- sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
- };
- }
- {
- name = "glob___glob_7.1.7.tgz";
- path = fetchurl {
- name = "glob___glob_7.1.7.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz";
- sha1 = "3b193e9233f01d42d0b3f78294bbeeb418f94a90";
- };
- }
- {
- name = "global_agent___global_agent_2.2.0.tgz";
- path = fetchurl {
- name = "global_agent___global_agent_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/global-agent/-/global-agent-2.2.0.tgz";
- sha1 = "566331b0646e6bf79429a16877685c4a1fbf76dc";
- };
- }
- {
- name = "global_dirs___global_dirs_3.0.0.tgz";
- path = fetchurl {
- name = "global_dirs___global_dirs_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz";
- sha1 = "70a76fe84ea315ab37b1f5576cbde7d48ef72686";
- };
- }
- {
- name = "global_tunnel_ng___global_tunnel_ng_2.7.1.tgz";
- path = fetchurl {
- name = "global_tunnel_ng___global_tunnel_ng_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz";
- sha1 = "d03b5102dfde3a69914f5ee7d86761ca35d57d8f";
- };
- }
- {
- name = "global___global_4.4.0.tgz";
- path = fetchurl {
- name = "global___global_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz";
- sha1 = "3e7b105179006a323ed71aafca3e9c57a5cc6406";
- };
- }
- {
- name = "globals___globals_11.12.0.tgz";
- path = fetchurl {
- name = "globals___globals_11.12.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz";
- sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e";
- };
- }
- {
- name = "globals___globals_12.4.0.tgz";
- path = fetchurl {
- name = "globals___globals_12.4.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz";
- sha1 = "a18813576a41b00a24a97e7f815918c2e19925f8";
- };
- }
- {
- name = "globalthis___globalthis_1.0.2.tgz";
- path = fetchurl {
- name = "globalthis___globalthis_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz";
- sha1 = "2a235d34f4d8036219f7e34929b5de9e18166b8b";
- };
- }
- {
- name = "globby___globby_11.0.4.tgz";
- path = fetchurl {
- name = "globby___globby_11.0.4.tgz";
- url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz";
- sha1 = "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5";
- };
- }
- {
- name = "got___got_9.6.0.tgz";
- path = fetchurl {
- name = "got___got_9.6.0.tgz";
- url = "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz";
- sha1 = "edf45e7d67f99545705de1f7bbeeeb121765ed85";
- };
- }
- {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- path = fetchurl {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz";
- sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a";
- };
- }
- {
- name = "graceful_readlink___graceful_readlink_1.0.1.tgz";
- path = fetchurl {
- name = "graceful_readlink___graceful_readlink_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
- };
- }
- {
- name = "har_schema___har_schema_2.0.0.tgz";
- path = fetchurl {
- name = "har_schema___har_schema_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- }
- {
- name = "har_validator___har_validator_5.1.5.tgz";
- path = fetchurl {
- name = "har_validator___har_validator_5.1.5.tgz";
- url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz";
- sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd";
- };
- }
- {
- name = "has_flag___has_flag_3.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
- };
- }
- {
- name = "has_flag___has_flag_4.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz";
- sha1 = "944771fd9c81c81265c4d6941860da06bb59479b";
- };
- }
- {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- path = fetchurl {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
- };
- }
- {
- name = "has_yarn___has_yarn_2.1.0.tgz";
- path = fetchurl {
- name = "has_yarn___has_yarn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz";
- sha1 = "137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77";
- };
- }
- {
- name = "hosted_git_info___hosted_git_info_4.0.2.tgz";
- path = fetchurl {
- name = "hosted_git_info___hosted_git_info_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz";
- sha1 = "5e425507eede4fea846b7262f0838456c4209961";
- };
- }
- {
- name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz";
- path = fetchurl {
- name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz";
- sha1 = "49e91c5cbf36c9b94bcfcd71c23d5249ec74e390";
- };
- }
- {
- name = "http_proxy_agent___http_proxy_agent_4.0.1.tgz";
- path = fetchurl {
- name = "http_proxy_agent___http_proxy_agent_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz";
- sha1 = "8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a";
- };
- }
- {
- name = "http_signature___http_signature_1.2.0.tgz";
- path = fetchurl {
- name = "http_signature___http_signature_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- }
- {
- name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz";
- path = fetchurl {
- name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz";
- sha1 = "e2a90542abb68a762e0a0850f6c9edadfd8506b2";
- };
- }
- {
- name = "humanize_ms___humanize_ms_1.2.1.tgz";
- path = fetchurl {
- name = "humanize_ms___humanize_ms_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz";
- sha1 = "c46e3159a293f6b896da29316d8b6fe8bb79bbed";
- };
- }
- {
- name = "iconv_corefoundation___iconv_corefoundation_1.1.6.tgz";
- path = fetchurl {
- name = "iconv_corefoundation___iconv_corefoundation_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.6.tgz";
- sha1 = "27c135470237f6f8d13462fa1f5eaf250523c29a";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz";
- sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.6.3.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.6.3.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz";
- sha1 = "a52f80bf38da1952eb5c681790719871a1a72501";
- };
- }
- {
- name = "ieee754___ieee754_1.2.1.tgz";
- path = fetchurl {
- name = "ieee754___ieee754_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz";
- sha1 = "8eb7a10a63fff25d15a57b001586d177d1b0d352";
- };
- }
- {
- name = "ignore_walk___ignore_walk_3.0.4.tgz";
- path = fetchurl {
- name = "ignore_walk___ignore_walk_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz";
- sha1 = "c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335";
- };
- }
- {
- name = "ignore___ignore_4.0.6.tgz";
- path = fetchurl {
- name = "ignore___ignore_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz";
- sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc";
- };
- }
- {
- name = "ignore___ignore_5.1.8.tgz";
- path = fetchurl {
- name = "ignore___ignore_5.1.8.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz";
- sha1 = "f150a8b50a34289b33e22f5889abd4d8016f0e57";
- };
- }
- {
- name = "image_q___image_q_1.1.1.tgz";
- path = fetchurl {
- name = "image_q___image_q_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz";
- sha1 = "fc84099664460b90ca862d9300b6bfbbbfbf8056";
- };
- }
- {
- name = "immediate___immediate_3.0.6.tgz";
- path = fetchurl {
- name = "immediate___immediate_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz";
- sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b";
- };
- }
- {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- path = fetchurl {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz";
- sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b";
- };
- }
- {
- name = "import_lazy___import_lazy_2.1.0.tgz";
- path = fetchurl {
- name = "import_lazy___import_lazy_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz";
- sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
- };
- }
- {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- path = fetchurl {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
- };
- }
- {
- name = "indent_string___indent_string_4.0.0.tgz";
- path = fetchurl {
- name = "indent_string___indent_string_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz";
- sha1 = "624f8f4497d619b2d9768531d58f4122854d7251";
- };
- }
- {
- name = "indexof___indexof_0.0.1.tgz";
- path = fetchurl {
- name = "indexof___indexof_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz";
- sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
- };
- }
- {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- path = fetchurl {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz";
- sha1 = "c4cefcaa8e51051c2a40ba2ce8a3d27295af9467";
- };
- }
- {
- name = "inflight___inflight_1.0.6.tgz";
- path = fetchurl {
- name = "inflight___inflight_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- }
- {
- name = "inherits___inherits_2.0.4.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz";
- sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c";
- };
- }
- {
- name = "ini___ini_2.0.0.tgz";
- path = fetchurl {
- name = "ini___ini_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz";
- sha1 = "e5fd556ecdd5726be978fa1001862eacb0a94bc5";
- };
- }
- {
- name = "ini___ini_1.3.8.tgz";
- path = fetchurl {
- name = "ini___ini_1.3.8.tgz";
- url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz";
- sha1 = "a29da425b48806f34767a4efce397269af28432c";
- };
- }
- {
- name = "ip___ip_1.1.5.tgz";
- path = fetchurl {
- name = "ip___ip_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
- };
- }
- {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- path = fetchurl {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz";
- sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09";
- };
- }
- {
- name = "is_ci___is_ci_2.0.0.tgz";
- path = fetchurl {
- name = "is_ci___is_ci_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz";
- sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c";
- };
- }
- {
- name = "is_ci___is_ci_3.0.0.tgz";
- path = fetchurl {
- name = "is_ci___is_ci_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz";
- sha1 = "c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994";
- };
- }
- {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz";
- sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d";
- };
- }
- {
- name = "is_function___is_function_1.0.2.tgz";
- path = fetchurl {
- name = "is_function___is_function_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz";
- sha1 = "4f097f30abf6efadac9833b17ca5dc03f8144e08";
- };
- }
- {
- name = "is_glob___is_glob_4.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz";
- sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc";
- };
- }
- {
- name = "is_installed_globally___is_installed_globally_0.4.0.tgz";
- path = fetchurl {
- name = "is_installed_globally___is_installed_globally_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz";
- sha1 = "9a0fd407949c30f86eb6959ef1b7994ed0b7b520";
- };
- }
- {
- name = "is_lambda___is_lambda_1.0.1.tgz";
- path = fetchurl {
- name = "is_lambda___is_lambda_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz";
- sha1 = "3d9877899e6a53efc0160504cde15f82e6f061d5";
- };
- }
- {
- name = "is_npm___is_npm_5.0.0.tgz";
- path = fetchurl {
- name = "is_npm___is_npm_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz";
- sha1 = "43e8d65cc56e1b67f8d47262cf667099193f45a8";
- };
- }
- {
- name = "is_number___is_number_7.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz";
- sha1 = "7535345b896734d5f80c4d06c50955527a14f12b";
- };
- }
- {
- name = "is_obj___is_obj_2.0.0.tgz";
- path = fetchurl {
- name = "is_obj___is_obj_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz";
- sha1 = "473fb05d973705e3fd9620545018ca8e22ef4982";
- };
- }
- {
- name = "is_path_inside___is_path_inside_3.0.3.tgz";
- path = fetchurl {
- name = "is_path_inside___is_path_inside_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz";
- sha1 = "d231362e53a07ff2b0e0ea7fed049161ffd16283";
- };
- }
- {
- name = "is_plain_object___is_plain_object_5.0.0.tgz";
- path = fetchurl {
- name = "is_plain_object___is_plain_object_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz";
- sha1 = "4427f50ab3429e9025ea7d52e9043a9ef4159344";
- };
- }
- {
- name = "is_promise___is_promise_2.2.2.tgz";
- path = fetchurl {
- name = "is_promise___is_promise_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz";
- sha1 = "39ab959ccbf9a774cf079f7b40c7a26f763135f1";
- };
- }
- {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- path = fetchurl {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- }
- {
- name = "is_yarn_global___is_yarn_global_0.3.0.tgz";
- path = fetchurl {
- name = "is_yarn_global___is_yarn_global_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz";
- sha1 = "d502d3382590ea3004893746754c89139973e232";
- };
- }
- {
- name = "isarray___isarray_1.0.0.tgz";
- path = fetchurl {
- name = "isarray___isarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- }
- {
- name = "isbinaryfile___isbinaryfile_4.0.8.tgz";
- path = fetchurl {
- name = "isbinaryfile___isbinaryfile_4.0.8.tgz";
- url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.8.tgz";
- sha1 = "5d34b94865bd4946633ecc78a026fc76c5b11fcf";
- };
- }
- {
- name = "isexe___isexe_2.0.0.tgz";
- path = fetchurl {
- name = "isexe___isexe_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- }
- {
- name = "isstream___isstream_0.1.2.tgz";
- path = fetchurl {
- name = "isstream___isstream_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- }
- {
- name = "jake___jake_10.8.2.tgz";
- path = fetchurl {
- name = "jake___jake_10.8.2.tgz";
- url = "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz";
- sha1 = "ebc9de8558160a66d82d0eadc6a2e58fbc500a7b";
- };
- }
- {
- name = "jimp___jimp_0.16.1.tgz";
- path = fetchurl {
- name = "jimp___jimp_0.16.1.tgz";
- url = "https://registry.yarnpkg.com/jimp/-/jimp-0.16.1.tgz";
- sha1 = "192f851a30e5ca11112a3d0aa53137659a78ca7a";
- };
- }
- {
- name = "jpeg_js___jpeg_js_0.4.2.tgz";
- path = fetchurl {
- name = "jpeg_js___jpeg_js_0.4.2.tgz";
- url = "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.2.tgz";
- sha1 = "8b345b1ae4abde64c2da2fe67ea216a114ac279d";
- };
- }
- {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz";
- sha1 = "19203fb59991df98e3a287050d4647cdeaf32499";
- };
- }
- {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
- sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
- };
- }
- {
- name = "js_yaml___js_yaml_4.1.0.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz";
- sha1 = "c1fb65f8f5017901cdd2c951864ba18458a10602";
- };
- }
- {
- name = "jsbn___jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "jsbn___jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- }
- {
- name = "jsesc___jsesc_2.5.2.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz";
- sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4";
- };
- }
- {
- name = "json_buffer___json_buffer_3.0.0.tgz";
- path = fetchurl {
- name = "json_buffer___json_buffer_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz";
- sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
- };
- }
- {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- path = fetchurl {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz";
- sha1 = "7c47805a94319928e05777405dc12e1f7a4ee02d";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz";
- sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2";
- };
- }
- {
- name = "json_schema_typed___json_schema_typed_7.0.3.tgz";
- path = fetchurl {
- name = "json_schema_typed___json_schema_typed_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-7.0.3.tgz";
- sha1 = "23ff481b8b4eebcd2ca123b4fa0409e66469a2d9";
- };
- }
- {
- name = "json_schema___json_schema_0.2.3.tgz";
- path = fetchurl {
- name = "json_schema___json_schema_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- }
- {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- path = fetchurl {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
- sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
- };
- }
- {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- path = fetchurl {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- }
- {
- name = "json5___json5_2.2.0.tgz";
- path = fetchurl {
- name = "json5___json5_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz";
- sha1 = "2dfefe720c6ba525d9ebd909950f0515316c89a3";
- };
- }
- {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- path = fetchurl {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz";
- sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
- };
- }
- {
- name = "jsonfile___jsonfile_6.1.0.tgz";
- path = fetchurl {
- name = "jsonfile___jsonfile_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz";
- sha1 = "bc55b2634793c679ec6403094eb13698a6ec0aae";
- };
- }
- {
- name = "jsonparse___jsonparse_1.3.1.tgz";
- path = fetchurl {
- name = "jsonparse___jsonparse_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz";
- sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280";
- };
- }
- {
- name = "jsprim___jsprim_1.4.1.tgz";
- path = fetchurl {
- name = "jsprim___jsprim_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- }
- {
- name = "jszip___jszip_3.7.1.tgz";
- path = fetchurl {
- name = "jszip___jszip_3.7.1.tgz";
- url = "https://registry.yarnpkg.com/jszip/-/jszip-3.7.1.tgz";
- sha1 = "bd63401221c15625a1228c556ca8a68da6fda3d9";
- };
- }
- {
- name = "keyv___keyv_3.1.0.tgz";
- path = fetchurl {
- name = "keyv___keyv_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz";
- sha1 = "ecc228486f69991e49e9476485a5be1e8fc5c4d9";
- };
- }
- {
- name = "latest_version___latest_version_5.1.0.tgz";
- path = fetchurl {
- name = "latest_version___latest_version_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz";
- sha1 = "119dfe908fe38d15dfa43ecd13fa12ec8832face";
- };
- }
- {
- name = "lazy_val___lazy_val_1.0.5.tgz";
- path = fetchurl {
- name = "lazy_val___lazy_val_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz";
- sha1 = "6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d";
- };
- }
- {
- name = "lazystream___lazystream_1.0.0.tgz";
- path = fetchurl {
- name = "lazystream___lazystream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz";
- sha1 = "f6995fe0f820392f61396be89462407bb77168e4";
- };
- }
- {
- name = "levn___levn_0.4.1.tgz";
- path = fetchurl {
- name = "levn___levn_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz";
- sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade";
- };
- }
- {
- name = "lie___lie_3.3.0.tgz";
- path = fetchurl {
- name = "lie___lie_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz";
- sha1 = "dcf82dee545f46074daf200c7c1c5a08e0f40f6a";
- };
- }
- {
- name = "load_bmfont___load_bmfont_1.4.1.tgz";
- path = fetchurl {
- name = "load_bmfont___load_bmfont_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz";
- sha1 = "c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9";
- };
- }
- {
- name = "locate_path___locate_path_3.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz";
- sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e";
- };
- }
- {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
- sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
- };
- }
- {
- name = "lodash.defaults___lodash.defaults_4.2.0.tgz";
- path = fetchurl {
- name = "lodash.defaults___lodash.defaults_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz";
- sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c";
- };
- }
- {
- name = "lodash.difference___lodash.difference_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.difference___lodash.difference_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz";
- sha1 = "9ccb4e505d486b91651345772885a2df27fd017c";
- };
- }
- {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz";
- sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f";
- };
- }
- {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- path = fetchurl {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
- sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
- };
- }
- {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- path = fetchurl {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz";
- sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193";
- };
- }
- {
- name = "lodash.union___lodash.union_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.union___lodash.union_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz";
- sha1 = "48bb5088409f16f1821666641c44dd1aaae3cd88";
- };
- }
- {
- name = "lodash___lodash_4.17.21.tgz";
- path = fetchurl {
- name = "lodash___lodash_4.17.21.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
- sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
- };
- }
- {
- name = "loglevel___loglevel_1.7.1.tgz";
- path = fetchurl {
- name = "loglevel___loglevel_1.7.1.tgz";
- url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz";
- sha1 = "005fde2f5e6e47068f935ff28573e125ef72f197";
- };
- }
- {
- name = "lowercase_keys___lowercase_keys_1.0.1.tgz";
- path = fetchurl {
- name = "lowercase_keys___lowercase_keys_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
- sha1 = "6f9e30b47084d971a7c820ff15a6c5167b74c26f";
- };
- }
- {
- name = "lowercase_keys___lowercase_keys_2.0.0.tgz";
- path = fetchurl {
- name = "lowercase_keys___lowercase_keys_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz";
- sha1 = "2603e78b7b4b0006cbca2fbcc8a3202558ac9479";
- };
- }
- {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz";
- sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94";
- };
- }
- {
- name = "lru_queue___lru_queue_0.1.0.tgz";
- path = fetchurl {
- name = "lru_queue___lru_queue_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz";
- sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3";
- };
- }
- {
- name = "make_dir___make_dir_3.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz";
- sha1 = "415e967046b3a7f1d185277d84aa58203726a13f";
- };
- }
- {
- name = "make_fetch_happen___make_fetch_happen_9.1.0.tgz";
- path = fetchurl {
- name = "make_fetch_happen___make_fetch_happen_9.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz";
- sha1 = "53085a09e7971433e6765f7971bf63f4e05cb968";
- };
- }
- {
- name = "matcher___matcher_3.0.0.tgz";
- path = fetchurl {
- name = "matcher___matcher_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz";
- sha1 = "bd9060f4c5b70aa8041ccc6f80368760994f30ca";
- };
- }
- {
- name = "e5c7071e0cdf715de87ef39dc8260e11d7add2f8";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/matrix-org/matrix-web-i18n.git";
- rev = "e5c7071e0cdf715de87ef39dc8260e11d7add2f8";
- sha256 = "0whjmf23m3204ifgx3spfnlg9pwm956fc16gjxgp9ia0d93xrpn6";
- };
- in
- runCommand "e5c7071e0cdf715de87ef39dc8260e11d7add2f8" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "memoizee___memoizee_0.4.15.tgz";
- path = fetchurl {
- name = "memoizee___memoizee_0.4.15.tgz";
- url = "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz";
- sha1 = "e6f3d2da863f318d02225391829a6c5956555b72";
- };
- }
- {
- name = "merge2___merge2_1.4.1.tgz";
- path = fetchurl {
- name = "merge2___merge2_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz";
- sha1 = "4368892f885e907455a6fd7dc55c0c9d404990ae";
- };
- }
- {
- name = "micromatch___micromatch_4.0.4.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz";
- sha1 = "896d519dfe9db25fce94ceb7a500919bf881ebf9";
- };
- }
- {
- name = "mime_db___mime_db_1.49.0.tgz";
- path = fetchurl {
- name = "mime_db___mime_db_1.49.0.tgz";
- url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz";
- sha1 = "f3dfde60c99e9cf3bc9701d687778f537001cbed";
- };
- }
- {
- name = "mime_types___mime_types_2.1.32.tgz";
- path = fetchurl {
- name = "mime_types___mime_types_2.1.32.tgz";
- url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz";
- sha1 = "1d00e89e7de7fe02008db61001d9e02852670fd5";
- };
- }
- {
- name = "mime___mime_1.6.0.tgz";
- path = fetchurl {
- name = "mime___mime_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz";
- sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1";
- };
- }
- {
- name = "mime___mime_2.5.2.tgz";
- path = fetchurl {
- name = "mime___mime_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz";
- sha1 = "6e3dc6cc2b9510643830e5f19d5cb753da5eeabe";
- };
- }
- {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- path = fetchurl {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz";
- sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b";
- };
- }
- {
- name = "mimic_fn___mimic_fn_3.1.0.tgz";
- path = fetchurl {
- name = "mimic_fn___mimic_fn_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz";
- sha1 = "65755145bbf3e36954b949c16450427451d5ca74";
- };
- }
- {
- name = "mimic_response___mimic_response_1.0.1.tgz";
- path = fetchurl {
- name = "mimic_response___mimic_response_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz";
- sha1 = "4923538878eef42063cb8a3e3b0798781487ab1b";
- };
- }
- {
- name = "min_document___min_document_2.19.0.tgz";
- path = fetchurl {
- name = "min_document___min_document_2.19.0.tgz";
- url = "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
- };
- }
- {
- name = "minimatch___minimatch_3.0.4.tgz";
- path = fetchurl {
- name = "minimatch___minimatch_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
- };
- }
- {
- name = "minimist___minimist_1.2.5.tgz";
- path = fetchurl {
- name = "minimist___minimist_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz";
- sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602";
- };
- }
- {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- path = fetchurl {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz";
- sha1 = "22b813bf745dc6edba2576b940022ad6edc8c617";
- };
- }
- {
- name = "minipass_fetch___minipass_fetch_1.4.1.tgz";
- path = fetchurl {
- name = "minipass_fetch___minipass_fetch_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz";
- sha1 = "d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6";
- };
- }
- {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- path = fetchurl {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz";
- sha1 = "82e7135d7e89a50ffe64610a787953c4c4cbb373";
- };
- }
- {
- name = "minipass_json_stream___minipass_json_stream_1.0.1.tgz";
- path = fetchurl {
- name = "minipass_json_stream___minipass_json_stream_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz";
- sha1 = "7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7";
- };
- }
- {
- name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz";
- path = fetchurl {
- name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz";
- sha1 = "68472f79711c084657c067c5c6ad93cddea8214c";
- };
- }
- {
- name = "minipass_sized___minipass_sized_1.0.3.tgz";
- path = fetchurl {
- name = "minipass_sized___minipass_sized_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz";
- sha1 = "70ee5a7c5052070afacfbc22977ea79def353b70";
- };
- }
- {
- name = "minipass___minipass_2.9.0.tgz";
- path = fetchurl {
- name = "minipass___minipass_2.9.0.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz";
- sha1 = "e713762e7d3e32fed803115cf93e04bca9fcc9a6";
- };
- }
- {
- name = "minipass___minipass_3.1.5.tgz";
- path = fetchurl {
- name = "minipass___minipass_3.1.5.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz";
- sha1 = "71f6251b0a33a49c01b3cf97ff77eda030dff732";
- };
- }
- {
- name = "minizlib___minizlib_1.3.3.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz";
- sha1 = "2290de96818a34c29551c8a8d301216bd65a861d";
- };
- }
- {
- name = "minizlib___minizlib_2.1.2.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz";
- sha1 = "e90d3466ba209b932451508a11ce3d3632145931";
- };
- }
- {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz";
- sha1 = "d91cefd62d1436ca0f41620e251288d420099def";
- };
- }
- {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz";
- sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e";
- };
- }
- {
- name = "ms___ms_2.0.0.tgz";
- path = fetchurl {
- name = "ms___ms_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- }
- {
- name = "ms___ms_2.1.2.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz";
- sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009";
- };
- }
- {
- name = "ms___ms_2.1.3.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz";
- sha1 = "574c8138ce1d2b5861f0b44579dbadd60c6615b2";
- };
- }
- {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- path = fetchurl {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
- };
- }
- {
- name = "needle___needle_2.9.1.tgz";
- path = fetchurl {
- name = "needle___needle_2.9.1.tgz";
- url = "https://registry.yarnpkg.com/needle/-/needle-2.9.1.tgz";
- sha1 = "22d1dffbe3490c2b83e301f7709b6736cd8f2684";
- };
- }
- {
- name = "negotiator___negotiator_0.6.2.tgz";
- path = fetchurl {
- name = "negotiator___negotiator_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz";
- sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb";
- };
- }
- {
- name = "next_tick___next_tick_1.1.0.tgz";
- path = fetchurl {
- name = "next_tick___next_tick_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz";
- sha1 = "1836ee30ad56d67ef281b22bd199f709449b35eb";
- };
- }
- {
- name = "next_tick___next_tick_1.0.0.tgz";
- path = fetchurl {
- name = "next_tick___next_tick_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz";
- sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c";
- };
- }
- {
- name = "node_addon_api___node_addon_api_1.7.2.tgz";
- path = fetchurl {
- name = "node_addon_api___node_addon_api_1.7.2.tgz";
- url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz";
- sha1 = "3df30b95720b53c24e59948b49532b662444f54d";
- };
- }
- {
- name = "node_fetch___node_fetch_2.6.2.tgz";
- path = fetchurl {
- name = "node_fetch___node_fetch_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.2.tgz";
- sha1 = "986996818b73785e47b1965cc34eb093a1d464d0";
- };
- }
- {
- name = "node_gyp___node_gyp_7.1.2.tgz";
- path = fetchurl {
- name = "node_gyp___node_gyp_7.1.2.tgz";
- url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.1.2.tgz";
- sha1 = "21a810aebb187120251c3bcec979af1587b188ae";
- };
- }
- {
- name = "node_pre_gyp___node_pre_gyp_0.15.0.tgz";
- path = fetchurl {
- name = "node_pre_gyp___node_pre_gyp_0.15.0.tgz";
- url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.15.0.tgz";
- sha1 = "c2fc383276b74c7ffa842925241553e8b40f1087";
- };
- }
- {
- name = "nopt___nopt_4.0.3.tgz";
- path = fetchurl {
- name = "nopt___nopt_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz";
- sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48";
- };
- }
- {
- name = "nopt___nopt_5.0.0.tgz";
- path = fetchurl {
- name = "nopt___nopt_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz";
- sha1 = "530942bb58a512fccafe53fe210f13a25355dc88";
- };
- }
- {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz";
- sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65";
- };
- }
- {
- name = "normalize_url___normalize_url_4.5.1.tgz";
- path = fetchurl {
- name = "normalize_url___normalize_url_4.5.1.tgz";
- url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz";
- sha1 = "0dd90cf1288ee1d1313b87081c9a5932ee48518a";
- };
- }
- {
- name = "npm_bundled___npm_bundled_1.1.2.tgz";
- path = fetchurl {
- name = "npm_bundled___npm_bundled_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz";
- sha1 = "944c78789bd739035b70baa2ca5cc32b8d860bc1";
- };
- }
- {
- name = "npm_conf___npm_conf_1.1.3.tgz";
- path = fetchurl {
- name = "npm_conf___npm_conf_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz";
- sha1 = "256cc47bd0e218c259c4e9550bf413bc2192aff9";
- };
- }
- {
- name = "npm_install_checks___npm_install_checks_4.0.0.tgz";
- path = fetchurl {
- name = "npm_install_checks___npm_install_checks_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-4.0.0.tgz";
- sha1 = "a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4";
- };
- }
- {
- name = "npm_normalize_package_bin___npm_normalize_package_bin_1.0.1.tgz";
- path = fetchurl {
- name = "npm_normalize_package_bin___npm_normalize_package_bin_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz";
- sha1 = "6e79a41f23fd235c0623218228da7d9c23b8f6e2";
- };
- }
- {
- name = "npm_package_arg___npm_package_arg_8.1.5.tgz";
- path = fetchurl {
- name = "npm_package_arg___npm_package_arg_8.1.5.tgz";
- url = "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz";
- sha1 = "3369b2d5fe8fdc674baa7f1786514ddc15466e44";
- };
- }
- {
- name = "npm_packlist___npm_packlist_1.4.8.tgz";
- path = fetchurl {
- name = "npm_packlist___npm_packlist_1.4.8.tgz";
- url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz";
- sha1 = "56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e";
- };
- }
- {
- name = "npm_packlist___npm_packlist_2.2.2.tgz";
- path = fetchurl {
- name = "npm_packlist___npm_packlist_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-2.2.2.tgz";
- sha1 = "076b97293fa620f632833186a7a8f65aaa6148c8";
- };
- }
- {
- name = "npm_pick_manifest___npm_pick_manifest_6.1.1.tgz";
- path = fetchurl {
- name = "npm_pick_manifest___npm_pick_manifest_6.1.1.tgz";
- url = "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz";
- sha1 = "7b5484ca2c908565f43b7f27644f36bb816f5148";
- };
- }
- {
- name = "npm_registry_fetch___npm_registry_fetch_11.0.0.tgz";
- path = fetchurl {
- name = "npm_registry_fetch___npm_registry_fetch_11.0.0.tgz";
- url = "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz";
- sha1 = "68c1bb810c46542760d62a6a965f85a702d43a76";
- };
- }
- {
- name = "npmlog___npmlog_4.1.2.tgz";
- path = fetchurl {
- name = "npmlog___npmlog_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz";
- sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b";
- };
- }
- {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- path = fetchurl {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
- };
- }
- {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- path = fetchurl {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz";
- sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
- };
- }
- {
- name = "object_assign___object_assign_4.1.1.tgz";
- path = fetchurl {
- name = "object_assign___object_assign_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- }
- {
- name = "object_keys___object_keys_1.1.1.tgz";
- path = fetchurl {
- name = "object_keys___object_keys_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz";
- sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e";
- };
- }
- {
- name = "omggif___omggif_1.0.10.tgz";
- path = fetchurl {
- name = "omggif___omggif_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz";
- sha1 = "ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19";
- };
- }
- {
- name = "once___once_1.4.0.tgz";
- path = fetchurl {
- name = "once___once_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- }
- {
- name = "onetime___onetime_5.1.2.tgz";
- path = fetchurl {
- name = "onetime___onetime_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz";
- sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e";
- };
- }
- {
- name = "optionator___optionator_0.9.1.tgz";
- path = fetchurl {
- name = "optionator___optionator_0.9.1.tgz";
- url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz";
- sha1 = "4f236a6373dae0566a6d43e1326674f50c291499";
- };
- }
- {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- path = fetchurl {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- }
- {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- path = fetchurl {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- }
- {
- name = "osenv___osenv_0.1.5.tgz";
- path = fetchurl {
- name = "osenv___osenv_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz";
- sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410";
- };
- }
- {
- name = "p_cancelable___p_cancelable_1.1.0.tgz";
- path = fetchurl {
- name = "p_cancelable___p_cancelable_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz";
- sha1 = "d078d15a3af409220c886f1d9a0ca2e441ab26cc";
- };
- }
- {
- name = "p_limit___p_limit_2.3.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz";
- sha1 = "3dd33c647a214fdfffd835933eb086da0dc21db1";
- };
- }
- {
- name = "p_locate___p_locate_3.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz";
- sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4";
- };
- }
- {
- name = "p_map___p_map_4.0.0.tgz";
- path = fetchurl {
- name = "p_map___p_map_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz";
- sha1 = "bb2f95a5eda2ec168ec9274e06a747c3e2904d2b";
- };
- }
- {
- name = "p_try___p_try_2.2.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz";
- sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6";
- };
- }
- {
- name = "package_json___package_json_6.5.0.tgz";
- path = fetchurl {
- name = "package_json___package_json_6.5.0.tgz";
- url = "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz";
- sha1 = "6feedaca35e75725876d0b0e64974697fed145b0";
- };
- }
- {
- name = "pacote___pacote_11.3.5.tgz";
- path = fetchurl {
- name = "pacote___pacote_11.3.5.tgz";
- url = "https://registry.yarnpkg.com/pacote/-/pacote-11.3.5.tgz";
- sha1 = "73cf1fc3772b533f575e39efa96c50be8c3dc9d2";
- };
- }
- {
- name = "pako___pako_1.0.11.tgz";
- path = fetchurl {
- name = "pako___pako_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz";
- sha1 = "6c9599d340d54dfd3946380252a35705a6b992bf";
- };
- }
- {
- name = "parent_module___parent_module_1.0.1.tgz";
- path = fetchurl {
- name = "parent_module___parent_module_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz";
- sha1 = "691d2709e78c79fae3a156622452d00762caaaa2";
- };
- }
- {
- name = "parse_bmfont_ascii___parse_bmfont_ascii_1.0.6.tgz";
- path = fetchurl {
- name = "parse_bmfont_ascii___parse_bmfont_ascii_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz";
- sha1 = "11ac3c3ff58f7c2020ab22769079108d4dfa0285";
- };
- }
- {
- name = "parse_bmfont_binary___parse_bmfont_binary_1.0.6.tgz";
- path = fetchurl {
- name = "parse_bmfont_binary___parse_bmfont_binary_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz";
- sha1 = "d038b476d3e9dd9db1e11a0b0e53a22792b69006";
- };
- }
- {
- name = "parse_bmfont_xml___parse_bmfont_xml_1.1.4.tgz";
- path = fetchurl {
- name = "parse_bmfont_xml___parse_bmfont_xml_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz";
- sha1 = "015319797e3e12f9e739c4d513872cd2fa35f389";
- };
- }
- {
- name = "parse_headers___parse_headers_2.0.4.tgz";
- path = fetchurl {
- name = "parse_headers___parse_headers_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.4.tgz";
- sha1 = "9eaf2d02bed2d1eff494331ce3df36d7924760bf";
- };
- }
- {
- name = "path_exists___path_exists_3.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
- };
- }
- {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- path = fetchurl {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- }
- {
- name = "path_key___path_key_3.1.1.tgz";
- path = fetchurl {
- name = "path_key___path_key_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz";
- sha1 = "581f6ade658cbba65a0d3380de7753295054f375";
- };
- }
- {
- name = "path_type___path_type_4.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz";
- sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b";
- };
- }
- {
- name = "pend___pend_1.2.0.tgz";
- path = fetchurl {
- name = "pend___pend_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz";
- sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
- };
- }
- {
- name = "performance_now___performance_now_2.1.0.tgz";
- path = fetchurl {
- name = "performance_now___performance_now_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- }
- {
- name = "phin___phin_2.9.3.tgz";
- path = fetchurl {
- name = "phin___phin_2.9.3.tgz";
- url = "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz";
- sha1 = "f9b6ac10a035636fb65dfc576aaaa17b8743125c";
- };
- }
- {
- name = "picomatch___picomatch_2.3.0.tgz";
- path = fetchurl {
- name = "picomatch___picomatch_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz";
- sha1 = "f1f061de8f6a4bf022892e2d128234fb98302972";
- };
- }
- {
- name = "pify___pify_3.0.0.tgz";
- path = fetchurl {
- name = "pify___pify_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz";
- sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
- };
- }
- {
- name = "pixelmatch___pixelmatch_4.0.2.tgz";
- path = fetchurl {
- name = "pixelmatch___pixelmatch_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz";
- sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854";
- };
- }
- {
- name = "pkg_up___pkg_up_3.1.0.tgz";
- path = fetchurl {
- name = "pkg_up___pkg_up_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz";
- sha1 = "100ec235cc150e4fd42519412596a28512a0def5";
- };
- }
- {
- name = "plist___plist_3.0.4.tgz";
- path = fetchurl {
- name = "plist___plist_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/plist/-/plist-3.0.4.tgz";
- sha1 = "a62df837e3aed2bb3b735899d510c4f186019cbe";
- };
- }
- {
- name = "pluralizers___pluralizers_0.1.7.tgz";
- path = fetchurl {
- name = "pluralizers___pluralizers_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz";
- sha1 = "8d38dd0a1b660e739b10ab2eab10b684c9d50142";
- };
- }
- {
- name = "png_to_ico___png_to_ico_2.1.2.tgz";
- path = fetchurl {
- name = "png_to_ico___png_to_ico_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-2.1.2.tgz";
- sha1 = "9787178b849f1a7b3aa3e5f2d57ac4cbfabc7c24";
- };
- }
- {
- name = "pngjs___pngjs_3.4.0.tgz";
- path = fetchurl {
- name = "pngjs___pngjs_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz";
- sha1 = "99ca7d725965fb655814eaf65f38f12bbdbf555f";
- };
- }
- {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- path = fetchurl {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz";
- sha1 = "debc6489d7a6e6b0e7611888cec880337d316396";
- };
- }
- {
- name = "prepend_http___prepend_http_2.0.0.tgz";
- path = fetchurl {
- name = "prepend_http___prepend_http_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz";
- sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
- };
- }
- {
- name = "printj___printj_1.1.2.tgz";
- path = fetchurl {
- name = "printj___printj_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/printj/-/printj-1.1.2.tgz";
- sha1 = "d90deb2975a8b9f600fb3a1c94e3f4c53c78a222";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
- sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2";
- };
- }
- {
- name = "process___process_0.11.10.tgz";
- path = fetchurl {
- name = "process___process_0.11.10.tgz";
- url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz";
- sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
- };
- }
- {
- name = "progress___progress_2.0.3.tgz";
- path = fetchurl {
- name = "progress___progress_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz";
- sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8";
- };
- }
- {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- path = fetchurl {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz";
- sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
- };
- }
- {
- name = "promise_retry___promise_retry_2.0.1.tgz";
- path = fetchurl {
- name = "promise_retry___promise_retry_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz";
- sha1 = "ff747a13620ab57ba688f5fc67855410c370da22";
- };
- }
- {
- name = "proto_list___proto_list_1.2.4.tgz";
- path = fetchurl {
- name = "proto_list___proto_list_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz";
- sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
- };
- }
- {
- name = "psl___psl_1.8.0.tgz";
- path = fetchurl {
- name = "psl___psl_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz";
- sha1 = "9326f8bcfb013adcc005fdff056acce020e51c24";
- };
- }
- {
- name = "pump___pump_3.0.0.tgz";
- path = fetchurl {
- name = "pump___pump_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz";
- sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64";
- };
- }
- {
- name = "punycode___punycode_2.1.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz";
- sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec";
- };
- }
- {
- name = "pupa___pupa_2.1.1.tgz";
- path = fetchurl {
- name = "pupa___pupa_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz";
- sha1 = "f5e8fd4afc2c5d97828faa523549ed8744a20d62";
- };
- }
- {
- name = "qs___qs_6.5.2.tgz";
- path = fetchurl {
- name = "qs___qs_6.5.2.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz";
- sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36";
- };
- }
- {
- name = "queue_microtask___queue_microtask_1.2.3.tgz";
- path = fetchurl {
- name = "queue_microtask___queue_microtask_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz";
- sha1 = "4929228bbc724dfac43e0efb058caf7b6cfb6243";
- };
- }
- {
- name = "rc___rc_1.2.8.tgz";
- path = fetchurl {
- name = "rc___rc_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz";
- sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed";
- };
- }
- {
- name = "read_config_file___read_config_file_6.2.0.tgz";
- path = fetchurl {
- name = "read_config_file___read_config_file_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.2.0.tgz";
- sha1 = "71536072330bcd62ba814f91458b12add9fc7ade";
- };
- }
- {
- name = "read_package_json_fast___read_package_json_fast_2.0.3.tgz";
- path = fetchurl {
- name = "read_package_json_fast___read_package_json_fast_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz";
- sha1 = "323ca529630da82cb34b36cc0b996693c98c2b83";
- };
- }
- {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz";
- sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57";
- };
- }
- {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz";
- sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198";
- };
- }
- {
- name = "readdir_glob___readdir_glob_1.1.1.tgz";
- path = fetchurl {
- name = "readdir_glob___readdir_glob_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/readdir-glob/-/readdir-glob-1.1.1.tgz";
- sha1 = "f0e10bb7bf7bfa7e0add8baffdc54c3f7dbee6c4";
- };
- }
- {
- name = "readdirp___readdirp_3.6.0.tgz";
- path = fetchurl {
- name = "readdirp___readdirp_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz";
- sha1 = "74a370bd857116e245b29cc97340cd431a02a6c7";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz";
- sha1 = "8925742a98ffd90814988d7566ad30ca3b263b52";
- };
- }
- {
- name = "regexpp___regexpp_3.2.0.tgz";
- path = fetchurl {
- name = "regexpp___regexpp_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz";
- sha1 = "0425a2768d8f23bad70ca4b90461fa2f1213e1b2";
- };
- }
- {
- name = "registry_auth_token___registry_auth_token_4.2.1.tgz";
- path = fetchurl {
- name = "registry_auth_token___registry_auth_token_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz";
- sha1 = "6d7b4006441918972ccd5fedcd41dc322c79b250";
- };
- }
- {
- name = "registry_url___registry_url_5.1.0.tgz";
- path = fetchurl {
- name = "registry_url___registry_url_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz";
- sha1 = "e98334b50d5434b81136b44ec638d9c2009c5009";
- };
- }
- {
- name = "request___request_2.88.2.tgz";
- path = fetchurl {
- name = "request___request_2.88.2.tgz";
- url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz";
- sha1 = "d73c918731cb5a87da047e207234146f664d12b3";
- };
- }
- {
- name = "require_directory___require_directory_2.1.1.tgz";
- path = fetchurl {
- name = "require_directory___require_directory_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- }
- {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- path = fetchurl {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz";
- sha1 = "89a7fdd938261267318eafe14f9c32e598c36909";
- };
- }
- {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz";
- sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6";
- };
- }
- {
- name = "responselike___responselike_1.0.2.tgz";
- path = fetchurl {
- name = "responselike___responselike_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz";
- sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7";
- };
- }
- {
- name = "retry___retry_0.12.0.tgz";
- path = fetchurl {
- name = "retry___retry_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz";
- sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b";
- };
- }
- {
- name = "reusify___reusify_1.0.4.tgz";
- path = fetchurl {
- name = "reusify___reusify_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz";
- sha1 = "90da382b1e126efc02146e90845a88db12925d76";
- };
- }
- {
- name = "rimraf___rimraf_2.7.1.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz";
- sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec";
- };
- }
- {
- name = "rimraf___rimraf_3.0.2.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz";
- sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
- };
- }
- {
- name = "roarr___roarr_2.15.4.tgz";
- path = fetchurl {
- name = "roarr___roarr_2.15.4.tgz";
- url = "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz";
- sha1 = "f5fe795b7b838ccfe35dc608e0282b9eba2e7afd";
- };
- }
- {
- name = "run_parallel___run_parallel_1.2.0.tgz";
- path = fetchurl {
- name = "run_parallel___run_parallel_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz";
- sha1 = "66d1368da7bdf921eb9d95bd1a9229e7f21a43ee";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz";
- sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d";
- };
- }
- {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- path = fetchurl {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a";
- };
- }
- {
- name = "sanitize_filename___sanitize_filename_1.6.3.tgz";
- path = fetchurl {
- name = "sanitize_filename___sanitize_filename_1.6.3.tgz";
- url = "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz";
- sha1 = "755ebd752045931977e30b2025d340d7c9090378";
- };
- }
- {
- name = "sax___sax_1.2.4.tgz";
- path = fetchurl {
- name = "sax___sax_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz";
- sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9";
- };
- }
- {
- name = "semver_compare___semver_compare_1.0.0.tgz";
- path = fetchurl {
- name = "semver_compare___semver_compare_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz";
- sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc";
- };
- }
- {
- name = "semver_diff___semver_diff_3.1.1.tgz";
- path = fetchurl {
- name = "semver_diff___semver_diff_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz";
- sha1 = "05f77ce59f325e00e2706afd67bb506ddb1ca32b";
- };
- }
- {
- name = "semver___semver_5.7.1.tgz";
- path = fetchurl {
- name = "semver___semver_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz";
- sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
- };
- }
- {
- name = "semver___semver_6.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_6.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz";
- sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d";
- };
- }
- {
- name = "semver___semver_7.3.5.tgz";
- path = fetchurl {
- name = "semver___semver_7.3.5.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
- sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
- };
- }
- {
- name = "serialize_error___serialize_error_7.0.1.tgz";
- path = fetchurl {
- name = "serialize_error___serialize_error_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz";
- sha1 = "f1360b0447f61ffb483ec4157c737fab7d778e18";
- };
- }
- {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- path = fetchurl {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- }
- {
- name = "set_immediate_shim___set_immediate_shim_1.0.1.tgz";
- path = fetchurl {
- name = "set_immediate_shim___set_immediate_shim_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz";
- sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
- };
- }
- {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- path = fetchurl {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz";
- sha1 = "ccd0af4f8835fbdc265b82461aaf0c36663f34ea";
- };
- }
- {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- path = fetchurl {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz";
- sha1 = "ae16f1644d873ecad843b0307b143362d4c42172";
- };
- }
- {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- path = fetchurl {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz";
- sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c";
- };
- }
- {
- name = "slash___slash_3.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz";
- sha1 = "6539be870c165adbd5240220dbe361f1bc4d4634";
- };
- }
- {
- name = "slice_ansi___slice_ansi_1.0.0.tgz";
- path = fetchurl {
- name = "slice_ansi___slice_ansi_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz";
- sha1 = "044f1a49d8842ff307aad6b505ed178bd950134d";
- };
- }
- {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz";
- sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b";
- };
- }
- {
- name = "smart_buffer___smart_buffer_4.2.0.tgz";
- path = fetchurl {
- name = "smart_buffer___smart_buffer_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz";
- sha1 = "6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae";
- };
- }
- {
- name = "socks_proxy_agent___socks_proxy_agent_6.1.0.tgz";
- path = fetchurl {
- name = "socks_proxy_agent___socks_proxy_agent_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.1.0.tgz";
- sha1 = "869cf2d7bd10fea96c7ad3111e81726855e285c3";
- };
- }
- {
- name = "socks___socks_2.6.1.tgz";
- path = fetchurl {
- name = "socks___socks_2.6.1.tgz";
- url = "https://registry.yarnpkg.com/socks/-/socks-2.6.1.tgz";
- sha1 = "989e6534a07cf337deb1b1c94aaa44296520d30e";
- };
- }
- {
- name = "source_map_support___source_map_support_0.5.20.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.5.20.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz";
- sha1 = "12166089f8f5e5e8c56926b377633392dd2cb6c9";
- };
- }
- {
- name = "source_map___source_map_0.5.7.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.5.7.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- }
- {
- name = "source_map___source_map_0.6.1.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz";
- sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.1.2.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz";
- sha1 = "da1765262bf8c0f571749f2ad6c26300207ae673";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
- };
- }
- {
- name = "sshpk___sshpk_1.16.1.tgz";
- path = fetchurl {
- name = "sshpk___sshpk_1.16.1.tgz";
- url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz";
- sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877";
- };
- }
- {
- name = "ssri___ssri_8.0.1.tgz";
- path = fetchurl {
- name = "ssri___ssri_8.0.1.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz";
- sha1 = "638e4e439e2ffbd2cd289776d5ca457c4f51a2af";
- };
- }
- {
- name = "stat_mode___stat_mode_1.0.0.tgz";
- path = fetchurl {
- name = "stat_mode___stat_mode_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz";
- sha1 = "68b55cb61ea639ff57136f36b216a291800d1465";
- };
- }
- {
- name = "string_width___string_width_1.0.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
- };
- }
- {
- name = "string_width___string_width_2.1.1.tgz";
- path = fetchurl {
- name = "string_width___string_width_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz";
- sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e";
- };
- }
- {
- name = "string_width___string_width_3.1.0.tgz";
- path = fetchurl {
- name = "string_width___string_width_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz";
- sha1 = "22767be21b62af1081574306f69ac51b62203961";
- };
- }
- {
- name = "string_width___string_width_4.2.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz";
- sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5";
- };
- }
- {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz";
- sha1 = "42f114594a46cf1a8e30b0a84f56c78c3edac21e";
- };
- }
- {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz";
- sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8";
- };
- }
- {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- }
- {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- }
- {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz";
- sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae";
- };
- }
- {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz";
- sha1 = "31f1281b3832630434831c310c01cccda8cbe006";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
- };
- }
- {
- name = "sumchecker___sumchecker_3.0.1.tgz";
- path = fetchurl {
- name = "sumchecker___sumchecker_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz";
- sha1 = "6377e996795abb0b6d348e9b3e1dfb24345a8e42";
- };
- }
- {
- name = "supports_color___supports_color_5.5.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_5.5.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz";
- sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f";
- };
- }
- {
- name = "supports_color___supports_color_7.2.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz";
- sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da";
- };
- }
- {
- name = "table___table_6.7.1.tgz";
- path = fetchurl {
- name = "table___table_6.7.1.tgz";
- url = "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz";
- sha1 = "ee05592b7143831a8c94f3cee6aae4c1ccef33e2";
- };
- }
- {
- name = "tar_stream___tar_stream_2.2.0.tgz";
- path = fetchurl {
- name = "tar_stream___tar_stream_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz";
- sha1 = "acad84c284136b060dc3faa64474aa9aebd77287";
- };
- }
- {
- name = "tar___tar_4.4.19.tgz";
- path = fetchurl {
- name = "tar___tar_4.4.19.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-4.4.19.tgz";
- sha1 = "2e4d7263df26f2b914dee10c825ab132123742f3";
- };
- }
- {
- name = "tar___tar_6.1.11.tgz";
- path = fetchurl {
- name = "tar___tar_6.1.11.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz";
- sha1 = "6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621";
- };
- }
- {
- name = "temp_file___temp_file_3.4.0.tgz";
- path = fetchurl {
- name = "temp_file___temp_file_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz";
- sha1 = "766ea28911c683996c248ef1a20eea04d51652c7";
- };
- }
- {
- name = "text_table___text_table_0.2.0.tgz";
- path = fetchurl {
- name = "text_table___text_table_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz";
- sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
- };
- }
- {
- name = "timers_ext___timers_ext_0.1.7.tgz";
- path = fetchurl {
- name = "timers_ext___timers_ext_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz";
- sha1 = "6f57ad8578e07a3fb9f91d9387d65647555e25c6";
- };
- }
- {
- name = "timm___timm_1.7.1.tgz";
- path = fetchurl {
- name = "timm___timm_1.7.1.tgz";
- url = "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz";
- sha1 = "96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f";
- };
- }
- {
- name = "tinycolor2___tinycolor2_1.4.2.tgz";
- path = fetchurl {
- name = "tinycolor2___tinycolor2_1.4.2.tgz";
- url = "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz";
- sha1 = "3f6a4d1071ad07676d7fa472e1fac40a719d8803";
- };
- }
- {
- name = "tmp_promise___tmp_promise_1.1.0.tgz";
- path = fetchurl {
- name = "tmp_promise___tmp_promise_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-1.1.0.tgz";
- sha1 = "bb924d239029157b9bc1d506a6aa341f8b13e64c";
- };
- }
- {
- name = "tmp_promise___tmp_promise_3.0.2.tgz";
- path = fetchurl {
- name = "tmp_promise___tmp_promise_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.2.tgz";
- sha1 = "6e933782abff8b00c3119d63589ca1fb9caaa62a";
- };
- }
- {
- name = "tmp___tmp_0.1.0.tgz";
- path = fetchurl {
- name = "tmp___tmp_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz";
- sha1 = "ee434a4e22543082e294ba6201dcc6eafefa2877";
- };
- }
- {
- name = "tmp___tmp_0.2.1.tgz";
- path = fetchurl {
- name = "tmp___tmp_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz";
- sha1 = "8457fc3037dcf4719c251367a1af6500ee1ccf14";
- };
- }
- {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- path = fetchurl {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz";
- sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
- };
- }
- {
- name = "to_readable_stream___to_readable_stream_1.0.0.tgz";
- path = fetchurl {
- name = "to_readable_stream___to_readable_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz";
- sha1 = "ce0aa0c2f3df6adf852efb404a783e77c0475771";
- };
- }
- {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz";
- sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4";
- };
- }
- {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz";
- sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2";
- };
- }
- {
- name = "truncate_utf8_bytes___truncate_utf8_bytes_1.0.2.tgz";
- path = fetchurl {
- name = "truncate_utf8_bytes___truncate_utf8_bytes_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz";
- sha1 = "405923909592d56f78a5818434b0b78489ca5f2b";
- };
- }
- {
- name = "tslib___tslib_1.14.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz";
- sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00";
- };
- }
- {
- name = "tslib___tslib_2.3.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz";
- sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01";
- };
- }
- {
- name = "tsutils___tsutils_3.21.0.tgz";
- path = fetchurl {
- name = "tsutils___tsutils_3.21.0.tgz";
- url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz";
- sha1 = "b48717d394cea6c1e096983eed58e9d61715b623";
- };
- }
- {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- path = fetchurl {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- }
- {
- name = "tunnel___tunnel_0.0.6.tgz";
- path = fetchurl {
- name = "tunnel___tunnel_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz";
- sha1 = "72f1314b34a5b192db012324df2cc587ca47f92c";
- };
- }
- {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- path = fetchurl {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- }
- {
- name = "type_check___type_check_0.4.0.tgz";
- path = fetchurl {
- name = "type_check___type_check_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz";
- sha1 = "07b8203bfa7056c0657050e3ccd2c37730bab8f1";
- };
- }
- {
- name = "type_fest___type_fest_0.13.1.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.13.1.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz";
- sha1 = "0172cb5bce80b0bd542ea348db50c7e21834d934";
- };
- }
- {
- name = "type_fest___type_fest_0.16.0.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.16.0.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz";
- sha1 = "3240b891a78b0deae910dbeb86553e552a148860";
- };
- }
- {
- name = "type_fest___type_fest_0.20.2.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.20.2.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz";
- sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4";
- };
- }
- {
- name = "type_fest___type_fest_0.8.1.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.8.1.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz";
- sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d";
- };
- }
- {
- name = "type___type_1.2.0.tgz";
- path = fetchurl {
- name = "type___type_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz";
- sha1 = "848dd7698dafa3e54a6c479e759c4bc3f18847a0";
- };
- }
- {
- name = "type___type_2.5.0.tgz";
- path = fetchurl {
- name = "type___type_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz";
- sha1 = "0a2e78c2e77907b252abe5f298c1b01c63f0db3d";
- };
- }
- {
- name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz";
- path = fetchurl {
- name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz";
- url = "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
- sha1 = "a97ee7a9ff42691b9f783ff1bc5112fe3fca9080";
- };
- }
- {
- name = "typedarray___typedarray_0.0.6.tgz";
- path = fetchurl {
- name = "typedarray___typedarray_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
- };
- }
- {
- name = "typescript___typescript_4.4.3.tgz";
- path = fetchurl {
- name = "typescript___typescript_4.4.3.tgz";
- url = "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz";
- sha1 = "bdc5407caa2b109efd4f82fe130656f977a29324";
- };
- }
- {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- path = fetchurl {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz";
- sha1 = "1d69769369ada0583103a1e6ae87681b56573230";
- };
- }
- {
- name = "unique_slug___unique_slug_2.0.2.tgz";
- path = fetchurl {
- name = "unique_slug___unique_slug_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz";
- sha1 = "baabce91083fc64e945b0f3ad613e264f7cd4e6c";
- };
- }
- {
- name = "unique_string___unique_string_2.0.0.tgz";
- path = fetchurl {
- name = "unique_string___unique_string_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz";
- sha1 = "39c6451f81afb2749de2b233e3f7c5e8843bd89d";
- };
- }
- {
- name = "universal_user_agent___universal_user_agent_6.0.0.tgz";
- path = fetchurl {
- name = "universal_user_agent___universal_user_agent_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz";
- sha1 = "3381f8503b251c0d9cd21bc1de939ec9df5480ee";
- };
- }
- {
- name = "universalify___universalify_0.1.2.tgz";
- path = fetchurl {
- name = "universalify___universalify_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz";
- sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66";
- };
- }
- {
- name = "universalify___universalify_2.0.0.tgz";
- path = fetchurl {
- name = "universalify___universalify_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz";
- sha1 = "75a4984efedc4b08975c5aeb73f530d02df25717";
- };
- }
- {
- name = "untildify___untildify_3.0.3.tgz";
- path = fetchurl {
- name = "untildify___untildify_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz";
- sha1 = "1e7b42b140bcfd922b22e70ca1265bfe3634c7c9";
- };
- }
- {
- name = "unzip_crx_3___unzip_crx_3_0.2.0.tgz";
- path = fetchurl {
- name = "unzip_crx_3___unzip_crx_3_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz";
- sha1 = "d5324147b104a8aed9ae8639c95521f6f7cda292";
- };
- }
- {
- name = "update_notifier___update_notifier_5.1.0.tgz";
- path = fetchurl {
- name = "update_notifier___update_notifier_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz";
- sha1 = "4ab0d7c7f36a231dd7316cf7729313f0214d9ad9";
- };
- }
- {
- name = "uri_js___uri_js_4.4.1.tgz";
- path = fetchurl {
- name = "uri_js___uri_js_4.4.1.tgz";
- url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz";
- sha1 = "9b1a52595225859e55f669d928f88c6c57f2a77e";
- };
- }
- {
- name = "url_parse_lax___url_parse_lax_3.0.0.tgz";
- path = fetchurl {
- name = "url_parse_lax___url_parse_lax_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz";
- sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c";
- };
- }
- {
- name = "utf8_byte_length___utf8_byte_length_1.0.4.tgz";
- path = fetchurl {
- name = "utf8_byte_length___utf8_byte_length_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz";
- sha1 = "f45f150c4c66eee968186505ab93fcbb8ad6bf61";
- };
- }
- {
- name = "utif___utif_2.0.1.tgz";
- path = fetchurl {
- name = "utif___utif_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz";
- sha1 = "9e1582d9bbd20011a6588548ed3266298e711759";
- };
- }
- {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- path = fetchurl {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- }
- {
- name = "uuid___uuid_3.4.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz";
- sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee";
- };
- }
- {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- path = fetchurl {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz";
- sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee";
- };
- }
- {
- name = "validate_npm_package_name___validate_npm_package_name_3.0.0.tgz";
- path = fetchurl {
- name = "validate_npm_package_name___validate_npm_package_name_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
- };
- }
- {
- name = "verror___verror_1.10.0.tgz";
- path = fetchurl {
- name = "verror___verror_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- }
- {
- name = "walk___walk_2.3.14.tgz";
- path = fetchurl {
- name = "walk___walk_2.3.14.tgz";
- url = "https://registry.yarnpkg.com/walk/-/walk-2.3.14.tgz";
- sha1 = "60ec8631cfd23276ae1e7363ce11d626452e1ef3";
- };
- }
- {
- name = "which___which_2.0.2.tgz";
- path = fetchurl {
- name = "which___which_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz";
- sha1 = "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1";
- };
- }
- {
- name = "wide_align___wide_align_1.1.3.tgz";
- path = fetchurl {
- name = "wide_align___wide_align_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz";
- sha1 = "ae074e6bdc0c14a431e804e624549c633b000457";
- };
- }
- {
- name = "widest_line___widest_line_3.1.0.tgz";
- path = fetchurl {
- name = "widest_line___widest_line_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz";
- sha1 = "8292333bbf66cb45ff0de1603b136b7ae1496eca";
- };
- }
- {
- name = "winreg___winreg_1.2.4.tgz";
- path = fetchurl {
- name = "winreg___winreg_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz";
- sha1 = "ba065629b7a925130e15779108cf540990e98d1b";
- };
- }
- {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- path = fetchurl {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz";
- sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz";
- sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43";
- };
- }
- {
- name = "wrappy___wrappy_1.0.2.tgz";
- path = fetchurl {
- name = "wrappy___wrappy_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- }
- {
- name = "write_file_atomic___write_file_atomic_3.0.3.tgz";
- path = fetchurl {
- name = "write_file_atomic___write_file_atomic_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz";
- sha1 = "56bd5c5a5c70481cd19c571bd39ab965a5de56e8";
- };
- }
- {
- name = "xdg_basedir___xdg_basedir_4.0.0.tgz";
- path = fetchurl {
- name = "xdg_basedir___xdg_basedir_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz";
- sha1 = "4bc8d9984403696225ef83a1573cbbcb4e79db13";
- };
- }
- {
- name = "xhr___xhr_2.6.0.tgz";
- path = fetchurl {
- name = "xhr___xhr_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz";
- sha1 = "b69d4395e792b4173d6b7df077f0fc5e4e2b249d";
- };
- }
- {
- name = "xml_parse_from_string___xml_parse_from_string_1.0.1.tgz";
- path = fetchurl {
- name = "xml_parse_from_string___xml_parse_from_string_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz";
- sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28";
- };
- }
- {
- name = "xml2js___xml2js_0.4.23.tgz";
- path = fetchurl {
- name = "xml2js___xml2js_0.4.23.tgz";
- url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz";
- sha1 = "a0c69516752421eb2ac758ee4d4ccf58843eac66";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_15.1.1.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_15.1.1.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz";
- sha1 = "9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
- sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_11.0.1.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_11.0.1.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz";
- sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3";
- };
- }
- {
- name = "xtend___xtend_4.0.2.tgz";
- path = fetchurl {
- name = "xtend___xtend_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz";
- sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54";
- };
- }
- {
- name = "y18n___y18n_5.0.8.tgz";
- path = fetchurl {
- name = "y18n___y18n_5.0.8.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz";
- sha1 = "7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55";
- };
- }
- {
- name = "yaku___yaku_0.16.7.tgz";
- path = fetchurl {
- name = "yaku___yaku_0.16.7.tgz";
- url = "https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz";
- sha1 = "1d195c78aa9b5bf8479c895b9504fd4f0847984e";
- };
- }
- {
- name = "yallist___yallist_3.1.1.tgz";
- path = fetchurl {
- name = "yallist___yallist_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz";
- sha1 = "dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd";
- };
- }
- {
- name = "yallist___yallist_4.0.0.tgz";
- path = fetchurl {
- name = "yallist___yallist_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz";
- sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72";
- };
- }
- {
- name = "yargs_parser___yargs_parser_20.2.9.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_20.2.9.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz";
- sha1 = "2eb7dc3b0289718fc295f362753845c41a0c94ee";
- };
- }
- {
- name = "yargs___yargs_17.1.1.tgz";
- path = fetchurl {
- name = "yargs___yargs_17.1.1.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-17.1.1.tgz";
- sha1 = "c2a8091564bdb196f7c0a67c1d12e5b85b8067ba";
- };
- }
- {
- name = "yauzl___yauzl_2.10.0.tgz";
- path = fetchurl {
- name = "yauzl___yauzl_2.10.0.tgz";
- url = "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz";
- sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9";
- };
- }
- {
- name = "zip_stream___zip_stream_4.1.0.tgz";
- path = fetchurl {
- name = "zip_stream___zip_stream_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz";
- sha1 = "51dd326571544e36aa3f756430b313576dc8fc79";
- };
- }
- ];
-}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
index bcd6dac47e..dd7c6f0c57 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-desktop.nix
@@ -4,6 +4,7 @@
, makeWrapper
, makeDesktopItem
, mkYarnPackage
+, fetchYarnDeps
, electron
, element-web
, callPackage
@@ -13,27 +14,28 @@
, useWayland ? false
}:
-# Notes for maintainers:
-# * versions of `element-web` and `element-desktop` should be kept in sync.
-# * the Yarn dependency expression must be updated with `./update-element-desktop.sh `
let
+ pinData = (builtins.fromJSON (builtins.readFile ./pin.json));
executableName = "element-desktop";
- version = "1.9.2";
+ electron_exec = if stdenv.isDarwin then "${electron}/Applications/Electron.app/Contents/MacOS/Electron" else "${electron}/bin/electron";
+in
+mkYarnPackage rec {
+ pname = "element-desktop";
+ inherit (pinData) version;
+ name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "vector-im";
repo = "element-desktop";
rev = "v${version}";
- sha256 = "sha256-F1uyyBbs+U7tQzRtn+p923Z/BY8Nwxr/JTMYwsak8W8=";
+ sha256 = pinData.desktopSrcHash;
};
- electron_exec = if stdenv.isDarwin then "${electron}/Applications/Electron.app/Contents/MacOS/Electron" else "${electron}/bin/electron";
-in
-mkYarnPackage rec {
- name = "element-desktop-${version}";
- inherit version src;
packageJSON = ./element-desktop-package.json;
- yarnNix = ./element-desktop-yarndeps.nix;
+ offlineCache = fetchYarnDeps {
+ yarnLock = src + "/yarn.lock";
+ sha256 = pinData.desktopYarnHash;
+ };
nativeBuildInputs = [ makeWrapper ];
@@ -102,6 +104,8 @@ mkYarnPackage rec {
'';
};
+ passthru.updateScript = ./update.sh;
+
meta = with lib; {
description = "A feature-rich client for Matrix.org";
homepage = "https://element.io/";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-web.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-web.nix
index ca10fb2131..33af19a9a5 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-web.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/element-web.nix
@@ -1,9 +1,7 @@
{ lib, stdenv, fetchurl, writeText, jq, conf ? {} }:
-# Note for maintainers:
-# Versions of `element-web` and `element-desktop` should be kept in sync.
-
let
+ pinData = (builtins.fromJSON (builtins.readFile ./pin.json));
noPhoningHome = {
disable_guests = true; # disable automatic guest account registration at matrix.org
piwik = false; # disable analytics
@@ -12,11 +10,11 @@ let
in stdenv.mkDerivation rec {
pname = "element-web";
- version = "1.9.2";
+ inherit (pinData) version;
src = fetchurl {
url = "https://github.com/vector-im/element-web/releases/download/v${version}/element-v${version}.tar.gz";
- sha256 = "sha256-Qkn0vyZGvBAeOfTzxydWzjFQJwY39INAhwZNX4xsM7U=";
+ sha256 = pinData.webHash;
};
installPhase = ''
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/default.nix
index f848601874..432d69ac7a 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/default.nix
@@ -1,15 +1,18 @@
{ lib, stdenv, fetchFromGitHub, nodejs-14_x, python3, callPackage
-, fixup_yarn_lock, yarn, pkg-config, libsecret, xcbuild, Security, AppKit }:
+, fixup_yarn_lock, yarn, pkg-config, libsecret, xcbuild, Security, AppKit, fetchYarnDeps }:
-stdenv.mkDerivation rec {
+let
+ pinData = (builtins.fromJSON (builtins.readFile ./pin.json));
+
+in stdenv.mkDerivation rec {
pname = "keytar";
- version = "7.7.0";
+ inherit (pinData) version;
src = fetchFromGitHub {
owner = "atom";
repo = "node-keytar";
rev = "v${version}";
- sha256 = "0ajvr4kjbyw2shb1y14c0dsghdlnq30f19hk2sbzj6n9y3xa3pmi";
+ sha256 = pinData.srcHash;
};
nativeBuildInputs = [ nodejs-14_x python3 yarn pkg-config ]
@@ -19,7 +22,10 @@ stdenv.mkDerivation rec {
npm_config_nodedir = nodejs-14_x;
- yarnOfflineCache = (callPackage ./yarn.nix {}).offline_cache;
+ yarnOfflineCache = fetchYarnDeps {
+ yarnLock = ./yarn.lock;
+ sha256 = pinData.yarnHash;
+ };
buildPhase = ''
cp ${./yarn.lock} ./yarn.lock
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/pin.json b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/pin.json
new file mode 100644
index 0000000000..fa2e95d4e1
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/pin.json
@@ -0,0 +1,5 @@
+{
+ "version": "7.7.0",
+ "srcHash": "sd6h+vDJGvmXFhOm4MDAljb4dAOMBB8W1IL7JSfJWyo=",
+ "yarnHash": "1m75hvl06mcj260hicbmv75p94h73gw5d24zpm5wxwc0q8v8wzfl"
+}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/update.sh b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/update.sh
index 11d986f4fd..8ac65ea45d 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/update.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/update.sh
@@ -1,19 +1,38 @@
#!/usr/bin/env nix-shell
-#!nix-shell -I nixpkgs=../ -i bash -p wget yarn2nix yarn
+#!nix-shell -I nixpkgs=../../../../../../ -i bash -p wget prefetch-yarn-deps yarn
-set -euo pipefail
-
-if [ "$#" -ne 1 ] || [[ "$1" == -* ]]; then
- echo "Regenerates the Yarn dependency lock files."
- echo "Usage: $0 "
+if [ "$#" -gt 1 ] || [[ "$1" == -* ]]; then
+ echo "Regenerates packaging data for the seshat package."
+ echo "Usage: $0 [git release tag]"
exit 1
fi
-SRC="https://raw.githubusercontent.com/atom/node-keytar/$1"
+version="$1"
+
+set -euo pipefail
+
+if [ -z "$version" ]; then
+ version="$(wget -O- "https://api.github.com/repos/atom/node-keytar/releases?per_page=1" | jq -r '.[0].tag_name')"
+fi
+
+# strip leading "v"
+version="${version#v}"
+
+SRC="https://raw.githubusercontent.com/atom/node-keytar/v$version"
wget "$SRC/package-lock.json"
wget "$SRC/package.json"
rm -f yarn.lock
yarn import
-yarn2nix > yarn.nix
rm -rf node_modules package.json package-lock.json
+yarn_hash=$(prefetch-yarn-deps yarn.lock)
+
+src_hash=$(nix-prefetch-github atom node-keytar --rev v${version} | jq -r .sha256)
+
+cat > pin.json << EOF
+{
+ "version": "$version",
+ "srcHash": "$src_hash",
+ "yarnHash": "$yarn_hash"
+}
+EOF
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/yarn.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/yarn.nix
deleted file mode 100644
index d6b1b99da8..0000000000
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/keytar/yarn.nix
+++ /dev/null
@@ -1,2869 +0,0 @@
-{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec {
- offline_cache = linkFarm "offline" packages;
- packages = [
- {
- name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz";
- path = fetchurl {
- name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz";
- sha1 = "aa58042711d6e3275dd37dc597e5d31e8c290a44";
- };
- }
- {
- name = "abbrev___abbrev_1.1.0.tgz";
- path = fetchurl {
- name = "abbrev___abbrev_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz";
- sha1 = "d0554c2256636e2f56e7c2e5ad183f859428d81f";
- };
- }
- {
- name = "after___after_0.8.2.tgz";
- path = fetchurl {
- name = "after___after_0.8.2.tgz";
- url = "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz";
- sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
- };
- }
- {
- name = "ajv___ajv_6.12.4.tgz";
- path = fetchurl {
- name = "ajv___ajv_6.12.4.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz";
- sha1 = "0614facc4522127fa713445c6bfd3ebd376e2234";
- };
- }
- {
- name = "amdefine___amdefine_1.0.1.tgz";
- path = fetchurl {
- name = "amdefine___amdefine_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
- };
- }
- {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- path = fetchurl {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348";
- };
- }
- {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- }
- {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
- sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
- };
- }
- {
- name = "ansi_styles___ansi_styles_2.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
- };
- }
- {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz";
- sha1 = "edd803628ae71c04c85ae7a0906edad34b648937";
- };
- }
- {
- name = "ansi___ansi_0.3.1.tgz";
- path = fetchurl {
- name = "ansi___ansi_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz";
- sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21";
- };
- }
- {
- name = "anymatch___anymatch_3.1.1.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz";
- sha1 = "c55ecf02185e2469259399310c173ce31233b142";
- };
- }
- {
- name = "aproba___aproba_1.1.2.tgz";
- path = fetchurl {
- name = "aproba___aproba_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz";
- sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1";
- };
- }
- {
- name = "are_we_there_yet___are_we_there_yet_1.0.6.tgz";
- path = fetchurl {
- name = "are_we_there_yet___are_we_there_yet_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz";
- sha1 = "a2d28c93102aa6cc96245a26cb954de06ec53f0c";
- };
- }
- {
- name = "are_we_there_yet___are_we_there_yet_1.1.4.tgz";
- path = fetchurl {
- name = "are_we_there_yet___are_we_there_yet_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
- sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
- };
- }
- {
- name = "argparse___argparse_2.0.1.tgz";
- path = fetchurl {
- name = "argparse___argparse_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz";
- sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38";
- };
- }
- {
- name = "array_index___array_index_1.0.0.tgz";
- path = fetchurl {
- name = "array_index___array_index_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz";
- sha1 = "ec56a749ee103e4e08c790b9c353df16055b97f9";
- };
- }
- {
- name = "asn1___asn1_0.2.3.tgz";
- path = fetchurl {
- name = "asn1___asn1_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz";
- sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
- };
- }
- {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- path = fetchurl {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- }
- {
- name = "assertion_error___assertion_error_1.1.0.tgz";
- path = fetchurl {
- name = "assertion_error___assertion_error_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz";
- sha1 = "e60b6b0e8f301bd97e5375215bda406c85118c0b";
- };
- }
- {
- name = "asynckit___asynckit_0.4.0.tgz";
- path = fetchurl {
- name = "asynckit___asynckit_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- }
- {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- path = fetchurl {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- }
- {
- name = "aws4___aws4_1.10.1.tgz";
- path = fetchurl {
- name = "aws4___aws4_1.10.1.tgz";
- url = "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz";
- sha1 = "e1e82e4f3e999e2cfd61b161280d16a111f86428";
- };
- }
- {
- name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
- path = fetchurl {
- name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
- sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
- };
- }
- {
- name = "babel_core___babel_core_6.26.3.tgz";
- path = fetchurl {
- name = "babel_core___babel_core_6.26.3.tgz";
- url = "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz";
- sha1 = "b2e2f09e342d0f0c88e2f02e067794125e75c207";
- };
- }
- {
- name = "babel_generator___babel_generator_6.26.1.tgz";
- path = fetchurl {
- name = "babel_generator___babel_generator_6.26.1.tgz";
- url = "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz";
- sha1 = "1844408d3b8f0d35a404ea7ac180f087a601bd90";
- };
- }
- {
- name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
- sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
- };
- }
- {
- name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
- sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
- };
- }
- {
- name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
- sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
- };
- }
- {
- name = "babel_helpers___babel_helpers_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helpers___babel_helpers_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz";
- sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
- };
- }
- {
- name = "babel_messages___babel_messages_6.23.0.tgz";
- path = fetchurl {
- name = "babel_messages___babel_messages_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz";
- sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
- };
- }
- {
- name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz";
- path = fetchurl {
- name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
- sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
- };
- }
- {
- name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
- sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
- };
- }
- {
- name = "babel_register___babel_register_6.26.0.tgz";
- path = fetchurl {
- name = "babel_register___babel_register_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz";
- sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
- };
- }
- {
- name = "babel_runtime___babel_runtime_6.23.0.tgz";
- path = fetchurl {
- name = "babel_runtime___babel_runtime_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz";
- sha1 = "0a9489f144de70efb3ce4300accdb329e2fc543b";
- };
- }
- {
- name = "babel_runtime___babel_runtime_6.26.0.tgz";
- path = fetchurl {
- name = "babel_runtime___babel_runtime_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz";
- sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
- };
- }
- {
- name = "babel_template___babel_template_6.26.0.tgz";
- path = fetchurl {
- name = "babel_template___babel_template_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz";
- sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
- };
- }
- {
- name = "babel_traverse___babel_traverse_6.26.0.tgz";
- path = fetchurl {
- name = "babel_traverse___babel_traverse_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz";
- sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
- };
- }
- {
- name = "babel_types___babel_types_6.25.0.tgz";
- path = fetchurl {
- name = "babel_types___babel_types_6.25.0.tgz";
- url = "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz";
- sha1 = "70afb248d5660e5d18f811d91c8303b54134a18e";
- };
- }
- {
- name = "babel_types___babel_types_6.26.0.tgz";
- path = fetchurl {
- name = "babel_types___babel_types_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz";
- sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
- };
- }
- {
- name = "babylon___babylon_6.18.0.tgz";
- path = fetchurl {
- name = "babylon___babylon_6.18.0.tgz";
- url = "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz";
- sha1 = "af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3";
- };
- }
- {
- name = "balanced_match___balanced_match_1.0.0.tgz";
- path = fetchurl {
- name = "balanced_match___balanced_match_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
- };
- }
- {
- name = "base64_js___base64_js_1.5.1.tgz";
- path = fetchurl {
- name = "base64_js___base64_js_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz";
- sha1 = "1b1b440160a5bf7ad40b650f095963481903930a";
- };
- }
- {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- path = fetchurl {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- }
- {
- name = "big_integer___big_integer_1.6.48.tgz";
- path = fetchurl {
- name = "big_integer___big_integer_1.6.48.tgz";
- url = "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz";
- sha1 = "8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e";
- };
- }
- {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- path = fetchurl {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz";
- sha1 = "75f502eeaf9ffde42fc98829645be4ea76bd9e2d";
- };
- }
- {
- name = "binary___binary_0.3.0.tgz";
- path = fetchurl {
- name = "binary___binary_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz";
- sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
- };
- }
- {
- name = "bl___bl_4.0.3.tgz";
- path = fetchurl {
- name = "bl___bl_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz";
- sha1 = "12d6287adc29080e22a705e5764b2a9522cdc489";
- };
- }
- {
- name = "bl___bl_3.0.1.tgz";
- path = fetchurl {
- name = "bl___bl_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/bl/-/bl-3.0.1.tgz";
- sha1 = "1cbb439299609e419b5a74d7fce2f8b37d8e5c6f";
- };
- }
- {
- name = "block_stream___block_stream_0.0.9.tgz";
- path = fetchurl {
- name = "block_stream___block_stream_0.0.9.tgz";
- url = "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
- };
- }
- {
- name = "bluebird___bluebird_3.7.2.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.7.2.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz";
- sha1 = "9f229c15be272454ffa973ace0dbee79a1b0c36f";
- };
- }
- {
- name = "bluebird___bluebird_3.4.7.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.4.7.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz";
- sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3";
- };
- }
- {
- name = "brace_expansion___brace_expansion_1.1.8.tgz";
- path = fetchurl {
- name = "brace_expansion___brace_expansion_1.1.8.tgz";
- url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz";
- sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
- };
- }
- {
- name = "braces___braces_3.0.2.tgz";
- path = fetchurl {
- name = "braces___braces_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz";
- sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107";
- };
- }
- {
- name = "browser_stdout___browser_stdout_1.3.1.tgz";
- path = fetchurl {
- name = "browser_stdout___browser_stdout_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz";
- sha1 = "baa559ee14ced73452229bad7326467c61fabd60";
- };
- }
- {
- name = "buffer_from___buffer_from_0.1.2.tgz";
- path = fetchurl {
- name = "buffer_from___buffer_from_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-0.1.2.tgz";
- sha1 = "15f4b9bcef012044df31142c14333caf6e0260d0";
- };
- }
- {
- name = "buffer_indexof_polyfill___buffer_indexof_polyfill_1.0.2.tgz";
- path = fetchurl {
- name = "buffer_indexof_polyfill___buffer_indexof_polyfill_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz";
- sha1 = "d2732135c5999c64b277fcf9b1abe3498254729c";
- };
- }
- {
- name = "buffer_shims___buffer_shims_1.0.0.tgz";
- path = fetchurl {
- name = "buffer_shims___buffer_shims_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz";
- sha1 = "9978ce317388c649ad8793028c3477ef044a8b51";
- };
- }
- {
- name = "buffer___buffer_5.7.1.tgz";
- path = fetchurl {
- name = "buffer___buffer_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz";
- sha1 = "ba62e7c13133053582197160851a8f648e99eed0";
- };
- }
- {
- name = "buffers___buffers_0.1.1.tgz";
- path = fetchurl {
- name = "buffers___buffers_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz";
- sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb";
- };
- }
- {
- name = "camelcase___camelcase_2.1.1.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz";
- sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
- };
- }
- {
- name = "camelcase___camelcase_6.2.0.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz";
- sha1 = "924af881c9d525ac9d87f40d964e5cea982a1809";
- };
- }
- {
- name = "caseless___caseless_0.12.0.tgz";
- path = fetchurl {
- name = "caseless___caseless_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- }
- {
- name = "chai___chai_4.3.4.tgz";
- path = fetchurl {
- name = "chai___chai_4.3.4.tgz";
- url = "https://registry.yarnpkg.com/chai/-/chai-4.3.4.tgz";
- sha1 = "b55e655b31e1eac7099be4c08c21964fce2e6c49";
- };
- }
- {
- name = "chainsaw___chainsaw_0.1.0.tgz";
- path = fetchurl {
- name = "chainsaw___chainsaw_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz";
- sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
- };
- }
- {
- name = "chalk___chalk_1.1.3.tgz";
- path = fetchurl {
- name = "chalk___chalk_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
- };
- }
- {
- name = "chalk___chalk_4.1.0.tgz";
- path = fetchurl {
- name = "chalk___chalk_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz";
- sha1 = "4e14870a618d9e2edd97dd8345fd9d9dc315646a";
- };
- }
- {
- name = "check_error___check_error_1.0.2.tgz";
- path = fetchurl {
- name = "check_error___check_error_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz";
- sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82";
- };
- }
- {
- name = "chokidar___chokidar_3.5.1.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_3.5.1.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz";
- sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a";
- };
- }
- {
- name = "chownr___chownr_1.1.4.tgz";
- path = fetchurl {
- name = "chownr___chownr_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz";
- sha1 = "6fc9d7b42d32a583596337666e7d08084da2cc6b";
- };
- }
- {
- name = "chownr___chownr_2.0.0.tgz";
- path = fetchurl {
- name = "chownr___chownr_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz";
- sha1 = "15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece";
- };
- }
- {
- name = "cliui___cliui_3.2.0.tgz";
- path = fetchurl {
- name = "cliui___cliui_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz";
- sha1 = "120601537a916d29940f934da3b48d585a39213d";
- };
- }
- {
- name = "cliui___cliui_7.0.4.tgz";
- path = fetchurl {
- name = "cliui___cliui_7.0.4.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz";
- sha1 = "a0265ee655476fc807aea9df3df8df7783808b4f";
- };
- }
- {
- name = "cmake_js___cmake_js_5.2.0.tgz";
- path = fetchurl {
- name = "cmake_js___cmake_js_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/cmake-js/-/cmake-js-5.2.0.tgz";
- sha1 = "6d72014269a5d23a754a6d170cde9ed2d75eb411";
- };
- }
- {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- path = fetchurl {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- }
- {
- name = "color_convert___color_convert_2.0.1.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz";
- sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3";
- };
- }
- {
- name = "color_name___color_name_1.1.4.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz";
- sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2";
- };
- }
- {
- name = "colors___colors_0.6.2.tgz";
- path = fetchurl {
- name = "colors___colors_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz";
- sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
- };
- }
- {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- path = fetchurl {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz";
- sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f";
- };
- }
- {
- name = "commander___commander_2.9.0.tgz";
- path = fetchurl {
- name = "commander___commander_2.9.0.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
- };
- }
- {
- name = "commander___commander_2.2.0.tgz";
- path = fetchurl {
- name = "commander___commander_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.2.0.tgz";
- sha1 = "175ad4b9317f3ff615f201c1e57224f55a3e91df";
- };
- }
- {
- name = "concat_map___concat_map_0.0.1.tgz";
- path = fetchurl {
- name = "concat_map___concat_map_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- }
- {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- path = fetchurl {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
- };
- }
- {
- name = "convert_source_map___convert_source_map_1.5.1.tgz";
- path = fetchurl {
- name = "convert_source_map___convert_source_map_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz";
- sha1 = "b8278097b9bc229365de5c62cf5fcaed8b5599e5";
- };
- }
- {
- name = "core_js___core_js_2.4.1.tgz";
- path = fetchurl {
- name = "core_js___core_js_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz";
- sha1 = "4de911e667b0eae9124e34254b53aea6fc618d3e";
- };
- }
- {
- name = "core_js___core_js_2.5.7.tgz";
- path = fetchurl {
- name = "core_js___core_js_2.5.7.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz";
- sha1 = "f972608ff0cead68b841a16a932d0b183791814e";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- }
- {
- name = "d___d_1.0.1.tgz";
- path = fetchurl {
- name = "d___d_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz";
- sha1 = "8698095372d58dbee346ffd0c7093f99f8f9eb5a";
- };
- }
- {
- name = "dashdash___dashdash_1.14.1.tgz";
- path = fetchurl {
- name = "dashdash___dashdash_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- }
- {
- name = "debug___debug_4.3.1.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz";
- sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee";
- };
- }
- {
- name = "debug___debug_2.6.9.tgz";
- path = fetchurl {
- name = "debug___debug_2.6.9.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz";
- sha1 = "5d128515df134ff327e90a4c93f4e077a536341f";
- };
- }
- {
- name = "debug___debug_4.2.0.tgz";
- path = fetchurl {
- name = "debug___debug_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz";
- sha1 = "7f150f93920e94c58f5574c2fd01a3110effe7f1";
- };
- }
- {
- name = "decamelize___decamelize_1.2.0.tgz";
- path = fetchurl {
- name = "decamelize___decamelize_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
- };
- }
- {
- name = "decamelize___decamelize_4.0.0.tgz";
- path = fetchurl {
- name = "decamelize___decamelize_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz";
- sha1 = "aa472d7bf660eb15f3494efd531cab7f2a709837";
- };
- }
- {
- name = "decompress_response___decompress_response_4.2.1.tgz";
- path = fetchurl {
- name = "decompress_response___decompress_response_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz";
- sha1 = "414023cc7a302da25ce2ec82d0d5238ccafd8986";
- };
- }
- {
- name = "deep_eql___deep_eql_3.0.1.tgz";
- path = fetchurl {
- name = "deep_eql___deep_eql_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz";
- sha1 = "dfc9404400ad1c8fe023e7da1df1c147c4b444df";
- };
- }
- {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- path = fetchurl {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz";
- sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac";
- };
- }
- {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- path = fetchurl {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- }
- {
- name = "delegates___delegates_1.0.0.tgz";
- path = fetchurl {
- name = "delegates___delegates_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
- };
- }
- {
- name = "detect_indent___detect_indent_4.0.0.tgz";
- path = fetchurl {
- name = "detect_indent___detect_indent_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz";
- sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
- };
- }
- {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- path = fetchurl {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
- };
- }
- {
- name = "diff___diff_5.0.0.tgz";
- path = fetchurl {
- name = "diff___diff_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz";
- sha1 = "7ed6ad76d859d030787ec35855f5b1daf31d852b";
- };
- }
- {
- name = "duplexer2___duplexer2_0.0.2.tgz";
- path = fetchurl {
- name = "duplexer2___duplexer2_0.0.2.tgz";
- url = "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz";
- sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
- };
- }
- {
- name = "duplexer2___duplexer2_0.1.4.tgz";
- path = fetchurl {
- name = "duplexer2___duplexer2_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz";
- sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1";
- };
- }
- {
- name = "each_series_async___each_series_async_1.0.1.tgz";
- path = fetchurl {
- name = "each_series_async___each_series_async_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/each-series-async/-/each-series-async-1.0.1.tgz";
- sha1 = "7e3f8dfa5af934663960e5a17561362909b34328";
- };
- }
- {
- name = "ecc_jsbn___ecc_jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "ecc_jsbn___ecc_jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
- sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
- };
- }
- {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz";
- sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37";
- };
- }
- {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- path = fetchurl {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz";
- sha1 = "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0";
- };
- }
- {
- name = "env_paths___env_paths_2.2.0.tgz";
- path = fetchurl {
- name = "env_paths___env_paths_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz";
- sha1 = "cdca557dc009152917d6166e2febe1f039685e43";
- };
- }
- {
- name = "es5_ext___es5_ext_0.10.53.tgz";
- path = fetchurl {
- name = "es5_ext___es5_ext_0.10.53.tgz";
- url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz";
- sha1 = "93c5a3acfdbef275220ad72644ad02ee18368de1";
- };
- }
- {
- name = "es6_iterator___es6_iterator_2.0.3.tgz";
- path = fetchurl {
- name = "es6_iterator___es6_iterator_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz";
- sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
- };
- }
- {
- name = "es6_symbol___es6_symbol_3.1.3.tgz";
- path = fetchurl {
- name = "es6_symbol___es6_symbol_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz";
- sha1 = "bad5d3c1bcdac28269f4cb331e431c78ac705d18";
- };
- }
- {
- name = "escalade___escalade_3.1.1.tgz";
- path = fetchurl {
- name = "escalade___escalade_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz";
- sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
- sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- }
- {
- name = "esutils___esutils_2.0.2.tgz";
- path = fetchurl {
- name = "esutils___esutils_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz";
- sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
- };
- }
- {
- name = "execspawn___execspawn_1.0.1.tgz";
- path = fetchurl {
- name = "execspawn___execspawn_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/execspawn/-/execspawn-1.0.1.tgz";
- sha1 = "8286f9dde7cecde7905fbdc04e24f368f23f8da6";
- };
- }
- {
- name = "expand_template___expand_template_2.0.3.tgz";
- path = fetchurl {
- name = "expand_template___expand_template_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz";
- sha1 = "6e14b3fcee0f3a6340ecb57d2e8918692052a47c";
- };
- }
- {
- name = "ext___ext_1.4.0.tgz";
- path = fetchurl {
- name = "ext___ext_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz";
- sha1 = "89ae7a07158f79d35517882904324077e4379244";
- };
- }
- {
- name = "extend___extend_3.0.2.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz";
- sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa";
- };
- }
- {
- name = "extsprintf___extsprintf_1.0.2.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz";
- sha1 = "e1080e0658e300b06294990cc70e1502235fd550";
- };
- }
- {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- path = fetchurl {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
- sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525";
- };
- }
- {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz";
- path = fetchurl {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
- };
- }
- {
- name = "fill_range___fill_range_7.0.1.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz";
- sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40";
- };
- }
- {
- name = "find_up___find_up_5.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz";
- sha1 = "4c92819ecb7083561e4f4a240a86be5198f536fc";
- };
- }
- {
- name = "flat___flat_5.0.2.tgz";
- path = fetchurl {
- name = "flat___flat_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz";
- sha1 = "8ca6fe332069ffa9d324c327198c598259ceb241";
- };
- }
- {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- path = fetchurl {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- }
- {
- name = "form_data___form_data_2.3.3.tgz";
- path = fetchurl {
- name = "form_data___form_data_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz";
- sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6";
- };
- }
- {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- path = fetchurl {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz";
- sha1 = "6be0de9be998ce16af8afc24497b9ee9b7ccd9ad";
- };
- }
- {
- name = "fs_extra___fs_extra_5.0.0.tgz";
- path = fetchurl {
- name = "fs_extra___fs_extra_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz";
- sha1 = "414d0110cdd06705734d055652c5411260c31abd";
- };
- }
- {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz";
- sha1 = "ccff8570841e7fe4265693da88936c55aed7f7c7";
- };
- }
- {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz";
- sha1 = "7f5036fdbf12c63c169190cbe4199c852271f9fb";
- };
- }
- {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- path = fetchurl {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- }
- {
- name = "fsevents___fsevents_2.3.2.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz";
- sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a";
- };
- }
- {
- name = "fstream___fstream_1.0.12.tgz";
- path = fetchurl {
- name = "fstream___fstream_1.0.12.tgz";
- url = "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz";
- sha1 = "4e8ba8ee2d48be4f7d0de505455548eae5932045";
- };
- }
- {
- name = "gauge___gauge_1.2.7.tgz";
- path = fetchurl {
- name = "gauge___gauge_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz";
- sha1 = "e9cec5483d3d4ee0ef44b60a7d99e4935e136d93";
- };
- }
- {
- name = "gauge___gauge_2.7.4.tgz";
- path = fetchurl {
- name = "gauge___gauge_2.7.4.tgz";
- url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
- };
- }
- {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz";
- sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
- };
- }
- {
- name = "get_func_name___get_func_name_2.0.0.tgz";
- path = fetchurl {
- name = "get_func_name___get_func_name_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz";
- sha1 = "ead774abee72e20409433a066366023dd6887a41";
- };
- }
- {
- name = "getpass___getpass_0.1.7.tgz";
- path = fetchurl {
- name = "getpass___getpass_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- }
- {
- name = "ghreleases___ghreleases_3.0.2.tgz";
- path = fetchurl {
- name = "ghreleases___ghreleases_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/ghreleases/-/ghreleases-3.0.2.tgz";
- sha1 = "1bdb6d31ec03a24a0d80f58f5e9a84a4db725818";
- };
- }
- {
- name = "ghrepos___ghrepos_2.1.0.tgz";
- path = fetchurl {
- name = "ghrepos___ghrepos_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/ghrepos/-/ghrepos-2.1.0.tgz";
- sha1 = "abaf558b690b722c70c7ad45076f6f9be8e495e1";
- };
- }
- {
- name = "ghutils___ghutils_3.2.6.tgz";
- path = fetchurl {
- name = "ghutils___ghutils_3.2.6.tgz";
- url = "https://registry.yarnpkg.com/ghutils/-/ghutils-3.2.6.tgz";
- sha1 = "d43986e267da02787464d97a6489659e4609bb1f";
- };
- }
- {
- name = "github_from_package___github_from_package_0.0.0.tgz";
- path = fetchurl {
- name = "github_from_package___github_from_package_0.0.0.tgz";
- url = "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz";
- sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
- };
- }
- {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
- sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
- };
- }
- {
- name = "glob___glob_7.1.6.tgz";
- path = fetchurl {
- name = "glob___glob_7.1.6.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz";
- sha1 = "141f33b81a7c2492e125594307480c46679278a6";
- };
- }
- {
- name = "glob___glob_5.0.15.tgz";
- path = fetchurl {
- name = "glob___glob_5.0.15.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz";
- sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
- };
- }
- {
- name = "globals___globals_9.18.0.tgz";
- path = fetchurl {
- name = "globals___globals_9.18.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz";
- sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a";
- };
- }
- {
- name = "graceful_fs___graceful_fs_4.2.3.tgz";
- path = fetchurl {
- name = "graceful_fs___graceful_fs_4.2.3.tgz";
- url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz";
- sha1 = "4a12ff1b60376ef09862c2093edd908328be8423";
- };
- }
- {
- name = "graceful_readlink___graceful_readlink_1.0.1.tgz";
- path = fetchurl {
- name = "graceful_readlink___graceful_readlink_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
- };
- }
- {
- name = "growl___growl_1.10.5.tgz";
- path = fetchurl {
- name = "growl___growl_1.10.5.tgz";
- url = "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz";
- sha1 = "f2735dc2283674fa67478b10181059355c369e5e";
- };
- }
- {
- name = "har_schema___har_schema_2.0.0.tgz";
- path = fetchurl {
- name = "har_schema___har_schema_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- }
- {
- name = "har_validator___har_validator_5.1.5.tgz";
- path = fetchurl {
- name = "har_validator___har_validator_5.1.5.tgz";
- url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz";
- sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd";
- };
- }
- {
- name = "has_ansi___has_ansi_2.0.0.tgz";
- path = fetchurl {
- name = "has_ansi___has_ansi_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
- };
- }
- {
- name = "has_flag___has_flag_4.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz";
- sha1 = "944771fd9c81c81265c4d6941860da06bb59479b";
- };
- }
- {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- path = fetchurl {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
- };
- }
- {
- name = "he___he_1.2.0.tgz";
- path = fetchurl {
- name = "he___he_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz";
- sha1 = "84ae65fa7eafb165fddb61566ae14baf05664f0f";
- };
- }
- {
- name = "home_or_tmp___home_or_tmp_2.0.0.tgz";
- path = fetchurl {
- name = "home_or_tmp___home_or_tmp_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
- sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
- };
- }
- {
- name = "http_signature___http_signature_1.2.0.tgz";
- path = fetchurl {
- name = "http_signature___http_signature_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- }
- {
- name = "hyperquest___hyperquest_2.1.3.tgz";
- path = fetchurl {
- name = "hyperquest___hyperquest_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/hyperquest/-/hyperquest-2.1.3.tgz";
- sha1 = "523127d7a343181b40bf324e231d2576edf52633";
- };
- }
- {
- name = "ieee754___ieee754_1.2.1.tgz";
- path = fetchurl {
- name = "ieee754___ieee754_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz";
- sha1 = "8eb7a10a63fff25d15a57b001586d177d1b0d352";
- };
- }
- {
- name = "inflight___inflight_1.0.6.tgz";
- path = fetchurl {
- name = "inflight___inflight_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- }
- {
- name = "inherits___inherits_2.0.3.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- }
- {
- name = "inherits___inherits_2.0.4.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz";
- sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c";
- };
- }
- {
- name = "ini___ini_1.3.7.tgz";
- path = fetchurl {
- name = "ini___ini_1.3.7.tgz";
- url = "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz";
- sha1 = "a09363e1911972ea16d7a8851005d84cf09a9a84";
- };
- }
- {
- name = "invariant___invariant_2.2.2.tgz";
- path = fetchurl {
- name = "invariant___invariant_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz";
- sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360";
- };
- }
- {
- name = "invert_kv___invert_kv_1.0.0.tgz";
- path = fetchurl {
- name = "invert_kv___invert_kv_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz";
- sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
- };
- }
- {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- path = fetchurl {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz";
- sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09";
- };
- }
- {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- }
- {
- name = "is_finite___is_finite_1.0.2.tgz";
- path = fetchurl {
- name = "is_finite___is_finite_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz";
- sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz";
- sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d";
- };
- }
- {
- name = "is_glob___is_glob_4.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz";
- sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc";
- };
- }
- {
- name = "is_iojs___is_iojs_1.1.0.tgz";
- path = fetchurl {
- name = "is_iojs___is_iojs_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-iojs/-/is-iojs-1.1.0.tgz";
- sha1 = "4c11033b5d5d94d6eab3775dedc9be7d008325f1";
- };
- }
- {
- name = "is_number___is_number_7.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz";
- sha1 = "7535345b896734d5f80c4d06c50955527a14f12b";
- };
- }
- {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- path = fetchurl {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz";
- sha1 = "45e42e37fccf1f40da8e5f76ee21515840c09287";
- };
- }
- {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- path = fetchurl {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- }
- {
- name = "isarray___isarray_0.0.1.tgz";
- path = fetchurl {
- name = "isarray___isarray_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz";
- sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
- };
- }
- {
- name = "isarray___isarray_1.0.0.tgz";
- path = fetchurl {
- name = "isarray___isarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- }
- {
- name = "isexe___isexe_2.0.0.tgz";
- path = fetchurl {
- name = "isexe___isexe_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- }
- {
- name = "isstream___isstream_0.1.2.tgz";
- path = fetchurl {
- name = "isstream___isstream_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- }
- {
- name = "js_tokens___js_tokens_3.0.2.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz";
- sha1 = "9866df395102130e38f7f996bceb65443209c25b";
- };
- }
- {
- name = "js_yaml___js_yaml_4.0.0.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz";
- sha1 = "f426bc0ff4b4051926cd588c71113183409a121f";
- };
- }
- {
- name = "jsbn___jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "jsbn___jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- }
- {
- name = "jsesc___jsesc_1.3.0.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz";
- sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660";
- };
- }
- {
- name = "json_schema___json_schema_0.2.3.tgz";
- path = fetchurl {
- name = "json_schema___json_schema_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- }
- {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- path = fetchurl {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- }
- {
- name = "json5___json5_0.5.1.tgz";
- path = fetchurl {
- name = "json5___json5_0.5.1.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz";
- sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
- };
- }
- {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- path = fetchurl {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz";
- sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
- };
- }
- {
- name = "jsonist___jsonist_2.1.2.tgz";
- path = fetchurl {
- name = "jsonist___jsonist_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/jsonist/-/jsonist-2.1.2.tgz";
- sha1 = "c1377311e8fc857abe7aa3df197116a911f95324";
- };
- }
- {
- name = "jsprim___jsprim_1.4.0.tgz";
- path = fetchurl {
- name = "jsprim___jsprim_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz";
- sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
- };
- }
- {
- name = "lcid___lcid_1.0.0.tgz";
- path = fetchurl {
- name = "lcid___lcid_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz";
- sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
- };
- }
- {
- name = "listenercount___listenercount_1.0.1.tgz";
- path = fetchurl {
- name = "listenercount___listenercount_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz";
- sha1 = "84c8a72ab59c4725321480c975e6508342e70937";
- };
- }
- {
- name = "locate_path___locate_path_6.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz";
- sha1 = "55321eb309febbc59c4801d931a72452a681d286";
- };
- }
- {
- name = "lodash.pad___lodash.pad_4.5.1.tgz";
- path = fetchurl {
- name = "lodash.pad___lodash.pad_4.5.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz";
- sha1 = "4330949a833a7c8da22cc20f6a26c4d59debba70";
- };
- }
- {
- name = "lodash.padend___lodash.padend_4.6.1.tgz";
- path = fetchurl {
- name = "lodash.padend___lodash.padend_4.6.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz";
- sha1 = "53ccba047d06e158d311f45da625f4e49e6f166e";
- };
- }
- {
- name = "lodash.padstart___lodash.padstart_4.6.1.tgz";
- path = fetchurl {
- name = "lodash.padstart___lodash.padstart_4.6.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz";
- sha1 = "d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b";
- };
- }
- {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
- sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
- };
- }
- {
- name = "lodash___lodash_4.17.19.tgz";
- path = fetchurl {
- name = "lodash___lodash_4.17.19.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz";
- sha1 = "e48ddedbe30b3321783c5b4301fbd353bc1e4a4b";
- };
- }
- {
- name = "log_symbols___log_symbols_4.0.0.tgz";
- path = fetchurl {
- name = "log_symbols___log_symbols_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz";
- sha1 = "69b3cc46d20f448eccdb75ea1fa733d9e821c920";
- };
- }
- {
- name = "loose_envify___loose_envify_1.3.1.tgz";
- path = fetchurl {
- name = "loose_envify___loose_envify_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz";
- sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848";
- };
- }
- {
- name = "memory_stream___memory_stream_0.0.3.tgz";
- path = fetchurl {
- name = "memory_stream___memory_stream_0.0.3.tgz";
- url = "https://registry.yarnpkg.com/memory-stream/-/memory-stream-0.0.3.tgz";
- sha1 = "ebe8dd1c3b8bc38c0e7941e9ddd5aebe6b4de83f";
- };
- }
- {
- name = "mime_db___mime_db_1.44.0.tgz";
- path = fetchurl {
- name = "mime_db___mime_db_1.44.0.tgz";
- url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz";
- sha1 = "fa11c5eb0aca1334b4233cb4d52f10c5a6272f92";
- };
- }
- {
- name = "mime_types___mime_types_2.1.27.tgz";
- path = fetchurl {
- name = "mime_types___mime_types_2.1.27.tgz";
- url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz";
- sha1 = "47949f98e279ea53119f5722e0f34e529bec009f";
- };
- }
- {
- name = "mimic_response___mimic_response_2.1.0.tgz";
- path = fetchurl {
- name = "mimic_response___mimic_response_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz";
- sha1 = "d13763d35f613d09ec37ebb30bac0469c0ee8f43";
- };
- }
- {
- name = "minimatch___minimatch_3.0.4.tgz";
- path = fetchurl {
- name = "minimatch___minimatch_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
- };
- }
- {
- name = "minimist___minimist_1.2.5.tgz";
- path = fetchurl {
- name = "minimist___minimist_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz";
- sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602";
- };
- }
- {
- name = "minipass___minipass_2.9.0.tgz";
- path = fetchurl {
- name = "minipass___minipass_2.9.0.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz";
- sha1 = "e713762e7d3e32fed803115cf93e04bca9fcc9a6";
- };
- }
- {
- name = "minipass___minipass_3.1.3.tgz";
- path = fetchurl {
- name = "minipass___minipass_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz";
- sha1 = "7d42ff1f39635482e15f9cdb53184deebd5815fd";
- };
- }
- {
- name = "minizlib___minizlib_1.3.3.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz";
- sha1 = "2290de96818a34c29551c8a8d301216bd65a861d";
- };
- }
- {
- name = "minizlib___minizlib_2.1.2.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz";
- sha1 = "e90d3466ba209b932451508a11ce3d3632145931";
- };
- }
- {
- name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz";
- path = fetchurl {
- name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz";
- sha1 = "fa10c9115cc6d8865be221ba47ee9bed78601113";
- };
- }
- {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz";
- sha1 = "d91cefd62d1436ca0f41620e251288d420099def";
- };
- }
- {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz";
- sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e";
- };
- }
- {
- name = "mocha___mocha_8.3.2.tgz";
- path = fetchurl {
- name = "mocha___mocha_8.3.2.tgz";
- url = "https://registry.yarnpkg.com/mocha/-/mocha-8.3.2.tgz";
- sha1 = "53406f195fa86fbdebe71f8b1c6fb23221d69fcc";
- };
- }
- {
- name = "ms___ms_2.0.0.tgz";
- path = fetchurl {
- name = "ms___ms_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- }
- {
- name = "ms___ms_2.1.2.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz";
- sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009";
- };
- }
- {
- name = "ms___ms_2.1.3.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz";
- sha1 = "574c8138ce1d2b5861f0b44579dbadd60c6615b2";
- };
- }
- {
- name = "nanoid___nanoid_3.1.20.tgz";
- path = fetchurl {
- name = "nanoid___nanoid_3.1.20.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz";
- sha1 = "badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788";
- };
- }
- {
- name = "napi_build_utils___napi_build_utils_1.0.2.tgz";
- path = fetchurl {
- name = "napi_build_utils___napi_build_utils_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz";
- sha1 = "b1fddc0b2c46e380a0b7a76f984dd47c41a13806";
- };
- }
- {
- name = "next_tick___next_tick_1.0.0.tgz";
- path = fetchurl {
- name = "next_tick___next_tick_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz";
- sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c";
- };
- }
- {
- name = "node_abi___node_abi_2.21.0.tgz";
- path = fetchurl {
- name = "node_abi___node_abi_2.21.0.tgz";
- url = "https://registry.yarnpkg.com/node-abi/-/node-abi-2.21.0.tgz";
- sha1 = "c2dc9ebad6f4f53d6ea9b531e7b8faad81041d48";
- };
- }
- {
- name = "node_addon_api___node_addon_api_3.1.0.tgz";
- path = fetchurl {
- name = "node_addon_api___node_addon_api_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.1.0.tgz";
- sha1 = "98b21931557466c6729e51cb77cd39c965f42239";
- };
- }
- {
- name = "node_cpplint___node_cpplint_0.4.0.tgz";
- path = fetchurl {
- name = "node_cpplint___node_cpplint_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/node-cpplint/-/node-cpplint-0.4.0.tgz";
- sha1 = "35827fe7b95ccceff0cd7f46ede4cba44b8ef88c";
- };
- }
- {
- name = "node_gyp___node_gyp_6.1.0.tgz";
- path = fetchurl {
- name = "node_gyp___node_gyp_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-6.1.0.tgz";
- sha1 = "64e31c61a4695ad304c1d5b82cf6b7c79cc79f3f";
- };
- }
- {
- name = "node_gyp___node_gyp_7.1.2.tgz";
- path = fetchurl {
- name = "node_gyp___node_gyp_7.1.2.tgz";
- url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.1.2.tgz";
- sha1 = "21a810aebb187120251c3bcec979af1587b188ae";
- };
- }
- {
- name = "node_ninja___node_ninja_1.0.2.tgz";
- path = fetchurl {
- name = "node_ninja___node_ninja_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/node-ninja/-/node-ninja-1.0.2.tgz";
- sha1 = "20a09e57b92e2df591993d4bf098ac3e727062b6";
- };
- }
- {
- name = "noop_logger___noop_logger_0.1.1.tgz";
- path = fetchurl {
- name = "noop_logger___noop_logger_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz";
- sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2";
- };
- }
- {
- name = "nopt___nopt_3.0.6.tgz";
- path = fetchurl {
- name = "nopt___nopt_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
- };
- }
- {
- name = "nopt___nopt_4.0.3.tgz";
- path = fetchurl {
- name = "nopt___nopt_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz";
- sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48";
- };
- }
- {
- name = "nopt___nopt_5.0.0.tgz";
- path = fetchurl {
- name = "nopt___nopt_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz";
- sha1 = "530942bb58a512fccafe53fe210f13a25355dc88";
- };
- }
- {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz";
- sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65";
- };
- }
- {
- name = "npm_path___npm_path_2.0.4.tgz";
- path = fetchurl {
- name = "npm_path___npm_path_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz";
- sha1 = "c641347a5ff9d6a09e4d9bce5580c4f505278e64";
- };
- }
- {
- name = "npm_which___npm_which_3.0.1.tgz";
- path = fetchurl {
- name = "npm_which___npm_which_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz";
- sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa";
- };
- }
- {
- name = "npmlog___npmlog_2.0.4.tgz";
- path = fetchurl {
- name = "npmlog___npmlog_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz";
- sha1 = "98b52530f2514ca90d09ec5b22c8846722375692";
- };
- }
- {
- name = "npmlog___npmlog_4.1.2.tgz";
- path = fetchurl {
- name = "npmlog___npmlog_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz";
- sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b";
- };
- }
- {
- name = "npmlog___npmlog_1.2.1.tgz";
- path = fetchurl {
- name = "npmlog___npmlog_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz";
- sha1 = "28e7be619609b53f7ad1dd300a10d64d716268b6";
- };
- }
- {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- path = fetchurl {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
- };
- }
- {
- name = "nw_gyp___nw_gyp_3.6.5.tgz";
- path = fetchurl {
- name = "nw_gyp___nw_gyp_3.6.5.tgz";
- url = "https://registry.yarnpkg.com/nw-gyp/-/nw-gyp-3.6.5.tgz";
- sha1 = "ccce42182229e44e7689da70675b4b8dd0ab0ab3";
- };
- }
- {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- path = fetchurl {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz";
- sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
- };
- }
- {
- name = "object_assign___object_assign_4.1.1.tgz";
- path = fetchurl {
- name = "object_assign___object_assign_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- }
- {
- name = "once___once_1.4.0.tgz";
- path = fetchurl {
- name = "once___once_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- }
- {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- path = fetchurl {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- }
- {
- name = "os_locale___os_locale_1.4.0.tgz";
- path = fetchurl {
- name = "os_locale___os_locale_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz";
- sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9";
- };
- }
- {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- path = fetchurl {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- }
- {
- name = "osenv___osenv_0.1.5.tgz";
- path = fetchurl {
- name = "osenv___osenv_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz";
- sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410";
- };
- }
- {
- name = "p_limit___p_limit_3.1.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz";
- sha1 = "e1daccbe78d0d1388ca18c64fea38e3e57e3706b";
- };
- }
- {
- name = "p_locate___p_locate_5.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz";
- sha1 = "83c8315c6785005e3bd021839411c9e110e6d834";
- };
- }
- {
- name = "path_array___path_array_1.0.1.tgz";
- path = fetchurl {
- name = "path_array___path_array_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz";
- sha1 = "7e2f0f35f07a2015122b868b7eac0eb2c4fec271";
- };
- }
- {
- name = "path_exists___path_exists_4.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz";
- sha1 = "513bdbe2d3b95d7762e8c1137efa195c6c61b5b3";
- };
- }
- {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- path = fetchurl {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- }
- {
- name = "pathval___pathval_1.1.1.tgz";
- path = fetchurl {
- name = "pathval___pathval_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz";
- sha1 = "8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d";
- };
- }
- {
- name = "performance_now___performance_now_2.1.0.tgz";
- path = fetchurl {
- name = "performance_now___performance_now_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- }
- {
- name = "picomatch___picomatch_2.2.2.tgz";
- path = fetchurl {
- name = "picomatch___picomatch_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz";
- sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad";
- };
- }
- {
- name = "prebuild_install___prebuild_install_6.1.1.tgz";
- path = fetchurl {
- name = "prebuild_install___prebuild_install_6.1.1.tgz";
- url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.1.1.tgz";
- sha1 = "6754fa6c0d55eced7f9e14408ff9e4cba6f097b4";
- };
- }
- {
- name = "prebuild___prebuild_10.0.1.tgz";
- path = fetchurl {
- name = "prebuild___prebuild_10.0.1.tgz";
- url = "https://registry.yarnpkg.com/prebuild/-/prebuild-10.0.1.tgz";
- sha1 = "9d46a00f42b60ad1718479cc5e3d1ef4882b7f33";
- };
- }
- {
- name = "private___private_0.1.8.tgz";
- path = fetchurl {
- name = "private___private_0.1.8.tgz";
- url = "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz";
- sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- }
- {
- name = "psl___psl_1.1.29.tgz";
- path = fetchurl {
- name = "psl___psl_1.1.29.tgz";
- url = "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz";
- sha1 = "60f580d360170bb722a797cc704411e6da850c67";
- };
- }
- {
- name = "pump___pump_3.0.0.tgz";
- path = fetchurl {
- name = "pump___pump_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz";
- sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64";
- };
- }
- {
- name = "punycode___punycode_2.1.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz";
- sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec";
- };
- }
- {
- name = "qs___qs_6.5.2.tgz";
- path = fetchurl {
- name = "qs___qs_6.5.2.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz";
- sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36";
- };
- }
- {
- name = "randombytes___randombytes_2.1.0.tgz";
- path = fetchurl {
- name = "randombytes___randombytes_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz";
- sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a";
- };
- }
- {
- name = "rc___rc_1.2.8.tgz";
- path = fetchurl {
- name = "rc___rc_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz";
- sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed";
- };
- }
- {
- name = "readable_stream___readable_stream_1.0.34.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_1.0.34.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz";
- sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
- };
- }
- {
- name = "readable_stream___readable_stream_2.3.3.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz";
- sha1 = "368f2512d79f9d46fdfc71349ae7878bbc1eb95c";
- };
- }
- {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz";
- sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198";
- };
- }
- {
- name = "readable_stream___readable_stream_1.1.14.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_1.1.14.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz";
- sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
- };
- }
- {
- name = "readable_stream___readable_stream_2.1.5.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.1.5.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz";
- sha1 = "66fa8b720e1438b364681f2ad1a63c618448c9d0";
- };
- }
- {
- name = "readdirp___readdirp_3.5.0.tgz";
- path = fetchurl {
- name = "readdirp___readdirp_3.5.0.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz";
- sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
- sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
- sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9";
- };
- }
- {
- name = "repeating___repeating_2.0.1.tgz";
- path = fetchurl {
- name = "repeating___repeating_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz";
- sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
- };
- }
- {
- name = "request___request_2.88.2.tgz";
- path = fetchurl {
- name = "request___request_2.88.2.tgz";
- url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz";
- sha1 = "d73c918731cb5a87da047e207234146f664d12b3";
- };
- }
- {
- name = "require_directory___require_directory_2.1.1.tgz";
- path = fetchurl {
- name = "require_directory___require_directory_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- }
- {
- name = "rimraf___rimraf_2.7.1.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz";
- sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec";
- };
- }
- {
- name = "rimraf___rimraf_3.0.2.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz";
- sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
- };
- }
- {
- name = "rsvp___rsvp_3.6.2.tgz";
- path = fetchurl {
- name = "rsvp___rsvp_3.6.2.tgz";
- url = "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz";
- sha1 = "2e96491599a96cde1b515d5674a8f7a91452926a";
- };
- }
- {
- name = "run_waterfall___run_waterfall_1.1.7.tgz";
- path = fetchurl {
- name = "run_waterfall___run_waterfall_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/run-waterfall/-/run-waterfall-1.1.7.tgz";
- sha1 = "ae368b549b2f5171f86c2924492cab3352a6e9c5";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.1.1.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha1 = "893312af69b2123def71f57889001671eeb2c853";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz";
- sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6";
- };
- }
- {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- path = fetchurl {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a";
- };
- }
- {
- name = "semver___semver_5.7.1.tgz";
- path = fetchurl {
- name = "semver___semver_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz";
- sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
- };
- }
- {
- name = "semver___semver_4.3.6.tgz";
- path = fetchurl {
- name = "semver___semver_4.3.6.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz";
- sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
- };
- }
- {
- name = "semver___semver_7.3.2.tgz";
- path = fetchurl {
- name = "semver___semver_7.3.2.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz";
- sha1 = "604962b052b81ed0786aae84389ffba70ffd3938";
- };
- }
- {
- name = "semver___semver_5.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz";
- sha1 = "7886ec848049a462467a97d3d918ebb2aaf934f4";
- };
- }
- {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- path = fetchurl {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- }
- {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- path = fetchurl {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz";
- sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
- };
- }
- {
- name = "signal_exit___signal_exit_3.0.2.tgz";
- path = fetchurl {
- name = "signal_exit___signal_exit_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz";
- sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
- };
- }
- {
- name = "simple_concat___simple_concat_1.0.1.tgz";
- path = fetchurl {
- name = "simple_concat___simple_concat_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz";
- sha1 = "f46976082ba35c2263f1c8ab5edfe26c41c9552f";
- };
- }
- {
- name = "simple_get___simple_get_3.1.0.tgz";
- path = fetchurl {
- name = "simple_get___simple_get_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz";
- sha1 = "b45be062435e50d159540b576202ceec40b9c6b3";
- };
- }
- {
- name = "simple_mime___simple_mime_0.1.0.tgz";
- path = fetchurl {
- name = "simple_mime___simple_mime_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/simple-mime/-/simple-mime-0.1.0.tgz";
- sha1 = "95f517c4f466d7cff561a71fc9dab2596ea9ef2e";
- };
- }
- {
- name = "slash___slash_1.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz";
- sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
- };
- }
- {
- name = "source_map_support___source_map_support_0.4.18.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.4.18.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz";
- sha1 = "0286a6de8be42641338594e97ccea75f0a2c585f";
- };
- }
- {
- name = "source_map_support___source_map_support_0.2.10.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.2.10.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz";
- sha1 = "ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc";
- };
- }
- {
- name = "source_map___source_map_0.1.32.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.1.32.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz";
- sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266";
- };
- }
- {
- name = "source_map___source_map_0.5.7.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.5.7.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- }
- {
- name = "splitargs___splitargs_0.0.7.tgz";
- path = fetchurl {
- name = "splitargs___splitargs_0.0.7.tgz";
- url = "https://registry.yarnpkg.com/splitargs/-/splitargs-0.0.7.tgz";
- sha1 = "fe9f7ae657371b33b10cb80da143cf8249cf6b3b";
- };
- }
- {
- name = "sshpk___sshpk_1.14.2.tgz";
- path = fetchurl {
- name = "sshpk___sshpk_1.14.2.tgz";
- url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz";
- sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
- };
- }
- {
- name = "string_width___string_width_1.0.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
- };
- }
- {
- name = "string_width___string_width_4.2.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz";
- sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5";
- };
- }
- {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz";
- sha1 = "42f114594a46cf1a8e30b0a84f56c78c3edac21e";
- };
- }
- {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
- };
- }
- {
- name = "string_decoder___string_decoder_1.0.3.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz";
- sha1 = "0fc67d7c141825de94282dd536bec6b9bce860ab";
- };
- }
- {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- }
- {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz";
- sha1 = "31f1281b3832630434831c310c01cccda8cbe006";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
- };
- }
- {
- name = "supports_color___supports_color_8.1.1.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_8.1.1.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz";
- sha1 = "cd6fc17e28500cff56c1b86c0a7fd4a54a73005c";
- };
- }
- {
- name = "supports_color___supports_color_2.0.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
- };
- }
- {
- name = "supports_color___supports_color_7.2.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz";
- sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da";
- };
- }
- {
- name = "tar_fs___tar_fs_2.1.1.tgz";
- path = fetchurl {
- name = "tar_fs___tar_fs_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz";
- sha1 = "489a15ab85f1f0befabb370b7de4f9eb5cbe8784";
- };
- }
- {
- name = "tar_stream___tar_stream_2.1.4.tgz";
- path = fetchurl {
- name = "tar_stream___tar_stream_2.1.4.tgz";
- url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz";
- sha1 = "c4fb1a11eb0da29b893a5b25476397ba2d053bfa";
- };
- }
- {
- name = "tar___tar_2.2.2.tgz";
- path = fetchurl {
- name = "tar___tar_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz";
- sha1 = "0ca8848562c7299b8b446ff6a4d60cdbb23edc40";
- };
- }
- {
- name = "tar___tar_4.4.13.tgz";
- path = fetchurl {
- name = "tar___tar_4.4.13.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz";
- sha1 = "43b364bc52888d555298637b10d60790254ab525";
- };
- }
- {
- name = "tar___tar_6.0.5.tgz";
- path = fetchurl {
- name = "tar___tar_6.0.5.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz";
- sha1 = "bde815086e10b39f1dcd298e89d596e1535e200f";
- };
- }
- {
- name = "through2___through2_0.6.5.tgz";
- path = fetchurl {
- name = "through2___through2_0.6.5.tgz";
- url = "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz";
- sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48";
- };
- }
- {
- name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
- path = fetchurl {
- name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
- sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
- };
- }
- {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz";
- sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4";
- };
- }
- {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz";
- sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2";
- };
- }
- {
- name = "traceur___traceur_0.0.111.tgz";
- path = fetchurl {
- name = "traceur___traceur_0.0.111.tgz";
- url = "https://registry.yarnpkg.com/traceur/-/traceur-0.0.111.tgz";
- sha1 = "c04de74d14696c3373427de4fc08ecaf913fc3a1";
- };
- }
- {
- name = "traverse___traverse_0.3.9.tgz";
- path = fetchurl {
- name = "traverse___traverse_0.3.9.tgz";
- url = "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz";
- sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9";
- };
- }
- {
- name = "trim_right___trim_right_1.0.1.tgz";
- path = fetchurl {
- name = "trim_right___trim_right_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz";
- sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
- };
- }
- {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- path = fetchurl {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- }
- {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- path = fetchurl {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- }
- {
- name = "type_detect___type_detect_4.0.8.tgz";
- path = fetchurl {
- name = "type_detect___type_detect_4.0.8.tgz";
- url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz";
- sha1 = "7646fb5f18871cfbb7749e69bd39a6388eb7450c";
- };
- }
- {
- name = "type___type_1.2.0.tgz";
- path = fetchurl {
- name = "type___type_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz";
- sha1 = "848dd7698dafa3e54a6c479e759c4bc3f18847a0";
- };
- }
- {
- name = "type___type_2.1.0.tgz";
- path = fetchurl {
- name = "type___type_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz";
- sha1 = "9bdc22c648cf8cf86dd23d32336a41cfb6475e3f";
- };
- }
- {
- name = "universalify___universalify_0.1.2.tgz";
- path = fetchurl {
- name = "universalify___universalify_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz";
- sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66";
- };
- }
- {
- name = "unzipper___unzipper_0.8.14.tgz";
- path = fetchurl {
- name = "unzipper___unzipper_0.8.14.tgz";
- url = "https://registry.yarnpkg.com/unzipper/-/unzipper-0.8.14.tgz";
- sha1 = "ade0524cd2fc14d11b8de258be22f9d247d3f79b";
- };
- }
- {
- name = "uri_js___uri_js_4.2.2.tgz";
- path = fetchurl {
- name = "uri_js___uri_js_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz";
- sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0";
- };
- }
- {
- name = "url_join___url_join_0.0.1.tgz";
- path = fetchurl {
- name = "url_join___url_join_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/url-join/-/url-join-0.0.1.tgz";
- sha1 = "1db48ad422d3402469a87f7d97bdebfe4fb1e3c8";
- };
- }
- {
- name = "url_template___url_template_2.0.8.tgz";
- path = fetchurl {
- name = "url_template___url_template_2.0.8.tgz";
- url = "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz";
- sha1 = "fc565a3cccbff7730c775f5641f9555791439f21";
- };
- }
- {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- path = fetchurl {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- }
- {
- name = "util_extend___util_extend_1.0.3.tgz";
- path = fetchurl {
- name = "util_extend___util_extend_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz";
- sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f";
- };
- }
- {
- name = "uuid___uuid_3.4.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz";
- sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee";
- };
- }
- {
- name = "verror___verror_1.3.6.tgz";
- path = fetchurl {
- name = "verror___verror_1.3.6.tgz";
- url = "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz";
- sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c";
- };
- }
- {
- name = "which___which_1.3.1.tgz";
- path = fetchurl {
- name = "which___which_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz";
- sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a";
- };
- }
- {
- name = "which___which_2.0.2.tgz";
- path = fetchurl {
- name = "which___which_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz";
- sha1 = "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1";
- };
- }
- {
- name = "wide_align___wide_align_1.1.3.tgz";
- path = fetchurl {
- name = "wide_align___wide_align_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz";
- sha1 = "ae074e6bdc0c14a431e804e624549c633b000457";
- };
- }
- {
- name = "wide_align___wide_align_1.1.2.tgz";
- path = fetchurl {
- name = "wide_align___wide_align_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz";
- sha1 = "571e0f1b0604636ebc0dfc21b0339bbe31341710";
- };
- }
- {
- name = "window_size___window_size_0.1.4.tgz";
- path = fetchurl {
- name = "window_size___window_size_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz";
- sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876";
- };
- }
- {
- name = "workerpool___workerpool_6.1.0.tgz";
- path = fetchurl {
- name = "workerpool___workerpool_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz";
- sha1 = "a8e038b4c94569596852de7a8ea4228eefdeb37b";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_2.1.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
- sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz";
- sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43";
- };
- }
- {
- name = "wrappy___wrappy_1.0.2.tgz";
- path = fetchurl {
- name = "wrappy___wrappy_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- }
- {
- name = "xtend___xtend_4.0.2.tgz";
- path = fetchurl {
- name = "xtend___xtend_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz";
- sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54";
- };
- }
- {
- name = "y18n___y18n_3.2.2.tgz";
- path = fetchurl {
- name = "y18n___y18n_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz";
- sha1 = "85c901bd6470ce71fc4bb723ad209b70f7f28696";
- };
- }
- {
- name = "y18n___y18n_5.0.5.tgz";
- path = fetchurl {
- name = "y18n___y18n_5.0.5.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz";
- sha1 = "8769ec08d03b1ea2df2500acef561743bbb9ab18";
- };
- }
- {
- name = "yallist___yallist_3.1.1.tgz";
- path = fetchurl {
- name = "yallist___yallist_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz";
- sha1 = "dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd";
- };
- }
- {
- name = "yallist___yallist_4.0.0.tgz";
- path = fetchurl {
- name = "yallist___yallist_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz";
- sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72";
- };
- }
- {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz";
- sha1 = "b42890f14566796f85ae8e3a25290d205f154a54";
- };
- }
- {
- name = "yargs_unparser___yargs_unparser_2.0.0.tgz";
- path = fetchurl {
- name = "yargs_unparser___yargs_unparser_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz";
- sha1 = "f131f9226911ae5d9ad38c432fe809366c2325eb";
- };
- }
- {
- name = "yargs___yargs_16.2.0.tgz";
- path = fetchurl {
- name = "yargs___yargs_16.2.0.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz";
- sha1 = "1c82bf0f6b6a66eafce7ef30e376f49a12477f66";
- };
- }
- {
- name = "yargs___yargs_3.32.0.tgz";
- path = fetchurl {
- name = "yargs___yargs_3.32.0.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz";
- sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
- };
- }
- {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- path = fetchurl {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz";
- sha1 = "0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b";
- };
- }
- ];
-}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/pin.json b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/pin.json
new file mode 100644
index 0000000000..a85ce6f878
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/pin.json
@@ -0,0 +1,6 @@
+{
+ "version": "1.9.2",
+ "desktopSrcHash": "F1uyyBbs+U7tQzRtn+p923Z/BY8Nwxr/JTMYwsak8W8=",
+ "desktopYarnHash": "0iwbszhaxaxggymixljzjb2gqrsij67fwakxhd3yj9g1zds49ghh",
+ "webHash": "1d9kdj65yk86hx087x1p0qkm0cffaqkwgwzl74g11g264szz8ja2"
+}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/default.nix
index ae9dd96228..ff3b2ba913 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/default.nix
@@ -1,14 +1,17 @@
-{ lib, stdenv, rustPlatform, fetchFromGitHub, callPackage, sqlcipher, nodejs-14_x, python3, yarn, fixup_yarn_lock, CoreServices }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, callPackage, sqlcipher, nodejs-14_x, python3, yarn, fixup_yarn_lock, CoreServices, fetchYarnDeps }:
-rustPlatform.buildRustPackage rec {
+let
+ pinData = (builtins.fromJSON (builtins.readFile ./pin.json));
+
+in rustPlatform.buildRustPackage rec {
pname = "seshat-node";
- version = "2.3.0";
+ inherit (pinData) version;
src = fetchFromGitHub {
owner = "matrix-org";
repo = "seshat";
rev = version;
- sha256 = "0zigrz59mhih9asmbbh38z2fg0sii2342q6q0500qil2a0rssai7";
+ sha256 = pinData.srcHash;
};
sourceRoot = "source/seshat-node/native";
@@ -18,7 +21,10 @@ rustPlatform.buildRustPackage rec {
npm_config_nodedir = nodejs-14_x;
- yarnOfflineCache = (callPackage ./yarn.nix {}).offline_cache;
+ yarnOfflineCache = fetchYarnDeps {
+ yarnLock = src + "/seshat-node/yarn.lock";
+ sha256 = pinData.yarnHash;
+ };
buildPhase = ''
cd ..
@@ -42,5 +48,5 @@ rustPlatform.buildRustPackage rec {
cp -r . $out
'';
- cargoSha256 = "0habjf85mzqxwf8k15msm4cavd7ldq4zpxddkwd4inl2lkvlffqj";
+ cargoSha256 = pinData.cargoHash;
}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/pin.json b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/pin.json
new file mode 100644
index 0000000000..fdb5afe67a
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/pin.json
@@ -0,0 +1,6 @@
+{
+ "version": "2.3.0",
+ "srcHash": "JyqtM1CCRgxAAdhgQYaIUYPnxEcDrlW1SjDCmsrPL34=",
+ "yarnHash": "0bym6i1f0i3bs4fncbiwzwmbxp7j14rz1v4kyvsl02qs97qw1jac",
+ "cargoHash": "sha256-EjtH96SC2kgan631+wlu9LStGKm6ljCR4x3/WpCTS0E="
+}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/update.sh b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/update.sh
index b201501e1c..1315715ac0 100755
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/update.sh
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/update.sh
@@ -1,16 +1,49 @@
#!/usr/bin/env nix-shell
-#!nix-shell -I nixpkgs=../ -i bash -p wget yarn2nix
+#!nix-shell -I nixpkgs=../../../../../../ -i bash -p wget prefetch-yarn-deps yarn nix-prefetch
-set -euo pipefail
-
-if [ "$#" -ne 1 ] || [[ "$1" == -* ]]; then
- echo "Regenerates the Yarn dependency lock files."
- echo "Usage: $0 "
+if [ "$#" -gt 1 ] || [[ "$1" == -* ]]; then
+ echo "Regenerates packaging data for the seshat package."
+ echo "Usage: $0 [git release tag]"
exit 1
fi
-SRC="https://raw.githubusercontent.com/matrix-org/seshat/$1"
+version="$1"
+set -euo pipefail
+
+if [ -z "$version" ]; then
+ version="$(wget -O- "https://api.github.com/repos/matrix-org/seshat/tags" | jq -r '.[] | .name' | sort --version-sort | tail -1)"
+fi
+
+SRC="https://raw.githubusercontent.com/matrix-org/seshat/$version"
+
+tmpdir=$(mktemp -d)
+trap 'rm -rf "$tmpdir"' EXIT
+
+pushd $tmpdir
wget "$SRC/seshat-node/yarn.lock"
-yarn2nix > yarn.nix
-rm yarn.lock
+yarn_hash=$(prefetch-yarn-deps yarn.lock)
+popd
+
+src_hash=$(nix-prefetch-github matrix-org seshat --rev ${version} | jq -r .sha256)
+
+cat > pin.json << EOF
+{
+ "version": "$version",
+ "srcHash": "$src_hash",
+ "yarnHash": "$yarn_hash",
+ "cargoHash": "0000000000000000000000000000000000000000000000000000"
+}
+EOF
+
+cargo_hash=$(nix-prefetch "{ sha256 }: (import ../../../../../.. {}).element-desktop.seshat.cargoDeps")
+
+cat > pin.json << EOF
+{
+ "version": "$version",
+ "srcHash": "$src_hash",
+ "yarnHash": "$yarn_hash",
+ "cargoHash": "$cargo_hash"
+}
+EOF
+
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/yarn.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/yarn.nix
deleted file mode 100644
index b861502bf7..0000000000
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/seshat/yarn.nix
+++ /dev/null
@@ -1,4557 +0,0 @@
-{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec {
- offline_cache = linkFarm "offline" packages;
- packages = [
- {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz";
- sha1 = "23b08d740e83f49c5e59945fbf1b43e80bbf4edb";
- };
- }
- {
- name = "_babel_compat_data___compat_data_7.14.7.tgz";
- path = fetchurl {
- name = "_babel_compat_data___compat_data_7.14.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz";
- sha1 = "7b047d7a3a89a67d2258dc61f604f098f1bc7e08";
- };
- }
- {
- name = "_babel_core___core_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_core___core_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz";
- sha1 = "20cdf7c84b5d86d83fac8710a8bc605a7ba3f010";
- };
- }
- {
- name = "_babel_generator___generator_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_generator___generator_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.8.tgz";
- sha1 = "bf86fd6af96cf3b74395a8ca409515f89423e070";
- };
- }
- {
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz";
- sha1 = "7a99c5d0967911e972fe2c3411f7d5b498498ecf";
- };
- }
- {
- name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz";
- sha1 = "89e2c474972f15d8e233b52ee8c480e2cfcd50c4";
- };
- }
- {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz";
- sha1 = "25fbfa579b0937eee1f3b805ece4ce398c431815";
- };
- }
- {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz";
- sha1 = "e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d";
- };
- }
- {
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz";
- path = fetchurl {
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz";
- sha1 = "97e56244beb94211fe277bd818e3a329c66f7970";
- };
- }
- {
- name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz";
- sha1 = "6d1a44df6a38c957aa7c312da076429f11b422f3";
- };
- }
- {
- name = "_babel_helper_module_transforms___helper_module_transforms_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_helper_module_transforms___helper_module_transforms_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz";
- sha1 = "d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49";
- };
- }
- {
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz";
- sha1 = "f27395a8619e0665b3f0364cddb41c25d71b499c";
- };
- }
- {
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz";
- sha1 = "5ac822ce97eec46741ab70a517971e443a70c5a9";
- };
- }
- {
- name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz";
- sha1 = "0ecc0b03c41cd567b4024ea016134c28414abb94";
- };
- }
- {
- name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz";
- sha1 = "82e1fec0644a7e775c74d305f212c39f8fe73924";
- };
- }
- {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz";
- sha1 = "22b23a54ef51c2b7605d851930c1976dd0bc693a";
- };
- }
- {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz";
- sha1 = "32be33a756f29e278a0d644fa08a2c9e0f88a34c";
- };
- }
- {
- name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz";
- sha1 = "6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3";
- };
- }
- {
- name = "_babel_helpers___helpers_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_helpers___helpers_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz";
- sha1 = "839f88f463025886cff7f85a35297007e2da1b77";
- };
- }
- {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz";
- sha1 = "6861a52f03966405001f6aa534a01a24d99e8cd9";
- };
- }
- {
- name = "_babel_parser___parser_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_parser___parser_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.8.tgz";
- sha1 = "66fd41666b2d7b840bd5ace7f7416d5ac60208d4";
- };
- }
- {
- name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz";
- sha1 = "60e225edcbd98a640332a2e72dd3e66f1af55871";
- };
- }
- {
- name = "_babel_template___template_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_template___template_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz";
- sha1 = "a9bc9d8b33354ff6e55a9c60d1109200a68974f4";
- };
- }
- {
- name = "_babel_traverse___traverse_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_traverse___traverse_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.8.tgz";
- sha1 = "c0253f02677c5de1a8ff9df6b0aacbec7da1a8ce";
- };
- }
- {
- name = "_babel_types___types_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_types___types_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/types/-/types-7.14.8.tgz";
- sha1 = "38109de8fcadc06415fbd9b74df0065d4d41c728";
- };
- }
- {
- name = "_cnakazawa_watch___watch_1.0.4.tgz";
- path = fetchurl {
- name = "_cnakazawa_watch___watch_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz";
- sha1 = "f864ae85004d0fcab6f50be9141c4da368d1656a";
- };
- }
- {
- name = "_jest_console___console_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_console___console_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz";
- sha1 = "79b1bc06fb74a8cfb01cbdedf945584b1b9707f0";
- };
- }
- {
- name = "_jest_core___core_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_core___core_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz";
- sha1 = "2ceccd0b93181f9c4850e74f2a9ad43d351369c4";
- };
- }
- {
- name = "_jest_environment___environment_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_environment___environment_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz";
- sha1 = "21e3afa2d65c0586cbd6cbefe208bafade44ab18";
- };
- }
- {
- name = "_jest_fake_timers___fake_timers_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_fake_timers___fake_timers_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz";
- sha1 = "ba3e6bf0eecd09a636049896434d306636540c93";
- };
- }
- {
- name = "_jest_reporters___reporters_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_reporters___reporters_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz";
- sha1 = "86660eff8e2b9661d042a8e98a028b8d631a5b43";
- };
- }
- {
- name = "_jest_source_map___source_map_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_source_map___source_map_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz";
- sha1 = "0e263a94430be4b41da683ccc1e6bffe2a191714";
- };
- }
- {
- name = "_jest_test_result___test_result_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_test_result___test_result_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz";
- sha1 = "11796e8aa9dbf88ea025757b3152595ad06ba0ca";
- };
- }
- {
- name = "_jest_test_sequencer___test_sequencer_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_test_sequencer___test_sequencer_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz";
- sha1 = "f8f334f35b625a4f2f355f2fe7e6036dad2e6b31";
- };
- }
- {
- name = "_jest_transform___transform_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_transform___transform_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz";
- sha1 = "4ae2768b296553fadab09e9ec119543c90b16c56";
- };
- }
- {
- name = "_jest_types___types_24.9.0.tgz";
- path = fetchurl {
- name = "_jest_types___types_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz";
- sha1 = "63cb26cb7500d069e5a389441a7c6ab5e909fc59";
- };
- }
- {
- name = "_types_babel__core___babel__core_7.1.15.tgz";
- path = fetchurl {
- name = "_types_babel__core___babel__core_7.1.15.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz";
- sha1 = "2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024";
- };
- }
- {
- name = "_types_babel__generator___babel__generator_7.6.3.tgz";
- path = fetchurl {
- name = "_types_babel__generator___babel__generator_7.6.3.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz";
- sha1 = "f456b4b2ce79137f768aa130d2423d2f0ccfaba5";
- };
- }
- {
- name = "_types_babel__template___babel__template_7.4.1.tgz";
- path = fetchurl {
- name = "_types_babel__template___babel__template_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz";
- sha1 = "3d1a48fd9d6c0edfd56f2ff578daed48f36c8969";
- };
- }
- {
- name = "_types_babel__traverse___babel__traverse_7.14.2.tgz";
- path = fetchurl {
- name = "_types_babel__traverse___babel__traverse_7.14.2.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz";
- sha1 = "ffcd470bbb3f8bf30481678fb5502278ca833a43";
- };
- }
- {
- name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
- path = fetchurl {
- name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz";
- sha1 = "4ba8ddb720221f432e443bd5f9117fd22cfd4762";
- };
- }
- {
- name = "_types_istanbul_lib_report___istanbul_lib_report_3.0.0.tgz";
- path = fetchurl {
- name = "_types_istanbul_lib_report___istanbul_lib_report_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz";
- sha1 = "c14c24f18ea8190c118ee7562b7ff99a36552686";
- };
- }
- {
- name = "_types_istanbul_reports___istanbul_reports_1.1.2.tgz";
- path = fetchurl {
- name = "_types_istanbul_reports___istanbul_reports_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz";
- sha1 = "e875cc689e47bce549ec81f3df5e6f6f11cfaeb2";
- };
- }
- {
- name = "_types_stack_utils___stack_utils_1.0.1.tgz";
- path = fetchurl {
- name = "_types_stack_utils___stack_utils_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz";
- sha1 = "0a851d3bd96498fa25c33ab7278ed3bd65f06c3e";
- };
- }
- {
- name = "_types_yargs_parser___yargs_parser_20.2.1.tgz";
- path = fetchurl {
- name = "_types_yargs_parser___yargs_parser_20.2.1.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz";
- sha1 = "3b9ce2489919d9e4fea439b76916abc34b2df129";
- };
- }
- {
- name = "_types_yargs___yargs_13.0.12.tgz";
- path = fetchurl {
- name = "_types_yargs___yargs_13.0.12.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.12.tgz";
- sha1 = "d895a88c703b78af0465a9de88aa92c61430b092";
- };
- }
- {
- name = "abab___abab_2.0.5.tgz";
- path = fetchurl {
- name = "abab___abab_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz";
- sha1 = "c0b678fb32d60fc1219c784d6a826fe385aeb79a";
- };
- }
- {
- name = "acorn_globals___acorn_globals_4.3.4.tgz";
- path = fetchurl {
- name = "acorn_globals___acorn_globals_4.3.4.tgz";
- url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz";
- sha1 = "9fa1926addc11c97308c4e66d7add0d40c3272e7";
- };
- }
- {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- path = fetchurl {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz";
- sha1 = "7ed5bb55908b3b2f1bc55c6af1653bada7f07937";
- };
- }
- {
- name = "acorn_walk___acorn_walk_6.2.0.tgz";
- path = fetchurl {
- name = "acorn_walk___acorn_walk_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz";
- sha1 = "123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c";
- };
- }
- {
- name = "acorn___acorn_5.7.4.tgz";
- path = fetchurl {
- name = "acorn___acorn_5.7.4.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz";
- sha1 = "3e8d8a9947d0599a1796d10225d7432f4a4acf5e";
- };
- }
- {
- name = "acorn___acorn_6.4.2.tgz";
- path = fetchurl {
- name = "acorn___acorn_6.4.2.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz";
- sha1 = "35866fd710528e92de10cf06016498e47e39e1e6";
- };
- }
- {
- name = "acorn___acorn_7.4.1.tgz";
- path = fetchurl {
- name = "acorn___acorn_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz";
- sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa";
- };
- }
- {
- name = "ajv___ajv_6.12.6.tgz";
- path = fetchurl {
- name = "ajv___ajv_6.12.6.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz";
- sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4";
- };
- }
- {
- name = "ansi_escapes___ansi_escapes_3.2.0.tgz";
- path = fetchurl {
- name = "ansi_escapes___ansi_escapes_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz";
- sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b";
- };
- }
- {
- name = "ansi_escapes___ansi_escapes_4.3.2.tgz";
- path = fetchurl {
- name = "ansi_escapes___ansi_escapes_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz";
- sha1 = "6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e";
- };
- }
- {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- }
- {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz";
- sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997";
- };
- }
- {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
- sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
- };
- }
- {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d";
- };
- }
- {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz";
- sha1 = "edd803628ae71c04c85ae7a0906edad34b648937";
- };
- }
- {
- name = "anymatch___anymatch_2.0.0.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz";
- sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb";
- };
- }
- {
- name = "argparse___argparse_1.0.10.tgz";
- path = fetchurl {
- name = "argparse___argparse_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz";
- sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
- };
- }
- {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- path = fetchurl {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
- };
- }
- {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- path = fetchurl {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
- };
- }
- {
- name = "arr_union___arr_union_3.1.0.tgz";
- path = fetchurl {
- name = "arr_union___arr_union_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
- };
- }
- {
- name = "array_back___array_back_3.1.0.tgz";
- path = fetchurl {
- name = "array_back___array_back_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/array-back/-/array-back-3.1.0.tgz";
- sha1 = "b8859d7a508871c9a7b2cf42f99428f65e96bfb0";
- };
- }
- {
- name = "array_back___array_back_4.0.2.tgz";
- path = fetchurl {
- name = "array_back___array_back_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/array-back/-/array-back-4.0.2.tgz";
- sha1 = "8004e999a6274586beeb27342168652fdb89fa1e";
- };
- }
- {
- name = "array_equal___array_equal_1.0.0.tgz";
- path = fetchurl {
- name = "array_equal___array_equal_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz";
- sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93";
- };
- }
- {
- name = "array_unique___array_unique_0.3.2.tgz";
- path = fetchurl {
- name = "array_unique___array_unique_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
- };
- }
- {
- name = "asn1___asn1_0.2.4.tgz";
- path = fetchurl {
- name = "asn1___asn1_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz";
- sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136";
- };
- }
- {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- path = fetchurl {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- }
- {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- path = fetchurl {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
- };
- }
- {
- name = "astral_regex___astral_regex_1.0.0.tgz";
- path = fetchurl {
- name = "astral_regex___astral_regex_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz";
- sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9";
- };
- }
- {
- name = "async_limiter___async_limiter_1.0.1.tgz";
- path = fetchurl {
- name = "async_limiter___async_limiter_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz";
- sha1 = "dd379e94f0db8310b08291f9d64c3209766617fd";
- };
- }
- {
- name = "asynckit___asynckit_0.4.0.tgz";
- path = fetchurl {
- name = "asynckit___asynckit_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- }
- {
- name = "atob___atob_2.1.2.tgz";
- path = fetchurl {
- name = "atob___atob_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz";
- sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9";
- };
- }
- {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- path = fetchurl {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- }
- {
- name = "aws4___aws4_1.11.0.tgz";
- path = fetchurl {
- name = "aws4___aws4_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz";
- sha1 = "d61f46d83b2519250e2784daf5b09479a8b41c59";
- };
- }
- {
- name = "babel_jest___babel_jest_24.9.0.tgz";
- path = fetchurl {
- name = "babel_jest___babel_jest_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz";
- sha1 = "3fc327cb8467b89d14d7bc70e315104a783ccd54";
- };
- }
- {
- name = "babel_plugin_istanbul___babel_plugin_istanbul_5.2.0.tgz";
- path = fetchurl {
- name = "babel_plugin_istanbul___babel_plugin_istanbul_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz";
- sha1 = "df4ade83d897a92df069c4d9a25cf2671293c854";
- };
- }
- {
- name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.9.0.tgz";
- path = fetchurl {
- name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz";
- sha1 = "4f837091eb407e01447c8843cbec546d0002d756";
- };
- }
- {
- name = "babel_preset_jest___babel_preset_jest_24.9.0.tgz";
- path = fetchurl {
- name = "babel_preset_jest___babel_preset_jest_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz";
- sha1 = "192b521e2217fb1d1f67cf73f70c336650ad3cdc";
- };
- }
- {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- path = fetchurl {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz";
- sha1 = "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee";
- };
- }
- {
- name = "base___base_0.11.2.tgz";
- path = fetchurl {
- name = "base___base_0.11.2.tgz";
- url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz";
- sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f";
- };
- }
- {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- path = fetchurl {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- }
- {
- name = "bindings___bindings_1.5.0.tgz";
- path = fetchurl {
- name = "bindings___bindings_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz";
- sha1 = "10353c9e945334bc0511a6d90b38fbc7c9c504df";
- };
- }
- {
- name = "bluebird___bluebird_3.7.2.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.7.2.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz";
- sha1 = "9f229c15be272454ffa973ace0dbee79a1b0c36f";
- };
- }
- {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- path = fetchurl {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd";
- };
- }
- {
- name = "braces___braces_2.3.2.tgz";
- path = fetchurl {
- name = "braces___braces_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz";
- sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729";
- };
- }
- {
- name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz";
- path = fetchurl {
- name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz";
- sha1 = "3c9b4b7d782c8121e56f10106d84c0d0ffc94626";
- };
- }
- {
- name = "browser_resolve___browser_resolve_1.11.3.tgz";
- path = fetchurl {
- name = "browser_resolve___browser_resolve_1.11.3.tgz";
- url = "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz";
- sha1 = "9b7cbb3d0f510e4cb86bdbd796124d28b5890af6";
- };
- }
- {
- name = "browserslist___browserslist_4.16.6.tgz";
- path = fetchurl {
- name = "browserslist___browserslist_4.16.6.tgz";
- url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz";
- sha1 = "d7901277a5a88e554ed305b183ec9b0c08f66fa2";
- };
- }
- {
- name = "bser___bser_2.1.1.tgz";
- path = fetchurl {
- name = "bser___bser_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz";
- sha1 = "e6787da20ece9d07998533cfd9de6f5c38f4bc05";
- };
- }
- {
- name = "buffer_from___buffer_from_1.1.1.tgz";
- path = fetchurl {
- name = "buffer_from___buffer_from_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz";
- sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef";
- };
- }
- {
- name = "builtins___builtins_1.0.3.tgz";
- path = fetchurl {
- name = "builtins___builtins_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz";
- sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
- };
- }
- {
- name = "cache_base___cache_base_1.0.1.tgz";
- path = fetchurl {
- name = "cache_base___cache_base_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz";
- sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2";
- };
- }
- {
- name = "call_bind___call_bind_1.0.2.tgz";
- path = fetchurl {
- name = "call_bind___call_bind_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz";
- sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c";
- };
- }
- {
- name = "callsites___callsites_3.1.0.tgz";
- path = fetchurl {
- name = "callsites___callsites_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz";
- sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73";
- };
- }
- {
- name = "camelcase___camelcase_5.3.1.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_5.3.1.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz";
- sha1 = "e3c9b31569e106811df242f715725a1f4c494320";
- };
- }
- {
- name = "caniuse_lite___caniuse_lite_1.0.30001246.tgz";
- path = fetchurl {
- name = "caniuse_lite___caniuse_lite_1.0.30001246.tgz";
- url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz";
- sha1 = "fe17d9919f87124d6bb416ef7b325356d69dc76c";
- };
- }
- {
- name = "capture_exit___capture_exit_2.0.0.tgz";
- path = fetchurl {
- name = "capture_exit___capture_exit_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz";
- sha1 = "fb953bfaebeb781f62898239dabb426d08a509a4";
- };
- }
- {
- name = "caseless___caseless_0.12.0.tgz";
- path = fetchurl {
- name = "caseless___caseless_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- }
- {
- name = "catharsis___catharsis_0.9.0.tgz";
- path = fetchurl {
- name = "catharsis___catharsis_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/catharsis/-/catharsis-0.9.0.tgz";
- sha1 = "40382a168be0e6da308c277d3a2b3eb40c7d2121";
- };
- }
- {
- name = "chalk___chalk_2.4.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz";
- sha1 = "cd42541677a54333cf541a49108c1432b44c9424";
- };
- }
- {
- name = "chalk___chalk_4.1.1.tgz";
- path = fetchurl {
- name = "chalk___chalk_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz";
- sha1 = "c80b3fab28bf6371e6863325eee67e618b77e6ad";
- };
- }
- {
- name = "chardet___chardet_0.7.0.tgz";
- path = fetchurl {
- name = "chardet___chardet_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz";
- sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e";
- };
- }
- {
- name = "ci_info___ci_info_2.0.0.tgz";
- path = fetchurl {
- name = "ci_info___ci_info_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz";
- sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46";
- };
- }
- {
- name = "class_utils___class_utils_0.3.6.tgz";
- path = fetchurl {
- name = "class_utils___class_utils_0.3.6.tgz";
- url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz";
- sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463";
- };
- }
- {
- name = "cli_cursor___cli_cursor_3.1.0.tgz";
- path = fetchurl {
- name = "cli_cursor___cli_cursor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz";
- sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307";
- };
- }
- {
- name = "cli_width___cli_width_3.0.0.tgz";
- path = fetchurl {
- name = "cli_width___cli_width_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz";
- sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6";
- };
- }
- {
- name = "cliui___cliui_5.0.0.tgz";
- path = fetchurl {
- name = "cliui___cliui_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz";
- sha1 = "deefcfdb2e800784aa34f46fa08e06851c7bbbc5";
- };
- }
- {
- name = "co___co_4.6.0.tgz";
- path = fetchurl {
- name = "co___co_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- }
- {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- path = fetchurl {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
- };
- }
- {
- name = "color_convert___color_convert_1.9.3.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_1.9.3.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz";
- sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8";
- };
- }
- {
- name = "color_convert___color_convert_2.0.1.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz";
- sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3";
- };
- }
- {
- name = "color_name___color_name_1.1.3.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- }
- {
- name = "color_name___color_name_1.1.4.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz";
- sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2";
- };
- }
- {
- name = "colorette___colorette_1.2.2.tgz";
- path = fetchurl {
- name = "colorette___colorette_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz";
- sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94";
- };
- }
- {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- path = fetchurl {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz";
- sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f";
- };
- }
- {
- name = "command_line_args___command_line_args_5.1.3.tgz";
- path = fetchurl {
- name = "command_line_args___command_line_args_5.1.3.tgz";
- url = "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.1.3.tgz";
- sha1 = "1e57d2816f28804073bb5e75cd24e02e2aa321e7";
- };
- }
- {
- name = "command_line_commands___command_line_commands_3.0.2.tgz";
- path = fetchurl {
- name = "command_line_commands___command_line_commands_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/command-line-commands/-/command-line-commands-3.0.2.tgz";
- sha1 = "53872a1181db837f21906b1228e260a4eeb42ee4";
- };
- }
- {
- name = "command_line_usage___command_line_usage_6.1.1.tgz";
- path = fetchurl {
- name = "command_line_usage___command_line_usage_6.1.1.tgz";
- url = "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-6.1.1.tgz";
- sha1 = "c908e28686108917758a49f45efb4f02f76bc03f";
- };
- }
- {
- name = "component_emitter___component_emitter_1.3.0.tgz";
- path = fetchurl {
- name = "component_emitter___component_emitter_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz";
- sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0";
- };
- }
- {
- name = "concat_map___concat_map_0.0.1.tgz";
- path = fetchurl {
- name = "concat_map___concat_map_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- }
- {
- name = "convert_source_map___convert_source_map_1.8.0.tgz";
- path = fetchurl {
- name = "convert_source_map___convert_source_map_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz";
- sha1 = "f3373c32d21b4d780dd8004514684fb791ca4369";
- };
- }
- {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- path = fetchurl {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- }
- {
- name = "cross_spawn___cross_spawn_6.0.5.tgz";
- path = fetchurl {
- name = "cross_spawn___cross_spawn_6.0.5.tgz";
- url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz";
- sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4";
- };
- }
- {
- name = "cssom___cssom_0.3.8.tgz";
- path = fetchurl {
- name = "cssom___cssom_0.3.8.tgz";
- url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz";
- sha1 = "9f1276f5b2b463f2114d3f2c75250af8c1a36f4a";
- };
- }
- {
- name = "cssstyle___cssstyle_1.4.0.tgz";
- path = fetchurl {
- name = "cssstyle___cssstyle_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz";
- sha1 = "9d31328229d3c565c61e586b02041a28fccdccf1";
- };
- }
- {
- name = "dashdash___dashdash_1.14.1.tgz";
- path = fetchurl {
- name = "dashdash___dashdash_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- }
- {
- name = "data_urls___data_urls_1.1.0.tgz";
- path = fetchurl {
- name = "data_urls___data_urls_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz";
- sha1 = "15ee0582baa5e22bb59c77140da8f9c76963bbfe";
- };
- }
- {
- name = "debug___debug_2.6.9.tgz";
- path = fetchurl {
- name = "debug___debug_2.6.9.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz";
- sha1 = "5d128515df134ff327e90a4c93f4e077a536341f";
- };
- }
- {
- name = "debug___debug_4.3.2.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz";
- sha1 = "f0a49c18ac8779e31d4a0c6029dfb76873c7428b";
- };
- }
- {
- name = "decamelize___decamelize_1.2.0.tgz";
- path = fetchurl {
- name = "decamelize___decamelize_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
- };
- }
- {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- path = fetchurl {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
- };
- }
- {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- path = fetchurl {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz";
- sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac";
- };
- }
- {
- name = "deep_is___deep_is_0.1.3.tgz";
- path = fetchurl {
- name = "deep_is___deep_is_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz";
- sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
- };
- }
- {
- name = "define_properties___define_properties_1.1.3.tgz";
- path = fetchurl {
- name = "define_properties___define_properties_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz";
- sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1";
- };
- }
- {
- name = "define_property___define_property_0.2.5.tgz";
- path = fetchurl {
- name = "define_property___define_property_0.2.5.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
- };
- }
- {
- name = "define_property___define_property_1.0.0.tgz";
- path = fetchurl {
- name = "define_property___define_property_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
- };
- }
- {
- name = "define_property___define_property_2.0.2.tgz";
- path = fetchurl {
- name = "define_property___define_property_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz";
- sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d";
- };
- }
- {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- path = fetchurl {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- }
- {
- name = "detect_newline___detect_newline_2.1.0.tgz";
- path = fetchurl {
- name = "detect_newline___detect_newline_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz";
- sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2";
- };
- }
- {
- name = "diff_sequences___diff_sequences_24.9.0.tgz";
- path = fetchurl {
- name = "diff_sequences___diff_sequences_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz";
- sha1 = "5715d6244e2aa65f48bba0bc972db0b0b11e95b5";
- };
- }
- {
- name = "doctrine___doctrine_3.0.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz";
- sha1 = "addebead72a6574db783639dc87a121773973961";
- };
- }
- {
- name = "domexception___domexception_1.0.1.tgz";
- path = fetchurl {
- name = "domexception___domexception_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz";
- sha1 = "937442644ca6a31261ef36e3ec677fe805582c90";
- };
- }
- {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- path = fetchurl {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
- };
- }
- {
- name = "electron_to_chromium___electron_to_chromium_1.3.782.tgz";
- path = fetchurl {
- name = "electron_to_chromium___electron_to_chromium_1.3.782.tgz";
- url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.782.tgz";
- sha1 = "522740fe6b4b5255ca754c68d9c406a17b0998e2";
- };
- }
- {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz";
- sha1 = "933a04052860c85e83c122479c4748a8e4c72156";
- };
- }
- {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz";
- sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37";
- };
- }
- {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- path = fetchurl {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz";
- sha1 = "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0";
- };
- }
- {
- name = "entities___entities_2.0.3.tgz";
- path = fetchurl {
- name = "entities___entities_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz";
- sha1 = "5c487e5742ab93c15abb5da22759b8590ec03b7f";
- };
- }
- {
- name = "error_ex___error_ex_1.3.2.tgz";
- path = fetchurl {
- name = "error_ex___error_ex_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz";
- sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf";
- };
- }
- {
- name = "es_abstract___es_abstract_1.18.3.tgz";
- path = fetchurl {
- name = "es_abstract___es_abstract_1.18.3.tgz";
- url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz";
- sha1 = "25c4c3380a27aa203c44b2b685bba94da31b63e0";
- };
- }
- {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- path = fetchurl {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz";
- sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a";
- };
- }
- {
- name = "escalade___escalade_3.1.1.tgz";
- path = fetchurl {
- name = "escalade___escalade_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz";
- sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz";
- sha1 = "a30304e99daa32e23b2fd20f51babd07cffca344";
- };
- }
- {
- name = "escodegen___escodegen_1.14.3.tgz";
- path = fetchurl {
- name = "escodegen___escodegen_1.14.3.tgz";
- url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz";
- sha1 = "4e7b81fba61581dc97582ed78cab7f0e8d63f503";
- };
- }
- {
- name = "eslint_config_google___eslint_config_google_0.13.0.tgz";
- path = fetchurl {
- name = "eslint_config_google___eslint_config_google_0.13.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.13.0.tgz";
- sha1 = "e277d16d2cb25c1ffd3fd13fb0035ad7421382fe";
- };
- }
- {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz";
- sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c";
- };
- }
- {
- name = "eslint_utils___eslint_utils_1.4.3.tgz";
- path = fetchurl {
- name = "eslint_utils___eslint_utils_1.4.3.tgz";
- url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz";
- sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz";
- sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e";
- };
- }
- {
- name = "eslint___eslint_6.8.0.tgz";
- path = fetchurl {
- name = "eslint___eslint_6.8.0.tgz";
- url = "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz";
- sha1 = "62262d6729739f9275723824302fb227c8c93ffb";
- };
- }
- {
- name = "espree___espree_6.2.1.tgz";
- path = fetchurl {
- name = "espree___espree_6.2.1.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz";
- sha1 = "77fc72e1fd744a2052c20f38a5b575832e82734a";
- };
- }
- {
- name = "esprima___esprima_4.0.1.tgz";
- path = fetchurl {
- name = "esprima___esprima_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz";
- sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71";
- };
- }
- {
- name = "esquery___esquery_1.4.0.tgz";
- path = fetchurl {
- name = "esquery___esquery_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
- sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
- };
- }
- {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- path = fetchurl {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz";
- sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921";
- };
- }
- {
- name = "estraverse___estraverse_4.3.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz";
- sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d";
- };
- }
- {
- name = "estraverse___estraverse_5.2.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz";
- sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880";
- };
- }
- {
- name = "esutils___esutils_2.0.3.tgz";
- path = fetchurl {
- name = "esutils___esutils_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz";
- sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64";
- };
- }
- {
- name = "exec_sh___exec_sh_0.3.6.tgz";
- path = fetchurl {
- name = "exec_sh___exec_sh_0.3.6.tgz";
- url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz";
- sha1 = "ff264f9e325519a60cb5e273692943483cca63bc";
- };
- }
- {
- name = "execa___execa_1.0.0.tgz";
- path = fetchurl {
- name = "execa___execa_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz";
- sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8";
- };
- }
- {
- name = "exit___exit_0.1.2.tgz";
- path = fetchurl {
- name = "exit___exit_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz";
- sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
- };
- }
- {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- path = fetchurl {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
- };
- }
- {
- name = "expect___expect_24.9.0.tgz";
- path = fetchurl {
- name = "expect___expect_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz";
- sha1 = "b75165b4817074fa4a157794f46fe9f1ba15b6ca";
- };
- }
- {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
- };
- }
- {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
- };
- }
- {
- name = "extend___extend_3.0.2.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz";
- sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa";
- };
- }
- {
- name = "external_editor___external_editor_3.1.0.tgz";
- path = fetchurl {
- name = "external_editor___external_editor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz";
- sha1 = "cb03f740befae03ea4d283caed2741a83f335495";
- };
- }
- {
- name = "extglob___extglob_2.0.4.tgz";
- path = fetchurl {
- name = "extglob___extglob_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz";
- sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543";
- };
- }
- {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- }
- {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz";
- sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f";
- };
- }
- {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- path = fetchurl {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
- sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525";
- };
- }
- {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- path = fetchurl {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
- sha1 = "874bf69c6f404c2b5d99c481341399fd55892633";
- };
- }
- {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- path = fetchurl {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
- };
- }
- {
- name = "fb_watchman___fb_watchman_2.0.1.tgz";
- path = fetchurl {
- name = "fb_watchman___fb_watchman_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz";
- sha1 = "fc84fb39d2709cf3ff6d743706157bb5708a8a85";
- };
- }
- {
- name = "figures___figures_3.2.0.tgz";
- path = fetchurl {
- name = "figures___figures_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz";
- sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af";
- };
- }
- {
- name = "file_entry_cache___file_entry_cache_5.0.1.tgz";
- path = fetchurl {
- name = "file_entry_cache___file_entry_cache_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz";
- sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c";
- };
- }
- {
- name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz";
- path = fetchurl {
- name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz";
- sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd";
- };
- }
- {
- name = "fill_range___fill_range_4.0.0.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
- };
- }
- {
- name = "find_replace___find_replace_3.0.0.tgz";
- path = fetchurl {
- name = "find_replace___find_replace_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-replace/-/find-replace-3.0.0.tgz";
- sha1 = "3e7e23d3b05167a76f770c9fbd5258b0def68c38";
- };
- }
- {
- name = "find_up___find_up_3.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz";
- sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73";
- };
- }
- {
- name = "flat_cache___flat_cache_2.0.1.tgz";
- path = fetchurl {
- name = "flat_cache___flat_cache_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz";
- sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0";
- };
- }
- {
- name = "flatted___flatted_2.0.2.tgz";
- path = fetchurl {
- name = "flatted___flatted_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz";
- sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138";
- };
- }
- {
- name = "for_each___for_each_0.3.3.tgz";
- path = fetchurl {
- name = "for_each___for_each_0.3.3.tgz";
- url = "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz";
- sha1 = "69b447e88a0a5d32c3e7084f3f1710034b21376e";
- };
- }
- {
- name = "for_in___for_in_1.0.2.tgz";
- path = fetchurl {
- name = "for_in___for_in_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
- };
- }
- {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- path = fetchurl {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- }
- {
- name = "form_data___form_data_2.3.3.tgz";
- path = fetchurl {
- name = "form_data___form_data_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz";
- sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6";
- };
- }
- {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- path = fetchurl {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
- };
- }
- {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- path = fetchurl {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- }
- {
- name = "fsevents___fsevents_1.2.13.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_1.2.13.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz";
- sha1 = "f325cb0455592428bcf11b383370ef70e3bfcc38";
- };
- }
- {
- name = "function_bind___function_bind_1.1.1.tgz";
- path = fetchurl {
- name = "function_bind___function_bind_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz";
- sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d";
- };
- }
- {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- path = fetchurl {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
- };
- }
- {
- name = "gensync___gensync_1.0.0_beta.2.tgz";
- path = fetchurl {
- name = "gensync___gensync_1.0.0_beta.2.tgz";
- url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz";
- sha1 = "32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0";
- };
- }
- {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz";
- sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
- };
- }
- {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- path = fetchurl {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
- sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6";
- };
- }
- {
- name = "get_stream___get_stream_4.1.0.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz";
- sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5";
- };
- }
- {
- name = "get_value___get_value_2.0.6.tgz";
- path = fetchurl {
- name = "get_value___get_value_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
- };
- }
- {
- name = "getpass___getpass_0.1.7.tgz";
- path = fetchurl {
- name = "getpass___getpass_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- }
- {
- name = "git_config___git_config_0.0.7.tgz";
- path = fetchurl {
- name = "git_config___git_config_0.0.7.tgz";
- url = "https://registry.yarnpkg.com/git-config/-/git-config-0.0.7.tgz";
- sha1 = "a9c8a3ef07a776c3d72261356d8b727b62202b28";
- };
- }
- {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
- sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
- };
- }
- {
- name = "glob___glob_7.1.7.tgz";
- path = fetchurl {
- name = "glob___glob_7.1.7.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz";
- sha1 = "3b193e9233f01d42d0b3f78294bbeeb418f94a90";
- };
- }
- {
- name = "globals___globals_11.12.0.tgz";
- path = fetchurl {
- name = "globals___globals_11.12.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz";
- sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e";
- };
- }
- {
- name = "globals___globals_12.4.0.tgz";
- path = fetchurl {
- name = "globals___globals_12.4.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz";
- sha1 = "a18813576a41b00a24a97e7f815918c2e19925f8";
- };
- }
- {
- name = "graceful_fs___graceful_fs_4.2.6.tgz";
- path = fetchurl {
- name = "graceful_fs___graceful_fs_4.2.6.tgz";
- url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz";
- sha1 = "ff040b2b0853b23c3d31027523706f1885d76bee";
- };
- }
- {
- name = "growly___growly_1.3.0.tgz";
- path = fetchurl {
- name = "growly___growly_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz";
- sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
- };
- }
- {
- name = "handlebars___handlebars_4.7.7.tgz";
- path = fetchurl {
- name = "handlebars___handlebars_4.7.7.tgz";
- url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz";
- sha1 = "9ce33416aad02dbd6c8fafa8240d5d98004945a1";
- };
- }
- {
- name = "har_schema___har_schema_2.0.0.tgz";
- path = fetchurl {
- name = "har_schema___har_schema_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- }
- {
- name = "har_validator___har_validator_5.1.5.tgz";
- path = fetchurl {
- name = "har_validator___har_validator_5.1.5.tgz";
- url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz";
- sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd";
- };
- }
- {
- name = "has_bigints___has_bigints_1.0.1.tgz";
- path = fetchurl {
- name = "has_bigints___has_bigints_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz";
- sha1 = "64fe6acb020673e3b78db035a5af69aa9d07b113";
- };
- }
- {
- name = "has_flag___has_flag_3.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
- };
- }
- {
- name = "has_flag___has_flag_4.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz";
- sha1 = "944771fd9c81c81265c4d6941860da06bb59479b";
- };
- }
- {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- path = fetchurl {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz";
- sha1 = "165d3070c00309752a1236a479331e3ac56f1423";
- };
- }
- {
- name = "has_value___has_value_0.3.1.tgz";
- path = fetchurl {
- name = "has_value___has_value_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
- };
- }
- {
- name = "has_value___has_value_1.0.0.tgz";
- path = fetchurl {
- name = "has_value___has_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
- };
- }
- {
- name = "has_values___has_values_0.1.4.tgz";
- path = fetchurl {
- name = "has_values___has_values_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
- };
- }
- {
- name = "has_values___has_values_1.0.0.tgz";
- path = fetchurl {
- name = "has_values___has_values_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
- };
- }
- {
- name = "has___has_1.0.3.tgz";
- path = fetchurl {
- name = "has___has_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz";
- sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796";
- };
- }
- {
- name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
- path = fetchurl {
- name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
- sha1 = "dffc0bf9a21c02209090f2aa69429e1414daf3f9";
- };
- }
- {
- name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz";
- path = fetchurl {
- name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz";
- sha1 = "e70d84b94da53aa375e11fe3a351be6642ca46f8";
- };
- }
- {
- name = "html_escaper___html_escaper_2.0.2.tgz";
- path = fetchurl {
- name = "html_escaper___html_escaper_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz";
- sha1 = "dfd60027da36a36dfcbe236262c00a5822681453";
- };
- }
- {
- name = "http_signature___http_signature_1.2.0.tgz";
- path = fetchurl {
- name = "http_signature___http_signature_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz";
- sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b";
- };
- }
- {
- name = "ignore___ignore_4.0.6.tgz";
- path = fetchurl {
- name = "ignore___ignore_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz";
- sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc";
- };
- }
- {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- path = fetchurl {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz";
- sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b";
- };
- }
- {
- name = "import_local___import_local_2.0.0.tgz";
- path = fetchurl {
- name = "import_local___import_local_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz";
- sha1 = "55070be38a5993cf18ef6db7e961f5bee5c5a09d";
- };
- }
- {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- path = fetchurl {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
- };
- }
- {
- name = "inflight___inflight_1.0.6.tgz";
- path = fetchurl {
- name = "inflight___inflight_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- }
- {
- name = "inherits___inherits_2.0.4.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz";
- sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c";
- };
- }
- {
- name = "iniparser___iniparser_1.0.5.tgz";
- path = fetchurl {
- name = "iniparser___iniparser_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/iniparser/-/iniparser-1.0.5.tgz";
- sha1 = "836d6befe6dfbfcee0bccf1cf9f2acc7027f783d";
- };
- }
- {
- name = "inquirer___inquirer_7.3.3.tgz";
- path = fetchurl {
- name = "inquirer___inquirer_7.3.3.tgz";
- url = "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz";
- sha1 = "04d176b2af04afc157a83fd7c100e98ee0aad003";
- };
- }
- {
- name = "invariant___invariant_2.2.4.tgz";
- path = fetchurl {
- name = "invariant___invariant_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz";
- sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
- sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656";
- };
- }
- {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- path = fetchurl {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- }
- {
- name = "is_bigint___is_bigint_1.0.2.tgz";
- path = fetchurl {
- name = "is_bigint___is_bigint_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz";
- sha1 = "ffb381442503235ad245ea89e45b3dbff040ee5a";
- };
- }
- {
- name = "is_boolean_object___is_boolean_object_1.1.1.tgz";
- path = fetchurl {
- name = "is_boolean_object___is_boolean_object_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz";
- sha1 = "3c0878f035cb821228d350d2e1e36719716a3de8";
- };
- }
- {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- path = fetchurl {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz";
- sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be";
- };
- }
- {
- name = "is_callable___is_callable_1.2.3.tgz";
- path = fetchurl {
- name = "is_callable___is_callable_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz";
- sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e";
- };
- }
- {
- name = "is_ci___is_ci_2.0.0.tgz";
- path = fetchurl {
- name = "is_ci___is_ci_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz";
- sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c";
- };
- }
- {
- name = "is_core_module___is_core_module_2.5.0.tgz";
- path = fetchurl {
- name = "is_core_module___is_core_module_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz";
- sha1 = "f754843617c70bfd29b7bd87327400cda5c18491";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
- sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7";
- };
- }
- {
- name = "is_date_object___is_date_object_1.0.4.tgz";
- path = fetchurl {
- name = "is_date_object___is_date_object_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz";
- sha1 = "550cfcc03afada05eea3dd30981c7b09551f73e5";
- };
- }
- {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca";
- };
- }
- {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz";
- sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec";
- };
- }
- {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
- };
- }
- {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz";
- sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4";
- };
- }
- {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz";
- sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d";
- };
- }
- {
- name = "is_generator_fn___is_generator_fn_2.1.0.tgz";
- path = fetchurl {
- name = "is_generator_fn___is_generator_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz";
- sha1 = "7d140adc389aaf3011a8f2a2a4cfa6faadffb118";
- };
- }
- {
- name = "is_glob___is_glob_4.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz";
- sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc";
- };
- }
- {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- path = fetchurl {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
- sha1 = "3de746c18dda2319241a53675908d8f766f11c24";
- };
- }
- {
- name = "is_number_object___is_number_object_1.0.5.tgz";
- path = fetchurl {
- name = "is_number_object___is_number_object_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz";
- sha1 = "6edfaeed7950cff19afedce9fbfca9ee6dd289eb";
- };
- }
- {
- name = "is_number___is_number_3.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
- };
- }
- {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- path = fetchurl {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677";
- };
- }
- {
- name = "is_regex___is_regex_1.1.3.tgz";
- path = fetchurl {
- name = "is_regex___is_regex_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz";
- sha1 = "d029f9aff6448b93ebbe3f33dac71511fdcbef9f";
- };
- }
- {
- name = "is_stream___is_stream_1.1.0.tgz";
- path = fetchurl {
- name = "is_stream___is_stream_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz";
- sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
- };
- }
- {
- name = "is_string___is_string_1.0.6.tgz";
- path = fetchurl {
- name = "is_string___is_string_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz";
- sha1 = "3fe5d5992fb0d93404f32584d4b0179a71b54a5f";
- };
- }
- {
- name = "is_symbol___is_symbol_1.0.4.tgz";
- path = fetchurl {
- name = "is_symbol___is_symbol_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz";
- sha1 = "a6dac93b635b063ca6872236de88910a57af139c";
- };
- }
- {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- path = fetchurl {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- }
- {
- name = "is_windows___is_windows_1.0.2.tgz";
- path = fetchurl {
- name = "is_windows___is_windows_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz";
- sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d";
- };
- }
- {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- path = fetchurl {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz";
- sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d";
- };
- }
- {
- name = "isarray___isarray_1.0.0.tgz";
- path = fetchurl {
- name = "isarray___isarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- }
- {
- name = "isexe___isexe_2.0.0.tgz";
- path = fetchurl {
- name = "isexe___isexe_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- }
- {
- name = "isobject___isobject_2.1.0.tgz";
- path = fetchurl {
- name = "isobject___isobject_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
- };
- }
- {
- name = "isobject___isobject_3.0.1.tgz";
- path = fetchurl {
- name = "isobject___isobject_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
- };
- }
- {
- name = "isstream___isstream_0.1.2.tgz";
- path = fetchurl {
- name = "isstream___isstream_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- }
- {
- name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.5.tgz";
- path = fetchurl {
- name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz";
- sha1 = "675f0ab69503fad4b1d849f736baaca803344f49";
- };
- }
- {
- name = "istanbul_lib_instrument___istanbul_lib_instrument_3.3.0.tgz";
- path = fetchurl {
- name = "istanbul_lib_instrument___istanbul_lib_instrument_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz";
- sha1 = "a5f63d91f0bbc0c3e479ef4c5de027335ec6d630";
- };
- }
- {
- name = "istanbul_lib_report___istanbul_lib_report_2.0.8.tgz";
- path = fetchurl {
- name = "istanbul_lib_report___istanbul_lib_report_2.0.8.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz";
- sha1 = "5a8113cd746d43c4889eba36ab10e7d50c9b4f33";
- };
- }
- {
- name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.6.tgz";
- path = fetchurl {
- name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz";
- sha1 = "284997c48211752ec486253da97e3879defba8c8";
- };
- }
- {
- name = "istanbul_reports___istanbul_reports_2.2.7.tgz";
- path = fetchurl {
- name = "istanbul_reports___istanbul_reports_2.2.7.tgz";
- url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz";
- sha1 = "5d939f6237d7b48393cc0959eab40cd4fd056931";
- };
- }
- {
- name = "jest_changed_files___jest_changed_files_24.9.0.tgz";
- path = fetchurl {
- name = "jest_changed_files___jest_changed_files_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz";
- sha1 = "08d8c15eb79a7fa3fc98269bc14b451ee82f8039";
- };
- }
- {
- name = "jest_cli___jest_cli_24.9.0.tgz";
- path = fetchurl {
- name = "jest_cli___jest_cli_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz";
- sha1 = "ad2de62d07472d419c6abc301fc432b98b10d2af";
- };
- }
- {
- name = "jest_config___jest_config_24.9.0.tgz";
- path = fetchurl {
- name = "jest_config___jest_config_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz";
- sha1 = "fb1bbc60c73a46af03590719efa4825e6e4dd1b5";
- };
- }
- {
- name = "jest_diff___jest_diff_24.9.0.tgz";
- path = fetchurl {
- name = "jest_diff___jest_diff_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz";
- sha1 = "931b7d0d5778a1baf7452cb816e325e3724055da";
- };
- }
- {
- name = "jest_docblock___jest_docblock_24.9.0.tgz";
- path = fetchurl {
- name = "jest_docblock___jest_docblock_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz";
- sha1 = "7970201802ba560e1c4092cc25cbedf5af5a8ce2";
- };
- }
- {
- name = "jest_each___jest_each_24.9.0.tgz";
- path = fetchurl {
- name = "jest_each___jest_each_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz";
- sha1 = "eb2da602e2a610898dbc5f1f6df3ba86b55f8b05";
- };
- }
- {
- name = "jest_environment_jsdom___jest_environment_jsdom_24.9.0.tgz";
- path = fetchurl {
- name = "jest_environment_jsdom___jest_environment_jsdom_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz";
- sha1 = "4b0806c7fc94f95edb369a69cc2778eec2b7375b";
- };
- }
- {
- name = "jest_environment_node___jest_environment_node_24.9.0.tgz";
- path = fetchurl {
- name = "jest_environment_node___jest_environment_node_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz";
- sha1 = "333d2d2796f9687f2aeebf0742b519f33c1cbfd3";
- };
- }
- {
- name = "jest_get_type___jest_get_type_24.9.0.tgz";
- path = fetchurl {
- name = "jest_get_type___jest_get_type_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz";
- sha1 = "1684a0c8a50f2e4901b6644ae861f579eed2ef0e";
- };
- }
- {
- name = "jest_haste_map___jest_haste_map_24.9.0.tgz";
- path = fetchurl {
- name = "jest_haste_map___jest_haste_map_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz";
- sha1 = "b38a5d64274934e21fa417ae9a9fbeb77ceaac7d";
- };
- }
- {
- name = "jest_jasmine2___jest_jasmine2_24.9.0.tgz";
- path = fetchurl {
- name = "jest_jasmine2___jest_jasmine2_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz";
- sha1 = "1f7b1bd3242c1774e62acabb3646d96afc3be6a0";
- };
- }
- {
- name = "jest_leak_detector___jest_leak_detector_24.9.0.tgz";
- path = fetchurl {
- name = "jest_leak_detector___jest_leak_detector_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz";
- sha1 = "b665dea7c77100c5c4f7dfcb153b65cf07dcf96a";
- };
- }
- {
- name = "jest_matcher_utils___jest_matcher_utils_24.9.0.tgz";
- path = fetchurl {
- name = "jest_matcher_utils___jest_matcher_utils_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz";
- sha1 = "f5b3661d5e628dffe6dd65251dfdae0e87c3a073";
- };
- }
- {
- name = "jest_message_util___jest_message_util_24.9.0.tgz";
- path = fetchurl {
- name = "jest_message_util___jest_message_util_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz";
- sha1 = "527f54a1e380f5e202a8d1149b0ec872f43119e3";
- };
- }
- {
- name = "jest_mock___jest_mock_24.9.0.tgz";
- path = fetchurl {
- name = "jest_mock___jest_mock_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz";
- sha1 = "c22835541ee379b908673ad51087a2185c13f1c6";
- };
- }
- {
- name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz";
- path = fetchurl {
- name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz";
- sha1 = "b704ac0ae028a89108a4d040b3f919dfddc8e33c";
- };
- }
- {
- name = "jest_regex_util___jest_regex_util_24.9.0.tgz";
- path = fetchurl {
- name = "jest_regex_util___jest_regex_util_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz";
- sha1 = "c13fb3380bde22bf6575432c493ea8fe37965636";
- };
- }
- {
- name = "jest_resolve_dependencies___jest_resolve_dependencies_24.9.0.tgz";
- path = fetchurl {
- name = "jest_resolve_dependencies___jest_resolve_dependencies_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz";
- sha1 = "ad055198959c4cfba8a4f066c673a3f0786507ab";
- };
- }
- {
- name = "jest_resolve___jest_resolve_24.9.0.tgz";
- path = fetchurl {
- name = "jest_resolve___jest_resolve_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz";
- sha1 = "dff04c7687af34c4dd7e524892d9cf77e5d17321";
- };
- }
- {
- name = "jest_runner___jest_runner_24.9.0.tgz";
- path = fetchurl {
- name = "jest_runner___jest_runner_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz";
- sha1 = "574fafdbd54455c2b34b4bdf4365a23857fcdf42";
- };
- }
- {
- name = "jest_runtime___jest_runtime_24.9.0.tgz";
- path = fetchurl {
- name = "jest_runtime___jest_runtime_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz";
- sha1 = "9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac";
- };
- }
- {
- name = "jest_serializer___jest_serializer_24.9.0.tgz";
- path = fetchurl {
- name = "jest_serializer___jest_serializer_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz";
- sha1 = "e6d7d7ef96d31e8b9079a714754c5d5c58288e73";
- };
- }
- {
- name = "jest_snapshot___jest_snapshot_24.9.0.tgz";
- path = fetchurl {
- name = "jest_snapshot___jest_snapshot_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz";
- sha1 = "ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba";
- };
- }
- {
- name = "jest_util___jest_util_24.9.0.tgz";
- path = fetchurl {
- name = "jest_util___jest_util_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz";
- sha1 = "7396814e48536d2e85a37de3e4c431d7cb140162";
- };
- }
- {
- name = "jest_validate___jest_validate_24.9.0.tgz";
- path = fetchurl {
- name = "jest_validate___jest_validate_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz";
- sha1 = "0775c55360d173cd854e40180756d4ff52def8ab";
- };
- }
- {
- name = "jest_watcher___jest_watcher_24.9.0.tgz";
- path = fetchurl {
- name = "jest_watcher___jest_watcher_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz";
- sha1 = "4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b";
- };
- }
- {
- name = "jest_worker___jest_worker_24.9.0.tgz";
- path = fetchurl {
- name = "jest_worker___jest_worker_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz";
- sha1 = "5dbfdb5b2d322e98567898238a9697bcce67b3e5";
- };
- }
- {
- name = "jest___jest_24.9.0.tgz";
- path = fetchurl {
- name = "jest___jest_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz";
- sha1 = "987d290c05a08b52c56188c1002e368edb007171";
- };
- }
- {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz";
- sha1 = "19203fb59991df98e3a287050d4647cdeaf32499";
- };
- }
- {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
- sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
- };
- }
- {
- name = "js2xmlparser___js2xmlparser_4.0.1.tgz";
- path = fetchurl {
- name = "js2xmlparser___js2xmlparser_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/js2xmlparser/-/js2xmlparser-4.0.1.tgz";
- sha1 = "670ef71bc5661f089cc90481b99a05a1227ae3bd";
- };
- }
- {
- name = "jsbn___jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "jsbn___jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- }
- {
- name = "jsdoc___jsdoc_3.6.7.tgz";
- path = fetchurl {
- name = "jsdoc___jsdoc_3.6.7.tgz";
- url = "https://registry.yarnpkg.com/jsdoc/-/jsdoc-3.6.7.tgz";
- sha1 = "00431e376bed7f9de4716c6f15caa80e64492b89";
- };
- }
- {
- name = "jsdom___jsdom_11.12.0.tgz";
- path = fetchurl {
- name = "jsdom___jsdom_11.12.0.tgz";
- url = "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz";
- sha1 = "1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8";
- };
- }
- {
- name = "jsesc___jsesc_2.5.2.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz";
- sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4";
- };
- }
- {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- path = fetchurl {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660";
- };
- }
- {
- name = "json_schema___json_schema_0.2.3.tgz";
- path = fetchurl {
- name = "json_schema___json_schema_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- }
- {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- path = fetchurl {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
- sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
- };
- }
- {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- path = fetchurl {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- }
- {
- name = "json5___json5_2.2.0.tgz";
- path = fetchurl {
- name = "json5___json5_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz";
- sha1 = "2dfefe720c6ba525d9ebd909950f0515316c89a3";
- };
- }
- {
- name = "jsprim___jsprim_1.4.1.tgz";
- path = fetchurl {
- name = "jsprim___jsprim_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- }
- {
- name = "kind_of___kind_of_3.2.2.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- }
- {
- name = "kind_of___kind_of_4.0.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
- };
- }
- {
- name = "kind_of___kind_of_5.1.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz";
- sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d";
- };
- }
- {
- name = "kind_of___kind_of_6.0.3.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_6.0.3.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz";
- sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd";
- };
- }
- {
- name = "klaw___klaw_3.0.0.tgz";
- path = fetchurl {
- name = "klaw___klaw_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/klaw/-/klaw-3.0.0.tgz";
- sha1 = "b11bec9cf2492f06756d6e809ab73a2910259146";
- };
- }
- {
- name = "kleur___kleur_3.0.3.tgz";
- path = fetchurl {
- name = "kleur___kleur_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz";
- sha1 = "a79c9ecc86ee1ce3fa6206d1216c501f147fc07e";
- };
- }
- {
- name = "left_pad___left_pad_1.3.0.tgz";
- path = fetchurl {
- name = "left_pad___left_pad_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz";
- sha1 = "5b8a3a7765dfe001261dde915589e782f8c94d1e";
- };
- }
- {
- name = "leven___leven_3.1.0.tgz";
- path = fetchurl {
- name = "leven___leven_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz";
- sha1 = "77891de834064cccba82ae7842bb6b14a13ed7f2";
- };
- }
- {
- name = "levn___levn_0.3.0.tgz";
- path = fetchurl {
- name = "levn___levn_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz";
- sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
- };
- }
- {
- name = "linkify_it___linkify_it_2.2.0.tgz";
- path = fetchurl {
- name = "linkify_it___linkify_it_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz";
- sha1 = "e3b54697e78bf915c70a38acd78fd09e0058b1cf";
- };
- }
- {
- name = "load_json_file___load_json_file_4.0.0.tgz";
- path = fetchurl {
- name = "load_json_file___load_json_file_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz";
- sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
- };
- }
- {
- name = "locate_path___locate_path_3.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz";
- sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e";
- };
- }
- {
- name = "lodash.camelcase___lodash.camelcase_4.3.0.tgz";
- path = fetchurl {
- name = "lodash.camelcase___lodash.camelcase_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
- sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
- };
- }
- {
- name = "lodash.sortby___lodash.sortby_4.7.0.tgz";
- path = fetchurl {
- name = "lodash.sortby___lodash.sortby_4.7.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz";
- sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438";
- };
- }
- {
- name = "lodash___lodash_4.17.21.tgz";
- path = fetchurl {
- name = "lodash___lodash_4.17.21.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
- sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
- };
- }
- {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- path = fetchurl {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz";
- sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf";
- };
- }
- {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz";
- sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94";
- };
- }
- {
- name = "make_dir___make_dir_2.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz";
- sha1 = "5f0310e18b8be898cc07009295a30ae41e91e6f5";
- };
- }
- {
- name = "make_promises_safe___make_promises_safe_5.1.0.tgz";
- path = fetchurl {
- name = "make_promises_safe___make_promises_safe_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-promises-safe/-/make-promises-safe-5.1.0.tgz";
- sha1 = "dd9d311f555bcaa144f12e225b3d37785f0aa8f2";
- };
- }
- {
- name = "makeerror___makeerror_1.0.11.tgz";
- path = fetchurl {
- name = "makeerror___makeerror_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz";
- sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c";
- };
- }
- {
- name = "map_cache___map_cache_0.2.2.tgz";
- path = fetchurl {
- name = "map_cache___map_cache_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
- };
- }
- {
- name = "map_visit___map_visit_1.0.0.tgz";
- path = fetchurl {
- name = "map_visit___map_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
- };
- }
- {
- name = "markdown_it_anchor___markdown_it_anchor_5.3.0.tgz";
- path = fetchurl {
- name = "markdown_it_anchor___markdown_it_anchor_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz";
- sha1 = "d549acd64856a8ecd1bea58365ef385effbac744";
- };
- }
- {
- name = "markdown_it___markdown_it_10.0.0.tgz";
- path = fetchurl {
- name = "markdown_it___markdown_it_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz";
- sha1 = "abfc64f141b1722d663402044e43927f1f50a8dc";
- };
- }
- {
- name = "marked___marked_2.1.3.tgz";
- path = fetchurl {
- name = "marked___marked_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz";
- sha1 = "bd017cef6431724fd4b27e0657f5ceb14bff3753";
- };
- }
- {
- name = "mdurl___mdurl_1.0.1.tgz";
- path = fetchurl {
- name = "mdurl___mdurl_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz";
- sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e";
- };
- }
- {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- path = fetchurl {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz";
- sha1 = "52823629a14dd00c9770fb6ad47dc6310f2c1f60";
- };
- }
- {
- name = "micromatch___micromatch_3.1.10.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_3.1.10.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz";
- sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23";
- };
- }
- {
- name = "mime_db___mime_db_1.48.0.tgz";
- path = fetchurl {
- name = "mime_db___mime_db_1.48.0.tgz";
- url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz";
- sha1 = "e35b31045dd7eada3aaad537ed88a33afbef2d1d";
- };
- }
- {
- name = "mime_types___mime_types_2.1.31.tgz";
- path = fetchurl {
- name = "mime_types___mime_types_2.1.31.tgz";
- url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz";
- sha1 = "a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b";
- };
- }
- {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- path = fetchurl {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz";
- sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b";
- };
- }
- {
- name = "minimatch___minimatch_3.0.4.tgz";
- path = fetchurl {
- name = "minimatch___minimatch_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
- };
- }
- {
- name = "minimist___minimist_1.2.5.tgz";
- path = fetchurl {
- name = "minimist___minimist_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz";
- sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602";
- };
- }
- {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- path = fetchurl {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz";
- sha1 = "1120b43dc359a785dce65b55b82e257ccf479566";
- };
- }
- {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz";
- sha1 = "d91cefd62d1436ca0f41620e251288d420099def";
- };
- }
- {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz";
- sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e";
- };
- }
- {
- name = "ms___ms_2.0.0.tgz";
- path = fetchurl {
- name = "ms___ms_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- }
- {
- name = "ms___ms_2.1.2.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz";
- sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009";
- };
- }
- {
- name = "mute_stream___mute_stream_0.0.8.tgz";
- path = fetchurl {
- name = "mute_stream___mute_stream_0.0.8.tgz";
- url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz";
- sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d";
- };
- }
- {
- name = "nan___nan_2.14.2.tgz";
- path = fetchurl {
- name = "nan___nan_2.14.2.tgz";
- url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz";
- sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19";
- };
- }
- {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- path = fetchurl {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz";
- sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119";
- };
- }
- {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- path = fetchurl {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
- };
- }
- {
- name = "neo_async___neo_async_2.6.2.tgz";
- path = fetchurl {
- name = "neo_async___neo_async_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz";
- sha1 = "b4aafb93e3aeb2d8174ca53cf163ab7d7308305f";
- };
- }
- {
- name = "neon_cli___neon_cli_0.8.3.tgz";
- path = fetchurl {
- name = "neon_cli___neon_cli_0.8.3.tgz";
- url = "https://registry.yarnpkg.com/neon-cli/-/neon-cli-0.8.3.tgz";
- sha1 = "dea3a00021a07b9ef05e73464e45c94a2bf0fd3a";
- };
- }
- {
- name = "nice_try___nice_try_1.0.5.tgz";
- path = fetchurl {
- name = "nice_try___nice_try_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz";
- sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366";
- };
- }
- {
- name = "node_int64___node_int64_0.4.0.tgz";
- path = fetchurl {
- name = "node_int64___node_int64_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz";
- sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
- };
- }
- {
- name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
- path = fetchurl {
- name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz";
- sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40";
- };
- }
- {
- name = "node_notifier___node_notifier_5.4.5.tgz";
- path = fetchurl {
- name = "node_notifier___node_notifier_5.4.5.tgz";
- url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.5.tgz";
- sha1 = "0cbc1a2b0f658493b4025775a13ad938e96091ef";
- };
- }
- {
- name = "node_releases___node_releases_1.1.73.tgz";
- path = fetchurl {
- name = "node_releases___node_releases_1.1.73.tgz";
- url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz";
- sha1 = "dd4e81ddd5277ff846b80b52bb40c49edf7a7b20";
- };
- }
- {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- path = fetchurl {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
- sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8";
- };
- }
- {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
- };
- }
- {
- name = "npm_run_path___npm_run_path_2.0.2.tgz";
- path = fetchurl {
- name = "npm_run_path___npm_run_path_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz";
- sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
- };
- }
- {
- name = "nwsapi___nwsapi_2.2.0.tgz";
- path = fetchurl {
- name = "nwsapi___nwsapi_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz";
- sha1 = "204879a9e3d068ff2a55139c2c772780681a38b7";
- };
- }
- {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- path = fetchurl {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz";
- sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
- };
- }
- {
- name = "object_copy___object_copy_0.1.0.tgz";
- path = fetchurl {
- name = "object_copy___object_copy_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
- };
- }
- {
- name = "object_inspect___object_inspect_1.11.0.tgz";
- path = fetchurl {
- name = "object_inspect___object_inspect_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz";
- sha1 = "9dceb146cedd4148a0d9e51ab88d34cf509922b1";
- };
- }
- {
- name = "object_keys___object_keys_1.1.1.tgz";
- path = fetchurl {
- name = "object_keys___object_keys_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz";
- sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e";
- };
- }
- {
- name = "object_visit___object_visit_1.0.1.tgz";
- path = fetchurl {
- name = "object_visit___object_visit_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
- };
- }
- {
- name = "object.assign___object.assign_4.1.2.tgz";
- path = fetchurl {
- name = "object.assign___object.assign_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz";
- sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940";
- };
- }
- {
- name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
- path = fetchurl {
- name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz";
- sha1 = "1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7";
- };
- }
- {
- name = "object.pick___object.pick_1.3.0.tgz";
- path = fetchurl {
- name = "object.pick___object.pick_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
- };
- }
- {
- name = "once___once_1.4.0.tgz";
- path = fetchurl {
- name = "once___once_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- }
- {
- name = "onetime___onetime_5.1.2.tgz";
- path = fetchurl {
- name = "onetime___onetime_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz";
- sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e";
- };
- }
- {
- name = "optionator___optionator_0.8.3.tgz";
- path = fetchurl {
- name = "optionator___optionator_0.8.3.tgz";
- url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz";
- sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495";
- };
- }
- {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- path = fetchurl {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- }
- {
- name = "p_each_series___p_each_series_1.0.0.tgz";
- path = fetchurl {
- name = "p_each_series___p_each_series_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz";
- sha1 = "930f3d12dd1f50e7434457a22cd6f04ac6ad7f71";
- };
- }
- {
- name = "p_finally___p_finally_1.0.0.tgz";
- path = fetchurl {
- name = "p_finally___p_finally_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz";
- sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
- };
- }
- {
- name = "p_limit___p_limit_2.3.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz";
- sha1 = "3dd33c647a214fdfffd835933eb086da0dc21db1";
- };
- }
- {
- name = "p_locate___p_locate_3.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz";
- sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4";
- };
- }
- {
- name = "p_reduce___p_reduce_1.0.0.tgz";
- path = fetchurl {
- name = "p_reduce___p_reduce_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz";
- sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa";
- };
- }
- {
- name = "p_try___p_try_2.2.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz";
- sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6";
- };
- }
- {
- name = "parent_module___parent_module_1.0.1.tgz";
- path = fetchurl {
- name = "parent_module___parent_module_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz";
- sha1 = "691d2709e78c79fae3a156622452d00762caaaa2";
- };
- }
- {
- name = "parse_json___parse_json_4.0.0.tgz";
- path = fetchurl {
- name = "parse_json___parse_json_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
- };
- }
- {
- name = "parse5___parse5_4.0.0.tgz";
- path = fetchurl {
- name = "parse5___parse5_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz";
- sha1 = "6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608";
- };
- }
- {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- path = fetchurl {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
- };
- }
- {
- name = "path_exists___path_exists_3.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
- };
- }
- {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- path = fetchurl {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- }
- {
- name = "path_key___path_key_2.0.1.tgz";
- path = fetchurl {
- name = "path_key___path_key_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz";
- sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
- };
- }
- {
- name = "path_parse___path_parse_1.0.7.tgz";
- path = fetchurl {
- name = "path_parse___path_parse_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz";
- sha1 = "fbc114b60ca42b30d9daf5858e4bd68bbedb6735";
- };
- }
- {
- name = "path_type___path_type_3.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz";
- sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f";
- };
- }
- {
- name = "performance_now___performance_now_2.1.0.tgz";
- path = fetchurl {
- name = "performance_now___performance_now_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- }
- {
- name = "pify___pify_3.0.0.tgz";
- path = fetchurl {
- name = "pify___pify_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz";
- sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
- };
- }
- {
- name = "pify___pify_4.0.1.tgz";
- path = fetchurl {
- name = "pify___pify_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz";
- sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231";
- };
- }
- {
- name = "pirates___pirates_4.0.1.tgz";
- path = fetchurl {
- name = "pirates___pirates_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz";
- sha1 = "643a92caf894566f91b2b986d2c66950a8e2fb87";
- };
- }
- {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz";
- sha1 = "2749020f239ed990881b1f71210d51eb6523bea3";
- };
- }
- {
- name = "pn___pn_1.1.0.tgz";
- path = fetchurl {
- name = "pn___pn_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz";
- sha1 = "e2f4cef0e219f463c179ab37463e4e1ecdccbafb";
- };
- }
- {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- path = fetchurl {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
- };
- }
- {
- name = "prelude_ls___prelude_ls_1.1.2.tgz";
- path = fetchurl {
- name = "prelude_ls___prelude_ls_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz";
- sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
- };
- }
- {
- name = "pretty_format___pretty_format_24.9.0.tgz";
- path = fetchurl {
- name = "pretty_format___pretty_format_24.9.0.tgz";
- url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz";
- sha1 = "12fac31b37019a4eea3c11aa9a959eb7628aa7c9";
- };
- }
- {
- name = "progress___progress_2.0.3.tgz";
- path = fetchurl {
- name = "progress___progress_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz";
- sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8";
- };
- }
- {
- name = "prompts___prompts_2.4.1.tgz";
- path = fetchurl {
- name = "prompts___prompts_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz";
- sha1 = "befd3b1195ba052f9fd2fde8a486c4e82ee77f61";
- };
- }
- {
- name = "psl___psl_1.8.0.tgz";
- path = fetchurl {
- name = "psl___psl_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz";
- sha1 = "9326f8bcfb013adcc005fdff056acce020e51c24";
- };
- }
- {
- name = "pump___pump_3.0.0.tgz";
- path = fetchurl {
- name = "pump___pump_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz";
- sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64";
- };
- }
- {
- name = "punycode___punycode_2.1.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz";
- sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec";
- };
- }
- {
- name = "qs___qs_6.5.2.tgz";
- path = fetchurl {
- name = "qs___qs_6.5.2.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz";
- sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36";
- };
- }
- {
- name = "react_is___react_is_16.13.1.tgz";
- path = fetchurl {
- name = "react_is___react_is_16.13.1.tgz";
- url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz";
- sha1 = "789729a4dc36de2999dc156dd6c1d9c18cea56a4";
- };
- }
- {
- name = "read_pkg_up___read_pkg_up_4.0.0.tgz";
- path = fetchurl {
- name = "read_pkg_up___read_pkg_up_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz";
- sha1 = "1b221c6088ba7799601c808f91161c66e58f8978";
- };
- }
- {
- name = "read_pkg___read_pkg_3.0.0.tgz";
- path = fetchurl {
- name = "read_pkg___read_pkg_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz";
- sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
- };
- }
- {
- name = "realpath_native___realpath_native_1.1.0.tgz";
- path = fetchurl {
- name = "realpath_native___realpath_native_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz";
- sha1 = "2003294fea23fb0672f2476ebe22fcf498a2d65c";
- };
- }
- {
- name = "reduce_flatten___reduce_flatten_2.0.0.tgz";
- path = fetchurl {
- name = "reduce_flatten___reduce_flatten_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz";
- sha1 = "734fd84e65f375d7ca4465c69798c25c9d10ae27";
- };
- }
- {
- name = "regex_not___regex_not_1.0.2.tgz";
- path = fetchurl {
- name = "regex_not___regex_not_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz";
- sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c";
- };
- }
- {
- name = "regexpp___regexpp_2.0.1.tgz";
- path = fetchurl {
- name = "regexpp___regexpp_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz";
- sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f";
- };
- }
- {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- path = fetchurl {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
- };
- }
- {
- name = "repeat_element___repeat_element_1.1.4.tgz";
- path = fetchurl {
- name = "repeat_element___repeat_element_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz";
- sha1 = "be681520847ab58c7568ac75fbfad28ed42d39e9";
- };
- }
- {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- path = fetchurl {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- }
- {
- name = "request_promise_core___request_promise_core_1.1.4.tgz";
- path = fetchurl {
- name = "request_promise_core___request_promise_core_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz";
- sha1 = "3eedd4223208d419867b78ce815167d10593a22f";
- };
- }
- {
- name = "request_promise_native___request_promise_native_1.0.9.tgz";
- path = fetchurl {
- name = "request_promise_native___request_promise_native_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz";
- sha1 = "e407120526a5efdc9a39b28a5679bf47b9d9dc28";
- };
- }
- {
- name = "request___request_2.88.2.tgz";
- path = fetchurl {
- name = "request___request_2.88.2.tgz";
- url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz";
- sha1 = "d73c918731cb5a87da047e207234146f664d12b3";
- };
- }
- {
- name = "require_directory___require_directory_2.1.1.tgz";
- path = fetchurl {
- name = "require_directory___require_directory_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- }
- {
- name = "require_main_filename___require_main_filename_2.0.0.tgz";
- path = fetchurl {
- name = "require_main_filename___require_main_filename_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz";
- sha1 = "d0b329ecc7cc0f61649f62215be69af54aa8989b";
- };
- }
- {
- name = "requizzle___requizzle_0.2.3.tgz";
- path = fetchurl {
- name = "requizzle___requizzle_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/requizzle/-/requizzle-0.2.3.tgz";
- sha1 = "4675c90aacafb2c036bd39ba2daa4a1cb777fded";
- };
- }
- {
- name = "resolve_cwd___resolve_cwd_2.0.0.tgz";
- path = fetchurl {
- name = "resolve_cwd___resolve_cwd_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
- sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
- };
- }
- {
- name = "resolve_from___resolve_from_3.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz";
- sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
- };
- }
- {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz";
- sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6";
- };
- }
- {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- path = fetchurl {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
- };
- }
- {
- name = "resolve___resolve_1.1.7.tgz";
- path = fetchurl {
- name = "resolve___resolve_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
- };
- }
- {
- name = "resolve___resolve_1.20.0.tgz";
- path = fetchurl {
- name = "resolve___resolve_1.20.0.tgz";
- url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz";
- sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975";
- };
- }
- {
- name = "restore_cursor___restore_cursor_3.1.0.tgz";
- path = fetchurl {
- name = "restore_cursor___restore_cursor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz";
- sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e";
- };
- }
- {
- name = "ret___ret_0.1.15.tgz";
- path = fetchurl {
- name = "ret___ret_0.1.15.tgz";
- url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz";
- sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc";
- };
- }
- {
- name = "rimraf___rimraf_2.6.3.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.6.3.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz";
- sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab";
- };
- }
- {
- name = "rimraf___rimraf_2.7.1.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz";
- sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec";
- };
- }
- {
- name = "rimraf___rimraf_3.0.2.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz";
- sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
- };
- }
- {
- name = "rsvp___rsvp_4.8.5.tgz";
- path = fetchurl {
- name = "rsvp___rsvp_4.8.5.tgz";
- url = "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz";
- sha1 = "c8f155311d167f68f21e168df71ec5b083113734";
- };
- }
- {
- name = "run_async___run_async_2.4.1.tgz";
- path = fetchurl {
- name = "run_async___run_async_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz";
- sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455";
- };
- }
- {
- name = "rxjs___rxjs_6.6.7.tgz";
- path = fetchurl {
- name = "rxjs___rxjs_6.6.7.tgz";
- url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz";
- sha1 = "90ac018acabf491bf65044235d5863c4dab804c9";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz";
- sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d";
- };
- }
- {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- path = fetchurl {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz";
- sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
- };
- }
- {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- path = fetchurl {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a";
- };
- }
- {
- name = "sane___sane_4.1.0.tgz";
- path = fetchurl {
- name = "sane___sane_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz";
- sha1 = "ed881fd922733a6c461bc189dc2b6c006f3ffded";
- };
- }
- {
- name = "sax___sax_1.2.4.tgz";
- path = fetchurl {
- name = "sax___sax_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz";
- sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9";
- };
- }
- {
- name = "semver___semver_5.7.1.tgz";
- path = fetchurl {
- name = "semver___semver_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz";
- sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
- };
- }
- {
- name = "semver___semver_6.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_6.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz";
- sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d";
- };
- }
- {
- name = "semver___semver_7.3.5.tgz";
- path = fetchurl {
- name = "semver___semver_7.3.5.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
- sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
- };
- }
- {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- path = fetchurl {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- }
- {
- name = "set_value___set_value_2.0.1.tgz";
- path = fetchurl {
- name = "set_value___set_value_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz";
- sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b";
- };
- }
- {
- name = "shebang_command___shebang_command_1.2.0.tgz";
- path = fetchurl {
- name = "shebang_command___shebang_command_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz";
- sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
- };
- }
- {
- name = "shebang_regex___shebang_regex_1.0.0.tgz";
- path = fetchurl {
- name = "shebang_regex___shebang_regex_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz";
- sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
- };
- }
- {
- name = "shellwords___shellwords_0.1.1.tgz";
- path = fetchurl {
- name = "shellwords___shellwords_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz";
- sha1 = "d6b9181c1a48d397324c84871efbcfc73fc0654b";
- };
- }
- {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- path = fetchurl {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz";
- sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c";
- };
- }
- {
- name = "sisteransi___sisteransi_1.0.5.tgz";
- path = fetchurl {
- name = "sisteransi___sisteransi_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz";
- sha1 = "134d681297756437cc05ca01370d3a7a571075ed";
- };
- }
- {
- name = "slash___slash_2.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz";
- sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44";
- };
- }
- {
- name = "slice_ansi___slice_ansi_2.1.0.tgz";
- path = fetchurl {
- name = "slice_ansi___slice_ansi_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz";
- sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636";
- };
- }
- {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- path = fetchurl {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b";
- };
- }
- {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- path = fetchurl {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2";
- };
- }
- {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- path = fetchurl {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz";
- sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d";
- };
- }
- {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- path = fetchurl {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz";
- sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a";
- };
- }
- {
- name = "source_map_support___source_map_support_0.5.19.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.5.19.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz";
- sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61";
- };
- }
- {
- name = "source_map_url___source_map_url_0.4.1.tgz";
- path = fetchurl {
- name = "source_map_url___source_map_url_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz";
- sha1 = "0af66605a745a5a2f91cf1bbf8a7afbc283dec56";
- };
- }
- {
- name = "source_map___source_map_0.5.7.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.5.7.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- }
- {
- name = "source_map___source_map_0.6.1.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz";
- sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263";
- };
- }
- {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- path = fetchurl {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz";
- sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9";
- };
- }
- {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- path = fetchurl {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz";
- sha1 = "3f28ce1a77a00372683eade4a433183527a2163d";
- };
- }
- {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- path = fetchurl {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz";
- sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679";
- };
- }
- {
- name = "spdx_license_ids___spdx_license_ids_3.0.9.tgz";
- path = fetchurl {
- name = "spdx_license_ids___spdx_license_ids_3.0.9.tgz";
- url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz";
- sha1 = "8a595135def9592bda69709474f1cbeea7c2467f";
- };
- }
- {
- name = "split_string___split_string_3.1.0.tgz";
- path = fetchurl {
- name = "split_string___split_string_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz";
- sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
- };
- }
- {
- name = "sshpk___sshpk_1.16.1.tgz";
- path = fetchurl {
- name = "sshpk___sshpk_1.16.1.tgz";
- url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz";
- sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877";
- };
- }
- {
- name = "stack_utils___stack_utils_1.0.5.tgz";
- path = fetchurl {
- name = "stack_utils___stack_utils_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz";
- sha1 = "a19b0b01947e0029c8e451d5d61a498f5bb1471b";
- };
- }
- {
- name = "static_extend___static_extend_0.1.2.tgz";
- path = fetchurl {
- name = "static_extend___static_extend_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
- };
- }
- {
- name = "stealthy_require___stealthy_require_1.1.1.tgz";
- path = fetchurl {
- name = "stealthy_require___stealthy_require_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz";
- sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b";
- };
- }
- {
- name = "string_length___string_length_2.0.0.tgz";
- path = fetchurl {
- name = "string_length___string_length_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz";
- sha1 = "d40dbb686a3ace960c1cffca562bf2c45f8363ed";
- };
- }
- {
- name = "string_width___string_width_3.1.0.tgz";
- path = fetchurl {
- name = "string_width___string_width_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz";
- sha1 = "22767be21b62af1081574306f69ac51b62203961";
- };
- }
- {
- name = "string_width___string_width_4.2.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz";
- sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5";
- };
- }
- {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
- path = fetchurl {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
- sha1 = "e75ae90c2942c63504686c18b287b4a0b1a45f80";
- };
- }
- {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
- path = fetchurl {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
- sha1 = "b36399af4ab2999b4c9c648bd7a3fb2bb26feeed";
- };
- }
- {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- }
- {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz";
- sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae";
- };
- }
- {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532";
- };
- }
- {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- path = fetchurl {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz";
- sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
- };
- }
- {
- name = "strip_eof___strip_eof_1.0.0.tgz";
- path = fetchurl {
- name = "strip_eof___strip_eof_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz";
- sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz";
- sha1 = "31f1281b3832630434831c310c01cccda8cbe006";
- };
- }
- {
- name = "supports_color___supports_color_5.5.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_5.5.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz";
- sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f";
- };
- }
- {
- name = "supports_color___supports_color_6.1.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz";
- sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3";
- };
- }
- {
- name = "supports_color___supports_color_7.2.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz";
- sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da";
- };
- }
- {
- name = "symbol_tree___symbol_tree_3.2.4.tgz";
- path = fetchurl {
- name = "symbol_tree___symbol_tree_3.2.4.tgz";
- url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz";
- sha1 = "430637d248ba77e078883951fb9aa0eed7c63fa2";
- };
- }
- {
- name = "table_layout___table_layout_1.0.2.tgz";
- path = fetchurl {
- name = "table_layout___table_layout_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/table-layout/-/table-layout-1.0.2.tgz";
- sha1 = "c4038a1853b0136d63365a734b6931cf4fad4a04";
- };
- }
- {
- name = "table___table_5.4.6.tgz";
- path = fetchurl {
- name = "table___table_5.4.6.tgz";
- url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz";
- sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e";
- };
- }
- {
- name = "taffydb___taffydb_2.6.2.tgz";
- path = fetchurl {
- name = "taffydb___taffydb_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/taffydb/-/taffydb-2.6.2.tgz";
- sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
- };
- }
- {
- name = "test_exclude___test_exclude_5.2.3.tgz";
- path = fetchurl {
- name = "test_exclude___test_exclude_5.2.3.tgz";
- url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz";
- sha1 = "c3d3e1e311eb7ee405e092dac10aefd09091eac0";
- };
- }
- {
- name = "text_table___text_table_0.2.0.tgz";
- path = fetchurl {
- name = "text_table___text_table_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz";
- sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
- };
- }
- {
- name = "throat___throat_4.1.0.tgz";
- path = fetchurl {
- name = "throat___throat_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz";
- sha1 = "89037cbc92c56ab18926e6ba4cbb200e15672a6a";
- };
- }
- {
- name = "through___through_2.3.8.tgz";
- path = fetchurl {
- name = "through___through_2.3.8.tgz";
- url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz";
- sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
- };
- }
- {
- name = "tmp___tmp_0.0.33.tgz";
- path = fetchurl {
- name = "tmp___tmp_0.0.33.tgz";
- url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz";
- sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9";
- };
- }
- {
- name = "tmpl___tmpl_1.0.4.tgz";
- path = fetchurl {
- name = "tmpl___tmpl_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz";
- sha1 = "23640dd7b42d00433911140820e5cf440e521dd1";
- };
- }
- {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- path = fetchurl {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz";
- sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
- };
- }
- {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- path = fetchurl {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
- };
- }
- {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
- };
- }
- {
- name = "to_regex___to_regex_3.0.2.tgz";
- path = fetchurl {
- name = "to_regex___to_regex_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz";
- sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce";
- };
- }
- {
- name = "toml___toml_3.0.0.tgz";
- path = fetchurl {
- name = "toml___toml_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz";
- sha1 = "342160f1af1904ec9d204d03a5d61222d762c5ee";
- };
- }
- {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz";
- sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2";
- };
- }
- {
- name = "tr46___tr46_1.0.1.tgz";
- path = fetchurl {
- name = "tr46___tr46_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz";
- sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09";
- };
- }
- {
- name = "ts_typed_json___ts_typed_json_0.3.2.tgz";
- path = fetchurl {
- name = "ts_typed_json___ts_typed_json_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/ts-typed-json/-/ts-typed-json-0.3.2.tgz";
- sha1 = "f4f20f45950bae0a383857f7b0a94187eca1b56a";
- };
- }
- {
- name = "tslib___tslib_1.14.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz";
- sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00";
- };
- }
- {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- path = fetchurl {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- }
- {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- path = fetchurl {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- }
- {
- name = "type_check___type_check_0.3.2.tgz";
- path = fetchurl {
- name = "type_check___type_check_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz";
- sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
- };
- }
- {
- name = "type_fest___type_fest_0.21.3.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.21.3.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz";
- sha1 = "d260a24b0198436e133fa26a524a6d65fa3b2e37";
- };
- }
- {
- name = "type_fest___type_fest_0.8.1.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.8.1.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz";
- sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d";
- };
- }
- {
- name = "typical___typical_4.0.0.tgz";
- path = fetchurl {
- name = "typical___typical_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/typical/-/typical-4.0.0.tgz";
- sha1 = "cbeaff3b9d7ae1e2bbfaf5a4e6f11eccfde94fc4";
- };
- }
- {
- name = "typical___typical_5.2.0.tgz";
- path = fetchurl {
- name = "typical___typical_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/typical/-/typical-5.2.0.tgz";
- sha1 = "4daaac4f2b5315460804f0acf6cb69c52bb93066";
- };
- }
- {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- path = fetchurl {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz";
- sha1 = "9c411a802a409a91fc6cf74081baba34b24499ac";
- };
- }
- {
- name = "uglify_js___uglify_js_3.13.10.tgz";
- path = fetchurl {
- name = "uglify_js___uglify_js_3.13.10.tgz";
- url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz";
- sha1 = "a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d";
- };
- }
- {
- name = "unbox_primitive___unbox_primitive_1.0.1.tgz";
- path = fetchurl {
- name = "unbox_primitive___unbox_primitive_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz";
- sha1 = "085e215625ec3162574dc8859abee78a59b14471";
- };
- }
- {
- name = "underscore___underscore_1.13.1.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.13.1.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz";
- sha1 = "0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1";
- };
- }
- {
- name = "union_value___union_value_1.0.1.tgz";
- path = fetchurl {
- name = "union_value___union_value_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz";
- sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847";
- };
- }
- {
- name = "unset_value___unset_value_1.0.0.tgz";
- path = fetchurl {
- name = "unset_value___unset_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
- };
- }
- {
- name = "uri_js___uri_js_4.4.1.tgz";
- path = fetchurl {
- name = "uri_js___uri_js_4.4.1.tgz";
- url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz";
- sha1 = "9b1a52595225859e55f669d928f88c6c57f2a77e";
- };
- }
- {
- name = "urix___urix_0.1.0.tgz";
- path = fetchurl {
- name = "urix___urix_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
- };
- }
- {
- name = "use___use_3.1.1.tgz";
- path = fetchurl {
- name = "use___use_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz";
- sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f";
- };
- }
- {
- name = "util.promisify___util.promisify_1.1.1.tgz";
- path = fetchurl {
- name = "util.promisify___util.promisify_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz";
- sha1 = "77832f57ced2c9478174149cae9b96e9918cd54b";
- };
- }
- {
- name = "uuid___uuid_3.4.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz";
- sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee";
- };
- }
- {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- path = fetchurl {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz";
- sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee";
- };
- }
- {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- path = fetchurl {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a";
- };
- }
- {
- name = "validate_npm_package_name___validate_npm_package_name_3.0.0.tgz";
- path = fetchurl {
- name = "validate_npm_package_name___validate_npm_package_name_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
- };
- }
- {
- name = "verror___verror_1.10.0.tgz";
- path = fetchurl {
- name = "verror___verror_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- }
- {
- name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz";
- path = fetchurl {
- name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz";
- sha1 = "0a89cdf5cc15822df9c360543676963e0cc308cd";
- };
- }
- {
- name = "walker___walker_1.0.7.tgz";
- path = fetchurl {
- name = "walker___walker_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz";
- sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb";
- };
- }
- {
- name = "webidl_conversions___webidl_conversions_4.0.2.tgz";
- path = fetchurl {
- name = "webidl_conversions___webidl_conversions_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz";
- sha1 = "a855980b1f0b6b359ba1d5d9fb39ae941faa63ad";
- };
- }
- {
- name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz";
- path = fetchurl {
- name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz";
- sha1 = "5abacf777c32166a51d085d6b4f3e7d27113ddb0";
- };
- }
- {
- name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz";
- path = fetchurl {
- name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz";
- sha1 = "3d4b1e0312d2079879f826aff18dbeeca5960fbf";
- };
- }
- {
- name = "whatwg_url___whatwg_url_6.5.0.tgz";
- path = fetchurl {
- name = "whatwg_url___whatwg_url_6.5.0.tgz";
- url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz";
- sha1 = "f2df02bff176fd65070df74ad5ccbb5a199965a8";
- };
- }
- {
- name = "whatwg_url___whatwg_url_7.1.0.tgz";
- path = fetchurl {
- name = "whatwg_url___whatwg_url_7.1.0.tgz";
- url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz";
- sha1 = "c2c492f1eca612988efd3d2266be1b9fc6170d06";
- };
- }
- {
- name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
- path = fetchurl {
- name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz";
- sha1 = "13757bc89b209b049fe5d86430e21cf40a89a8e6";
- };
- }
- {
- name = "which_module___which_module_2.0.0.tgz";
- path = fetchurl {
- name = "which_module___which_module_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz";
- sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
- };
- }
- {
- name = "which___which_1.3.1.tgz";
- path = fetchurl {
- name = "which___which_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz";
- sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a";
- };
- }
- {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- path = fetchurl {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz";
- sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c";
- };
- }
- {
- name = "wordwrap___wordwrap_1.0.0.tgz";
- path = fetchurl {
- name = "wordwrap___wordwrap_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz";
- sha1 = "27584810891456a4171c8d0226441ade90cbcaeb";
- };
- }
- {
- name = "wordwrapjs___wordwrapjs_4.0.1.tgz";
- path = fetchurl {
- name = "wordwrapjs___wordwrapjs_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-4.0.1.tgz";
- sha1 = "d9790bccfb110a0fc7836b5ebce0937b37a8b98f";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_5.1.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz";
- sha1 = "1fd1f67235d5b6d0fee781056001bfb694c03b09";
- };
- }
- {
- name = "wrappy___wrappy_1.0.2.tgz";
- path = fetchurl {
- name = "wrappy___wrappy_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- }
- {
- name = "write_file_atomic___write_file_atomic_2.4.1.tgz";
- path = fetchurl {
- name = "write_file_atomic___write_file_atomic_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz";
- sha1 = "d0b05463c188ae804396fd5ab2a370062af87529";
- };
- }
- {
- name = "write___write_1.0.3.tgz";
- path = fetchurl {
- name = "write___write_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz";
- sha1 = "0800e14523b923a387e415123c865616aae0f5c3";
- };
- }
- {
- name = "ws___ws_5.2.3.tgz";
- path = fetchurl {
- name = "ws___ws_5.2.3.tgz";
- url = "https://registry.yarnpkg.com/ws/-/ws-5.2.3.tgz";
- sha1 = "05541053414921bc29c63bee14b8b0dd50b07b3d";
- };
- }
- {
- name = "xml_name_validator___xml_name_validator_3.0.0.tgz";
- path = fetchurl {
- name = "xml_name_validator___xml_name_validator_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz";
- sha1 = "6ae73e06de4d8c6e47f9fb181f78d648ad457c6a";
- };
- }
- {
- name = "xmlcreate___xmlcreate_2.0.3.tgz";
- path = fetchurl {
- name = "xmlcreate___xmlcreate_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/xmlcreate/-/xmlcreate-2.0.3.tgz";
- sha1 = "df9ecd518fd3890ab3548e1b811d040614993497";
- };
- }
- {
- name = "y18n___y18n_4.0.3.tgz";
- path = fetchurl {
- name = "y18n___y18n_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz";
- sha1 = "b5f259c82cd6e336921efd7bfd8bf560de9eeedf";
- };
- }
- {
- name = "yallist___yallist_4.0.0.tgz";
- path = fetchurl {
- name = "yallist___yallist_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz";
- sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72";
- };
- }
- {
- name = "yargs_parser___yargs_parser_13.1.2.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_13.1.2.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz";
- sha1 = "130f09702ebaeef2650d54ce6e3e5706f7a4fb38";
- };
- }
- {
- name = "yargs___yargs_13.3.2.tgz";
- path = fetchurl {
- name = "yargs___yargs_13.3.2.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz";
- sha1 = "ad7ffefec1aa59565ac915f82dccb38a9c31a2dd";
- };
- }
- ];
-}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update-element-desktop.sh b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update-element-desktop.sh
deleted file mode 100755
index 3bbc2f3fb4..0000000000
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update-element-desktop.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env nix-shell
-#!nix-shell -I nixpkgs=../../../../../ -i bash -p wget yarn2nix nix-prefetch-git
-
-set -euo pipefail
-
-if [ "$#" -ne 1 ] || [[ "$1" == -* ]]; then
- echo "Regenerates the Yarn dependency lock files for the element-desktop package."
- echo "Usage: $0 "
- exit 1
-fi
-
-RIOT_WEB_SRC="https://raw.githubusercontent.com/vector-im/element-desktop/$1"
-
-wget "$RIOT_WEB_SRC/package.json" -O element-desktop-package.json
-wget "$RIOT_WEB_SRC/yarn.lock" -O element-desktop-yarndeps.lock
-yarn2nix --no-patch --lockfile=element-desktop-yarndeps.lock > element-desktop-yarndeps.nix
-rm element-desktop-yarndeps.lock
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update.sh b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update.sh
new file mode 100755
index 0000000000..364f63a18b
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/element/update.sh
@@ -0,0 +1,43 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -I nixpkgs=../../../../../ -i bash -p nix wget prefetch-yarn-deps nix-prefetch-github
+
+if [ "$#" -gt 1 ] || [[ "$1" == -* ]]; then
+ echo "Regenerates packaging data for the element packages."
+ echo "Usage: $0 [git release tag]"
+ exit 1
+fi
+
+version="$1"
+
+set -euo pipefail
+
+if [ -z "$version" ]; then
+ version="$(wget -O- "https://api.github.com/repos/vector-im/element-desktop/releases?per_page=1" | jq -r '.[0].tag_name')"
+fi
+
+# strip leading "v"
+version="${version#v}"
+
+desktop_src="https://raw.githubusercontent.com/vector-im/element-desktop/v$version"
+
+desktop_src_hash=$(nix-prefetch-github vector-im element-desktop --rev v${version} | jq -r .sha256)
+web_hash=$(nix-prefetch-url "https://github.com/vector-im/element-web/releases/download/v$version/element-v$version.tar.gz")
+
+wget "$desktop_src/package.json" -O element-desktop-package.json
+
+tmpdir=$(mktemp -d)
+trap 'rm -rf "$tmpdir"' EXIT
+
+pushd $tmpdir
+wget "$desktop_src/yarn.lock"
+desktop_yarn_hash=$(prefetch-yarn-deps yarn.lock)
+popd
+
+cat > pin.json << EOF
+{
+ "version": "$version",
+ "desktopSrcHash": "$desktop_src_hash",
+ "desktopYarnHash": "$desktop_yarn_hash",
+ "webHash": "$web_hash"
+}
+EOF
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/pidgin/default.nix
index 0f1acc1c7c..341d9e1d84 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/pidgin/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/pidgin/default.nix
@@ -17,11 +17,11 @@
let unwrapped = stdenv.mkDerivation rec {
pname = "pidgin";
majorVersion = "2";
- version = "${majorVersion}.14.6";
+ version = "${majorVersion}.14.8";
src = fetchurl {
url = "mirror://sourceforge/pidgin/${pname}-${version}.tar.bz2";
- sha256 = "bb45f7c032f9efd6922a5dbf2840995775e5584771b23992d04f6eff7dff5336";
+ sha256 = "1jjc15pfyw3012q5ffv7q4r88wv07ndqh0wakyxa2k0w4708b01z";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/rocketchat-desktop/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/rocketchat-desktop/default.nix
new file mode 100644
index 0000000000..36e7a651eb
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/rocketchat-desktop/default.nix
@@ -0,0 +1,92 @@
+{ lib, stdenv, pkgs, fetchurl }:
+let
+ libPathNative = { packages }: lib.makeLibraryPath packages;
+in
+stdenv.mkDerivation rec {
+ pname = "rocketchat-desktop";
+ version = "3.5.7";
+
+ src = fetchurl {
+ url = "https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${version}/rocketchat_${version}_amd64.deb";
+ sha256 = "1ri8a60fsbqgq83f8wkyfnd59nqk4d0gpz1vanj54769zflpl71s";
+ };
+
+ buildInputs = with pkgs; [
+ gtk3
+ stdenv.cc.cc
+ zlib
+ glib
+ dbus
+ atk
+ pango
+ freetype
+ libgnome-keyring3
+ fontconfig
+ gdk-pixbuf
+ cairo
+ cups
+ expat
+ libgpg-error
+ alsa-lib
+ nspr
+ nss
+ xorg.libXrender
+ xorg.libX11
+ xorg.libXext
+ xorg.libXdamage
+ xorg.libXtst
+ xorg.libXcomposite
+ xorg.libXi
+ xorg.libXfixes
+ xorg.libXrandr
+ xorg.libXcursor
+ xorg.libxkbfile
+ xorg.libXScrnSaver
+ systemd
+ libnotify
+ xorg.libxcb
+ at-spi2-atk
+ at-spi2-core
+ libdbusmenu
+ libdrm
+ mesa
+ xorg.libxshmfence
+ libxkbcommon
+ ];
+
+ dontBuild = true;
+ dontConfigure = true;
+
+ unpackPhase = ''
+ ar p $src data.tar.xz | tar xJ ./opt/ ./usr/
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin
+ mv opt $out
+ mv usr/share $out
+ ln -s $out/opt/Rocket.Chat/rocketchat-desktop $out/bin/rocketchat-desktop
+ runHook postInstall
+ '';
+
+ postFixup =
+ let
+ libpath = libPathNative { packages = buildInputs; };
+ in
+ ''
+ app=$out/opt/Rocket.Chat
+ patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
+ --set-rpath "${libpath}:$app" \
+ $app/rocketchat-desktop
+ sed -i -e "s|Exec=.*$|Exec=$out/bin/rocketchat-desktop|" $out/share/applications/rocketchat-desktop.desktop
+ '';
+
+ meta = with lib; {
+ description = "Official Desktop client for Rocket.Chat";
+ homepage = "https://github.com/RocketChat/Rocket.Chat.Electron";
+ license = licenses.mit;
+ maintainers = with maintainers; [ gbtb ];
+ platforms = platforms.x86_64;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
index 81967bcbe2..7be5d62312 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
@@ -23,7 +23,7 @@ let
--set LC_MESSAGES "${spellcheckerLanguage}"'');
in stdenv.mkDerivation rec {
pname = "signal-desktop";
- version = "5.19.0"; # Please backport all updates to the stable channel.
+ version = "5.20.0"; # Please backport all updates to the stable channel.
# All releases have a limited lifetime and "expire" 90 days after the release.
# When releases "expire" the application becomes unusable until an update is
# applied. The expiration date for the current release can be extracted with:
@@ -33,7 +33,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
- sha256 = "0avns5axcfs8x9sv7hyjxi1cr7gag00avfj0h99wgn251b313g1a";
+ sha256 = "0a57gajxjqkp7zcmjc3iiys06b7v53nd81gkwrsfn2gmshihlzkd";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/slack/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/slack/default.nix
index 25d1de5efc..4f87601390 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/slack/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/slack/default.nix
@@ -33,6 +33,7 @@
, nspr
, nss
, pango
+, pipewire
, systemd
, xdg-utils
, xorg
@@ -119,6 +120,7 @@ let
nspr
nss
pango
+ pipewire
stdenv.cc.cc
systemd
xorg.libX11
diff --git a/third_party/nixpkgs/pkgs/applications/networking/mailreaders/meli/default.nix b/third_party/nixpkgs/pkgs/applications/networking/mailreaders/meli/default.nix
index 354ab024c6..d0575b6065 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/mailreaders/meli/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/mailreaders/meli/default.nix
@@ -15,15 +15,15 @@
rustPlatform.buildRustPackage rec {
pname = "meli";
- version = "alpha-0.7.1";
+ version = "alpha-0.7.2";
src = fetchgit {
url = "https://git.meli.delivery/meli/meli.git";
rev = version;
- sha256 = "00iai2z5zydx9bw0ii0n6d7zwm5rrkj03b4ymic0ybwjahqzvyfq";
+ sha256 = "sha256-cbigEJhX6vL+gHa40cxplmPsDhsqujkzQxe0Dr6+SK0=";
};
- cargoSha256 = "1r54a51j91iv0ziasjygzw30vqqvqibcnwnkih5xv0ijbaly61n0";
+ cargoSha256 = "sha256-ZE653OtXyZ9454bKPApmuL2kVko/hGBWEAya1L1KIoc=";
cargoBuildFlags = lib.optional withNotmuch "--features=notmuch";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix b/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
index 299ba0765c..884e5a644f 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/msmtp/default.nix
@@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
pname = "msmtp";
- version = "1.8.16";
+ version = "1.8.17";
src = fetchurl {
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
- sha256 = "1n271yr83grpki9szdirnk6wb5rcc319f0gmfabyw3fzyf4msjy0";
+ sha256 = "sha256-D92+dMGp3PZGG0obDbPk00JmGEUAxAPX8QetQttOxNM=";
};
patches = [
diff --git a/third_party/nixpkgs/pkgs/applications/office/qownnotes/default.nix b/third_party/nixpkgs/pkgs/applications/office/qownnotes/default.nix
index c843715fcd..1bd29b06d9 100644
--- a/third_party/nixpkgs/pkgs/applications/office/qownnotes/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/office/qownnotes/default.nix
@@ -5,13 +5,13 @@
mkDerivation rec {
pname = "qownnotes";
- version = "21.9.2";
+ version = "21.10.9";
src = fetchurl {
url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
# Fetch the checksum of current version with curl:
# curl https://download.tuxfamily.org/qownnotes/src/qownnotes-.tar.xz.sha256
- sha256 = "sha256-R+aXPnQ2Ns2D8PBTvaeh8ht3juZZhZJIb52A8CVRtFI=";
+ sha256 = "2c86d66ae427bdcd16d706b982cedaa669a27340f7819fc97a8e2b24c709e74f";
};
nativeBuildInputs = [ qmake qttools ];
diff --git a/third_party/nixpkgs/pkgs/applications/science/biology/fastp/default.nix b/third_party/nixpkgs/pkgs/applications/science/biology/fastp/default.nix
index c4cae59d1c..2e44113f40 100644
--- a/third_party/nixpkgs/pkgs/applications/science/biology/fastp/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/biology/fastp/default.nix
@@ -1,20 +1,23 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, zlib
+, libdeflate
+, isa-l
}:
stdenv.mkDerivation rec {
pname = "fastp";
- version = "0.22.0";
+ version = "0.23.1";
src = fetchFromGitHub {
owner = "OpenGene";
repo = "fastp";
rev = "v${version}";
- sha256 = "sha256-XR76hNz7iGXQYSBbBandHZ+oU3wyTf1AKlu9Xeq/GyE=";
+ sha256 = "sha256-vRJlNtg2JabBAUaX91Y04z8MdyxEnreBAlIHn7VB+u4=";
};
- buildInputs = [ zlib ];
+ buildInputs = [ zlib libdeflate isa-l ];
installPhase = ''
install -D fastp $out/bin/fastp
diff --git a/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/base.nix b/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/base.nix
index d7398f39ec..0b024d5c94 100644
--- a/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/base.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/base.nix
@@ -183,7 +183,7 @@ stdenv.mkDerivation rec {
Just the build products, optionally with the i18n linked in
the libraries are passed via an env var in the wrapper, default.nix
'';
- homepage = "https://www.kicad-pcb.org/";
+ homepage = "https://www.kicad.org/";
license = lib.licenses.agpl3;
platforms = lib.platforms.all;
};
diff --git a/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/default.nix b/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/default.nix
index 770b73c712..9d7b1b7e56 100644
--- a/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/electronics/kicad/default.nix
@@ -277,7 +277,7 @@ stdenv.mkDerivation rec {
then "Open Source Electronics Design Automation suite"
else "Open Source EDA suite, development build")
+ (if (!with3d) then ", without 3D models" else "");
- homepage = "https://www.kicad-pcb.org/";
+ homepage = "https://www.kicad.org/";
longDescription = ''
KiCad is an open source software suite for Electronic Design Automation.
The Programs handle Schematic Capture, and PCB Layout with Gerber output.
diff --git a/third_party/nixpkgs/pkgs/applications/science/logic/abella/default.nix b/third_party/nixpkgs/pkgs/applications/science/logic/abella/default.nix
index 14ceb53f9b..3d752b7d7b 100644
--- a/third_party/nixpkgs/pkgs/applications/science/logic/abella/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/logic/abella/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "abella";
- version = "2.0.6";
+ version = "2.0.7";
src = fetchurl {
url = "http://abella-prover.org/distributions/${pname}-${version}.tar.gz";
- sha256 = "164q9gngckg6q69k13lwx2pq3cnc9ckw1qi8dnpxqfjgwfqr7xyi";
+ sha256 = "sha256-/eOiebMFHgrurtrSHPlgZO3xmmxBOUmyAzswXZLd3Yc=";
};
buildInputs = [ rsync ] ++ (with ocamlPackages; [ ocaml ocamlbuild findlib ]);
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/combined/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/combined/default.nix
index 459a325111..0c2220b7ea 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/combined/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/combined/default.nix
@@ -24,7 +24,7 @@ symlinkJoin {
description = "An open-source Modelica-based modeling and simulation environment intended for industrial and academic usage";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/default.nix
index 94029fead4..088fa83b7d 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/default.nix
@@ -87,7 +87,7 @@ stdenv.mkDerivation (pkg // {
inherit omtarget postPatch preAutoreconf configureFlags configurePhase preBuild makeFlags installFlags;
src = fetchgit (import ./src-main.nix);
- version = "1.17.0";
+ version = "1.18.0";
nativeBuildInputs = getAttrDef "nativeBuildInputs" [ ] pkg
++ [ autoconf automake libtool cmake autoreconfHook ];
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/src-main.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/src-main.nix
index c31b23d2f9..1ab8d9390d 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/src-main.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/mkderivation/src-main.nix
@@ -1,7 +1,7 @@
{
url = "https://github.com/OpenModelica/OpenModelica/";
- rev = "08fd3f9144235f209a4ed7602bfadb32b1823628";
- sha256 = "0clgqk9ilnr43iyl5sdzwfzqpnw9amfy1npdgkpgm1wfnsvz6xrw";
+ rev = "49be4faa5a625a18efbbd74cc2f5be86aeea37bb";
+ sha256 = "0klqiy4sdizl1djb9hb0arcvfcjz2mmnakrjx81mmxcbr8yq2016";
fetchSubmodules = true;
}
-# Update with: nix run -f ./nixpkgs/default.nix nix-prefetch-git -c nix-prefetch-git 'https://github.com/OpenModelica/OpenModelica/' 'v1.17.0' --fetch-submodules
+# Update with: nix run -f ./nixpkgs/default.nix nix-prefetch-git -c nix-prefetch-git 'https://github.com/OpenModelica/OpenModelica/' 'v1.18.0' --fetch-submodules
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix
index b49c0f0f60..39591eceb4 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix
@@ -55,7 +55,7 @@ mkOpenModelicaDerivation ({
description = "Modelica compiler from OpenModelica suite";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
} // lib.optionalAttrs isCross {
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omedit/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omedit/default.nix
index b0cc530ba3..b24a43f702 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omedit/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omedit/default.nix
@@ -32,7 +32,7 @@ mkOpenModelicaDerivation rec {
description = "A Modelica connection editor for OpenModelica";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix
index 006daf1881..a89b73eb86 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/default.nix
@@ -31,7 +31,7 @@ mkOpenModelicaDerivation {
including Modelica Standard Library";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/src-libs.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/src-libs.nix
index c91addf780..dff5ee7893 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/src-libs.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omlibrary/src-libs.nix
@@ -1,83 +1,81 @@
[
- { url = "https://github.com/modelica-3rdparty/AdvancedNoise.git"; rev = "5ce57acd279dadd0d25b76a6b02d3f9e9d061246"; sha256 = "07jjbj0y6bak269md3xniqb5lgc33m92ar5qixqxj5yxdjaahfs2"; fetchSubmodules = true; }
- { url = "https://github.com/RWTH-EBC/AixLib.git"; rev = "b00e01d911e2e54e148f24e36ee387a8b457d89c"; sha256 = "1sljddxkx208nill0975sz9b1xd701n97aia4wxihr140dgs4dgb"; fetchSubmodules = true; }
- { url = "https://github.com/RWTH-EBC/AixLib.git"; rev = "v0.4.0"; sha256 = "0dw34mjq29n55xh51g1c9a9d0d8gbpn16gj309dfxn4v2hbnfvzx"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/AlgebraTestSuite.git"; rev = "b937e1a7f447138c59abec9b2092f84f16bf02e8"; sha256 = "0406inasx61dk7vcnziiyhxkna7g61a5hn0znnbxj817hz6q11zn"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ApproxSpline.git"; rev = "28420f5c1a88c9cd069defbd8c05e4a78a090675"; sha256 = "07gpyi2brj5zpvrlsnflqjnhbrgxvpqbdshp8lp4lh9mnj5jv95d"; fetchSubmodules = true; }
- { url = "https://github.com/OpenModelica/BioChem.git"; rev = "v1.0.2"; sha256 = "037bvj2lqrslg8k5r0rjgdzccslj9bj25b55k4g440vabm5p05qm"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/BondGraph.git"; rev = "20c23e60d12989bd4668ccac47659d82d39d29cc"; sha256 = "0yrkk708v4bvf423xb4zgpmnaj8qhq5primdg758ayddgli23wa9"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/BrineProp.git"; rev = "c2f564ae284726a2df6252a8561856691681572b"; sha256 = "01c2i2rlry7b4a6f2skkvzphcrfg5a2waxv4i7zgx5q275fg06i1"; fetchSubmodules = true; }
- { url = "https://github.com/EDF-TREE/BuildSysPro.git"; rev = "v3.3.0"; sha256 = "1cvcany3q9p1xndarxa2d8mmqxdnqk22476q8l61nayz5qy25x61"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/BuildingControlLib.git"; rev = "v1.0.0"; sha256 = "0ckdxway0m755mbrl94k4458sijzgknlzsrf7xs5bjymxchm8r2m"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/BuildingSystems.git"; rev = "1e07bb475b921a4eedc6155c5310d1f9f3ef7550"; sha256 = "1xg831vqh6zw88cxxcb3sjgz44l7ygsgxddl05fp6xvz5sjpfcna"; fetchSubmodules = true; }
- { url = "https://github.com/lbl-srg/modelica-buildings.git"; rev = "v6.0.0"; sha256 = "0rnnk1clji0myzr7adggki6knbl6v8381vwnqgiz8mkxbmzdwm4f"; fetchSubmodules = true; }
- { url = "https://github.com/lbl-srg/modelica-buildings.git"; rev = "v7.0.0"; sha256 = "04n04pp4zvyg8n8h7h79c3wyk7lmn940mh7qzs0lv76g1ybypnlz"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Chemical.git"; rev = "5645573fced862430b7b598b4d7ec1a39c7aa0fa"; sha256 = "1kh7kpmjfz55pb8553srlnrh8l00nw21xf5mjzh7nx9b1rndnmyg"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/DeployStructLib.git"; rev = "v1.0"; sha256 = "1k4zw9lnd0javw4zigxc15l58yf7xdz36b7808g65qxy89w6ksr2"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/DisHeatLib.git"; rev = "b11f53379c122870a52f2da9b1705d2c911cd21d"; sha256 = "1vm96a4z0b40r0nisxrrzyvan4yphjdkx4ad655phva2636xb5rr"; fetchSubmodules = true; }
- { url = "https://github.com/AHaumer/DriveControl.git"; rev = "b7233fd97a92867bb4ec2c3647c7f7e888398644"; sha256 = "0nyp1n8wrkjzfypsmjjzac0g9p4wbc1cxxr040fj20bqdg9l3h1b"; fetchSubmodules = true; }
- # A broken one. The revision is lost.
- # { url = "https://github.com/AHaumer/EMOTH.git"; rev = "fa890c8c2781f0c0b2f8efe955ed8a27875dd9ac"; sha256 = ""; fetchSubmodules = true; }
- { url = "https://github.com/christiankral/ElectroMechanicalDrives.git"; rev = "v2.2.0"; sha256 = "0012phmn1y9fgpph45lwbjk0yhm5czidf2z6khm8lddvk93wf31b"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ExternData.git"; rev = "v2.5.0"; sha256 = "19dsyq1mk5vl54fqaffzqafm5w94l011cy7pg16c7i933dbqnkki"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/ExternalMedia.git"; rev = "159518edd538b64e28cd70983a9cc47730323cc4"; sha256 = "0qjd5fk65bln3s1jhs0cqcv54c22m6x2akbmxj09y4x0lkd1kgqn"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ExternalMemoryLib.git"; rev = "6488d5815bda23c665123baa916789e283e16d2c"; sha256 = "06y1i5w690b3b9x23nzls8y67fl7yd7bn4xl5j0dmyi4qx33aqda"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/FMITest.git"; rev = "a67a276083f4010b249802ad8fc70dc30c09adfd"; sha256 = "0mg8jlvlwql2nsjiy7c3rdibv73bkfk149ac0450d5pc0hfn9mln"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/FailureModes.git"; rev = "v1.2.1"; sha256 = "1z8bwrld1rkydgssab5gnrd76frrbky8qxi1lvlaf2jidj6bzn1l"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/FaultTriggering.git"; rev = "v0.6.6"; sha256 = "0a08yyrbg4a49s0bgqgyds6pidx9xr47yspvl9bdak1mq34qibip"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/FeedDriveLibrary.git"; rev = "1.0.1"; sha256 = "15fi9dj6zgl0fr90cwxqjbpphj0dwrrmk74hf25j6zd85w2ycqdz"; fetchSubmodules = true; }
- { url = "https://github.com/DLR-SR/FractionalOrder.git"; rev = "99918820e346c362c3ad52d782c8215e5deeac4c"; sha256 = "1pycss6fqh86frfdbdfffjhaz09fz1558f9azgckhf8drx6ry1qs"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Greenhouses-Library.git"; rev = "89ae0e8097eb0751abce2013d304fa5f9c09b885"; sha256 = "1q77xj6aysqsn3d7kjmcq7dihbw18iqm35ifzdi75xgf3cgwla4f"; fetchSubmodules = true; }
- { url = "https://github.com/christiankral/HanserModelica.git"; rev = "v1.1.0"; sha256 = "0zwkrhg2y42m18p4z51izrickiv1vikgz0z7fpjia4dbppckav8i"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/HelmholtzMedia.git"; rev = "3b4a4bca94d388744b2d045344ea2f9b0b4d405b"; sha256 = "17fzpan89075vb5vbhw5ylgxcdsmj2vjnmmka7cgzh06izb69nvh"; fetchSubmodules = true; }
- { url = "https://github.com/ibpsa/modelica-ibpsa.git"; rev = "v3.0.0"; sha256 = "0xwgfndlw76zfmiiqadl85l9na9igsqlmfcawx526sdw2lhhgics"; fetchSubmodules = true; }
- { url = "https://github.com/open-ideas/IDEAS.git"; rev = "v2.1.0"; sha256 = "0xp0zg6ib5536d5vl361lsn5w5faqdf6djhcmfxns629wjima8rn"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/IndustrialControlSystems.git"; rev = "v1.1.0"; sha256 = "1nvgx94iy1pws0768anrl7ssjlzslb5mbp21j7xvf6wpqfmj0npc"; fetchSubmodules = true; }
- { url = "https://github.com/christiankral/KeyWordIO.git"; rev = "v0.9.0"; sha256 = "10kvj6zn2r6m3403ja8nkkxbfcchkz0pfk3g70ibr76zivxb5nim"; fetchSubmodules = true; }
- { url = "https://github.com/FishSim/LibRAS.git"; rev = "fca9de50a484a2213f3ca1b39e275c237c471688"; sha256 = "0w1c87sifq8klq0f2l70qxjrlvahyxy1cx9rln80rni4d427yc1k"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/LinearMPC.git"; rev = "v1.0"; sha256 = "1crj60i5f33l9pgip0xbv6ankcga7px0644cj7c2wnzn1fjmn2k8"; fetchSubmodules = true; }
- { url = "https://github.com/looms-polimi/MEV.git"; rev = "v1.0.1"; sha256 = "1a7ih9lc01wzaq8a8aznggpi4aqnczyzq49q5hc4fqvmfwl7l0j3"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ModPowerSystems.git"; rev = "df3afce27d5e935c4111f392275744a655abe216"; sha256 = "1b1fikm92lv6gj82imka3hxbjwv04i4h33y69yhcxdpqa6z6hm4z"; fetchSubmodules = true; }
- { url = "https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary.git"; rev = "614a148f61c1ab5d6788d8c11197803132ec7c2f"; sha256 = "0fg0pbahybx3srv5npk8pw49k23kaw2ns6c00f15iy93mvfrmfsk"; fetchSubmodules = true; }
- { url = "https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary.git"; rev = "34fe8cf3c7127ae09ca5f41e26b48fb6044e1e34"; sha256 = "0yz82k9dsp9d1jxqgxcm27fw1jz718km43qfginmgg0m9kfh2336"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Modelica-Arduino.git"; rev = "v0.1.0"; sha256 = "1n34dksqhrn1synv2mp2ifk4dxyhp15f5v1jb1b3dbw9n19951qb"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Modelica-GNU_ScientificLibrary.git"; rev = "9235ab28bdd7f0fe3e7abba48af53d73332858ec"; sha256 = "168g9gg12lfa863ifs41bnx6yd0yyjnal6986dgpm51dj5arw6id"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Modelica-MVEM.git"; rev = "v1.0.1"; sha256 = "1p68691dnl06lgwm4bl9g036brn4vl7m5x3gq4rxc291339frixk"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ModelicaADS.git"; rev = "v1.0.1"; sha256 = "0fhxrl07d7v3wa79d30psm1gxydc0p7s2akfirdx6dai0633skp9"; fetchSubmodules = true; }
- { url = "https://github.com/xogeny/ModelicaBook.git"; rev = "v0.6.0"; sha256 = "0yqbll6p738yvpi1x11cjngpz2glda07mljrkjlm23p7l53x63dc"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-compliance/compliance.git"; rev = "8a91e75d8a26acc4de30fc0e5d5e9db83c970bd6"; sha256 = "1cym1wlgsvfrryq8zqzzrgs4wam1l7pc20q07hk3d615nhq21lg6"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ModelicaDFR.git"; rev = "37a441934d05330cf3d13e9ec551954d27eca84c"; sha256 = "13rpcs8cl9x15vi655150zmhmg1iaxpzvxrl3rqif46zpl5dhlj2"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/Modelica_DeviceDrivers.git"; rev = "v1.8.2"; sha256 = "16c0p9zn0qrraz59ivinibmikdd251plm1vqngznzhksjwvz6bja"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/Modelica_LinearSystems2.git"; rev = "v2.3.5"; sha256 = "0rzicynqgayydxqynnairxk7ybg4alv1xnfz8cgkrpicl2g9bacg"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Modelica_Requirements.git"; rev = "a427b5cb7997e9036c577d219e6b8a5d0c28389a"; sha256 = "1ihx46kifnfi9kw1g8nmd9sarl766whbzdk6a44alczsya4gg45k"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/Modelica_Synchronous.git"; rev = "c8350276bfd945086962cf4150ba941b9c57ed13"; sha256 = "12ad7fpjy50ky3lvl65r9d5xvlzvw5yqdnbp4rsgl3qw7s3wrmja"; fetchSubmodules = true; }
- { url = "https://github.com/jwindahlModelon/MultiPhaseMixtureMedia.git"; rev = "0bda0c58af6384f8e0edf7aa7520afb369af3e38"; sha256 = "11bqm69504bh4h05dxlwdmjfxwls06mr49cz47kl8jmrygkfi4i2"; fetchSubmodules = true; }
- { url = "https://github.com/OpenIPSL/OpenIPSL.git"; rev = "v1.5.0"; sha256 = "09xrcz0rdxdy220ki5zyl7920y0a4lg24p0aibna4ad15vszhhwj"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Optimisers.git"; rev = "e33c69edaad6dad8029167b0ca00533964a6fe37"; sha256 = "0hcxsrr2n4fzaxdjvgvqayz38kpfk86cclvg5pzcfmjc5bznb8bs"; fetchSubmodules = true; }
- { url = "https://github.com/lochel/PNlib.git"; rev = "ab9b6b8527c0c78140365e7b105ae469d4954a64"; sha256 = "0y7bfbnvzv9bnz4v8wvmy42dji3cqpy5b2fmd2jj0rhlzs1infzh"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/PVSystems.git"; rev = "v0.6.2"; sha256 = "0vcgvdaqfbn46lpzk0kvsif3d55wf8yzhkbdpf5zv04kv7zw25w9"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/PhotoVoltaics.git"; rev = "v1.6.0"; sha256 = "0zqx77z217iln3vfxn2v3c2jl0jz5kgcd96ylvimjnwr30mxr09n"; fetchSubmodules = true; }
- { url = "https://github.com/MarekMatejak/Physiolibrary.git"; rev = "v2.3.1"; sha256 = "0nxfw63m278gaff18zz29n2s1vk4kwdbv2qvbjmcq86fl1i5b3bg"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Physiomodel.git"; rev = "v1.0.0"; sha256 = "1sdhv5qgjqv3zdq57pkkrh04ainwv9n5zqd8mb9a3ybjmwdjf6f9"; fetchSubmodules = true; }
- { url = "https://github.com/dzimmer/PlanarMechanics.git"; rev = "55224a9e76de8aa7f708236bd4d7dee624ecba50"; sha256 = "0hf7vi44adss86x5ahk5if7bdjgw773d8mb3d8ianq12g8azycyd"; fetchSubmodules = true; }
- { url = "https://github.com/PowerGrids/PowerGrids.git"; rev = "v1.0.0"; sha256 = "06bx8mqvmizhfwg99djdfgh2mblc4wzmg0zq4ilrp586jwfninmz"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/PowerSystems.git"; rev = "v1.0.0"; sha256 = "1xwhwich7gi6vl33zl2r78xdjklchgkjcnvww6390j20l1wjznkn"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/PowerSystems.git"; rev = "7369976265a9d7b62097340aba5e463c62cc5061"; sha256 = "1f0h148v2g057l6ixf646d8ymsx1jzqn14xlram8h62la2k6nmvw"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/RealTimeCoordinationLibrary.git"; rev = "v1.0.2"; sha256 = "0ch4la04hm059ii5wzph9gsbvqhnfqrvvpqi57qn27bm10c4la0m"; fetchSubmodules = true; }
- { url = "https://github.com/casella/ScalableTestSuite.git"; rev = "v1.11.5"; sha256 = "0bhj1q9b8d29nrbr253zszy1w1yvyizvyr3law1pqjj6mhbqmg4i"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Servomechanisms.git"; rev = "3bf82ba5d3f31b4a0ae05f99ae690037358e153e"; sha256 = "1swka7d58wkg5pqv59lqgfi7gv6rg5vra4j6r76pn9czx9ddal8w"; fetchSubmodules = true; }
- { url = "https://github.com/SolarTherm/SolarTherm.git"; rev = "d80fc335d1fa5d1628c45c2e73204bcb8a614b21"; sha256 = "18d8cqlh0ic2yfcxzkz0ar9z19486z9x4sc7c9mpggxib28p39aa"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/Soltermica.git"; rev = "9f7224bd89335f95dffe1ccdaa094df5a3279fdf"; sha256 = "1bif3cnwjas6x7b8ahwkm7dbrqrfdqwwa26zmdc6zrpfncl3kqd0"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/SystemDynamics.git"; rev = "2f6bd9382c5aac2aff9148cd9113a418767734b6"; sha256 = "0ii2mj6ngwjir3gzyad8wsj86pvd6wzal91nz2y7gzwj1djchb3x"; fetchSubmodules = true; }
- { url = "https://github.com/thom-marx/ThermalSeparation.git"; rev = "ffa0495ba829ecab105be4bfb3b7652625ec9c03"; sha256 = "1czm97bcrpp2jv0a0kd31a929wqlrlzdhdxvyy4w499dn20jzv1l"; fetchSubmodules = true; }
- { url = "https://github.com/casella/ThermoPower.git"; rev = "82d21eba0d330005899dd50a6a0ceb7d09c4caeb"; sha256 = "0n83b40hjisy7lpnbz692947d2q3hw5hk4rak7fg0w5dbm4i719p"; fetchSubmodules = true; }
- { url = "https://openmodelica.org/git/ThermoSysPro.git"; rev = "db81ae1b5a6a85f6c6c7693244cafa6087e18ff5"; sha256 = "12fsf0xxxc1ja6vmm9ff85f8j5sg1lb7w4g57s2w3fkf4d3a7d0c"; fetchSubmodules = true; }
- { url = "https://openmodelica.org/git/ThermoSysPro.git"; rev = "5cef9acb4dedf8af6f4638a4448f08a544ebd30b"; sha256 = "0ihnz1s4rs42yis9zym9nw29ia2lqz2yx2wblc50p6f221w7q78s"; fetchSubmodules = true; }
- { url = "https://github.com/lenaRB/VVDRlib.git"; rev = "eae4981674642eddffc7f2aa3690320fcaddee0e"; sha256 = "0qxxk2xlas5mqyc1h8ndic208qj1sm5mr5y8664kv3py7i8jdqi4"; fetchSubmodules = true; }
- { url = "https://github.com/modelica/VehicleInterfaces.git"; rev = "v1.2.5"; sha256 = "044k17cpc88wprrvw03p6crm6dy6x9a6xj5104d5nln71lqz5sdq"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/WasteWater.git"; rev = "v2.1.0"; sha256 = "1dxr4m9j7b5266daj4klbrhvnkqr73sximdw9bk9v5qf0s28li99"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/WindPowerPlants.git"; rev = "v1.2.0"; sha256 = "1lyrqwsb6sm1wc7vlj72zk5cpjhhzh27fviiqayddqy2b903xish"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/ipsl.git"; rev = "v1.1.1"; sha256 = "1w2iah8c5d8n01wmxydjk0rrcxh88g8yjy2zmv403azcccq7byzp"; fetchSubmodules = true; }
- { url = "https://github.com/modelica-3rdparty/netCDF-DataReader.git"; rev = "v2.5.0"; sha256 = "1pd5xf5bgz010lryv8bj6lvlfqn9p184csiffwj8icx7rycnlcqb"; fetchSubmodules = true; }
- { url = "https://github.com/joewa/open-bldc-modelica.git"; rev = "58a83b5b36f267613de4676c95163489b1ddc2e7"; sha256 = "0wf6dn64d2psv9b3xg5227vzpk109r3dqzi4m2wwhrilaxs3v004"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/AdvancedNoise.git"; rev = "5ce57acd279dadd0d25b76a6b02d3f9e9d061246"; sha256 = "07jjbj0y6bak269md3xniqb5lgc33m92ar5qixqxj5yxdjaahfs2"; fetchSubmodules = true; }
+{ url = "https://github.com/RWTH-EBC/AixLib.git"; rev = "65e49ddf5c935846888a61aa303e52c909619079"; sha256 = "18xn8j3x3j4x9bpjgqnq0b6p3yzzsg5n62fv1ldqbbjcmi0vimd5"; fetchSubmodules = true; }
+{ url = "https://github.com/RWTH-EBC/AixLib.git"; rev = "v0.4.0"; sha256 = "0dw34mjq29n55xh51g1c9a9d0d8gbpn16gj309dfxn4v2hbnfvzx"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/AlgebraTestSuite.git"; rev = "b937e1a7f447138c59abec9b2092f84f16bf02e8"; sha256 = "0406inasx61dk7vcnziiyhxkna7g61a5hn0znnbxj817hz6q11zn"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ApproxSpline.git"; rev = "28420f5c1a88c9cd069defbd8c05e4a78a090675"; sha256 = "07gpyi2brj5zpvrlsnflqjnhbrgxvpqbdshp8lp4lh9mnj5jv95d"; fetchSubmodules = true; }
+{ url = "https://github.com/OpenModelica/BioChem.git"; rev = "v1.0.2"; sha256 = "037bvj2lqrslg8k5r0rjgdzccslj9bj25b55k4g440vabm5p05qm"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/BondGraph.git"; rev = "20c23e60d12989bd4668ccac47659d82d39d29cc"; sha256 = "0yrkk708v4bvf423xb4zgpmnaj8qhq5primdg758ayddgli23wa9"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/BrineProp.git"; rev = "834fb3519ca8f89efe268582d39d00a7c3991150"; sha256 = "1iwqh4kr36wgxc0gci63gdgbqln2sap1w4bkydk1vkss2s302lg4"; fetchSubmodules = true; }
+{ url = "https://github.com/EDF-TREE/BuildSysPro.git"; rev = "v3.3.0"; sha256 = "1cvcany3q9p1xndarxa2d8mmqxdnqk22476q8l61nayz5qy25x61"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/BuildingControlLib.git"; rev = "v1.0.0"; sha256 = "0ckdxway0m755mbrl94k4458sijzgknlzsrf7xs5bjymxchm8r2m"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/BuildingSystems.git"; rev = "c3070d48015ee75c1577f349cb388a498bef7270"; sha256 = "0r876wm6f1xx4cli1lqlylpl3zgaddmy06hcafbnzry9j38vbz4y"; fetchSubmodules = true; }
+{ url = "https://github.com/lbl-srg/modelica-buildings.git"; rev = "v6.0.0"; sha256 = "0rnnk1clji0myzr7adggki6knbl6v8381vwnqgiz8mkxbmzdwm4f"; fetchSubmodules = true; }
+{ url = "https://github.com/lbl-srg/modelica-buildings.git"; rev = "v7.0.0"; sha256 = "04n04pp4zvyg8n8h7h79c3wyk7lmn940mh7qzs0lv76g1ybypnlz"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Chemical.git"; rev = "5645573fced862430b7b598b4d7ec1a39c7aa0fa"; sha256 = "1kh7kpmjfz55pb8553srlnrh8l00nw21xf5mjzh7nx9b1rndnmyg"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/DeployStructLib.git"; rev = "v1.0"; sha256 = "1k4zw9lnd0javw4zigxc15l58yf7xdz36b7808g65qxy89w6ksr2"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/DisHeatLib.git"; rev = "b11f53379c122870a52f2da9b1705d2c911cd21d"; sha256 = "1vm96a4z0b40r0nisxrrzyvan4yphjdkx4ad655phva2636xb5rr"; fetchSubmodules = true; }
+{ url = "https://github.com/AHaumer/DriveControl.git"; rev = "b7233fd97a92867bb4ec2c3647c7f7e888398644"; sha256 = "0nyp1n8wrkjzfypsmjjzac0g9p4wbc1cxxr040fj20bqdg9l3h1b"; fetchSubmodules = true; }
+{ url = "https://github.com/christiankral/ElectroMechanicalDrives.git"; rev = "v2.2.0"; sha256 = "0012phmn1y9fgpph45lwbjk0yhm5czidf2z6khm8lddvk93wf31b"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ExternData.git"; rev = "v2.5.0"; sha256 = "19dsyq1mk5vl54fqaffzqafm5w94l011cy7pg16c7i933dbqnkki"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/ExternalMedia.git"; rev = "6138312c96142ff3c01190147e6277991bfa2fca"; sha256 = "1d9g2hbdvgz13j7kdi1kglkkllj9f00x3dwdp5piyypvs464jsn5"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ExternalMemoryLib.git"; rev = "6488d5815bda23c665123baa916789e283e16d2c"; sha256 = "06y1i5w690b3b9x23nzls8y67fl7yd7bn4xl5j0dmyi4qx33aqda"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/FMITest.git"; rev = "a67a276083f4010b249802ad8fc70dc30c09adfd"; sha256 = "0mg8jlvlwql2nsjiy7c3rdibv73bkfk149ac0450d5pc0hfn9mln"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/FailureModes.git"; rev = "v1.2.1"; sha256 = "1z8bwrld1rkydgssab5gnrd76frrbky8qxi1lvlaf2jidj6bzn1l"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/FaultTriggering.git"; rev = "v0.6.6"; sha256 = "0a08yyrbg4a49s0bgqgyds6pidx9xr47yspvl9bdak1mq34qibip"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/FeedDriveLibrary.git"; rev = "1.0.1"; sha256 = "15fi9dj6zgl0fr90cwxqjbpphj0dwrrmk74hf25j6zd85w2ycqdz"; fetchSubmodules = true; }
+{ url = "https://github.com/DLR-SR/FractionalOrder.git"; rev = "99918820e346c362c3ad52d782c8215e5deeac4c"; sha256 = "1pycss6fqh86frfdbdfffjhaz09fz1558f9azgckhf8drx6ry1qs"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Greenhouses-Library.git"; rev = "89ae0e8097eb0751abce2013d304fa5f9c09b885"; sha256 = "1q77xj6aysqsn3d7kjmcq7dihbw18iqm35ifzdi75xgf3cgwla4f"; fetchSubmodules = true; }
+{ url = "https://github.com/christiankral/HanserModelica.git"; rev = "v1.1.0"; sha256 = "0zwkrhg2y42m18p4z51izrickiv1vikgz0z7fpjia4dbppckav8i"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/HelmholtzMedia.git"; rev = "3b4a4bca94d388744b2d045344ea2f9b0b4d405b"; sha256 = "17fzpan89075vb5vbhw5ylgxcdsmj2vjnmmka7cgzh06izb69nvh"; fetchSubmodules = true; }
+{ url = "https://github.com/ibpsa/modelica-ibpsa.git"; rev = "v3.0.0"; sha256 = "0xwgfndlw76zfmiiqadl85l9na9igsqlmfcawx526sdw2lhhgics"; fetchSubmodules = true; }
+{ url = "https://github.com/open-ideas/IDEAS.git"; rev = "v2.1.0"; sha256 = "0xp0zg6ib5536d5vl361lsn5w5faqdf6djhcmfxns629wjima8rn"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/IndustrialControlSystems.git"; rev = "v1.1.0"; sha256 = "1nvgx94iy1pws0768anrl7ssjlzslb5mbp21j7xvf6wpqfmj0npc"; fetchSubmodules = true; }
+{ url = "https://github.com/christiankral/KeyWordIO.git"; rev = "v0.9.0"; sha256 = "10kvj6zn2r6m3403ja8nkkxbfcchkz0pfk3g70ibr76zivxb5nim"; fetchSubmodules = true; }
+{ url = "https://github.com/FishSim/LibRAS.git"; rev = "fca9de50a484a2213f3ca1b39e275c237c471688"; sha256 = "0w1c87sifq8klq0f2l70qxjrlvahyxy1cx9rln80rni4d427yc1k"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/LinearMPC.git"; rev = "v1.0"; sha256 = "1crj60i5f33l9pgip0xbv6ankcga7px0644cj7c2wnzn1fjmn2k8"; fetchSubmodules = true; }
+{ url = "https://github.com/looms-polimi/MEV.git"; rev = "v1.0.1"; sha256 = "1a7ih9lc01wzaq8a8aznggpi4aqnczyzq49q5hc4fqvmfwl7l0j3"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ModPowerSystems.git"; rev = "df3afce27d5e935c4111f392275744a655abe216"; sha256 = "1b1fikm92lv6gj82imka3hxbjwv04i4h33y69yhcxdpqa6z6hm4z"; fetchSubmodules = true; }
+{ url = "https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary.git"; rev = "4a91d52248b0f17415bba1d58881fc730bd94215"; sha256 = "19caxz6hvlrsls3b2387a24zwwnykbb138jpb42gwpy8jlh93yzi"; fetchSubmodules = true; }
+{ url = "https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary.git"; rev = "cab27240a4a3ed4ea137226f056bbc0d79543f7a"; sha256 = "06y911i2hs7hg4ykhb8wngvxhwnaww8rsakwa7ssd047a7glzsb0"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Modelica-Arduino.git"; rev = "v0.1.0"; sha256 = "1n34dksqhrn1synv2mp2ifk4dxyhp15f5v1jb1b3dbw9n19951qb"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Modelica-GNU_ScientificLibrary.git"; rev = "9235ab28bdd7f0fe3e7abba48af53d73332858ec"; sha256 = "168g9gg12lfa863ifs41bnx6yd0yyjnal6986dgpm51dj5arw6id"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Modelica-MVEM.git"; rev = "v1.0.1"; sha256 = "1p68691dnl06lgwm4bl9g036brn4vl7m5x3gq4rxc291339frixk"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ModelicaADS.git"; rev = "v1.0.1"; sha256 = "0fhxrl07d7v3wa79d30psm1gxydc0p7s2akfirdx6dai0633skp9"; fetchSubmodules = true; }
+{ url = "https://github.com/xogeny/ModelicaBook.git"; rev = "v0.6.0"; sha256 = "0yqbll6p738yvpi1x11cjngpz2glda07mljrkjlm23p7l53x63dc"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-compliance/compliance.git"; rev = "8a91e75d8a26acc4de30fc0e5d5e9db83c970bd6"; sha256 = "1cym1wlgsvfrryq8zqzzrgs4wam1l7pc20q07hk3d615nhq21lg6"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ModelicaDFR.git"; rev = "37a441934d05330cf3d13e9ec551954d27eca84c"; sha256 = "13rpcs8cl9x15vi655150zmhmg1iaxpzvxrl3rqif46zpl5dhlj2"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/Modelica_DeviceDrivers.git"; rev = "v1.8.2"; sha256 = "16c0p9zn0qrraz59ivinibmikdd251plm1vqngznzhksjwvz6bja"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/Modelica_LinearSystems2.git"; rev = "v2.3.5"; sha256 = "0rzicynqgayydxqynnairxk7ybg4alv1xnfz8cgkrpicl2g9bacg"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Modelica_Requirements.git"; rev = "a427b5cb7997e9036c577d219e6b8a5d0c28389a"; sha256 = "1ihx46kifnfi9kw1g8nmd9sarl766whbzdk6a44alczsya4gg45k"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/Modelica_Synchronous.git"; rev = "c8350276bfd945086962cf4150ba941b9c57ed13"; sha256 = "12ad7fpjy50ky3lvl65r9d5xvlzvw5yqdnbp4rsgl3qw7s3wrmja"; fetchSubmodules = true; }
+{ url = "https://github.com/jwindahlModelon/MultiPhaseMixtureMedia.git"; rev = "0bda0c58af6384f8e0edf7aa7520afb369af3e38"; sha256 = "11bqm69504bh4h05dxlwdmjfxwls06mr49cz47kl8jmrygkfi4i2"; fetchSubmodules = true; }
+{ url = "https://github.com/OpenIPSL/OpenIPSL.git"; rev = "v1.5.0"; sha256 = "09xrcz0rdxdy220ki5zyl7920y0a4lg24p0aibna4ad15vszhhwj"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Optimisers.git"; rev = "e33c69edaad6dad8029167b0ca00533964a6fe37"; sha256 = "0hcxsrr2n4fzaxdjvgvqayz38kpfk86cclvg5pzcfmjc5bznb8bs"; fetchSubmodules = true; }
+{ url = "https://github.com/lochel/PNlib.git"; rev = "059545d48dd9ceeccfa3b4e47689ec8dd334dcd8"; sha256 = "1a0hxkgsi4klw9c8zav1dy2p1c85ald29gx82hfacwv55xl9f127"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/PVSystems.git"; rev = "v0.6.2"; sha256 = "0vcgvdaqfbn46lpzk0kvsif3d55wf8yzhkbdpf5zv04kv7zw25w9"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/PhotoVoltaics.git"; rev = "v1.6.0"; sha256 = "0zqx77z217iln3vfxn2v3c2jl0jz5kgcd96ylvimjnwr30mxr09n"; fetchSubmodules = true; }
+{ url = "https://github.com/MarekMatejak/Physiolibrary.git"; rev = "v2.3.1"; sha256 = "0nxfw63m278gaff18zz29n2s1vk4kwdbv2qvbjmcq86fl1i5b3bg"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Physiomodel.git"; rev = "v1.0.0"; sha256 = "1sdhv5qgjqv3zdq57pkkrh04ainwv9n5zqd8mb9a3ybjmwdjf6f9"; fetchSubmodules = true; }
+{ url = "https://github.com/dzimmer/PlanarMechanics.git"; rev = "55224a9e76de8aa7f708236bd4d7dee624ecba50"; sha256 = "0hf7vi44adss86x5ahk5if7bdjgw773d8mb3d8ianq12g8azycyd"; fetchSubmodules = true; }
+{ url = "https://github.com/PowerGrids/PowerGrids.git"; rev = "v1.0.0"; sha256 = "06bx8mqvmizhfwg99djdfgh2mblc4wzmg0zq4ilrp586jwfninmz"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/PowerSystems.git"; rev = "v1.0.0"; sha256 = "1xwhwich7gi6vl33zl2r78xdjklchgkjcnvww6390j20l1wjznkn"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/PowerSystems.git"; rev = "f0721333f4875143565147a7d043bee1c300873b"; sha256 = "0gbvx0gzf3akb0w7yvdxfq2y4ps91cy5b93iwnvnw7652x716813"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/RealTimeCoordinationLibrary.git"; rev = "v1.0.2"; sha256 = "0ch4la04hm059ii5wzph9gsbvqhnfqrvvpqi57qn27bm10c4la0m"; fetchSubmodules = true; }
+{ url = "https://github.com/casella/ScalableTestSuite.git"; rev = "v1.11.5"; sha256 = "0bhj1q9b8d29nrbr253zszy1w1yvyizvyr3law1pqjj6mhbqmg4i"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Servomechanisms.git"; rev = "3bf82ba5d3f31b4a0ae05f99ae690037358e153e"; sha256 = "1swka7d58wkg5pqv59lqgfi7gv6rg5vra4j6r76pn9czx9ddal8w"; fetchSubmodules = true; }
+{ url = "https://github.com/SolarTherm/SolarTherm.git"; rev = "203fb5af3b95c731c7fcbe2833d51fd420e80796"; sha256 = "1bh4y4igzd0k59xm8j14p52gnlbwkiwwy6bhhyarpr361yrchn33"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/Soltermica.git"; rev = "9f7224bd89335f95dffe1ccdaa094df5a3279fdf"; sha256 = "1bif3cnwjas6x7b8ahwkm7dbrqrfdqwwa26zmdc6zrpfncl3kqd0"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/SystemDynamics.git"; rev = "2f6bd9382c5aac2aff9148cd9113a418767734b6"; sha256 = "0ii2mj6ngwjir3gzyad8wsj86pvd6wzal91nz2y7gzwj1djchb3x"; fetchSubmodules = true; }
+{ url = "https://github.com/thom-marx/ThermalSeparation.git"; rev = "ffa0495ba829ecab105be4bfb3b7652625ec9c03"; sha256 = "1czm97bcrpp2jv0a0kd31a929wqlrlzdhdxvyy4w499dn20jzv1l"; fetchSubmodules = true; }
+{ url = "https://github.com/casella/ThermoPower.git"; rev = "650be2c8cbd5abc3535e92b865e509073afc8aeb"; sha256 = "08ijrx8xw43dadz5s3kiwa17ax9faq2wyq9gm0vlz9ddbkj0hcaq"; fetchSubmodules = true; }
+{ url = "https://openmodelica.org/git/ThermoSysPro.git"; rev = "db81ae1b5a6a85f6c6c7693244cafa6087e18ff5"; sha256 = "12fsf0xxxc1ja6vmm9ff85f8j5sg1lb7w4g57s2w3fkf4d3a7d0c"; fetchSubmodules = true; }
+{ url = "https://openmodelica.org/git/ThermoSysPro.git"; rev = "5cef9acb4dedf8af6f4638a4448f08a544ebd30b"; sha256 = "0ihnz1s4rs42yis9zym9nw29ia2lqz2yx2wblc50p6f221w7q78s"; fetchSubmodules = true; }
+{ url = "https://github.com/lenaRB/VVDRlib.git"; rev = "eae4981674642eddffc7f2aa3690320fcaddee0e"; sha256 = "0qxxk2xlas5mqyc1h8ndic208qj1sm5mr5y8664kv3py7i8jdqi4"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica/VehicleInterfaces.git"; rev = "v1.2.5"; sha256 = "044k17cpc88wprrvw03p6crm6dy6x9a6xj5104d5nln71lqz5sdq"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/WasteWater.git"; rev = "v2.1.0"; sha256 = "1dxr4m9j7b5266daj4klbrhvnkqr73sximdw9bk9v5qf0s28li99"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/WindPowerPlants.git"; rev = "v1.2.0"; sha256 = "1lyrqwsb6sm1wc7vlj72zk5cpjhhzh27fviiqayddqy2b903xish"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/ipsl.git"; rev = "v1.1.1"; sha256 = "1w2iah8c5d8n01wmxydjk0rrcxh88g8yjy2zmv403azcccq7byzp"; fetchSubmodules = true; }
+{ url = "https://github.com/modelica-3rdparty/netCDF-DataReader.git"; rev = "v2.5.0"; sha256 = "1pd5xf5bgz010lryv8bj6lvlfqn9p184csiffwj8icx7rycnlcqb"; fetchSubmodules = true; }
+{ url = "https://github.com/joewa/open-bldc-modelica.git"; rev = "58a83b5b36f267613de4676c95163489b1ddc2e7"; sha256 = "0wf6dn64d2psv9b3xg5227vzpk109r3dqzi4m2wwhrilaxs3v004"; fetchSubmodules = true; }
]
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omparser/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omparser/default.nix
index fcf5acd29e..cbf8f2255e 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omparser/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omparser/default.nix
@@ -22,7 +22,7 @@ mkOpenModelicaDerivation rec {
suite";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omplot/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omplot/default.nix
index 7edc4b6efb..51ab89407f 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omplot/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omplot/default.nix
@@ -28,7 +28,7 @@ mkOpenModelicaDerivation rec {
description = "Plotting tool for OpenModelica-generated results files";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omshell/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omshell/default.nix
index 2f8c5203c0..3c39d62f92 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omshell/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omshell/default.nix
@@ -34,7 +34,7 @@ mkOpenModelicaDerivation rec {
description = "Interactive OpenModelica session shell";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix
index 448cdee6c2..d91d427a07 100644
--- a/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix
@@ -20,7 +20,7 @@ mkOpenModelicaDerivation rec {
description = "The OpenModelica FMI & SSP-based co-simulation environment";
homepage = "https://openmodelica.org";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ smironov ];
+ maintainers = with maintainers; [ balodja smironov ];
platforms = platforms.linux;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/terminal-emulators/terminator/default.nix b/third_party/nixpkgs/pkgs/applications/terminal-emulators/terminator/default.nix
index e922a34423..67c7196e24 100644
--- a/third_party/nixpkgs/pkgs/applications/terminal-emulators/terminator/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/terminal-emulators/terminator/default.nix
@@ -56,6 +56,12 @@ python3.pkgs.buildPythonApplication rec {
doCheck = false;
+ dontWrapGApps = true;
+
+ preFixup = ''
+ makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
+ '';
+
meta = with lib; {
description = "Terminal emulator with support for tiling and tabs";
longDescription = ''
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/fast-export/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/fast-export/default.nix
index 565fe180ba..b3613c8ff4 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/fast-export/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/fast-export/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "fast-export";
- version = "200213";
+ version = "210917";
src = fetchFromGitHub {
owner = "frej";
repo = pname;
rev = "v${version}";
- sha256 = "0hzyh66rlawxip4n2pvz7pbs0cq82clqv1d6c7hf60v1drjxw287";
+ sha256 = "0xg8r9rbqv7mriraqxdks2mgj7j4c9gap3kc05y1kxi3nniywyd3";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-branchless/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
index 0afcd8400c..25eb31936d 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
@@ -1,9 +1,11 @@
-{ lib, fetchFromGitHub
-
-, coreutils
+{ lib
+, fetchFromGitHub
+, fetchpatch
, git
, libiconv
, ncurses
+, openssl
+, pkg-config
, rustPlatform
, sqlite
, stdenv
@@ -13,45 +15,38 @@
rustPlatform.buildRustPackage rec {
pname = "git-branchless";
- version = "0.3.2";
+ version = "0.3.6-nixos.0";
src = fetchFromGitHub {
owner = "arxanas";
repo = "git-branchless";
rev = "v${version}";
- sha256 = "0pfiyb23ah1h6risrhjr8ky7b1k1f3yfc3z70s92q3czdlrk6k07";
+ sha256 = "sha256-Sq+43w7xgrCe2w+9A/gfe/34+K2IgZVholtD+WF59Qo=";
};
- cargoSha256 = "0gplx80xhpz8kwry7l4nv4rlj9z02jg0sgb6zy1y3vd9s2j5wals";
+ cargoSha256 = "sha256-tCpvIqGMklOUJ/+d8poq4uz2EyZTkBmtlkA/BUIVPxs=";
- # Remove path hardcodes patching if they get fixed upstream, see:
- # https://github.com/arxanas/git-branchless/issues/26
- postPatch = ''
- # Inline test hardcodes `echo` location.
- substituteInPlace ./src/commands/wrap.rs --replace '/bin/echo' '${coreutils}/bin/echo'
-
- # Tests in general hardcode `git` location.
- substituteInPlace ./src/testing.rs --replace '/usr/bin/git' '${git}/bin/git'
- '';
+ nativeBuildInputs = [ pkg-config ];
buildInputs = [
ncurses
+ openssl
sqlite
- ] ++ lib.optionals (stdenv.isDarwin) [
+ ] ++ lib.optionals stdenv.isDarwin [
Security
SystemConfiguration
libiconv
];
preCheck = ''
- # Tests require path to git.
export PATH_TO_GIT=${git}/bin/git
+ export GIT_EXEC_PATH=$(${git}/bin/git --exec-path)
'';
meta = with lib; {
description = "A suite of tools to help you visualize, navigate, manipulate, and repair your commit history";
homepage = "https://github.com/arxanas/git-branchless";
- license = licenses.asl20;
- maintainers = with maintainers; [ msfjarvis nh2 ];
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ msfjarvis nh2 hmenke ];
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
index f0ff57b2cb..61061dad7c 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
@@ -5,13 +5,13 @@ let
in buildPythonApplication rec {
pname = "git-cola";
- version = "3.10.1";
+ version = "3.11.0";
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
- sha256 = "120hds7v29v70qxz20ppxf2glmgbah16v7jyy9i6hb6cfqp68vr8";
+ sha256 = "1s58wlpnndypx1q0m9fx8jmcd6hzqvrwdaxxrk7gn5nf423wq4xv";
};
buildInputs = [ git gettext ];
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/glitter/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/glitter/default.nix
index 484491bcf7..d256e212ec 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/glitter/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/glitter/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "glitter";
- version = "1.4.4";
+ version = "1.4.10";
src = fetchFromGitHub {
owner = "milo123459";
repo = pname;
rev = "v${version}";
- sha256 = "1hj1md4h4m1g7cx41sjihlr8xq0zhkikci4cp2gbldqcq5x8iws4";
+ sha256 = "sha256-5yv0RZfGLS/cxOxettHQHSPldcq+xa+TNj6dDIAmzOM=";
};
- cargoSha256 = "sha256-2QgL8iH0FNlUR/863YML3PLad8lRkYjfSmbl49LTfWw=";
+ cargoSha256 = "sha256-xG7aic7NCcltz9YmQ4V40/h3OR8Vt5IgApp4yoDbPuc=";
# tests require it to be in a git repository
preCheck = ''
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/data.json b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/data.json
index ff1689f28f..9f7323f3bf 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/data.json
+++ b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/data.json
@@ -1,6 +1,7 @@
{
"version": "14.3.3",
"repo_hash": "1sh8lf6arqljzc0hmajl2r2j38ahk9hl6kikg9inw72xycrll7dk",
+ "yarn_hash": "0b6brkxg93gv4gjp1f7qlx7v7q7mb8z9vikcz98igdnhm46nl4dn",
"owner": "gitlab-org",
"repo": "gitlab",
"rev": "v14.3.3-ee",
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/default.nix
index 88c92df71e..7e53e4ff15 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, fetchpatch, fetchFromGitLab, bundlerEnv
, ruby, tzdata, git, nettools, nixosTests, nodejs, openssl
, gitlabEnterprise ? false, callPackage, yarn
-, fixup_yarn_lock, replace, file, cacert
+, fixup_yarn_lock, replace, file, cacert, fetchYarnDeps
}:
let
@@ -45,7 +45,10 @@ let
ignoreCollisions = true;
};
- yarnOfflineCache = (callPackage ./yarnPkgs.nix {}).offline_cache;
+ yarnOfflineCache = fetchYarnDeps {
+ yarnLock = src + "/yarn.lock";
+ sha256 = data.yarn_hash;
+ };
assets = stdenv.mkDerivation {
pname = "gitlab-assets";
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/update.py b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/update.py
index b644f59f78..c8b4efc247 100755
--- a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/update.py
+++ b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/update.py
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
-#! nix-shell -i python3 -p bundix bundler nix-update nix nix-universal-prefetch python3 python3Packages.requests python3Packages.click python3Packages.click-log yarn2nix
+#! nix-shell -I nixpkgs=../../../.. -i python3 -p bundix bundler nix-update nix nix-universal-prefetch python3 python3Packages.requests python3Packages.click python3Packages.click-log prefetch-yarn-deps
import click
import click_log
@@ -9,6 +9,7 @@ import logging
import subprocess
import json
import pathlib
+import tempfile
from distutils.version import LooseVersion
from typing import Iterable
@@ -42,6 +43,12 @@ class GitLabRepo:
def get_git_hash(self, rev: str):
return subprocess.check_output(['nix-universal-prefetch', 'fetchFromGitLab', '--owner', self.owner, '--repo', self.repo, '--rev', rev]).decode('utf-8').strip()
+ def get_yarn_hash(self, rev: str):
+ with tempfile.TemporaryDirectory() as tmp_dir:
+ with open(tmp_dir + '/yarn.lock', 'w') as f:
+ f.write(self.get_file('yarn.lock', rev))
+ return subprocess.check_output(['prefetch-yarn-deps', tmp_dir + '/yarn.lock']).decode('utf-8').strip()
+
@staticmethod
def rev2version(tag: str) -> str:
"""
@@ -74,6 +81,7 @@ class GitLabRepo:
return dict(version=self.rev2version(rev),
repo_hash=self.get_git_hash(rev),
+ yarn_hash=self.get_yarn_hash(rev),
owner=self.owner,
repo=self.repo,
rev=rev,
@@ -142,26 +150,6 @@ def update_rubyenv():
subprocess.check_output(['bundix'], cwd=rubyenv_dir)
-@cli.command('update-yarnpkgs')
-def update_yarnpkgs():
- """Update yarnPkgs"""
-
- repo = GitLabRepo()
- yarnpkgs_dir = pathlib.Path(__file__).parent
-
- # load rev from data.json
- data = _get_data_json()
- rev = data['rev']
-
- with open(yarnpkgs_dir / 'yarn.lock', 'w') as f:
- f.write(repo.get_file('yarn.lock', rev))
-
- with open(yarnpkgs_dir / 'yarnPkgs.nix', 'w') as f:
- subprocess.run(['yarn2nix'], cwd=yarnpkgs_dir, check=True, stdout=f)
-
- os.unlink(yarnpkgs_dir / 'yarn.lock')
-
-
@cli.command('update-gitaly')
def update_gitaly():
"""Update gitaly"""
@@ -203,7 +191,6 @@ def update_all(ctx, rev: str):
"""Update all gitlab components to the latest stable release"""
ctx.invoke(update_data, rev=rev)
ctx.invoke(update_rubyenv)
- ctx.invoke(update_yarnpkgs)
ctx.invoke(update_gitaly)
ctx.invoke(update_gitlab_shell)
ctx.invoke(update_gitlab_workhorse)
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/yarnPkgs.nix b/third_party/nixpkgs/pkgs/applications/version-management/gitlab/yarnPkgs.nix
deleted file mode 100644
index adea741f12..0000000000
--- a/third_party/nixpkgs/pkgs/applications/version-management/gitlab/yarnPkgs.nix
+++ /dev/null
@@ -1,13765 +0,0 @@
-{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec {
- offline_cache = linkFarm "offline" packages;
- packages = [
- {
- name = "_babel_code_frame___code_frame_7.12.11.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.12.11.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz";
- sha1 = "f4ad435aa263db935b8f10f2c552d23fb716a63f";
- };
- }
- {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz";
- sha1 = "23b08d740e83f49c5e59945fbf1b43e80bbf4edb";
- };
- }
- {
- name = "_babel_compat_data___compat_data_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_compat_data___compat_data_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz";
- sha1 = "2dbaf8b85334796cafbb0f5793a90a2fc010b176";
- };
- }
- {
- name = "_babel_core___core_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_core___core_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/core/-/core-7.15.0.tgz";
- sha1 = "749e57c68778b73ad8082775561f67f5196aafa8";
- };
- }
- {
- name = "_babel_generator___generator_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_generator___generator_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz";
- sha1 = "a7d0c172e0d814974bad5aa77ace543b97917f15";
- };
- }
- {
- name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz";
- sha1 = "7bf478ec3b71726d56a8ca5775b046fc29879e61";
- };
- }
- {
- name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz";
- sha1 = "0ec7d9be8174934532661f87783eb18d72290059";
- };
- }
- {
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz";
- sha1 = "973df8cbd025515f3ff25db0c05efc704fa79818";
- };
- }
- {
- name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz";
- sha1 = "c9a137a4d137b2d0e2c649acf536d7ba1a76c0f7";
- };
- }
- {
- name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz";
- sha1 = "1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd";
- };
- }
- {
- name = "_babel_helper_define_map___helper_define_map_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_define_map___helper_define_map_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz";
- sha1 = "5e69ee8308648470dd7900d159c044c10285221d";
- };
- }
- {
- name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz";
- sha1 = "e9d76305ee1162ca467357ae25df94f179af2b7e";
- };
- }
- {
- name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz";
- sha1 = "89e2c474972f15d8e233b52ee8c480e2cfcd50c4";
- };
- }
- {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz";
- sha1 = "25fbfa579b0937eee1f3b805ece4ce398c431815";
- };
- }
- {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz";
- sha1 = "e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d";
- };
- }
- {
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz";
- sha1 = "0ddaf5299c8179f27f37327936553e9bba60990b";
- };
- }
- {
- name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz";
- sha1 = "6d1a44df6a38c957aa7c312da076429f11b422f3";
- };
- }
- {
- name = "_babel_helper_module_transforms___helper_module_transforms_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_helper_module_transforms___helper_module_transforms_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz";
- sha1 = "679275581ea056373eddbe360e1419ef23783b08";
- };
- }
- {
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz";
- sha1 = "f27395a8619e0665b3f0364cddb41c25d71b499c";
- };
- }
- {
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz";
- sha1 = "5ac822ce97eec46741ab70a517971e443a70c5a9";
- };
- }
- {
- name = "_babel_helper_regex___helper_regex_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_regex___helper_regex_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz";
- sha1 = "021cf1a7ba99822f993222a001cc3fec83255b96";
- };
- }
- {
- name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz";
- sha1 = "bad6aaa4ff39ce8d4b82ccaae0bfe0f7dbb5f432";
- };
- }
- {
- name = "_babel_helper_replace_supers___helper_replace_supers_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_helper_replace_supers___helper_replace_supers_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz";
- sha1 = "ace07708f5bf746bf2e6ba99572cce79b5d4e7f4";
- };
- }
- {
- name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz";
- path = fetchurl {
- name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz";
- sha1 = "82e1fec0644a7e775c74d305f212c39f8fe73924";
- };
- }
- {
- name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz";
- sha1 = "96f486ac050ca9f44b009fbe5b7d394cab3a0ee4";
- };
- }
- {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz";
- sha1 = "22b23a54ef51c2b7605d851930c1976dd0bc693a";
- };
- }
- {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz";
- sha1 = "6654d171b2024f6d8ee151bf2509699919131d48";
- };
- }
- {
- name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz";
- sha1 = "6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3";
- };
- }
- {
- name = "_babel_helper_wrap_function___helper_wrap_function_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_helper_wrap_function___helper_wrap_function_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz";
- sha1 = "956d1310d6696257a7afd47e4c42dfda5dfcedc9";
- };
- }
- {
- name = "_babel_helpers___helpers_7.15.3.tgz";
- path = fetchurl {
- name = "_babel_helpers___helpers_7.15.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.3.tgz";
- sha1 = "c96838b752b95dcd525b4e741ed40bb1dc2a1357";
- };
- }
- {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz";
- sha1 = "6861a52f03966405001f6aa534a01a24d99e8cd9";
- };
- }
- {
- name = "_babel_parser___parser_7.15.3.tgz";
- path = fetchurl {
- name = "_babel_parser___parser_7.15.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz";
- sha1 = "3416d9bea748052cfcb63dbcc27368105b1ed862";
- };
- }
- {
- name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz";
- sha1 = "6911af5ba2e615c4ff3c497fe2f47b35bf6d7e55";
- };
- }
- {
- name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz";
- sha1 = "40d1ee140c5b1e31a350f4f5eed945096559b42e";
- };
- }
- {
- name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz";
- sha1 = "e36979dc1dc3b73f6d6816fc4951da2363488ef0";
- };
- }
- {
- name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz";
- sha1 = "b1e691ee24c651b5a5e32213222b2379734aff09";
- };
- }
- {
- name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz";
- sha1 = "ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6";
- };
- }
- {
- name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz";
- sha1 = "a9a38bc34f78bdfd981e791c27c6fdcec478c123";
- };
- }
- {
- name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz";
- sha1 = "cba44908ac9f142650b4a65b8aa06bf3478d5fb6";
- };
- }
- {
- name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz";
- sha1 = "c9f86d99305f9fa531b568ff5ab8c964b8b223d2";
- };
- }
- {
- name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz";
- sha1 = "fa83651e60a360e3f13797eef00b8d519695b603";
- };
- }
- {
- name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.1.tgz";
- sha1 = "ed85e8058ab0fe309c3f448e5e1b73ca89cdb598";
- };
- }
- {
- name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz";
- sha1 = "dc04feb25e2dd70c12b05d680190e138fa2c0c6f";
- };
- }
- {
- name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz";
- sha1 = "a983fb1aeb2ec3f6ed042a210f640e90e786fe0d";
- };
- }
- {
- name = "_babel_plugin_syntax_bigint___plugin_syntax_bigint_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_bigint___plugin_syntax_bigint_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz";
- sha1 = "4c9a6f669f5d0cdf1b90a1671e9a146be5300cea";
- };
- }
- {
- name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.1.tgz";
- sha1 = "d5bc0645913df5b17ad7eda0fa2308330bde34c5";
- };
- }
- {
- name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz";
- sha1 = "62bf98b2da3cd21d626154fc96ee5b3cb68eacb3";
- };
- }
- {
- name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz";
- sha1 = "2ff654999497d7d7d142493260005263731da180";
- };
- }
- {
- name = "_babel_plugin_syntax_import_meta___plugin_syntax_import_meta_7.10.4.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_import_meta___plugin_syntax_import_meta_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz";
- sha1 = "ee601348c370fa334d2207be158777496521fd51";
- };
- }
- {
- name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz";
- sha1 = "01ca21b668cd8218c9e640cb6dd88c5412b2c96a";
- };
- }
- {
- name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.1.tgz";
- sha1 = "fffee77b4934ce77f3b427649ecdddbec1958550";
- };
- }
- {
- name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz";
- sha1 = "167ed70368886081f74b5c36c65a88c03b66d1a9";
- };
- }
- {
- name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz";
- sha1 = "25761ee7410bc8cf97327ba741ee94e4a61b7d99";
- };
- }
- {
- name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz";
- sha1 = "60e225edcbd98a640332a2e72dd3e66f1af55871";
- };
- }
- {
- name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz";
- sha1 = "6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1";
- };
- }
- {
- name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz";
- sha1 = "4f69c2ab95167e0180cd5336613f8c5788f7d48a";
- };
- }
- {
- name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz";
- sha1 = "8b8733f8c57397b3eaa47ddba8841586dcaef362";
- };
- }
- {
- name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz";
- sha1 = "b82c6ce471b165b5ce420cf92914d6fb46225716";
- };
- }
- {
- name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz";
- sha1 = "cb5ee3a36f0863c06ead0b409b4cc43a889b295b";
- };
- }
- {
- name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz";
- sha1 = "e5153eb1a3e028f79194ed8a7a4bf55f862b2062";
- };
- }
- {
- name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz";
- sha1 = "146856e756d54b20fff14b819456b3e01820b85d";
- };
- }
- {
- name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz";
- sha1 = "47092d89ca345811451cd0dc5d91605982705d5e";
- };
- }
- {
- name = "_babel_plugin_transform_classes___plugin_transform_classes_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_classes___plugin_transform_classes_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz";
- sha1 = "6e11dd6c4dfae70f540480a4702477ed766d733f";
- };
- }
- {
- name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz";
- sha1 = "59aa399064429d64dce5cf76ef9b90b7245ebd07";
- };
- }
- {
- name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz";
- sha1 = "abd58e51337815ca3a22a336b85f62b998e71907";
- };
- }
- {
- name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz";
- sha1 = "920b9fec2d78bb57ebb64a644d5c2ba67cc104ee";
- };
- }
- {
- name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz";
- sha1 = "c900a793beb096bc9d4d0a9d0cde19518ffc83b9";
- };
- }
- {
- name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz";
- sha1 = "279c3116756a60dd6e6f5e488ba7957db9c59eb3";
- };
- }
- {
- name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz";
- sha1 = "0dc9c1d11dcdc873417903d6df4bed019ef0f85e";
- };
- }
- {
- name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz";
- sha1 = "ff01119784eb0ee32258e8646157ba2501fcfda5";
- };
- }
- {
- name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz";
- sha1 = "4ed46fd6e1d8fde2a2ec7b03c66d853d2c92427d";
- };
- }
- {
- name = "_babel_plugin_transform_literals___plugin_transform_literals_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_literals___plugin_transform_literals_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz";
- sha1 = "5794f8da82846b22e4e6631ea1658bce708eb46a";
- };
- }
- {
- name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz";
- sha1 = "90347cba31bca6f394b3f7bd95d2bbfd9fce2f39";
- };
- }
- {
- name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz";
- sha1 = "65950e8e05797ebd2fe532b96e19fc5482a1d52a";
- };
- }
- {
- name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz";
- sha1 = "3305896e5835f953b5cdb363acd9e8c2219a5281";
- };
- }
- {
- name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz";
- sha1 = "9962e4b0ac6aaf2e20431ada3d8ec72082cbffb6";
- };
- }
- {
- name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz";
- sha1 = "ea080911ffc6eb21840a5197a39ede4ee67b1595";
- };
- }
- {
- name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.8.3.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.8.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz";
- sha1 = "a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c";
- };
- }
- {
- name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz";
- sha1 = "6ee41a5e648da7632e22b6fb54012e87f612f324";
- };
- }
- {
- name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz";
- sha1 = "2e3016b0adbf262983bf0d5121d676a5ed9c4fde";
- };
- }
- {
- name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz";
- sha1 = "b25938a3c5fae0354144a720b07b32766f683ddd";
- };
- }
- {
- name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz";
- sha1 = "cffc7315219230ed81dc53e4625bf86815b6050d";
- };
- }
- {
- name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz";
- sha1 = "10e175cbe7bdb63cc9b39f9b3f823c5c7c5c5490";
- };
- }
- {
- name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz";
- sha1 = "0fc1027312b4d1c3276a57890c8ae3bcc0b64a86";
- };
- }
- {
- name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz";
- sha1 = "e8b54f238a1ccbae482c4dce946180ae7b3143f3";
- };
- }
- {
- name = "_babel_plugin_transform_spread___plugin_transform_spread_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_spread___plugin_transform_spread_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz";
- sha1 = "0c6d618a0c4461a274418460a28c9ccf5239a7c8";
- };
- }
- {
- name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz";
- sha1 = "90fc89b7526228bed9842cff3588270a7a393b00";
- };
- }
- {
- name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz";
- sha1 = "914c7b7f4752c570ea00553b4284dad8070e8628";
- };
- }
- {
- name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz";
- sha1 = "60c0239b69965d166b80a84de7315c1bc7e0bb0e";
- };
- }
- {
- name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz";
- sha1 = "553f230b9d5385018716586fc48db10dd228eb7e";
- };
- }
- {
- name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.1.tgz";
- sha1 = "add0f8483dab60570d9e03cecef6c023aa8c9940";
- };
- }
- {
- name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.10.1.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.10.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz";
- sha1 = "6b58f2aea7b68df37ac5025d9c88752443a6b43f";
- };
- }
- {
- name = "_babel_preset_env___preset_env_7.10.2.tgz";
- path = fetchurl {
- name = "_babel_preset_env___preset_env_7.10.2.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.2.tgz";
- sha1 = "715930f2cf8573b0928005ee562bed52fb65fdfb";
- };
- }
- {
- name = "_babel_preset_flow___preset_flow_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_preset_flow___preset_flow_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.14.5.tgz";
- sha1 = "a1810b0780c8b48ab0bece8e7ab8d0d37712751c";
- };
- }
- {
- name = "_babel_preset_modules___preset_modules_0.1.3.tgz";
- path = fetchurl {
- name = "_babel_preset_modules___preset_modules_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz";
- sha1 = "13242b53b5ef8c883c3cf7dddd55b36ce80fbc72";
- };
- }
- {
- name = "_babel_preset_typescript___preset_typescript_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_preset_typescript___preset_typescript_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz";
- sha1 = "e8fca638a1a0f64f14e1119f7fe4500277840945";
- };
- }
- {
- name = "_babel_register___register_7.15.3.tgz";
- path = fetchurl {
- name = "_babel_register___register_7.15.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/register/-/register-7.15.3.tgz";
- sha1 = "6b40a549e06ec06c885b2ec42c3dd711f55fe752";
- };
- }
- {
- name = "_babel_runtime_corejs3___runtime_corejs3_7.10.2.tgz";
- path = fetchurl {
- name = "_babel_runtime_corejs3___runtime_corejs3_7.10.2.tgz";
- url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.10.2.tgz";
- sha1 = "3511797ddf9a3d6f3ce46b99cc835184817eaa4e";
- };
- }
- {
- name = "_babel_runtime___runtime_7.14.0.tgz";
- path = fetchurl {
- name = "_babel_runtime___runtime_7.14.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz";
- sha1 = "46794bc20b612c5f75e62dd071e24dfd95f1cbe6";
- };
- }
- {
- name = "_babel_standalone___standalone_7.10.2.tgz";
- path = fetchurl {
- name = "_babel_standalone___standalone_7.10.2.tgz";
- url = "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.10.2.tgz";
- sha1 = "49dbbadcbc4b199df064d7d8b3e21c915b84abdb";
- };
- }
- {
- name = "_babel_template___template_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_template___template_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz";
- sha1 = "a9bc9d8b33354ff6e55a9c60d1109200a68974f4";
- };
- }
- {
- name = "_babel_traverse___traverse_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_traverse___traverse_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz";
- sha1 = "4cca838fd1b2a03283c1f38e141f639d60b3fc98";
- };
- }
- {
- name = "_babel_types___types_7.15.0.tgz";
- path = fetchurl {
- name = "_babel_types___types_7.15.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz";
- sha1 = "61af11f2286c4e9c69ca8deb5f4375a73c72dcbd";
- };
- }
- {
- name = "_bcoe_v8_coverage___v8_coverage_0.2.3.tgz";
- path = fetchurl {
- name = "_bcoe_v8_coverage___v8_coverage_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz";
- sha1 = "75a2e8b51cb758a7553d6804a5932d7aace75c39";
- };
- }
- {
- name = "_braintree_sanitize_url___sanitize_url_3.1.0.tgz";
- path = fetchurl {
- name = "_braintree_sanitize_url___sanitize_url_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-3.1.0.tgz";
- sha1 = "8ff71d51053cd5ee4981e5a501d80a536244f7fd";
- };
- }
- {
- name = "_cnakazawa_watch___watch_1.0.4.tgz";
- path = fetchurl {
- name = "_cnakazawa_watch___watch_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz";
- sha1 = "f864ae85004d0fcab6f50be9141c4da368d1656a";
- };
- }
- {
- name = "_eslint_eslintrc___eslintrc_0.4.3.tgz";
- path = fetchurl {
- name = "_eslint_eslintrc___eslintrc_0.4.3.tgz";
- url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz";
- sha1 = "9e42981ef035beb3dd49add17acb96e8ff6f394c";
- };
- }
- {
- name = "_gitlab_at.js___at.js_1.5.7.tgz";
- path = fetchurl {
- name = "_gitlab_at.js___at.js_1.5.7.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/at.js/-/at.js-1.5.7.tgz";
- sha1 = "1ee6f838cc4410a1d797770934df91d90df8179e";
- };
- }
- {
- name = "_gitlab_eslint_plugin___eslint_plugin_9.3.0.tgz";
- path = fetchurl {
- name = "_gitlab_eslint_plugin___eslint_plugin_9.3.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-9.3.0.tgz";
- sha1 = "c1765b28d5a2a29143c0a556650fb7527cd9ab0d";
- };
- }
- {
- name = "_gitlab_favicon_overlay___favicon_overlay_2.0.0.tgz";
- path = fetchurl {
- name = "_gitlab_favicon_overlay___favicon_overlay_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/favicon-overlay/-/favicon-overlay-2.0.0.tgz";
- sha1 = "2f32d0b6a4d5b8ac44e2927083d9ab478a78c984";
- };
- }
- {
- name = "_gitlab_stylelint_config___stylelint_config_2.3.0.tgz";
- path = fetchurl {
- name = "_gitlab_stylelint_config___stylelint_config_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/stylelint-config/-/stylelint-config-2.3.0.tgz";
- sha1 = "b27e8544ff52a4c5e23ff7a104c7efff1f7078f0";
- };
- }
- {
- name = "_gitlab_svgs___svgs_1.212.0.tgz";
- path = fetchurl {
- name = "_gitlab_svgs___svgs_1.212.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.212.0.tgz";
- sha1 = "21a5df04c52b10cc1b8521cd8ff7c7d6d13716db";
- };
- }
- {
- name = "_gitlab_tributejs___tributejs_1.0.0.tgz";
- path = fetchurl {
- name = "_gitlab_tributejs___tributejs_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/tributejs/-/tributejs-1.0.0.tgz";
- sha1 = "672befa222aeffc83e7d799b0500a7a4418e59b8";
- };
- }
- {
- name = "_gitlab_ui___ui_32.11.0.tgz";
- path = fetchurl {
- name = "_gitlab_ui___ui_32.11.0.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-32.11.0.tgz";
- sha1 = "8c4a1724c1733a243f96e4a4813ae7f348502ba6";
- };
- }
- {
- name = "_gitlab_visual_review_tools___visual_review_tools_1.6.1.tgz";
- path = fetchurl {
- name = "_gitlab_visual_review_tools___visual_review_tools_1.6.1.tgz";
- url = "https://registry.yarnpkg.com/@gitlab/visual-review-tools/-/visual-review-tools-1.6.1.tgz";
- sha1 = "0d8f3ff9f51b05f7c80b9a107727703d48997e4e";
- };
- }
- {
- name = "_humanwhocodes_config_array___config_array_0.5.0.tgz";
- path = fetchurl {
- name = "_humanwhocodes_config_array___config_array_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz";
- sha1 = "1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9";
- };
- }
- {
- name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz";
- path = fetchurl {
- name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz";
- sha1 = "87de7af9c231826fdd68ac7258f77c429e0e5fcf";
- };
- }
- {
- name = "_istanbuljs_load_nyc_config___load_nyc_config_1.1.0.tgz";
- path = fetchurl {
- name = "_istanbuljs_load_nyc_config___load_nyc_config_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz";
- sha1 = "fd3db1d59ecf7cf121e80650bb86712f9b55eced";
- };
- }
- {
- name = "_istanbuljs_schema___schema_0.1.2.tgz";
- path = fetchurl {
- name = "_istanbuljs_schema___schema_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz";
- sha1 = "26520bf09abe4a5644cd5414e37125a8954241dd";
- };
- }
- {
- name = "_jest_console___console_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_console___console_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/console/-/console-26.5.2.tgz";
- sha1 = "94fc4865b1abed7c352b5e21e6c57be4b95604a6";
- };
- }
- {
- name = "_jest_core___core_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_core___core_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/core/-/core-26.5.2.tgz";
- sha1 = "e39f14676f4ba4632ecabfdc374071ab22131f22";
- };
- }
- {
- name = "_jest_environment___environment_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_environment___environment_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/environment/-/environment-26.5.2.tgz";
- sha1 = "eba3cfc698f6e03739628f699c28e8a07f5e65fe";
- };
- }
- {
- name = "_jest_fake_timers___fake_timers_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_fake_timers___fake_timers_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.5.2.tgz";
- sha1 = "1291ac81680ceb0dc7daa1f92c059307eea6400a";
- };
- }
- {
- name = "_jest_globals___globals_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_globals___globals_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/globals/-/globals-26.5.2.tgz";
- sha1 = "c333f82c29e19ecb609a75d1a532915a5c956c59";
- };
- }
- {
- name = "_jest_reporters___reporters_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_reporters___reporters_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.5.2.tgz";
- sha1 = "0f1c900c6af712b46853d9d486c9c0382e4050f6";
- };
- }
- {
- name = "_jest_source_map___source_map_26.5.0.tgz";
- path = fetchurl {
- name = "_jest_source_map___source_map_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.5.0.tgz";
- sha1 = "98792457c85bdd902365cd2847b58fff05d96367";
- };
- }
- {
- name = "_jest_test_result___test_result_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_test_result___test_result_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.5.2.tgz";
- sha1 = "cc1a44cfd4db2ecee3fb0bc4e9fe087aa54b5230";
- };
- }
- {
- name = "_jest_test_sequencer___test_sequencer_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_test_sequencer___test_sequencer_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.5.2.tgz";
- sha1 = "c4559c7e134b27b020317303ee5399bf62917a4b";
- };
- }
- {
- name = "_jest_transform___transform_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_transform___transform_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/transform/-/transform-26.5.2.tgz";
- sha1 = "6a0033a1d24316a1c75184d010d864f2c681bef5";
- };
- }
- {
- name = "_jest_types___types_26.5.2.tgz";
- path = fetchurl {
- name = "_jest_types___types_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/@jest/types/-/types-26.5.2.tgz";
- sha1 = "44c24f30c8ee6c7f492ead9ec3f3c62a5289756d";
- };
- }
- {
- name = "_miragejs_pretender_node_polyfill___pretender_node_polyfill_0.1.2.tgz";
- path = fetchurl {
- name = "_miragejs_pretender_node_polyfill___pretender_node_polyfill_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/@miragejs/pretender-node-polyfill/-/pretender-node-polyfill-0.1.2.tgz";
- sha1 = "d26b6b7483fb70cd62189d05c95d2f67153e43f2";
- };
- }
- {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz";
- path = fetchurl {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz";
- sha1 = "d4b3549a5db5de2683e0c1071ab4f140904bbf69";
- };
- }
- {
- name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz";
- path = fetchurl {
- name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz";
- sha1 = "a3f2dd61bab43b8db8fa108a121cfffe4c676655";
- };
- }
- {
- name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz";
- path = fetchurl {
- name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz";
- sha1 = "cce9396b30aa5afe9e3756608f5831adcb53d063";
- };
- }
- {
- name = "_npmcli_move_file___move_file_1.0.1.tgz";
- path = fetchurl {
- name = "_npmcli_move_file___move_file_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz";
- sha1 = "de103070dac0f48ce49cf6693c23af59c0f70464";
- };
- }
- {
- name = "_nuxt_opencollective___opencollective_0.3.2.tgz";
- path = fetchurl {
- name = "_nuxt_opencollective___opencollective_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/@nuxt/opencollective/-/opencollective-0.3.2.tgz";
- sha1 = "83cb70cdb2bac5fad6f8c93529e7b11187d49c02";
- };
- }
- {
- name = "_oclif_command___command_1.8.0.tgz";
- path = fetchurl {
- name = "_oclif_command___command_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.0.tgz";
- sha1 = "c1a499b10d26e9d1a611190a81005589accbb339";
- };
- }
- {
- name = "_oclif_config___config_1.17.0.tgz";
- path = fetchurl {
- name = "_oclif_config___config_1.17.0.tgz";
- url = "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.0.tgz";
- sha1 = "ba8639118633102a7e481760c50054623d09fcab";
- };
- }
- {
- name = "_oclif_errors___errors_1.3.5.tgz";
- path = fetchurl {
- name = "_oclif_errors___errors_1.3.5.tgz";
- url = "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz";
- sha1 = "a1e9694dbeccab10fe2fe15acb7113991bed636c";
- };
- }
- {
- name = "_oclif_linewrap___linewrap_1.0.0.tgz";
- path = fetchurl {
- name = "_oclif_linewrap___linewrap_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz";
- sha1 = "aedcb64b479d4db7be24196384897b5000901d91";
- };
- }
- {
- name = "_oclif_parser___parser_3.8.5.tgz";
- path = fetchurl {
- name = "_oclif_parser___parser_3.8.5.tgz";
- url = "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.5.tgz";
- sha1 = "c5161766a1efca7343e1f25d769efbefe09f639b";
- };
- }
- {
- name = "_oclif_plugin_help___plugin_help_3.2.3.tgz";
- path = fetchurl {
- name = "_oclif_plugin_help___plugin_help_3.2.3.tgz";
- url = "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.3.tgz";
- sha1 = "cd24010e7eb326782843d3aa6d6b5a4affebb2c3";
- };
- }
- {
- name = "_percy_config___config_1.0.0_beta.65.tgz";
- path = fetchurl {
- name = "_percy_config___config_1.0.0_beta.65.tgz";
- url = "https://registry.yarnpkg.com/@percy/config/-/config-1.0.0-beta.65.tgz";
- sha1 = "8775d8d645c2b8a094850032d10810f654bb3f1e";
- };
- }
- {
- name = "_percy_logger___logger_1.0.0_beta.65.tgz";
- path = fetchurl {
- name = "_percy_logger___logger_1.0.0_beta.65.tgz";
- url = "https://registry.yarnpkg.com/@percy/logger/-/logger-1.0.0-beta.65.tgz";
- sha1 = "30a34797c935003334124e970f62914b0d124968";
- };
- }
- {
- name = "_percy_migrate___migrate_0.10.0.tgz";
- path = fetchurl {
- name = "_percy_migrate___migrate_0.10.0.tgz";
- url = "https://registry.yarnpkg.com/@percy/migrate/-/migrate-0.10.0.tgz";
- sha1 = "4157bd8ca1638f1cc072086074c8edec57978abc";
- };
- }
- {
- name = "_polka_url___url_1.0.0_next.12.tgz";
- path = fetchurl {
- name = "_polka_url___url_1.0.0_next.12.tgz";
- url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.12.tgz";
- sha1 = "431ec342a7195622f86688bbda82e3166ce8cb28";
- };
- }
- {
- name = "_popperjs_core___core_2.9.2.tgz";
- path = fetchurl {
- name = "_popperjs_core___core_2.9.2.tgz";
- url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz";
- sha1 = "adea7b6953cbb34651766b0548468e743c6a2353";
- };
- }
- {
- name = "_rails_actioncable___actioncable_6.1.3_2.tgz";
- path = fetchurl {
- name = "_rails_actioncable___actioncable_6.1.3_2.tgz";
- url = "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.3-2.tgz";
- sha1 = "de22e2d7474dcca051f7060829450412a17ecc04";
- };
- }
- {
- name = "_rails_ujs___ujs_6.1.3_2.tgz";
- path = fetchurl {
- name = "_rails_ujs___ujs_6.1.3_2.tgz";
- url = "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.1.3-2.tgz";
- sha1 = "5d7e161e7061654e738a116a7ec8b58b51721a11";
- };
- }
- {
- name = "_sentry_browser___browser_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_browser___browser_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/browser/-/browser-5.30.0.tgz";
- sha1 = "c28f49d551db3172080caef9f18791a7fd39e3b3";
- };
- }
- {
- name = "_sentry_core___core_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_core___core_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz";
- sha1 = "6b203664f69e75106ee8b5a2fe1d717379b331f3";
- };
- }
- {
- name = "_sentry_hub___hub_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_hub___hub_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz";
- sha1 = "2453be9b9cb903404366e198bd30c7ca74cdc100";
- };
- }
- {
- name = "_sentry_minimal___minimal_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_minimal___minimal_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz";
- sha1 = "ce3d3a6a273428e0084adcb800bc12e72d34637b";
- };
- }
- {
- name = "_sentry_types___types_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_types___types_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz";
- sha1 = "19709bbe12a1a0115bc790b8942917da5636f402";
- };
- }
- {
- name = "_sentry_utils___utils_5.30.0.tgz";
- path = fetchurl {
- name = "_sentry_utils___utils_5.30.0.tgz";
- url = "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz";
- sha1 = "9a5bd7ccff85ccfe7856d493bffa64cabc41e980";
- };
- }
- {
- name = "_sindresorhus_is___is_0.14.0.tgz";
- path = fetchurl {
- name = "_sindresorhus_is___is_0.14.0.tgz";
- url = "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz";
- sha1 = "9fb3a3cf3132328151f353de4632e01e52102bea";
- };
- }
- {
- name = "_sinonjs_commons___commons_1.8.1.tgz";
- path = fetchurl {
- name = "_sinonjs_commons___commons_1.8.1.tgz";
- url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz";
- sha1 = "e7df00f98a203324f6dc7cc606cad9d4a8ab2217";
- };
- }
- {
- name = "_sinonjs_fake_timers___fake_timers_6.0.1.tgz";
- path = fetchurl {
- name = "_sinonjs_fake_timers___fake_timers_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz";
- sha1 = "293674fccb3262ac782c7aadfdeca86b10c75c40";
- };
- }
- {
- name = "_sourcegraph_code_host_integration___code_host_integration_0.0.60.tgz";
- path = fetchurl {
- name = "_sourcegraph_code_host_integration___code_host_integration_0.0.60.tgz";
- url = "https://registry.yarnpkg.com/@sourcegraph/code-host-integration/-/code-host-integration-0.0.60.tgz";
- sha1 = "2043877fabb7eb986fcb61b67ee480afbb29f4f0";
- };
- }
- {
- name = "_stylelint_postcss_css_in_js___postcss_css_in_js_0.37.2.tgz";
- path = fetchurl {
- name = "_stylelint_postcss_css_in_js___postcss_css_in_js_0.37.2.tgz";
- url = "https://registry.yarnpkg.com/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz";
- sha1 = "7e5a84ad181f4234a2480803422a47b8749af3d2";
- };
- }
- {
- name = "_stylelint_postcss_markdown___postcss_markdown_0.36.2.tgz";
- path = fetchurl {
- name = "_stylelint_postcss_markdown___postcss_markdown_0.36.2.tgz";
- url = "https://registry.yarnpkg.com/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz";
- sha1 = "0a540c4692f8dcdfc13c8e352c17e7bfee2bb391";
- };
- }
- {
- name = "_szmarczak_http_timer___http_timer_1.1.2.tgz";
- path = fetchurl {
- name = "_szmarczak_http_timer___http_timer_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz";
- sha1 = "b1665e2c461a2cd92f4c1bbf50d5454de0d4b421";
- };
- }
- {
- name = "_testing_library_dom___dom_7.24.5.tgz";
- path = fetchurl {
- name = "_testing_library_dom___dom_7.24.5.tgz";
- url = "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.24.5.tgz";
- sha1 = "862124eec8c37ad184716379f09742476b23815d";
- };
- }
- {
- name = "_tiptap_core___core_2.0.0_beta.105.tgz";
- path = fetchurl {
- name = "_tiptap_core___core_2.0.0_beta.105.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/core/-/core-2.0.0-beta.105.tgz";
- sha1 = "3d758cbbf3e8c9b806d1017cd2e7444f192d8109";
- };
- }
- {
- name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-2.0.0-beta.15.tgz";
- sha1 = "40be203f7db47e027ea1a5ba42bbb0e33bb6c004";
- };
- }
- {
- name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-2.0.0-beta.15.tgz";
- sha1 = "cf9ddb3fc316be9707753ad4e497bfb8a3ebb0c2";
- };
- }
- {
- name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.33.tgz";
- path = fetchurl {
- name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.33.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.0.0-beta.33.tgz";
- sha1 = "50ee84c25118f7ee932385961211b64496355c74";
- };
- }
- {
- name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-2.0.0-beta.15.tgz";
- sha1 = "74876851a8d227ba1a031d031631ed621c175e05";
- };
- }
- {
- name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.37.tgz";
- path = fetchurl {
- name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.37.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-code-block-lowlight/-/extension-code-block-lowlight-2.0.0-beta.37.tgz";
- sha1 = "672b2f21d49077285a507c2e204b07085df93906";
- };
- }
- {
- name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.18.tgz";
- path = fetchurl {
- name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.18.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-2.0.0-beta.18.tgz";
- sha1 = "3b43730cfca1ba26171530951b3cc324a500cb11";
- };
- }
- {
- name = "_tiptap_extension_code___extension_code_2.0.0_beta.16.tgz";
- path = fetchurl {
- name = "_tiptap_extension_code___extension_code_2.0.0_beta.16.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-2.0.0-beta.16.tgz";
- sha1 = "b258ff90ebe703a4d36ff0c650e6b2cab634028d";
- };
- }
- {
- name = "_tiptap_extension_document___extension_document_2.0.0_beta.13.tgz";
- path = fetchurl {
- name = "_tiptap_extension_document___extension_document_2.0.0_beta.13.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-2.0.0-beta.13.tgz";
- sha1 = "8cfb29d4de64bf4a790817f730c05b4f9b7167b2";
- };
- }
- {
- name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.19.tgz";
- path = fetchurl {
- name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.19.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-2.0.0-beta.19.tgz";
- sha1 = "8a37ffe27e484eb44dd18297830d1fd8ce0c50ce";
- };
- }
- {
- name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.27.tgz";
- path = fetchurl {
- name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.27.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-2.0.0-beta.27.tgz";
- sha1 = "692686854116823be624028fd8d73aa900cf71a9";
- };
- }
- {
- name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.19.tgz";
- path = fetchurl {
- name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.19.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-2.0.0-beta.19.tgz";
- sha1 = "6d826c240496b1a77808999d51b8917adb372cc5";
- };
- }
- {
- name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.16.tgz";
- path = fetchurl {
- name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.16.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-2.0.0-beta.16.tgz";
- sha1 = "1a55e901ce2deaaeaf53d77d254371955fe8fd99";
- };
- }
- {
- name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-2.0.0-beta.15.tgz";
- sha1 = "d62f32a2ec8ce5a6d4e716aa7a45dfb707283848";
- };
- }
- {
- name = "_tiptap_extension_history___extension_history_2.0.0_beta.16.tgz";
- path = fetchurl {
- name = "_tiptap_extension_history___extension_history_2.0.0_beta.16.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-history/-/extension-history-2.0.0-beta.16.tgz";
- sha1 = "f40317bab795e2daf981aa1a01d6025f306be72c";
- };
- }
- {
- name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.19.tgz";
- path = fetchurl {
- name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.19.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.0.0-beta.19.tgz";
- sha1 = "d98d0070a2cead32a497b62586c0e259d31f3f2e";
- };
- }
- {
- name = "_tiptap_extension_image___extension_image_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_image___extension_image_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-2.0.0-beta.15.tgz";
- sha1 = "07bdc23c9804c830a394f78242648dd7783a469e";
- };
- }
- {
- name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-2.0.0-beta.15.tgz";
- sha1 = "9a81f686cf221110478935596f0b47a76d4c2f45";
- };
- }
- {
- name = "_tiptap_extension_link___extension_link_2.0.0_beta.20.tgz";
- path = fetchurl {
- name = "_tiptap_extension_link___extension_link_2.0.0_beta.20.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-2.0.0-beta.20.tgz";
- sha1 = "dbb2aa4f01212bbd0c3fb14b563e28f31140eae2";
- };
- }
- {
- name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.14.tgz";
- path = fetchurl {
- name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.14.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-2.0.0-beta.14.tgz";
- sha1 = "65a9ff9daa11bc9ca8bc2989a891abe68081cfbd";
- };
- }
- {
- name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.16.tgz";
- path = fetchurl {
- name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.16.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-2.0.0-beta.16.tgz";
- sha1 = "3ef25a8dd8ddbd2b1aa5ce89d5a2e5a3ecafcf4e";
- };
- }
- {
- name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.17.tgz";
- path = fetchurl {
- name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.17.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-2.0.0-beta.17.tgz";
- sha1 = "f8f0263359b95dec9c10078699697908568d9be9";
- };
- }
- {
- name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.17.tgz";
- path = fetchurl {
- name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.17.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.17.tgz";
- sha1 = "2280ea4e8c50189c2729814d2ae484e58c712a36";
- };
- }
- {
- name = "_tiptap_extension_subscript___extension_subscript_2.0.0_beta.4.tgz";
- path = fetchurl {
- name = "_tiptap_extension_subscript___extension_subscript_2.0.0_beta.4.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-subscript/-/extension-subscript-2.0.0-beta.4.tgz";
- sha1 = "07907df58695eb02bf6904d2c3635111003b30fd";
- };
- }
- {
- name = "_tiptap_extension_superscript___extension_superscript_2.0.0_beta.4.tgz";
- path = fetchurl {
- name = "_tiptap_extension_superscript___extension_superscript_2.0.0_beta.4.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-superscript/-/extension-superscript-2.0.0-beta.4.tgz";
- sha1 = "16906d71dd8f9892101cf792f42005f8cd404516";
- };
- }
- {
- name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.15.tgz";
- path = fetchurl {
- name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.15.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-table-cell/-/extension-table-cell-2.0.0-beta.15.tgz";
- sha1 = "2059946b1657f0f22415bda84cee77fb1eb232b1";
- };
- }
- {
- name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.17.tgz";
- path = fetchurl {
- name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.17.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-table-header/-/extension-table-header-2.0.0-beta.17.tgz";
- sha1 = "1bd008825146e6f5fc607a1d8682b5d47ba08f25";
- };
- }
- {
- name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.14.tgz";
- path = fetchurl {
- name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.14.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-table-row/-/extension-table-row-2.0.0-beta.14.tgz";
- sha1 = "9ec98c73e309ee966b71ccd140019874d179e0c8";
- };
- }
- {
- name = "_tiptap_extension_table___extension_table_2.0.0_beta.30.tgz";
- path = fetchurl {
- name = "_tiptap_extension_table___extension_table_2.0.0_beta.30.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-2.0.0-beta.30.tgz";
- sha1 = "f6ff97ea71b17ecf3371ddf80374df9f49042334";
- };
- }
- {
- name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.18.tgz";
- path = fetchurl {
- name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.18.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-task-item/-/extension-task-item-2.0.0-beta.18.tgz";
- sha1 = "f109c15c997038d8099b64dba4cfc4e219b426e4";
- };
- }
- {
- name = "_tiptap_extension_task_list___extension_task_list_2.0.0_beta.17.tgz";
- path = fetchurl {
- name = "_tiptap_extension_task_list___extension_task_list_2.0.0_beta.17.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-task-list/-/extension-task-list-2.0.0-beta.17.tgz";
- sha1 = "c0f40325abf1b6a23868e72ab32f9724a8b42a7b";
- };
- }
- {
- name = "_tiptap_extension_text___extension_text_2.0.0_beta.13.tgz";
- path = fetchurl {
- name = "_tiptap_extension_text___extension_text_2.0.0_beta.13.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-2.0.0-beta.13.tgz";
- sha1 = "da0af8d9a3f149d20076e15d88c6af21fb6d940f";
- };
- }
- {
- name = "_tiptap_vue_2___vue_2_2.0.0_beta.50.tgz";
- path = fetchurl {
- name = "_tiptap_vue_2___vue_2_2.0.0_beta.50.tgz";
- url = "https://registry.yarnpkg.com/@tiptap/vue-2/-/vue-2-2.0.0-beta.50.tgz";
- sha1 = "1c1c3e7d696aaa167fc776e11b393b182f1bfbb4";
- };
- }
- {
- name = "_toast_ui_editor___editor_2.5.2.tgz";
- path = fetchurl {
- name = "_toast_ui_editor___editor_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/@toast-ui/editor/-/editor-2.5.2.tgz";
- sha1 = "0637e1bbdb205c1ab53b6d3722ced26399b2f0ca";
- };
- }
- {
- name = "_toast_ui_vue_editor___vue_editor_2.5.2.tgz";
- path = fetchurl {
- name = "_toast_ui_vue_editor___vue_editor_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/@toast-ui/vue-editor/-/vue-editor-2.5.2.tgz";
- sha1 = "0b54107a196471eacb18aabb7100101606917b27";
- };
- }
- {
- name = "_types_aria_query___aria_query_4.2.0.tgz";
- path = fetchurl {
- name = "_types_aria_query___aria_query_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.0.tgz";
- sha1 = "14264692a9d6e2fa4db3df5e56e94b5e25647ac0";
- };
- }
- {
- name = "_types_babel__core___babel__core_7.1.9.tgz";
- path = fetchurl {
- name = "_types_babel__core___babel__core_7.1.9.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz";
- sha1 = "77e59d438522a6fb898fa43dc3455c6e72f3963d";
- };
- }
- {
- name = "_types_babel__generator___babel__generator_7.0.2.tgz";
- path = fetchurl {
- name = "_types_babel__generator___babel__generator_7.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz";
- sha1 = "d2112a6b21fad600d7674274293c85dce0cb47fc";
- };
- }
- {
- name = "_types_babel__template___babel__template_7.0.2.tgz";
- path = fetchurl {
- name = "_types_babel__template___babel__template_7.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz";
- sha1 = "4ff63d6b52eddac1de7b975a5223ed32ecea9307";
- };
- }
- {
- name = "_types_babel__traverse___babel__traverse_7.0.15.tgz";
- path = fetchurl {
- name = "_types_babel__traverse___babel__traverse_7.0.15.tgz";
- url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.15.tgz";
- sha1 = "db9e4238931eb69ef8aab0ad6523d4d4caa39d03";
- };
- }
- {
- name = "_types_codemirror___codemirror_0.0.71.tgz";
- path = fetchurl {
- name = "_types_codemirror___codemirror_0.0.71.tgz";
- url = "https://registry.yarnpkg.com/@types/codemirror/-/codemirror-0.0.71.tgz";
- sha1 = "861f1bcb3100c0a064567c5400f2981cf4ae8ca7";
- };
- }
- {
- name = "_types_color_name___color_name_1.1.1.tgz";
- path = fetchurl {
- name = "_types_color_name___color_name_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz";
- sha1 = "1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0";
- };
- }
- {
- name = "_types_estree___estree_0.0.44.tgz";
- path = fetchurl {
- name = "_types_estree___estree_0.0.44.tgz";
- url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.44.tgz";
- sha1 = "980cc5a29a3ef3bea6ff1f7d021047d7ea575e21";
- };
- }
- {
- name = "_types_events___events_1.2.0.tgz";
- path = fetchurl {
- name = "_types_events___events_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@types/events/-/events-1.2.0.tgz";
- sha1 = "81a6731ce4df43619e5c8c945383b3e62a89ea86";
- };
- }
- {
- name = "_types_glob___glob_7.1.1.tgz";
- path = fetchurl {
- name = "_types_glob___glob_7.1.1.tgz";
- url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz";
- sha1 = "aa59a1c6e3fbc421e07ccd31a944c30eba521575";
- };
- }
- {
- name = "_types_graceful_fs___graceful_fs_4.1.3.tgz";
- path = fetchurl {
- name = "_types_graceful_fs___graceful_fs_4.1.3.tgz";
- url = "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz";
- sha1 = "039af35fe26bec35003e8d86d2ee9c586354348f";
- };
- }
- {
- name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.2.tgz";
- path = fetchurl {
- name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz";
- sha1 = "79d7a78bad4219f4c03d6557a1c72d9ca6ba62d5";
- };
- }
- {
- name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz";
- path = fetchurl {
- name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz";
- sha1 = "e5471e7fa33c61358dd38426189c037a58433b8c";
- };
- }
- {
- name = "_types_istanbul_reports___istanbul_reports_3.0.0.tgz";
- path = fetchurl {
- name = "_types_istanbul_reports___istanbul_reports_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz";
- sha1 = "508b13aa344fa4976234e75dddcc34925737d821";
- };
- }
- {
- name = "_types_json_schema___json_schema_7.0.7.tgz";
- path = fetchurl {
- name = "_types_json_schema___json_schema_7.0.7.tgz";
- url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz";
- sha1 = "98a993516c859eb0d5c4c8f098317a9ea68db9ad";
- };
- }
- {
- name = "_types_json5___json5_0.0.29.tgz";
- path = fetchurl {
- name = "_types_json5___json5_0.0.29.tgz";
- url = "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz";
- sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee";
- };
- }
- {
- name = "_types_lowlight___lowlight_0.0.3.tgz";
- path = fetchurl {
- name = "_types_lowlight___lowlight_0.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/lowlight/-/lowlight-0.0.3.tgz";
- sha1 = "433b03dd63894dde17860063f4c90a688431194b";
- };
- }
- {
- name = "_types_mdast___mdast_3.0.3.tgz";
- path = fetchurl {
- name = "_types_mdast___mdast_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz";
- sha1 = "2d7d671b1cd1ea3deb306ea75036c2a0407d2deb";
- };
- }
- {
- name = "_types_minimatch___minimatch_3.0.3.tgz";
- path = fetchurl {
- name = "_types_minimatch___minimatch_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz";
- sha1 = "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d";
- };
- }
- {
- name = "_types_minimist___minimist_1.2.1.tgz";
- path = fetchurl {
- name = "_types_minimist___minimist_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz";
- sha1 = "283f669ff76d7b8260df8ab7a4262cc83d988256";
- };
- }
- {
- name = "_types_node___node_10.12.9.tgz";
- path = fetchurl {
- name = "_types_node___node_10.12.9.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-10.12.9.tgz";
- sha1 = "a07bfa74331471e1dc22a47eb72026843f7b95c8";
- };
- }
- {
- name = "_types_normalize_package_data___normalize_package_data_2.4.0.tgz";
- path = fetchurl {
- name = "_types_normalize_package_data___normalize_package_data_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
- sha1 = "e486d0d97396d79beedd0a6e33f4534ff6b4973e";
- };
- }
- {
- name = "_types_orderedmap___orderedmap_1.0.0.tgz";
- path = fetchurl {
- name = "_types_orderedmap___orderedmap_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/orderedmap/-/orderedmap-1.0.0.tgz";
- sha1 = "807455a192bba52cbbb4517044bc82bdbfa8c596";
- };
- }
- {
- name = "_types_parse_json___parse_json_4.0.0.tgz";
- path = fetchurl {
- name = "_types_parse_json___parse_json_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "2f8bb441434d163b35fb8ffdccd7138927ffb8c0";
- };
- }
- {
- name = "_types_parse5___parse5_5.0.0.tgz";
- path = fetchurl {
- name = "_types_parse5___parse5_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.0.tgz";
- sha1 = "9ae2106efc443d7c1e26570aa8247828c9c80f11";
- };
- }
- {
- name = "_types_prettier___prettier_2.0.2.tgz";
- path = fetchurl {
- name = "_types_prettier___prettier_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.0.2.tgz";
- sha1 = "5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3";
- };
- }
- {
- name = "_types_prosemirror_commands___prosemirror_commands_1.0.4.tgz";
- path = fetchurl {
- name = "_types_prosemirror_commands___prosemirror_commands_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.4.tgz";
- sha1 = "d08551415127d93ae62e7239d30db0b5e7208e22";
- };
- }
- {
- name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz";
- path = fetchurl {
- name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.3.tgz";
- sha1 = "49250849b8a0b86e8c29eb1ba70a463e53e46947";
- };
- }
- {
- name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.4.tgz";
- path = fetchurl {
- name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.4.tgz";
- sha1 = "7df7d373edb33ea8da12084bfd462cf84cd69761";
- };
- }
- {
- name = "_types_prosemirror_history___prosemirror_history_1.0.3.tgz";
- path = fetchurl {
- name = "_types_prosemirror_history___prosemirror_history_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.3.tgz";
- sha1 = "f1110efbe758129b5475e466ff077f0a8d9b964f";
- };
- }
- {
- name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.4.tgz";
- path = fetchurl {
- name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.4.tgz";
- sha1 = "4cb75054d954aa0f6f42099be05eb6c0e6958bae";
- };
- }
- {
- name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.4.tgz";
- path = fetchurl {
- name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.4.tgz";
- sha1 = "f73c79810e8d0e0a20d153d84f998f02e5afbc0c";
- };
- }
- {
- name = "_types_prosemirror_model___prosemirror_model_1.13.2.tgz";
- path = fetchurl {
- name = "_types_prosemirror_model___prosemirror_model_1.13.2.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.13.2.tgz";
- sha1 = "2adad3ec478f83204f155d7fb94c9dfde2fc3296";
- };
- }
- {
- name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.3.tgz";
- path = fetchurl {
- name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.3.tgz";
- sha1 = "bdf1893a7915fbdc5c49b3cac9368e96213d70de";
- };
- }
- {
- name = "_types_prosemirror_state___prosemirror_state_1.2.7.tgz";
- path = fetchurl {
- name = "_types_prosemirror_state___prosemirror_state_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.7.tgz";
- sha1 = "cd55062e4043a31e3426f47668f1d7038b5d8dfb";
- };
- }
- {
- name = "_types_prosemirror_transform___prosemirror_transform_1.1.4.tgz";
- path = fetchurl {
- name = "_types_prosemirror_transform___prosemirror_transform_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.4.tgz";
- sha1 = "c3565e81b2ef3ce3254e6927d6f63eb8d7bb20d0";
- };
- }
- {
- name = "_types_prosemirror_view___prosemirror_view_1.19.0.tgz";
- path = fetchurl {
- name = "_types_prosemirror_view___prosemirror_view_1.19.0.tgz";
- url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.19.0.tgz";
- sha1 = "35320b6875ae7c750bce799cccf735e5da91af7a";
- };
- }
- {
- name = "_types_stack_utils___stack_utils_2.0.0.tgz";
- path = fetchurl {
- name = "_types_stack_utils___stack_utils_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.0.tgz";
- sha1 = "7036640b4e21cc2f259ae826ce843d277dad8cff";
- };
- }
- {
- name = "_types_tern___tern_0.23.3.tgz";
- path = fetchurl {
- name = "_types_tern___tern_0.23.3.tgz";
- url = "https://registry.yarnpkg.com/@types/tern/-/tern-0.23.3.tgz";
- sha1 = "4b54538f04a88c9ff79de1f6f94f575a7f339460";
- };
- }
- {
- name = "_types_unist___unist_2.0.3.tgz";
- path = fetchurl {
- name = "_types_unist___unist_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz";
- sha1 = "9c088679876f374eb5983f150d4787aa6fb32d7e";
- };
- }
- {
- name = "_types_yargs_parser___yargs_parser_15.0.0.tgz";
- path = fetchurl {
- name = "_types_yargs_parser___yargs_parser_15.0.0.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz";
- sha1 = "cb3f9f741869e20cce330ffbeb9271590483882d";
- };
- }
- {
- name = "_types_yargs___yargs_15.0.5.tgz";
- path = fetchurl {
- name = "_types_yargs___yargs_15.0.5.tgz";
- url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz";
- sha1 = "947e9a6561483bdee9adffc983e91a6902af8b79";
- };
- }
- {
- name = "_types_zen_observable___zen_observable_0.8.0.tgz";
- path = fetchurl {
- name = "_types_zen_observable___zen_observable_0.8.0.tgz";
- url = "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.0.tgz";
- sha1 = "8b63ab7f1aa5321248aad5ac890a485656dcea4d";
- };
- }
- {
- name = "_typescript_eslint_experimental_utils___experimental_utils_2.30.0.tgz";
- path = fetchurl {
- name = "_typescript_eslint_experimental_utils___experimental_utils_2.30.0.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.30.0.tgz";
- sha1 = "9845e868c01f3aed66472c561d4b6bac44809dd0";
- };
- }
- {
- name = "_typescript_eslint_typescript_estree___typescript_estree_2.30.0.tgz";
- path = fetchurl {
- name = "_typescript_eslint_typescript_estree___typescript_estree_2.30.0.tgz";
- url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.30.0.tgz";
- sha1 = "1b8e848b55144270255ffbfe4c63291f8f766615";
- };
- }
- {
- name = "_vue_component_compiler_utils___component_compiler_utils_3.1.1.tgz";
- path = fetchurl {
- name = "_vue_component_compiler_utils___component_compiler_utils_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.1.1.tgz";
- sha1 = "d4ef8f80292674044ad6211e336a302e4d2a6575";
- };
- }
- {
- name = "_vue_test_utils___test_utils_1.2.0.tgz";
- path = fetchurl {
- name = "_vue_test_utils___test_utils_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.2.0.tgz";
- sha1 = "3bc8c17ed549157275f0aec6b95da40887f7297f";
- };
- }
- {
- name = "_webassemblyjs_ast___ast_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_ast___ast_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz";
- sha1 = "bd850604b4042459a5a41cd7d338cbed695ed964";
- };
- }
- {
- name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz";
- sha1 = "3c3d3b271bddfc84deb00f71344438311d52ffb4";
- };
- }
- {
- name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz";
- sha1 = "203f676e333b96c9da2eeab3ccef33c45928b6a2";
- };
- }
- {
- name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz";
- sha1 = "a1442d269c5feb23fcbc9ef759dac3547f29de00";
- };
- }
- {
- name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz";
- sha1 = "647f8892cd2043a82ac0c8c5e75c36f1d9159f27";
- };
- }
- {
- name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz";
- sha1 = "c05256b71244214671f4b08ec108ad63b70eddb8";
- };
- }
- {
- name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz";
- sha1 = "25d8884b76839871a08a6c6f806c3979ef712f07";
- };
- }
- {
- name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz";
- sha1 = "4fed8beac9b8c14f8c58b70d124d549dd1fe5790";
- };
- }
- {
- name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz";
- sha1 = "5a4138d5a6292ba18b04c5ae49717e4167965346";
- };
- }
- {
- name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz";
- sha1 = "15c7a0fbaae83fb26143bbacf6d6df1702ad39e4";
- };
- }
- {
- name = "_webassemblyjs_leb128___leb128_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_leb128___leb128_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz";
- sha1 = "f19ca0b76a6dc55623a09cffa769e838fa1e1c95";
- };
- }
- {
- name = "_webassemblyjs_utf8___utf8_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_utf8___utf8_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz";
- sha1 = "04d33b636f78e6a6813227e82402f7637b6229ab";
- };
- }
- {
- name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz";
- sha1 = "3fe6d79d3f0f922183aa86002c42dd256cfee9cf";
- };
- }
- {
- name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz";
- sha1 = "50bc70ec68ded8e2763b01a1418bf43491a7a49c";
- };
- }
- {
- name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz";
- sha1 = "2211181e5b31326443cc8112eb9f0b9028721a61";
- };
- }
- {
- name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz";
- sha1 = "9d48e44826df4a6598294aa6c87469d642fff65e";
- };
- }
- {
- name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz";
- sha1 = "3031115d79ac5bd261556cecc3fa90a3ef451914";
- };
- }
- {
- name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz";
- sha1 = "4935d54c85fef637b00ce9f52377451d00d47899";
- };
- }
- {
- name = "_wry_context___context_0.4.4.tgz";
- path = fetchurl {
- name = "_wry_context___context_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/@wry/context/-/context-0.4.4.tgz";
- sha1 = "e50f5fa1d6cfaabf2977d1fda5ae91717f8815f8";
- };
- }
- {
- name = "_wry_equality___equality_0.1.9.tgz";
- path = fetchurl {
- name = "_wry_equality___equality_0.1.9.tgz";
- url = "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.9.tgz";
- sha1 = "b13e18b7a8053c6858aa6c85b54911fb31e3a909";
- };
- }
- {
- name = "_xtuc_ieee754___ieee754_1.2.0.tgz";
- path = fetchurl {
- name = "_xtuc_ieee754___ieee754_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
- sha1 = "eef014a3145ae477a1cbc00cd1e552336dceb790";
- };
- }
- {
- name = "_xtuc_long___long_4.2.2.tgz";
- path = fetchurl {
- name = "_xtuc_long___long_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz";
- sha1 = "d291c6a4e97989b5c61d9acf396ae4fe133a718d";
- };
- }
- {
- name = "_yarnpkg_lockfile___lockfile_1.1.0.tgz";
- path = fetchurl {
- name = "_yarnpkg_lockfile___lockfile_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz";
- sha1 = "e77a97fbd345b76d83245edcd17d393b1b41fb31";
- };
- }
- {
- name = "abab___abab_2.0.5.tgz";
- path = fetchurl {
- name = "abab___abab_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz";
- sha1 = "c0b678fb32d60fc1219c784d6a826fe385aeb79a";
- };
- }
- {
- name = "abbrev___abbrev_1.1.1.tgz";
- path = fetchurl {
- name = "abbrev___abbrev_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz";
- sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8";
- };
- }
- {
- name = "accepts___accepts_1.3.7.tgz";
- path = fetchurl {
- name = "accepts___accepts_1.3.7.tgz";
- url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz";
- sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd";
- };
- }
- {
- name = "acorn_globals___acorn_globals_6.0.0.tgz";
- path = fetchurl {
- name = "acorn_globals___acorn_globals_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz";
- sha1 = "46cdd39f0f8ff08a876619b55f5ac8a6dc770b45";
- };
- }
- {
- name = "acorn_jsx___acorn_jsx_5.3.1.tgz";
- path = fetchurl {
- name = "acorn_jsx___acorn_jsx_5.3.1.tgz";
- url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz";
- sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b";
- };
- }
- {
- name = "acorn_walk___acorn_walk_7.2.0.tgz";
- path = fetchurl {
- name = "acorn_walk___acorn_walk_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz";
- sha1 = "0de889a601203909b0fbe07b8938dc21d2e967bc";
- };
- }
- {
- name = "acorn_walk___acorn_walk_8.0.2.tgz";
- path = fetchurl {
- name = "acorn_walk___acorn_walk_8.0.2.tgz";
- url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz";
- sha1 = "d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3";
- };
- }
- {
- name = "acorn___acorn_6.4.2.tgz";
- path = fetchurl {
- name = "acorn___acorn_6.4.2.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz";
- sha1 = "35866fd710528e92de10cf06016498e47e39e1e6";
- };
- }
- {
- name = "acorn___acorn_7.4.1.tgz";
- path = fetchurl {
- name = "acorn___acorn_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz";
- sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa";
- };
- }
- {
- name = "acorn___acorn_8.1.0.tgz";
- path = fetchurl {
- name = "acorn___acorn_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz";
- sha1 = "52311fd7037ae119cbb134309e901aa46295b3fe";
- };
- }
- {
- name = "agent_base___agent_base_4.3.0.tgz";
- path = fetchurl {
- name = "agent_base___agent_base_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz";
- sha1 = "8165f01c436009bccad0b1d122f05ed770efc6ee";
- };
- }
- {
- name = "aggregate_error___aggregate_error_3.0.1.tgz";
- path = fetchurl {
- name = "aggregate_error___aggregate_error_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz";
- sha1 = "db2fe7246e536f40d9b5442a39e117d7dd6a24e0";
- };
- }
- {
- name = "ajv_errors___ajv_errors_1.0.0.tgz";
- path = fetchurl {
- name = "ajv_errors___ajv_errors_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz";
- sha1 = "ecf021fa108fd17dfb5e6b383f2dd233e31ffc59";
- };
- }
- {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- path = fetchurl {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz";
- sha1 = "31f29da5ab6e00d1c2d329acf7b5929614d5014d";
- };
- }
- {
- name = "ajv___ajv_6.12.6.tgz";
- path = fetchurl {
- name = "ajv___ajv_6.12.6.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz";
- sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4";
- };
- }
- {
- name = "ajv___ajv_8.6.2.tgz";
- path = fetchurl {
- name = "ajv___ajv_8.6.2.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz";
- sha1 = "2fb45e0e5fcbc0813326c1c3da535d1881bb0571";
- };
- }
- {
- name = "ansi_align___ansi_align_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_align___ansi_align_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz";
- sha1 = "b536b371cf687caaef236c18d3e21fe3797467cb";
- };
- }
- {
- name = "ansi_colors___ansi_colors_3.2.4.tgz";
- path = fetchurl {
- name = "ansi_colors___ansi_colors_3.2.4.tgz";
- url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz";
- sha1 = "e3a3da4bfbae6c86a9c285625de124a234026fbf";
- };
- }
- {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- path = fetchurl {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348";
- };
- }
- {
- name = "ansi_escapes___ansi_escapes_4.3.0.tgz";
- path = fetchurl {
- name = "ansi_escapes___ansi_escapes_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz";
- sha1 = "a4ce2b33d6b214b7950d8595c212f12ac9cc569d";
- };
- }
- {
- name = "ansi_html___ansi_html_0.0.7.tgz";
- path = fetchurl {
- name = "ansi_html___ansi_html_0.0.7.tgz";
- url = "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz";
- sha1 = "813584021962a9e9e6fd039f940d12f56ca7859e";
- };
- }
- {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- }
- {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- }
- {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz";
- sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997";
- };
- }
- {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
- sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
- };
- }
- {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d";
- };
- }
- {
- name = "ansi_styles___ansi_styles_4.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz";
- sha1 = "90ae75c424d008d2624c5bf29ead3177ebfcf359";
- };
- }
- {
- name = "anymatch___anymatch_2.0.0.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz";
- sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb";
- };
- }
- {
- name = "anymatch___anymatch_3.1.1.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz";
- sha1 = "c55ecf02185e2469259399310c173ce31233b142";
- };
- }
- {
- name = "apollo_cache_inmemory___apollo_cache_inmemory_1.6.6.tgz";
- path = fetchurl {
- name = "apollo_cache_inmemory___apollo_cache_inmemory_1.6.6.tgz";
- url = "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz";
- sha1 = "56d1f2a463a6b9db32e9fa990af16d2a008206fd";
- };
- }
- {
- name = "apollo_cache___apollo_cache_1.3.5.tgz";
- path = fetchurl {
- name = "apollo_cache___apollo_cache_1.3.5.tgz";
- url = "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.3.5.tgz";
- sha1 = "9dbebfc8dbe8fe7f97ba568a224bca2c5d81f461";
- };
- }
- {
- name = "apollo_client___apollo_client_2.6.10.tgz";
- path = fetchurl {
- name = "apollo_client___apollo_client_2.6.10.tgz";
- url = "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.6.10.tgz";
- sha1 = "86637047b51d940c8eaa771a4ce1b02df16bea6a";
- };
- }
- {
- name = "apollo_link_batch_http___apollo_link_batch_http_1.2.14.tgz";
- path = fetchurl {
- name = "apollo_link_batch_http___apollo_link_batch_http_1.2.14.tgz";
- url = "https://registry.yarnpkg.com/apollo-link-batch-http/-/apollo-link-batch-http-1.2.14.tgz";
- sha1 = "4502109d3f32a94d88eabd3a89274ae3a6e2f56f";
- };
- }
- {
- name = "apollo_link_batch___apollo_link_batch_1.1.15.tgz";
- path = fetchurl {
- name = "apollo_link_batch___apollo_link_batch_1.1.15.tgz";
- url = "https://registry.yarnpkg.com/apollo-link-batch/-/apollo-link-batch-1.1.15.tgz";
- sha1 = "3a5b8c7d9cf1b7840ce630238249b95070e75e54";
- };
- }
- {
- name = "apollo_link_http_common___apollo_link_http_common_0.2.16.tgz";
- path = fetchurl {
- name = "apollo_link_http_common___apollo_link_http_common_0.2.16.tgz";
- url = "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz";
- sha1 = "756749dafc732792c8ca0923f9a40564b7c59ecc";
- };
- }
- {
- name = "apollo_link_http___apollo_link_http_1.5.17.tgz";
- path = fetchurl {
- name = "apollo_link_http___apollo_link_http_1.5.17.tgz";
- url = "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.17.tgz";
- sha1 = "499e9f1711bf694497f02c51af12d82de5d8d8ba";
- };
- }
- {
- name = "apollo_link___apollo_link_1.2.14.tgz";
- path = fetchurl {
- name = "apollo_link___apollo_link_1.2.14.tgz";
- url = "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz";
- sha1 = "3feda4b47f9ebba7f4160bef8b977ba725b684d9";
- };
- }
- {
- name = "apollo_upload_client___apollo_upload_client_13.0.0.tgz";
- path = fetchurl {
- name = "apollo_upload_client___apollo_upload_client_13.0.0.tgz";
- url = "https://registry.yarnpkg.com/apollo-upload-client/-/apollo-upload-client-13.0.0.tgz";
- sha1 = "146d1ddd85d711fcac8ca97a72d3ca6787f2b71b";
- };
- }
- {
- name = "apollo_utilities___apollo_utilities_1.3.4.tgz";
- path = fetchurl {
- name = "apollo_utilities___apollo_utilities_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.4.tgz";
- sha1 = "6129e438e8be201b6c55b0f13ce49d2c7175c9cf";
- };
- }
- {
- name = "aproba___aproba_1.2.0.tgz";
- path = fetchurl {
- name = "aproba___aproba_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz";
- sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a";
- };
- }
- {
- name = "argparse___argparse_1.0.10.tgz";
- path = fetchurl {
- name = "argparse___argparse_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz";
- sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
- };
- }
- {
- name = "argparse___argparse_2.0.1.tgz";
- path = fetchurl {
- name = "argparse___argparse_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz";
- sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38";
- };
- }
- {
- name = "aria_query___aria_query_4.2.2.tgz";
- path = fetchurl {
- name = "aria_query___aria_query_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz";
- sha1 = "0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b";
- };
- }
- {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- path = fetchurl {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
- };
- }
- {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- path = fetchurl {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
- };
- }
- {
- name = "arr_union___arr_union_3.1.0.tgz";
- path = fetchurl {
- name = "arr_union___arr_union_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
- };
- }
- {
- name = "array_find___array_find_1.0.0.tgz";
- path = fetchurl {
- name = "array_find___array_find_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/array-find/-/array-find-1.0.0.tgz";
- sha1 = "6c8e286d11ed768327f8e62ecee87353ca3e78b8";
- };
- }
- {
- name = "array_flatten___array_flatten_1.1.1.tgz";
- path = fetchurl {
- name = "array_flatten___array_flatten_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz";
- sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
- };
- }
- {
- name = "array_flatten___array_flatten_2.1.1.tgz";
- path = fetchurl {
- name = "array_flatten___array_flatten_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz";
- sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
- };
- }
- {
- name = "array_includes___array_includes_3.1.2.tgz";
- path = fetchurl {
- name = "array_includes___array_includes_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz";
- sha1 = "a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8";
- };
- }
- {
- name = "array_union___array_union_1.0.2.tgz";
- path = fetchurl {
- name = "array_union___array_union_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz";
- sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
- };
- }
- {
- name = "array_union___array_union_2.1.0.tgz";
- path = fetchurl {
- name = "array_union___array_union_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz";
- sha1 = "b798420adbeb1de828d84acd8a2e23d3efe85e8d";
- };
- }
- {
- name = "array_uniq___array_uniq_1.0.3.tgz";
- path = fetchurl {
- name = "array_uniq___array_uniq_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz";
- sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
- };
- }
- {
- name = "array_unique___array_unique_0.3.2.tgz";
- path = fetchurl {
- name = "array_unique___array_unique_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
- };
- }
- {
- name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz";
- path = fetchurl {
- name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz";
- sha1 = "6ef638b43312bd401b4c6199fdec7e2dc9e9a123";
- };
- }
- {
- name = "arrify___arrify_1.0.1.tgz";
- path = fetchurl {
- name = "arrify___arrify_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz";
- sha1 = "898508da2226f380df904728456849c1501a4b0d";
- };
- }
- {
- name = "asn1.js___asn1.js_4.10.1.tgz";
- path = fetchurl {
- name = "asn1.js___asn1.js_4.10.1.tgz";
- url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz";
- sha1 = "b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0";
- };
- }
- {
- name = "asn1___asn1_0.2.4.tgz";
- path = fetchurl {
- name = "asn1___asn1_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz";
- sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136";
- };
- }
- {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- path = fetchurl {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- }
- {
- name = "assert___assert_1.4.1.tgz";
- path = fetchurl {
- name = "assert___assert_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz";
- sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
- };
- }
- {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- path = fetchurl {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
- };
- }
- {
- name = "ast_types___ast_types_0.14.2.tgz";
- path = fetchurl {
- name = "ast_types___ast_types_0.14.2.tgz";
- url = "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz";
- sha1 = "600b882df8583e3cd4f2df5fa20fa83759d4bdfd";
- };
- }
- {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- path = fetchurl {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz";
- sha1 = "483143c567aeed4785759c0865786dc77d7d2e31";
- };
- }
- {
- name = "async_limiter___async_limiter_1.0.0.tgz";
- path = fetchurl {
- name = "async_limiter___async_limiter_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz";
- sha1 = "78faed8c3d074ab81f22b4e985d79e8738f720f8";
- };
- }
- {
- name = "async___async_2.6.3.tgz";
- path = fetchurl {
- name = "async___async_2.6.3.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz";
- sha1 = "d72625e2344a3656e3a3ad4fa749fa83299d82ff";
- };
- }
- {
- name = "asynckit___asynckit_0.4.0.tgz";
- path = fetchurl {
- name = "asynckit___asynckit_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- }
- {
- name = "atob___atob_2.1.2.tgz";
- path = fetchurl {
- name = "atob___atob_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz";
- sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9";
- };
- }
- {
- name = "autoprefixer___autoprefixer_9.8.6.tgz";
- path = fetchurl {
- name = "autoprefixer___autoprefixer_9.8.6.tgz";
- url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz";
- sha1 = "3b73594ca1bf9266320c5acf1588d74dea74210f";
- };
- }
- {
- name = "autosize___autosize_4.0.2.tgz";
- path = fetchurl {
- name = "autosize___autosize_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/autosize/-/autosize-4.0.2.tgz";
- sha1 = "073cfd07c8bf45da4b9fd153437f5bafbba1e4c9";
- };
- }
- {
- name = "aws_sdk___aws_sdk_2.637.0.tgz";
- path = fetchurl {
- name = "aws_sdk___aws_sdk_2.637.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.637.0.tgz";
- sha1 = "810e25e53acf2250d35fc74498f9d4492e154217";
- };
- }
- {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- path = fetchurl {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- }
- {
- name = "aws4___aws4_1.10.1.tgz";
- path = fetchurl {
- name = "aws4___aws4_1.10.1.tgz";
- url = "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz";
- sha1 = "e1e82e4f3e999e2cfd61b161280d16a111f86428";
- };
- }
- {
- name = "axios_mock_adapter___axios_mock_adapter_1.15.0.tgz";
- path = fetchurl {
- name = "axios_mock_adapter___axios_mock_adapter_1.15.0.tgz";
- url = "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-1.15.0.tgz";
- sha1 = "fbc06825d8302c95c3334d21023bba996255d45d";
- };
- }
- {
- name = "axios___axios_0.20.0.tgz";
- path = fetchurl {
- name = "axios___axios_0.20.0.tgz";
- url = "https://registry.yarnpkg.com/axios/-/axios-0.20.0.tgz";
- sha1 = "057ba30f04884694993a8cd07fa394cff11c50bd";
- };
- }
- {
- name = "babel_core___babel_core_7.0.0_bridge.0.tgz";
- path = fetchurl {
- name = "babel_core___babel_core_7.0.0_bridge.0.tgz";
- url = "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz";
- sha1 = "95a492ddd90f9b4e9a4a1da14eb335b87b634ece";
- };
- }
- {
- name = "babel_eslint___babel_eslint_10.0.3.tgz";
- path = fetchurl {
- name = "babel_eslint___babel_eslint_10.0.3.tgz";
- url = "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz";
- sha1 = "81a2c669be0f205e19462fed2482d33e4687a88a";
- };
- }
- {
- name = "babel_jest___babel_jest_26.5.2.tgz";
- path = fetchurl {
- name = "babel_jest___babel_jest_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.5.2.tgz";
- sha1 = "164f367a35946c6cf54eaccde8762dec50422250";
- };
- }
- {
- name = "babel_loader___babel_loader_8.2.2.tgz";
- path = fetchurl {
- name = "babel_loader___babel_loader_8.2.2.tgz";
- url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz";
- sha1 = "9363ce84c10c9a40e6c753748e1441b60c8a0b81";
- };
- }
- {
- name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz";
- path = fetchurl {
- name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz";
- sha1 = "84fda19c976ec5c6defef57f9427b3def66e17a3";
- };
- }
- {
- name = "babel_plugin_istanbul___babel_plugin_istanbul_6.0.0.tgz";
- path = fetchurl {
- name = "babel_plugin_istanbul___babel_plugin_istanbul_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz";
- sha1 = "e159ccdc9af95e0b570c75b4573b7c34d671d765";
- };
- }
- {
- name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_26.5.0.tgz";
- path = fetchurl {
- name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.5.0.tgz";
- sha1 = "3916b3a28129c29528de91e5784a44680db46385";
- };
- }
- {
- name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz";
- path = fetchurl {
- name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz";
- sha1 = "4f6844358a1340baed182adbeffa8df9967bc196";
- };
- }
- {
- name = "babel_preset_current_node_syntax___babel_preset_current_node_syntax_0.1.4.tgz";
- path = fetchurl {
- name = "babel_preset_current_node_syntax___babel_preset_current_node_syntax_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz";
- sha1 = "826f1f8e7245ad534714ba001f84f7e906c3b615";
- };
- }
- {
- name = "babel_preset_jest___babel_preset_jest_26.5.0.tgz";
- path = fetchurl {
- name = "babel_preset_jest___babel_preset_jest_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.5.0.tgz";
- sha1 = "f1b166045cd21437d1188d29f7fba470d5bdb0e7";
- };
- }
- {
- name = "babylon___babylon_7.0.0_beta.19.tgz";
- path = fetchurl {
- name = "babylon___babylon_7.0.0_beta.19.tgz";
- url = "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.19.tgz";
- sha1 = "e928c7e807e970e0536b078ab3e0c48f9e052503";
- };
- }
- {
- name = "bail___bail_1.0.5.tgz";
- path = fetchurl {
- name = "bail___bail_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz";
- sha1 = "b6fa133404a392cbc1f8c4bf63f5953351e7a776";
- };
- }
- {
- name = "balanced_match___balanced_match_1.0.0.tgz";
- path = fetchurl {
- name = "balanced_match___balanced_match_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
- };
- }
- {
- name = "base64_js___base64_js_1.5.1.tgz";
- path = fetchurl {
- name = "base64_js___base64_js_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz";
- sha1 = "1b1b440160a5bf7ad40b650f095963481903930a";
- };
- }
- {
- name = "base___base_0.11.2.tgz";
- path = fetchurl {
- name = "base___base_0.11.2.tgz";
- url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz";
- sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f";
- };
- }
- {
- name = "batch___batch_0.6.1.tgz";
- path = fetchurl {
- name = "batch___batch_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz";
- sha1 = "dc34314f4e679318093fc760272525f94bf25c16";
- };
- }
- {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- path = fetchurl {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- }
- {
- name = "big.js___big.js_5.2.2.tgz";
- path = fetchurl {
- name = "big.js___big.js_5.2.2.tgz";
- url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz";
- sha1 = "65f0af382f578bcdc742bd9c281e9cb2d7768328";
- };
- }
- {
- name = "binary_extensions___binary_extensions_2.0.0.tgz";
- path = fetchurl {
- name = "binary_extensions___binary_extensions_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz";
- sha1 = "23c0df14f6a88077f5f986c0d167ec03c3d5537c";
- };
- }
- {
- name = "binaryextensions___binaryextensions_2.1.1.tgz";
- path = fetchurl {
- name = "binaryextensions___binaryextensions_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.1.1.tgz";
- sha1 = "3209a51ca4a4ad541a3b8d3d6a6d5b83a2485935";
- };
- }
- {
- name = "bl___bl_4.1.0.tgz";
- path = fetchurl {
- name = "bl___bl_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz";
- sha1 = "451535264182bec2fbbc83a62ab98cf11d9f7b3a";
- };
- }
- {
- name = "bluebird___bluebird_3.5.5.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.5.5.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz";
- sha1 = "a8d0afd73251effbbd5fe384a77d73003c17a71f";
- };
- }
- {
- name = "bn.js___bn.js_4.11.9.tgz";
- path = fetchurl {
- name = "bn.js___bn.js_4.11.9.tgz";
- url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz";
- sha1 = "26d556829458f9d1e81fc48952493d0ba3507828";
- };
- }
- {
- name = "body_parser___body_parser_1.19.0.tgz";
- path = fetchurl {
- name = "body_parser___body_parser_1.19.0.tgz";
- url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz";
- sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a";
- };
- }
- {
- name = "bonjour___bonjour_3.5.0.tgz";
- path = fetchurl {
- name = "bonjour___bonjour_3.5.0.tgz";
- url = "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz";
- sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5";
- };
- }
- {
- name = "boolbase___boolbase_1.0.0.tgz";
- path = fetchurl {
- name = "boolbase___boolbase_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz";
- sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
- };
- }
- {
- name = "bootstrap_vue___bootstrap_vue_2.18.1.tgz";
- path = fetchurl {
- name = "bootstrap_vue___bootstrap_vue_2.18.1.tgz";
- url = "https://registry.yarnpkg.com/bootstrap-vue/-/bootstrap-vue-2.18.1.tgz";
- sha1 = "4378d26b713d4255b45b42b3f852f6fa0a11d400";
- };
- }
- {
- name = "bootstrap___bootstrap_4.5.3.tgz";
- path = fetchurl {
- name = "bootstrap___bootstrap_4.5.3.tgz";
- url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.3.tgz";
- sha1 = "c6a72b355aaf323920be800246a6e4ef30997fe6";
- };
- }
- {
- name = "boxen___boxen_4.2.0.tgz";
- path = fetchurl {
- name = "boxen___boxen_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz";
- sha1 = "e411b62357d6d6d36587c8ac3d5d974daa070e64";
- };
- }
- {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- path = fetchurl {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd";
- };
- }
- {
- name = "braces___braces_2.3.2.tgz";
- path = fetchurl {
- name = "braces___braces_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz";
- sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729";
- };
- }
- {
- name = "braces___braces_3.0.2.tgz";
- path = fetchurl {
- name = "braces___braces_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz";
- sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107";
- };
- }
- {
- name = "brorand___brorand_1.1.0.tgz";
- path = fetchurl {
- name = "brorand___brorand_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz";
- sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
- };
- }
- {
- name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz";
- path = fetchurl {
- name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz";
- sha1 = "3c9b4b7d782c8121e56f10106d84c0d0ffc94626";
- };
- }
- {
- name = "browserify_aes___browserify_aes_1.1.1.tgz";
- path = fetchurl {
- name = "browserify_aes___browserify_aes_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz";
- sha1 = "38b7ab55edb806ff2dcda1a7f1620773a477c49f";
- };
- }
- {
- name = "browserify_cipher___browserify_cipher_1.0.0.tgz";
- path = fetchurl {
- name = "browserify_cipher___browserify_cipher_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz";
- sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a";
- };
- }
- {
- name = "browserify_des___browserify_des_1.0.0.tgz";
- path = fetchurl {
- name = "browserify_des___browserify_des_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz";
- sha1 = "daa277717470922ed2fe18594118a175439721dd";
- };
- }
- {
- name = "browserify_rsa___browserify_rsa_4.0.1.tgz";
- path = fetchurl {
- name = "browserify_rsa___browserify_rsa_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
- sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
- };
- }
- {
- name = "browserify_sign___browserify_sign_4.0.4.tgz";
- path = fetchurl {
- name = "browserify_sign___browserify_sign_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz";
- sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
- };
- }
- {
- name = "browserify_zlib___browserify_zlib_0.2.0.tgz";
- path = fetchurl {
- name = "browserify_zlib___browserify_zlib_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
- sha1 = "2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f";
- };
- }
- {
- name = "browserslist___browserslist_4.16.6.tgz";
- path = fetchurl {
- name = "browserslist___browserslist_4.16.6.tgz";
- url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz";
- sha1 = "d7901277a5a88e554ed305b183ec9b0c08f66fa2";
- };
- }
- {
- name = "bser___bser_2.1.1.tgz";
- path = fetchurl {
- name = "bser___bser_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz";
- sha1 = "e6787da20ece9d07998533cfd9de6f5c38f4bc05";
- };
- }
- {
- name = "buffer_from___buffer_from_1.1.1.tgz";
- path = fetchurl {
- name = "buffer_from___buffer_from_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz";
- sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef";
- };
- }
- {
- name = "buffer_indexof___buffer_indexof_1.1.0.tgz";
- path = fetchurl {
- name = "buffer_indexof___buffer_indexof_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.0.tgz";
- sha1 = "f54f647c4f4e25228baa656a2e57e43d5f270982";
- };
- }
- {
- name = "buffer_json___buffer_json_2.0.0.tgz";
- path = fetchurl {
- name = "buffer_json___buffer_json_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/buffer-json/-/buffer-json-2.0.0.tgz";
- sha1 = "f73e13b1e42f196fe2fd67d001c7d7107edd7c23";
- };
- }
- {
- name = "buffer_xor___buffer_xor_1.0.3.tgz";
- path = fetchurl {
- name = "buffer_xor___buffer_xor_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz";
- sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
- };
- }
- {
- name = "buffer___buffer_4.9.1.tgz";
- path = fetchurl {
- name = "buffer___buffer_4.9.1.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz";
- sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
- };
- }
- {
- name = "buffer___buffer_5.7.1.tgz";
- path = fetchurl {
- name = "buffer___buffer_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz";
- sha1 = "ba62e7c13133053582197160851a8f648e99eed0";
- };
- }
- {
- name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz";
- path = fetchurl {
- name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
- sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
- };
- }
- {
- name = "bytes___bytes_3.0.0.tgz";
- path = fetchurl {
- name = "bytes___bytes_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz";
- sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
- };
- }
- {
- name = "bytes___bytes_3.1.0.tgz";
- path = fetchurl {
- name = "bytes___bytes_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz";
- sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6";
- };
- }
- {
- name = "cacache___cacache_12.0.3.tgz";
- path = fetchurl {
- name = "cacache___cacache_12.0.3.tgz";
- url = "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz";
- sha1 = "be99abba4e1bf5df461cd5a2c1071fc432573390";
- };
- }
- {
- name = "cacache___cacache_15.0.5.tgz";
- path = fetchurl {
- name = "cacache___cacache_15.0.5.tgz";
- url = "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz";
- sha1 = "69162833da29170d6732334643c60e005f5f17d0";
- };
- }
- {
- name = "cache_base___cache_base_1.0.1.tgz";
- path = fetchurl {
- name = "cache_base___cache_base_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz";
- sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2";
- };
- }
- {
- name = "cache_loader___cache_loader_4.1.0.tgz";
- path = fetchurl {
- name = "cache_loader___cache_loader_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/cache-loader/-/cache-loader-4.1.0.tgz";
- sha1 = "9948cae353aec0a1fcb1eafda2300816ec85387e";
- };
- }
- {
- name = "cacheable_request___cacheable_request_6.1.0.tgz";
- path = fetchurl {
- name = "cacheable_request___cacheable_request_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz";
- sha1 = "20ffb8bd162ba4be11e9567d823db651052ca912";
- };
- }
- {
- name = "call_bind___call_bind_1.0.2.tgz";
- path = fetchurl {
- name = "call_bind___call_bind_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz";
- sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c";
- };
- }
- {
- name = "call_me_maybe___call_me_maybe_1.0.1.tgz";
- path = fetchurl {
- name = "call_me_maybe___call_me_maybe_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
- sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
- };
- }
- {
- name = "callsites___callsites_3.0.0.tgz";
- path = fetchurl {
- name = "callsites___callsites_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz";
- sha1 = "fb7eb569b72ad7a45812f93fd9430a3e410b3dd3";
- };
- }
- {
- name = "camelcase_keys___camelcase_keys_6.2.2.tgz";
- path = fetchurl {
- name = "camelcase_keys___camelcase_keys_6.2.2.tgz";
- url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz";
- sha1 = "5e755d6ba51aa223ec7d3d52f25778210f9dc3c0";
- };
- }
- {
- name = "camelcase___camelcase_5.3.1.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_5.3.1.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz";
- sha1 = "e3c9b31569e106811df242f715725a1f4c494320";
- };
- }
- {
- name = "camelcase___camelcase_6.0.0.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz";
- sha1 = "5259f7c30e35e278f1bdc2a4d91230b37cad981e";
- };
- }
- {
- name = "caniuse_lite___caniuse_lite_1.0.30001241.tgz";
- path = fetchurl {
- name = "caniuse_lite___caniuse_lite_1.0.30001241.tgz";
- url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001241.tgz";
- sha1 = "cd3fae47eb3d7691692b406568d7a3e5b23c7598";
- };
- }
- {
- name = "capture_exit___capture_exit_2.0.0.tgz";
- path = fetchurl {
- name = "capture_exit___capture_exit_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz";
- sha1 = "fb953bfaebeb781f62898239dabb426d08a509a4";
- };
- }
- {
- name = "caseless___caseless_0.12.0.tgz";
- path = fetchurl {
- name = "caseless___caseless_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- }
- {
- name = "catharsis___catharsis_0.8.9.tgz";
- path = fetchurl {
- name = "catharsis___catharsis_0.8.9.tgz";
- url = "https://registry.yarnpkg.com/catharsis/-/catharsis-0.8.9.tgz";
- sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b";
- };
- }
- {
- name = "chalk___chalk_2.4.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz";
- sha1 = "cd42541677a54333cf541a49108c1432b44c9424";
- };
- }
- {
- name = "chalk___chalk_3.0.0.tgz";
- path = fetchurl {
- name = "chalk___chalk_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz";
- sha1 = "3f73c2bf526591f574cc492c51e2456349f844e4";
- };
- }
- {
- name = "chalk___chalk_4.1.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz";
- sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01";
- };
- }
- {
- name = "char_regex___char_regex_1.0.2.tgz";
- path = fetchurl {
- name = "char_regex___char_regex_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz";
- sha1 = "d744358226217f981ed58f479b1d6bcc29545dcf";
- };
- }
- {
- name = "character_entities_legacy___character_entities_legacy_1.1.4.tgz";
- path = fetchurl {
- name = "character_entities_legacy___character_entities_legacy_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz";
- sha1 = "94bc1845dce70a5bb9d2ecc748725661293d8fc1";
- };
- }
- {
- name = "character_entities___character_entities_1.2.4.tgz";
- path = fetchurl {
- name = "character_entities___character_entities_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz";
- sha1 = "e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b";
- };
- }
- {
- name = "character_reference_invalid___character_reference_invalid_1.1.4.tgz";
- path = fetchurl {
- name = "character_reference_invalid___character_reference_invalid_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz";
- sha1 = "083329cda0eae272ab3dbbf37e9a382c13af1560";
- };
- }
- {
- name = "chardet___chardet_0.7.0.tgz";
- path = fetchurl {
- name = "chardet___chardet_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz";
- sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e";
- };
- }
- {
- name = "charenc___charenc_0.0.2.tgz";
- path = fetchurl {
- name = "charenc___charenc_0.0.2.tgz";
- url = "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz";
- sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667";
- };
- }
- {
- name = "cheerio_select___cheerio_select_1.4.0.tgz";
- path = fetchurl {
- name = "cheerio_select___cheerio_select_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.4.0.tgz";
- sha1 = "3a16f21e37a2ef0f211d6d1aa4eff054bb22cdc9";
- };
- }
- {
- name = "cheerio___cheerio_1.0.0_rc.9.tgz";
- path = fetchurl {
- name = "cheerio___cheerio_1.0.0_rc.9.tgz";
- url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.9.tgz";
- sha1 = "a3ae6b7ce7af80675302ff836f628e7cb786a67f";
- };
- }
- {
- name = "chokidar___chokidar_3.4.0.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz";
- sha1 = "b30611423ce376357c765b9b8f904b9fba3c0be8";
- };
- }
- {
- name = "chownr___chownr_1.1.3.tgz";
- path = fetchurl {
- name = "chownr___chownr_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz";
- sha1 = "42d837d5239688d55f303003a508230fa6727142";
- };
- }
- {
- name = "chownr___chownr_2.0.0.tgz";
- path = fetchurl {
- name = "chownr___chownr_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz";
- sha1 = "15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece";
- };
- }
- {
- name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz";
- path = fetchurl {
- name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz";
- sha1 = "234090ee97c7d4ad1a2c4beae27505deffc608a4";
- };
- }
- {
- name = "ci_info___ci_info_2.0.0.tgz";
- path = fetchurl {
- name = "ci_info___ci_info_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz";
- sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46";
- };
- }
- {
- name = "cipher_base___cipher_base_1.0.4.tgz";
- path = fetchurl {
- name = "cipher_base___cipher_base_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz";
- sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de";
- };
- }
- {
- name = "class_utils___class_utils_0.3.6.tgz";
- path = fetchurl {
- name = "class_utils___class_utils_0.3.6.tgz";
- url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz";
- sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463";
- };
- }
- {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- path = fetchurl {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz";
- sha1 = "ee8472dbb129e727b31e8a10a427dee9dfe4008b";
- };
- }
- {
- name = "clean_stack___clean_stack_3.0.1.tgz";
- path = fetchurl {
- name = "clean_stack___clean_stack_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz";
- sha1 = "155bf0b2221bf5f4fba89528d24c5953f17fe3a8";
- };
- }
- {
- name = "cli_boxes___cli_boxes_2.2.0.tgz";
- path = fetchurl {
- name = "cli_boxes___cli_boxes_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz";
- sha1 = "538ecae8f9c6ca508e3c3c95b453fe93cb4c168d";
- };
- }
- {
- name = "cli_cursor___cli_cursor_3.1.0.tgz";
- path = fetchurl {
- name = "cli_cursor___cli_cursor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz";
- sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307";
- };
- }
- {
- name = "cli_spinners___cli_spinners_2.6.0.tgz";
- path = fetchurl {
- name = "cli_spinners___cli_spinners_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz";
- sha1 = "36c7dc98fb6a9a76bd6238ec3f77e2425627e939";
- };
- }
- {
- name = "cli_width___cli_width_3.0.0.tgz";
- path = fetchurl {
- name = "cli_width___cli_width_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz";
- sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6";
- };
- }
- {
- name = "clipboard___clipboard_1.7.1.tgz";
- path = fetchurl {
- name = "clipboard___clipboard_1.7.1.tgz";
- url = "https://registry.yarnpkg.com/clipboard/-/clipboard-1.7.1.tgz";
- sha1 = "360d6d6946e99a7a1fef395e42ba92b5e9b5a16b";
- };
- }
- {
- name = "clipboard___clipboard_2.0.6.tgz";
- path = fetchurl {
- name = "clipboard___clipboard_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz";
- sha1 = "52921296eec0fdf77ead1749421b21c968647376";
- };
- }
- {
- name = "cliui___cliui_5.0.0.tgz";
- path = fetchurl {
- name = "cliui___cliui_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz";
- sha1 = "deefcfdb2e800784aa34f46fa08e06851c7bbbc5";
- };
- }
- {
- name = "cliui___cliui_6.0.0.tgz";
- path = fetchurl {
- name = "cliui___cliui_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz";
- sha1 = "511d702c0c4e41ca156d7d0e96021f23e13225b1";
- };
- }
- {
- name = "clone_deep___clone_deep_4.0.1.tgz";
- path = fetchurl {
- name = "clone_deep___clone_deep_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz";
- sha1 = "c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387";
- };
- }
- {
- name = "clone_regexp___clone_regexp_2.2.0.tgz";
- path = fetchurl {
- name = "clone_regexp___clone_regexp_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-2.2.0.tgz";
- sha1 = "7d65e00885cd8796405c35a737e7a86b7429e36f";
- };
- }
- {
- name = "clone_response___clone_response_1.0.2.tgz";
- path = fetchurl {
- name = "clone_response___clone_response_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz";
- sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
- };
- }
- {
- name = "clone___clone_1.0.4.tgz";
- path = fetchurl {
- name = "clone___clone_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz";
- sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
- };
- }
- {
- name = "co___co_4.6.0.tgz";
- path = fetchurl {
- name = "co___co_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- }
- {
- name = "codemirror___codemirror_5.53.2.tgz";
- path = fetchurl {
- name = "codemirror___codemirror_5.53.2.tgz";
- url = "https://registry.yarnpkg.com/codemirror/-/codemirror-5.53.2.tgz";
- sha1 = "9799121cf8c50809cca487304e9de3a74d33f428";
- };
- }
- {
- name = "codesandbox_api___codesandbox_api_0.0.23.tgz";
- path = fetchurl {
- name = "codesandbox_api___codesandbox_api_0.0.23.tgz";
- url = "https://registry.yarnpkg.com/codesandbox-api/-/codesandbox-api-0.0.23.tgz";
- sha1 = "bf650a21b5f3c2369e03f0c19d10b4e2ba255b4f";
- };
- }
- {
- name = "codesandbox_import_util_types___codesandbox_import_util_types_1.2.11.tgz";
- path = fetchurl {
- name = "codesandbox_import_util_types___codesandbox_import_util_types_1.2.11.tgz";
- url = "https://registry.yarnpkg.com/codesandbox-import-util-types/-/codesandbox-import-util-types-1.2.11.tgz";
- sha1 = "68e812f21d6b309e9a52eec5cf027c3e63b4c703";
- };
- }
- {
- name = "codesandbox_import_utils___codesandbox_import_utils_1.2.11.tgz";
- path = fetchurl {
- name = "codesandbox_import_utils___codesandbox_import_utils_1.2.11.tgz";
- url = "https://registry.yarnpkg.com/codesandbox-import-utils/-/codesandbox-import-utils-1.2.11.tgz";
- sha1 = "b88423a4a7c785175c784c84e87f5950820280e1";
- };
- }
- {
- name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz";
- path = fetchurl {
- name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz";
- sha1 = "cc2c8e94fc18bbdffe64d6534570c8a673b27f59";
- };
- }
- {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- path = fetchurl {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
- };
- }
- {
- name = "color_convert___color_convert_1.9.3.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_1.9.3.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz";
- sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8";
- };
- }
- {
- name = "color_convert___color_convert_2.0.1.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz";
- sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3";
- };
- }
- {
- name = "color_convert___color_convert_0.5.3.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz";
- sha1 = "bdb6c69ce660fadffe0b0007cc447e1b9f7282bd";
- };
- }
- {
- name = "color_name___color_name_1.1.3.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- }
- {
- name = "color_name___color_name_1.1.4.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz";
- sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2";
- };
- }
- {
- name = "colorette___colorette_1.2.2.tgz";
- path = fetchurl {
- name = "colorette___colorette_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz";
- sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94";
- };
- }
- {
- name = "colors___colors_1.4.0.tgz";
- path = fetchurl {
- name = "colors___colors_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz";
- sha1 = "c50491479d4c1bdaed2c9ced32cf7c7dc2360f78";
- };
- }
- {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- path = fetchurl {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz";
- sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f";
- };
- }
- {
- name = "commander___commander_2.20.3.tgz";
- path = fetchurl {
- name = "commander___commander_2.20.3.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz";
- sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33";
- };
- }
- {
- name = "commander___commander_6.2.1.tgz";
- path = fetchurl {
- name = "commander___commander_6.2.1.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz";
- sha1 = "0792eb682dfbc325999bb2b84fddddba110ac73c";
- };
- }
- {
- name = "commondir___commondir_1.0.1.tgz";
- path = fetchurl {
- name = "commondir___commondir_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz";
- sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
- };
- }
- {
- name = "component_emitter___component_emitter_1.2.1.tgz";
- path = fetchurl {
- name = "component_emitter___component_emitter_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz";
- sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
- };
- }
- {
- name = "compressible___compressible_2.0.17.tgz";
- path = fetchurl {
- name = "compressible___compressible_2.0.17.tgz";
- url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz";
- sha1 = "6e8c108a16ad58384a977f3a482ca20bff2f38c1";
- };
- }
- {
- name = "compression_webpack_plugin___compression_webpack_plugin_5.0.2.tgz";
- path = fetchurl {
- name = "compression_webpack_plugin___compression_webpack_plugin_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-5.0.2.tgz";
- sha1 = "df84e682cfa1fb2a230e71cf83d50c323d5369c2";
- };
- }
- {
- name = "compression___compression_1.7.4.tgz";
- path = fetchurl {
- name = "compression___compression_1.7.4.tgz";
- url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz";
- sha1 = "95523eff170ca57c29a0ca41e6fe131f41e5bb8f";
- };
- }
- {
- name = "concat_map___concat_map_0.0.1.tgz";
- path = fetchurl {
- name = "concat_map___concat_map_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- }
- {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- path = fetchurl {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz";
- sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34";
- };
- }
- {
- name = "condense_newlines___condense_newlines_0.2.1.tgz";
- path = fetchurl {
- name = "condense_newlines___condense_newlines_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/condense-newlines/-/condense-newlines-0.2.1.tgz";
- sha1 = "3de985553139475d32502c83b02f60684d24c55f";
- };
- }
- {
- name = "config_chain___config_chain_1.1.12.tgz";
- path = fetchurl {
- name = "config_chain___config_chain_1.1.12.tgz";
- url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz";
- sha1 = "0fde8d091200eb5e808caf25fe618c02f48e4efa";
- };
- }
- {
- name = "configstore___configstore_5.0.1.tgz";
- path = fetchurl {
- name = "configstore___configstore_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz";
- sha1 = "d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96";
- };
- }
- {
- name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz";
- path = fetchurl {
- name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz";
- sha1 = "30d1e7f3d1b882b25ec4933d1d1adac353d20a59";
- };
- }
- {
- name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz";
- path = fetchurl {
- name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz";
- sha1 = "8b32089359308d111115d81cad3fceab888f97bc";
- };
- }
- {
- name = "consola___consola_2.15.3.tgz";
- path = fetchurl {
- name = "consola___consola_2.15.3.tgz";
- url = "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz";
- sha1 = "2e11f98d6a4be71ff72e0bdf07bd23e12cb61550";
- };
- }
- {
- name = "console_browserify___console_browserify_1.1.0.tgz";
- path = fetchurl {
- name = "console_browserify___console_browserify_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz";
- sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
- };
- }
- {
- name = "consolidate___consolidate_0.15.1.tgz";
- path = fetchurl {
- name = "consolidate___consolidate_0.15.1.tgz";
- url = "https://registry.yarnpkg.com/consolidate/-/consolidate-0.15.1.tgz";
- sha1 = "21ab043235c71a07d45d9aad98593b0dba56bab7";
- };
- }
- {
- name = "constants_browserify___constants_browserify_1.0.0.tgz";
- path = fetchurl {
- name = "constants_browserify___constants_browserify_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz";
- sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
- };
- }
- {
- name = "contains_path___contains_path_0.1.0.tgz";
- path = fetchurl {
- name = "contains_path___contains_path_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz";
- sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a";
- };
- }
- {
- name = "content_disposition___content_disposition_0.5.3.tgz";
- path = fetchurl {
- name = "content_disposition___content_disposition_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz";
- sha1 = "e130caf7e7279087c5616c2007d0485698984fbd";
- };
- }
- {
- name = "content_type___content_type_1.0.4.tgz";
- path = fetchurl {
- name = "content_type___content_type_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz";
- sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b";
- };
- }
- {
- name = "convert_source_map___convert_source_map_1.7.0.tgz";
- path = fetchurl {
- name = "convert_source_map___convert_source_map_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz";
- sha1 = "17a2cb882d7f77d3490585e2ce6c524424a3a442";
- };
- }
- {
- name = "cookie_signature___cookie_signature_1.0.6.tgz";
- path = fetchurl {
- name = "cookie_signature___cookie_signature_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz";
- sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
- };
- }
- {
- name = "cookie___cookie_0.4.0.tgz";
- path = fetchurl {
- name = "cookie___cookie_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz";
- sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba";
- };
- }
- {
- name = "copy_concurrently___copy_concurrently_1.0.5.tgz";
- path = fetchurl {
- name = "copy_concurrently___copy_concurrently_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
- sha1 = "92297398cae34937fcafd6ec8139c18051f0b5e0";
- };
- }
- {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- path = fetchurl {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
- };
- }
- {
- name = "copy_to_clipboard___copy_to_clipboard_3.2.0.tgz";
- path = fetchurl {
- name = "copy_to_clipboard___copy_to_clipboard_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz";
- sha1 = "d2724a3ccbfed89706fac8a894872c979ac74467";
- };
- }
- {
- name = "copy_webpack_plugin___copy_webpack_plugin_6.4.1.tgz";
- path = fetchurl {
- name = "copy_webpack_plugin___copy_webpack_plugin_6.4.1.tgz";
- url = "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz";
- sha1 = "138cd9b436dbca0a6d071720d5414848992ec47e";
- };
- }
- {
- name = "core_js_compat___core_js_compat_3.15.2.tgz";
- path = fetchurl {
- name = "core_js_compat___core_js_compat_3.15.2.tgz";
- url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.15.2.tgz";
- sha1 = "47272fbb479880de14b4e6081f71f3492f5bd3cb";
- };
- }
- {
- name = "core_js_pure___core_js_pure_3.6.5.tgz";
- path = fetchurl {
- name = "core_js_pure___core_js_pure_3.6.5.tgz";
- url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz";
- sha1 = "c79e75f5e38dbc85a662d91eea52b8256d53b813";
- };
- }
- {
- name = "core_js___core_js_3.17.3.tgz";
- path = fetchurl {
- name = "core_js___core_js_3.17.3.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-3.17.3.tgz";
- sha1 = "8e8bd20e91df9951e903cabe91f9af4a0895bc1e";
- };
- }
- {
- name = "core_js___core_js_2.3.0.tgz";
- path = fetchurl {
- name = "core_js___core_js_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-2.3.0.tgz";
- sha1 = "fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- }
- {
- name = "cosmiconfig___cosmiconfig_7.0.0.tgz";
- path = fetchurl {
- name = "cosmiconfig___cosmiconfig_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz";
- sha1 = "ef9b44d773959cae63ddecd122de23853b60f8d3";
- };
- }
- {
- name = "create_ecdh___create_ecdh_4.0.0.tgz";
- path = fetchurl {
- name = "create_ecdh___create_ecdh_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz";
- sha1 = "888c723596cdf7612f6498233eebd7a35301737d";
- };
- }
- {
- name = "create_hash___create_hash_1.1.3.tgz";
- path = fetchurl {
- name = "create_hash___create_hash_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz";
- sha1 = "606042ac8b9262750f483caddab0f5819172d8fd";
- };
- }
- {
- name = "create_hmac___create_hmac_1.1.6.tgz";
- path = fetchurl {
- name = "create_hmac___create_hmac_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz";
- sha1 = "acb9e221a4e17bdb076e90657c42b93e3726cf06";
- };
- }
- {
- name = "cron_validator___cron_validator_1.1.1.tgz";
- path = fetchurl {
- name = "cron_validator___cron_validator_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/cron-validator/-/cron-validator-1.1.1.tgz";
- sha1 = "0a27bb75508c7bc03c8b840d2d9f170eeacb5615";
- };
- }
- {
- name = "cropper___cropper_2.3.0.tgz";
- path = fetchurl {
- name = "cropper___cropper_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/cropper/-/cropper-2.3.0.tgz";
- sha1 = "607461d4e7aa7a7fe15a26834b14b7f0c2801562";
- };
- }
- {
- name = "cross_spawn___cross_spawn_6.0.5.tgz";
- path = fetchurl {
- name = "cross_spawn___cross_spawn_6.0.5.tgz";
- url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz";
- sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4";
- };
- }
- {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- path = fetchurl {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz";
- sha1 = "f73a85b9d5d41d045551c177e2882d4ac85728a6";
- };
- }
- {
- name = "crypt___crypt_0.0.2.tgz";
- path = fetchurl {
- name = "crypt___crypt_0.0.2.tgz";
- url = "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz";
- sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b";
- };
- }
- {
- name = "crypto_browserify___crypto_browserify_3.12.0.tgz";
- path = fetchurl {
- name = "crypto_browserify___crypto_browserify_3.12.0.tgz";
- url = "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
- sha1 = "396cf9f3137f03e4b8e532c58f698254e00f80ec";
- };
- }
- {
- name = "crypto_random_string___crypto_random_string_2.0.0.tgz";
- path = fetchurl {
- name = "crypto_random_string___crypto_random_string_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz";
- sha1 = "ef2a7a966ec11083388369baa02ebead229b30d5";
- };
- }
- {
- name = "css_color_names___css_color_names_0.0.4.tgz";
- path = fetchurl {
- name = "css_color_names___css_color_names_0.0.4.tgz";
- url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz";
- sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0";
- };
- }
- {
- name = "css_loader___css_loader_2.1.1.tgz";
- path = fetchurl {
- name = "css_loader___css_loader_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz";
- sha1 = "d8254f72e412bb2238bb44dd674ffbef497333ea";
- };
- }
- {
- name = "css_select___css_select_4.1.2.tgz";
- path = fetchurl {
- name = "css_select___css_select_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/css-select/-/css-select-4.1.2.tgz";
- sha1 = "8b52b6714ed3a80d8221ec971c543f3b12653286";
- };
- }
- {
- name = "css_selector_parser___css_selector_parser_1.3.0.tgz";
- path = fetchurl {
- name = "css_selector_parser___css_selector_parser_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/css-selector-parser/-/css-selector-parser-1.3.0.tgz";
- sha1 = "5f1ad43e2d8eefbfdc304fcd39a521664943e3eb";
- };
- }
- {
- name = "css_shorthand_properties___css_shorthand_properties_1.1.1.tgz";
- path = fetchurl {
- name = "css_shorthand_properties___css_shorthand_properties_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/css-shorthand-properties/-/css-shorthand-properties-1.1.1.tgz";
- sha1 = "1c808e63553c283f289f2dd56fcee8f3337bd935";
- };
- }
- {
- name = "css_values___css_values_0.1.0.tgz";
- path = fetchurl {
- name = "css_values___css_values_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/css-values/-/css-values-0.1.0.tgz";
- sha1 = "128b7ce103d4dc027a814a5d5995c54781d7b4c6";
- };
- }
- {
- name = "css_what___css_what_5.0.0.tgz";
- path = fetchurl {
- name = "css_what___css_what_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/css-what/-/css-what-5.0.0.tgz";
- sha1 = "f0bf4f8bac07582722346ab243f6a35b512cfc47";
- };
- }
- {
- name = "css___css_2.2.4.tgz";
- path = fetchurl {
- name = "css___css_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz";
- sha1 = "c646755c73971f2bba6a601e2cf2fd71b1298929";
- };
- }
- {
- name = "cssesc___cssesc_3.0.0.tgz";
- path = fetchurl {
- name = "cssesc___cssesc_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz";
- sha1 = "37741919903b868565e1c09ea747445cd18983ee";
- };
- }
- {
- name = "cssfontparser___cssfontparser_1.2.1.tgz";
- path = fetchurl {
- name = "cssfontparser___cssfontparser_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/cssfontparser/-/cssfontparser-1.2.1.tgz";
- sha1 = "f4022fc8f9700c68029d542084afbaf425a3f3e3";
- };
- }
- {
- name = "cssom___cssom_0.4.4.tgz";
- path = fetchurl {
- name = "cssom___cssom_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz";
- sha1 = "5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10";
- };
- }
- {
- name = "cssom___cssom_0.3.8.tgz";
- path = fetchurl {
- name = "cssom___cssom_0.3.8.tgz";
- url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz";
- sha1 = "9f1276f5b2b463f2114d3f2c75250af8c1a36f4a";
- };
- }
- {
- name = "cssstyle___cssstyle_2.3.0.tgz";
- path = fetchurl {
- name = "cssstyle___cssstyle_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz";
- sha1 = "ff665a0ddbdc31864b09647f34163443d90b0852";
- };
- }
- {
- name = "custom_jquery_matchers___custom_jquery_matchers_2.1.0.tgz";
- path = fetchurl {
- name = "custom_jquery_matchers___custom_jquery_matchers_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/custom-jquery-matchers/-/custom-jquery-matchers-2.1.0.tgz";
- sha1 = "e5988fa9715c416b0986b372563f872d9e91e024";
- };
- }
- {
- name = "cyclist___cyclist_0.2.2.tgz";
- path = fetchurl {
- name = "cyclist___cyclist_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz";
- sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
- };
- }
- {
- name = "d3_array___d3_array_1.2.1.tgz";
- path = fetchurl {
- name = "d3_array___d3_array_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.1.tgz";
- sha1 = "d1ca33de2f6ac31efadb8e050a021d7e2396d5dc";
- };
- }
- {
- name = "d3_axis___d3_axis_1.0.8.tgz";
- path = fetchurl {
- name = "d3_axis___d3_axis_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/d3-axis/-/d3-axis-1.0.8.tgz";
- sha1 = "31a705a0b535e65759de14173a31933137f18efa";
- };
- }
- {
- name = "d3_brush___d3_brush_1.0.4.tgz";
- path = fetchurl {
- name = "d3_brush___d3_brush_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.0.4.tgz";
- sha1 = "00c2f238019f24f6c0a194a26d41a1530ffe7bc4";
- };
- }
- {
- name = "d3_chord___d3_chord_1.0.4.tgz";
- path = fetchurl {
- name = "d3_chord___d3_chord_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/d3-chord/-/d3-chord-1.0.4.tgz";
- sha1 = "7dec4f0ba886f713fe111c45f763414f6f74ca2c";
- };
- }
- {
- name = "d3_collection___d3_collection_1.0.4.tgz";
- path = fetchurl {
- name = "d3_collection___d3_collection_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.4.tgz";
- sha1 = "342dfd12837c90974f33f1cc0a785aea570dcdc2";
- };
- }
- {
- name = "d3_color___d3_color_1.0.3.tgz";
- path = fetchurl {
- name = "d3_color___d3_color_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/d3-color/-/d3-color-1.0.3.tgz";
- sha1 = "bc7643fca8e53a8347e2fbdaffa236796b58509b";
- };
- }
- {
- name = "d3_contour___d3_contour_1.3.2.tgz";
- path = fetchurl {
- name = "d3_contour___d3_contour_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/d3-contour/-/d3-contour-1.3.2.tgz";
- sha1 = "652aacd500d2264cb3423cee10db69f6f59bead3";
- };
- }
- {
- name = "d3_dispatch___d3_dispatch_1.0.3.tgz";
- path = fetchurl {
- name = "d3_dispatch___d3_dispatch_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.3.tgz";
- sha1 = "46e1491eaa9b58c358fce5be4e8bed626e7871f8";
- };
- }
- {
- name = "d3_drag___d3_drag_1.2.1.tgz";
- path = fetchurl {
- name = "d3_drag___d3_drag_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.1.tgz";
- sha1 = "df8dd4c502fb490fc7462046a8ad98a5c479282d";
- };
- }
- {
- name = "d3_dsv___d3_dsv_1.0.8.tgz";
- path = fetchurl {
- name = "d3_dsv___d3_dsv_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.0.8.tgz";
- sha1 = "907e240d57b386618dc56468bacfe76bf19764ae";
- };
- }
- {
- name = "d3_ease___d3_ease_1.0.3.tgz";
- path = fetchurl {
- name = "d3_ease___d3_ease_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.3.tgz";
- sha1 = "68bfbc349338a380c44d8acc4fbc3304aa2d8c0e";
- };
- }
- {
- name = "d3_fetch___d3_fetch_1.1.2.tgz";
- path = fetchurl {
- name = "d3_fetch___d3_fetch_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-1.1.2.tgz";
- sha1 = "957c8fbc6d4480599ba191b1b2518bf86b3e1be2";
- };
- }
- {
- name = "d3_force___d3_force_1.1.0.tgz";
- path = fetchurl {
- name = "d3_force___d3_force_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/d3-force/-/d3-force-1.1.0.tgz";
- sha1 = "cebf3c694f1078fcc3d4daf8e567b2fbd70d4ea3";
- };
- }
- {
- name = "d3_format___d3_format_1.2.2.tgz";
- path = fetchurl {
- name = "d3_format___d3_format_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/d3-format/-/d3-format-1.2.2.tgz";
- sha1 = "1a39c479c8a57fe5051b2e67a3bee27061a74e7a";
- };
- }
- {
- name = "d3_geo___d3_geo_1.9.1.tgz";
- path = fetchurl {
- name = "d3_geo___d3_geo_1.9.1.tgz";
- url = "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.9.1.tgz";
- sha1 = "157e3b0f917379d0f73bebfff3be537f49fa7356";
- };
- }
- {
- name = "d3_hierarchy___d3_hierarchy_1.1.5.tgz";
- path = fetchurl {
- name = "d3_hierarchy___d3_hierarchy_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.5.tgz";
- sha1 = "a1c845c42f84a206bcf1c01c01098ea4ddaa7a26";
- };
- }
- {
- name = "d3_interpolate___d3_interpolate_1.1.6.tgz";
- path = fetchurl {
- name = "d3_interpolate___d3_interpolate_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.1.6.tgz";
- sha1 = "2cf395ae2381804df08aa1bf766b7f97b5f68fb6";
- };
- }
- {
- name = "d3_path___d3_path_1.0.5.tgz";
- path = fetchurl {
- name = "d3_path___d3_path_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.5.tgz";
- sha1 = "241eb1849bd9e9e8021c0d0a799f8a0e8e441764";
- };
- }
- {
- name = "d3_polygon___d3_polygon_1.0.3.tgz";
- path = fetchurl {
- name = "d3_polygon___d3_polygon_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-1.0.3.tgz";
- sha1 = "16888e9026460933f2b179652ad378224d382c62";
- };
- }
- {
- name = "d3_quadtree___d3_quadtree_1.0.3.tgz";
- path = fetchurl {
- name = "d3_quadtree___d3_quadtree_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.3.tgz";
- sha1 = "ac7987e3e23fe805a990f28e1b50d38fcb822438";
- };
- }
- {
- name = "d3_random___d3_random_1.1.0.tgz";
- path = fetchurl {
- name = "d3_random___d3_random_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/d3-random/-/d3-random-1.1.0.tgz";
- sha1 = "6642e506c6fa3a648595d2b2469788a8d12529d3";
- };
- }
- {
- name = "d3_sankey___d3_sankey_0.12.3.tgz";
- path = fetchurl {
- name = "d3_sankey___d3_sankey_0.12.3.tgz";
- url = "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz";
- sha1 = "b3c268627bd72e5d80336e8de6acbfec9d15d01d";
- };
- }
- {
- name = "d3_scale_chromatic___d3_scale_chromatic_1.3.3.tgz";
- path = fetchurl {
- name = "d3_scale_chromatic___d3_scale_chromatic_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.3.3.tgz";
- sha1 = "dad4366f0edcb288f490128979c3c793583ed3c0";
- };
- }
- {
- name = "d3_scale___d3_scale_2.2.2.tgz";
- path = fetchurl {
- name = "d3_scale___d3_scale_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz";
- sha1 = "4e880e0b2745acaaddd3ede26a9e908a9e17b81f";
- };
- }
- {
- name = "d3_selection___d3_selection_1.3.0.tgz";
- path = fetchurl {
- name = "d3_selection___d3_selection_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.3.0.tgz";
- sha1 = "d53772382d3dc4f7507bfb28bcd2d6aed2a0ad6d";
- };
- }
- {
- name = "d3_shape___d3_shape_1.3.7.tgz";
- path = fetchurl {
- name = "d3_shape___d3_shape_1.3.7.tgz";
- url = "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz";
- sha1 = "df63801be07bc986bc54f63789b4fe502992b5d7";
- };
- }
- {
- name = "d3_time_format___d3_time_format_2.1.1.tgz";
- path = fetchurl {
- name = "d3_time_format___d3_time_format_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.1.1.tgz";
- sha1 = "85b7cdfbc9ffca187f14d3c456ffda268081bb31";
- };
- }
- {
- name = "d3_time___d3_time_1.0.8.tgz";
- path = fetchurl {
- name = "d3_time___d3_time_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/d3-time/-/d3-time-1.0.8.tgz";
- sha1 = "dbd2d6007bf416fe67a76d17947b784bffea1e84";
- };
- }
- {
- name = "d3_timer___d3_timer_1.0.7.tgz";
- path = fetchurl {
- name = "d3_timer___d3_timer_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.7.tgz";
- sha1 = "df9650ca587f6c96607ff4e60cc38229e8dd8531";
- };
- }
- {
- name = "d3_transition___d3_transition_1.1.1.tgz";
- path = fetchurl {
- name = "d3_transition___d3_transition_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.1.1.tgz";
- sha1 = "d8ef89c3b848735b060e54a39b32aaebaa421039";
- };
- }
- {
- name = "d3_voronoi___d3_voronoi_1.1.2.tgz";
- path = fetchurl {
- name = "d3_voronoi___d3_voronoi_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.2.tgz";
- sha1 = "1687667e8f13a2d158c80c1480c5a29cb0d8973c";
- };
- }
- {
- name = "d3_zoom___d3_zoom_1.7.1.tgz";
- path = fetchurl {
- name = "d3_zoom___d3_zoom_1.7.1.tgz";
- url = "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.7.1.tgz";
- sha1 = "02f43b3c3e2db54f364582d7e4a236ccc5506b63";
- };
- }
- {
- name = "d3___d3_5.16.0.tgz";
- path = fetchurl {
- name = "d3___d3_5.16.0.tgz";
- url = "https://registry.yarnpkg.com/d3/-/d3-5.16.0.tgz";
- sha1 = "9c5e8d3b56403c79d4ed42fbd62f6113f199c877";
- };
- }
- {
- name = "dagre_d3___dagre_d3_0.6.4.tgz";
- path = fetchurl {
- name = "dagre_d3___dagre_d3_0.6.4.tgz";
- url = "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz";
- sha1 = "0728d5ce7f177ca2337df141ceb60fbe6eeb7b29";
- };
- }
- {
- name = "dagre___dagre_0.8.5.tgz";
- path = fetchurl {
- name = "dagre___dagre_0.8.5.tgz";
- url = "https://registry.yarnpkg.com/dagre/-/dagre-0.8.5.tgz";
- sha1 = "ba30b0055dac12b6c1fcc247817442777d06afee";
- };
- }
- {
- name = "dashdash___dashdash_1.14.1.tgz";
- path = fetchurl {
- name = "dashdash___dashdash_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- }
- {
- name = "data_urls___data_urls_2.0.0.tgz";
- path = fetchurl {
- name = "data_urls___data_urls_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz";
- sha1 = "156485a72963a970f5d5821aaf642bef2bf2db9b";
- };
- }
- {
- name = "date_now___date_now_0.1.4.tgz";
- path = fetchurl {
- name = "date_now___date_now_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz";
- sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
- };
- }
- {
- name = "dateformat___dateformat_4.5.1.tgz";
- path = fetchurl {
- name = "dateformat___dateformat_4.5.1.tgz";
- url = "https://registry.yarnpkg.com/dateformat/-/dateformat-4.5.1.tgz";
- sha1 = "c20e7a9ca77d147906b6dc2261a8be0a5bd2173c";
- };
- }
- {
- name = "de_indent___de_indent_1.0.2.tgz";
- path = fetchurl {
- name = "de_indent___de_indent_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz";
- sha1 = "b2038e846dc33baa5796128d0804b455b8c1e21d";
- };
- }
- {
- name = "debug___debug_2.6.9.tgz";
- path = fetchurl {
- name = "debug___debug_2.6.9.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz";
- sha1 = "5d128515df134ff327e90a4c93f4e077a536341f";
- };
- }
- {
- name = "debug___debug_3.1.0.tgz";
- path = fetchurl {
- name = "debug___debug_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz";
- sha1 = "5bb5a0672628b64149566ba16819e61518c67261";
- };
- }
- {
- name = "debug___debug_3.2.7.tgz";
- path = fetchurl {
- name = "debug___debug_3.2.7.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz";
- sha1 = "72580b7e9145fb39b6676f9c5e5fb100b934179a";
- };
- }
- {
- name = "debug___debug_4.3.1.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz";
- sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee";
- };
- }
- {
- name = "decamelize_keys___decamelize_keys_1.1.0.tgz";
- path = fetchurl {
- name = "decamelize_keys___decamelize_keys_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz";
- sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9";
- };
- }
- {
- name = "decamelize___decamelize_1.2.0.tgz";
- path = fetchurl {
- name = "decamelize___decamelize_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
- };
- }
- {
- name = "decimal.js___decimal.js_10.2.1.tgz";
- path = fetchurl {
- name = "decimal.js___decimal.js_10.2.1.tgz";
- url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz";
- sha1 = "238ae7b0f0c793d3e3cea410108b35a2c01426a3";
- };
- }
- {
- name = "deckar01_task_list___deckar01_task_list_2.3.1.tgz";
- path = fetchurl {
- name = "deckar01_task_list___deckar01_task_list_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/deckar01-task_list/-/deckar01-task_list-2.3.1.tgz";
- sha1 = "f3ffd5319d7b9e27c596dc8d823b13f617ed7db7";
- };
- }
- {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- path = fetchurl {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
- };
- }
- {
- name = "decompress_response___decompress_response_3.3.0.tgz";
- path = fetchurl {
- name = "decompress_response___decompress_response_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz";
- sha1 = "80a4dd323748384bfa248083622aedec982adff3";
- };
- }
- {
- name = "deep_equal___deep_equal_1.0.1.tgz";
- path = fetchurl {
- name = "deep_equal___deep_equal_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz";
- sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5";
- };
- }
- {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- path = fetchurl {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz";
- sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac";
- };
- }
- {
- name = "deep_is___deep_is_0.1.3.tgz";
- path = fetchurl {
- name = "deep_is___deep_is_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz";
- sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
- };
- }
- {
- name = "deepmerge___deepmerge_4.2.2.tgz";
- path = fetchurl {
- name = "deepmerge___deepmerge_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz";
- sha1 = "44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955";
- };
- }
- {
- name = "default_gateway___default_gateway_4.2.0.tgz";
- path = fetchurl {
- name = "default_gateway___default_gateway_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz";
- sha1 = "167104c7500c2115f6dd69b0a536bb8ed720552b";
- };
- }
- {
- name = "defaults___defaults_1.0.3.tgz";
- path = fetchurl {
- name = "defaults___defaults_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz";
- sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
- };
- }
- {
- name = "defer_to_connect___defer_to_connect_1.1.3.tgz";
- path = fetchurl {
- name = "defer_to_connect___defer_to_connect_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz";
- sha1 = "331ae050c08dcf789f8c83a7b81f0ed94f4ac591";
- };
- }
- {
- name = "define_properties___define_properties_1.1.3.tgz";
- path = fetchurl {
- name = "define_properties___define_properties_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz";
- sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1";
- };
- }
- {
- name = "define_property___define_property_0.2.5.tgz";
- path = fetchurl {
- name = "define_property___define_property_0.2.5.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
- };
- }
- {
- name = "define_property___define_property_1.0.0.tgz";
- path = fetchurl {
- name = "define_property___define_property_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
- };
- }
- {
- name = "define_property___define_property_2.0.2.tgz";
- path = fetchurl {
- name = "define_property___define_property_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz";
- sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d";
- };
- }
- {
- name = "del___del_4.1.1.tgz";
- path = fetchurl {
- name = "del___del_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz";
- sha1 = "9e8f117222ea44a31ff3a156c049b99052a9f0b4";
- };
- }
- {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- path = fetchurl {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- }
- {
- name = "delegate___delegate_3.1.2.tgz";
- path = fetchurl {
- name = "delegate___delegate_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/delegate/-/delegate-3.1.2.tgz";
- sha1 = "1e1bc6f5cadda6cb6cbf7e6d05d0bcdd5712aebe";
- };
- }
- {
- name = "depd___depd_1.1.1.tgz";
- path = fetchurl {
- name = "depd___depd_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz";
- sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359";
- };
- }
- {
- name = "depd___depd_1.1.2.tgz";
- path = fetchurl {
- name = "depd___depd_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz";
- sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
- };
- }
- {
- name = "des.js___des.js_1.0.0.tgz";
- path = fetchurl {
- name = "des.js___des.js_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz";
- sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
- };
- }
- {
- name = "destroy___destroy_1.0.4.tgz";
- path = fetchurl {
- name = "destroy___destroy_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz";
- sha1 = "978857442c44749e4206613e37946205826abd80";
- };
- }
- {
- name = "detect_file___detect_file_1.0.0.tgz";
- path = fetchurl {
- name = "detect_file___detect_file_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz";
- sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
- };
- }
- {
- name = "detect_newline___detect_newline_3.1.0.tgz";
- path = fetchurl {
- name = "detect_newline___detect_newline_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz";
- sha1 = "576f5dfc63ae1a192ff192d8ad3af6308991b651";
- };
- }
- {
- name = "detect_node___detect_node_2.0.4.tgz";
- path = fetchurl {
- name = "detect_node___detect_node_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz";
- sha1 = "014ee8f8f669c5c58023da64b8179c083a28c46c";
- };
- }
- {
- name = "diff_sequences___diff_sequences_26.5.0.tgz";
- path = fetchurl {
- name = "diff_sequences___diff_sequences_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.5.0.tgz";
- sha1 = "ef766cf09d43ed40406611f11c6d8d9dd8b2fefd";
- };
- }
- {
- name = "diff___diff_3.5.0.tgz";
- path = fetchurl {
- name = "diff___diff_3.5.0.tgz";
- url = "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz";
- sha1 = "800c0dd1e0a8bfbc95835c202ad220fe317e5a12";
- };
- }
- {
- name = "diffie_hellman___diffie_hellman_5.0.2.tgz";
- path = fetchurl {
- name = "diffie_hellman___diffie_hellman_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz";
- sha1 = "b5835739270cfe26acf632099fded2a07f209e5e";
- };
- }
- {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- path = fetchurl {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz";
- sha1 = "56dbf73d992a4a93ba1584f4534063fd2e41717f";
- };
- }
- {
- name = "dns_equal___dns_equal_1.0.0.tgz";
- path = fetchurl {
- name = "dns_equal___dns_equal_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz";
- sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d";
- };
- }
- {
- name = "dns_packet___dns_packet_1.2.2.tgz";
- path = fetchurl {
- name = "dns_packet___dns_packet_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.2.2.tgz";
- sha1 = "a8a26bec7646438963fc86e06f8f8b16d6c8bf7a";
- };
- }
- {
- name = "dns_txt___dns_txt_2.0.2.tgz";
- path = fetchurl {
- name = "dns_txt___dns_txt_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz";
- sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
- };
- }
- {
- name = "docdash___docdash_1.0.2.tgz";
- path = fetchurl {
- name = "docdash___docdash_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/docdash/-/docdash-1.0.2.tgz";
- sha1 = "0449a8f6bb247f563020b78a5485dea95ae2e094";
- };
- }
- {
- name = "doctrine___doctrine_1.5.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz";
- sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa";
- };
- }
- {
- name = "doctrine___doctrine_3.0.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz";
- sha1 = "addebead72a6574db783639dc87a121773973961";
- };
- }
- {
- name = "dom_accessibility_api___dom_accessibility_api_0.5.3.tgz";
- path = fetchurl {
- name = "dom_accessibility_api___dom_accessibility_api_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.3.tgz";
- sha1 = "0ea493c924d4070dfbf531c4aaca3d7a2c601aab";
- };
- }
- {
- name = "dom_event_types___dom_event_types_1.0.0.tgz";
- path = fetchurl {
- name = "dom_event_types___dom_event_types_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/dom-event-types/-/dom-event-types-1.0.0.tgz";
- sha1 = "5830a0a29e1bf837fe50a70cd80a597232813cae";
- };
- }
- {
- name = "dom_serializer___dom_serializer_0.2.2.tgz";
- path = fetchurl {
- name = "dom_serializer___dom_serializer_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz";
- sha1 = "1afb81f533717175d478655debc5e332d9f9bb51";
- };
- }
- {
- name = "dom_serializer___dom_serializer_1.3.1.tgz";
- path = fetchurl {
- name = "dom_serializer___dom_serializer_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.1.tgz";
- sha1 = "d845a1565d7c041a95e5dab62184ab41e3a519be";
- };
- }
- {
- name = "dom_walk___dom_walk_0.1.2.tgz";
- path = fetchurl {
- name = "dom_walk___dom_walk_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz";
- sha1 = "0c548bef048f4d1f2a97249002236060daa3fd84";
- };
- }
- {
- name = "domain_browser___domain_browser_1.1.7.tgz";
- path = fetchurl {
- name = "domain_browser___domain_browser_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz";
- sha1 = "867aa4b093faa05f1de08c06f4d7b21fdf8698bc";
- };
- }
- {
- name = "domelementtype___domelementtype_1.3.1.tgz";
- path = fetchurl {
- name = "domelementtype___domelementtype_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz";
- sha1 = "d048c44b37b0d10a7f2a3d5fee3f4333d790481f";
- };
- }
- {
- name = "domelementtype___domelementtype_2.2.0.tgz";
- path = fetchurl {
- name = "domelementtype___domelementtype_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz";
- sha1 = "9a0b6c2782ed6a1c7323d42267183df9bd8b1d57";
- };
- }
- {
- name = "domexception___domexception_2.0.1.tgz";
- path = fetchurl {
- name = "domexception___domexception_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz";
- sha1 = "fb44aefba793e1574b0af6aed2801d057529f304";
- };
- }
- {
- name = "domhandler___domhandler_2.4.2.tgz";
- path = fetchurl {
- name = "domhandler___domhandler_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz";
- sha1 = "8805097e933d65e85546f726d60f5eb88b44f803";
- };
- }
- {
- name = "domhandler___domhandler_4.2.0.tgz";
- path = fetchurl {
- name = "domhandler___domhandler_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz";
- sha1 = "f9768a5f034be60a89a27c2e4d0f74eba0d8b059";
- };
- }
- {
- name = "dompurify___dompurify_2.3.0.tgz";
- path = fetchurl {
- name = "dompurify___dompurify_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.0.tgz";
- sha1 = "07bb39515e491588e5756b1d3e8375b5964814e2";
- };
- }
- {
- name = "dompurify___dompurify_2.3.2.tgz";
- path = fetchurl {
- name = "dompurify___dompurify_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.2.tgz";
- sha1 = "c773efa410abb5c087c7caf44934fefa448f6e60";
- };
- }
- {
- name = "domutils___domutils_1.7.0.tgz";
- path = fetchurl {
- name = "domutils___domutils_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz";
- sha1 = "56ea341e834e06e6748af7a1cb25da67ea9f8c2a";
- };
- }
- {
- name = "domutils___domutils_2.6.0.tgz";
- path = fetchurl {
- name = "domutils___domutils_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/domutils/-/domutils-2.6.0.tgz";
- sha1 = "2e15c04185d43fb16ae7057cb76433c6edb938b7";
- };
- }
- {
- name = "dot_prop___dot_prop_5.2.0.tgz";
- path = fetchurl {
- name = "dot_prop___dot_prop_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz";
- sha1 = "c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb";
- };
- }
- {
- name = "dropzone___dropzone_4.2.0.tgz";
- path = fetchurl {
- name = "dropzone___dropzone_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/dropzone/-/dropzone-4.2.0.tgz";
- sha1 = "fbe7acbb9918e0706489072ef663effeef8a79f3";
- };
- }
- {
- name = "duplexer3___duplexer3_0.1.4.tgz";
- path = fetchurl {
- name = "duplexer3___duplexer3_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz";
- sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
- };
- }
- {
- name = "duplexer___duplexer_0.1.2.tgz";
- path = fetchurl {
- name = "duplexer___duplexer_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz";
- sha1 = "3abe43aef3835f8ae077d136ddce0f276b0400e6";
- };
- }
- {
- name = "duplexify___duplexify_3.7.1.tgz";
- path = fetchurl {
- name = "duplexify___duplexify_3.7.1.tgz";
- url = "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz";
- sha1 = "2a4df5317f6ccfd91f86d6fd25d8d8a103b88309";
- };
- }
- {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- path = fetchurl {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
- };
- }
- {
- name = "echarts___echarts_4.9.0.tgz";
- path = fetchurl {
- name = "echarts___echarts_4.9.0.tgz";
- url = "https://registry.yarnpkg.com/echarts/-/echarts-4.9.0.tgz";
- sha1 = "a9b9baa03f03a2a731e6340c55befb57a9e1347d";
- };
- }
- {
- name = "editions___editions_1.3.4.tgz";
- path = fetchurl {
- name = "editions___editions_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz";
- sha1 = "3662cb592347c3168eb8e498a0ff73271d67f50b";
- };
- }
- {
- name = "editorconfig___editorconfig_0.15.3.tgz";
- path = fetchurl {
- name = "editorconfig___editorconfig_0.15.3.tgz";
- url = "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz";
- sha1 = "bef84c4e75fb8dcb0ce5cee8efd51c15999befc5";
- };
- }
- {
- name = "ee_first___ee_first_1.1.1.tgz";
- path = fetchurl {
- name = "ee_first___ee_first_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
- };
- }
- {
- name = "electron_to_chromium___electron_to_chromium_1.3.762.tgz";
- path = fetchurl {
- name = "electron_to_chromium___electron_to_chromium_1.3.762.tgz";
- url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.762.tgz";
- sha1 = "3fa4e3bcbda539b50e3aa23041627063a5cffe61";
- };
- }
- {
- name = "elliptic___elliptic_6.5.4.tgz";
- path = fetchurl {
- name = "elliptic___elliptic_6.5.4.tgz";
- url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz";
- sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb";
- };
- }
- {
- name = "emittery___emittery_0.7.1.tgz";
- path = fetchurl {
- name = "emittery___emittery_0.7.1.tgz";
- url = "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz";
- sha1 = "c02375a927a40948c0345cc903072597f5270451";
- };
- }
- {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz";
- sha1 = "933a04052860c85e83c122479c4748a8e4c72156";
- };
- }
- {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz";
- sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37";
- };
- }
- {
- name = "emoji_unicode_version___emoji_unicode_version_0.2.1.tgz";
- path = fetchurl {
- name = "emoji_unicode_version___emoji_unicode_version_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/emoji-unicode-version/-/emoji-unicode-version-0.2.1.tgz";
- sha1 = "0ebf3666b5414097971d34994e299fce75cdbafc";
- };
- }
- {
- name = "emojis_list___emojis_list_3.0.0.tgz";
- path = fetchurl {
- name = "emojis_list___emojis_list_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz";
- sha1 = "5570662046ad29e2e916e71aae260abdff4f6a78";
- };
- }
- {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- path = fetchurl {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz";
- sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
- };
- }
- {
- name = "end_of_stream___end_of_stream_1.4.1.tgz";
- path = fetchurl {
- name = "end_of_stream___end_of_stream_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz";
- sha1 = "ed29634d19baba463b6ce6b80a37213eab71ec43";
- };
- }
- {
- name = "ends_with___ends_with_0.2.0.tgz";
- path = fetchurl {
- name = "ends_with___ends_with_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/ends-with/-/ends-with-0.2.0.tgz";
- sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a";
- };
- }
- {
- name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz";
- path = fetchurl {
- name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz";
- url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz";
- sha1 = "4d6e689b3725f86090927ccc86cd9f1635b89e2e";
- };
- }
- {
- name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
- path = fetchurl {
- name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz";
- sha1 = "2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec";
- };
- }
- {
- name = "enquirer___enquirer_2.3.6.tgz";
- path = fetchurl {
- name = "enquirer___enquirer_2.3.6.tgz";
- url = "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz";
- sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d";
- };
- }
- {
- name = "entities___entities_1.1.2.tgz";
- path = fetchurl {
- name = "entities___entities_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz";
- sha1 = "bdfa735299664dfafd34529ed4f8522a275fea56";
- };
- }
- {
- name = "entities___entities_2.0.3.tgz";
- path = fetchurl {
- name = "entities___entities_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz";
- sha1 = "5c487e5742ab93c15abb5da22759b8590ec03b7f";
- };
- }
- {
- name = "errno___errno_0.1.7.tgz";
- path = fetchurl {
- name = "errno___errno_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz";
- sha1 = "4684d71779ad39af177e3f007996f7c67c852618";
- };
- }
- {
- name = "error_ex___error_ex_1.3.2.tgz";
- path = fetchurl {
- name = "error_ex___error_ex_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz";
- sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf";
- };
- }
- {
- name = "es_abstract___es_abstract_1.18.0_next.2.tgz";
- path = fetchurl {
- name = "es_abstract___es_abstract_1.18.0_next.2.tgz";
- url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz";
- sha1 = "088101a55f0541f595e7e057199e27ddc8f3a5c2";
- };
- }
- {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- path = fetchurl {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz";
- sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a";
- };
- }
- {
- name = "es6_promise___es6_promise_4.2.8.tgz";
- path = fetchurl {
- name = "es6_promise___es6_promise_4.2.8.tgz";
- url = "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz";
- sha1 = "4eb21594c972bc40553d276e510539143db53e0a";
- };
- }
- {
- name = "es6_promise___es6_promise_3.0.2.tgz";
- path = fetchurl {
- name = "es6_promise___es6_promise_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.0.2.tgz";
- sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6";
- };
- }
- {
- name = "es6_promisify___es6_promisify_5.0.0.tgz";
- path = fetchurl {
- name = "es6_promisify___es6_promisify_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz";
- sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203";
- };
- }
- {
- name = "escalade___escalade_3.1.1.tgz";
- path = fetchurl {
- name = "escalade___escalade_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz";
- sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40";
- };
- }
- {
- name = "escape_goat___escape_goat_2.1.1.tgz";
- path = fetchurl {
- name = "escape_goat___escape_goat_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz";
- sha1 = "1b2dc77003676c457ec760b2dc68edb648188675";
- };
- }
- {
- name = "escape_html___escape_html_1.0.3.tgz";
- path = fetchurl {
- name = "escape_html___escape_html_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz";
- sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
- sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz";
- sha1 = "a30304e99daa32e23b2fd20f51babd07cffca344";
- };
- }
- {
- name = "escodegen___escodegen_1.14.3.tgz";
- path = fetchurl {
- name = "escodegen___escodegen_1.14.3.tgz";
- url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz";
- sha1 = "4e7b81fba61581dc97582ed78cab7f0e8d63f503";
- };
- }
- {
- name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.2.1.tgz";
- path = fetchurl {
- name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.2.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz";
- sha1 = "8a2eb38455dc5a312550193b319cdaeef042cd1e";
- };
- }
- {
- name = "eslint_config_prettier___eslint_config_prettier_6.10.0.tgz";
- path = fetchurl {
- name = "eslint_config_prettier___eslint_config_prettier_6.10.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.10.0.tgz";
- sha1 = "7b15e303bf9c956875c948f6b21500e48ded6a7f";
- };
- }
- {
- name = "eslint_import_resolver_jest___eslint_import_resolver_jest_3.0.0.tgz";
- path = fetchurl {
- name = "eslint_import_resolver_jest___eslint_import_resolver_jest_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-import-resolver-jest/-/eslint-import-resolver-jest-3.0.0.tgz";
- sha1 = "fd61da30fe58f4c1074af1f069b4267c70a91fd6";
- };
- }
- {
- name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz";
- path = fetchurl {
- name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz";
- url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz";
- sha1 = "85ffa81942c25012d8231096ddf679c03042c717";
- };
- }
- {
- name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.13.1.tgz";
- path = fetchurl {
- name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.13.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.13.1.tgz";
- sha1 = "6d2fb928091daf2da46efa1e568055555b2de902";
- };
- }
- {
- name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz";
- path = fetchurl {
- name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz";
- sha1 = "579ebd094f56af7797d19c9866c9c9486629bfa6";
- };
- }
- {
- name = "eslint_plugin_babel___eslint_plugin_babel_5.3.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_babel___eslint_plugin_babel_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-5.3.0.tgz";
- sha1 = "2e7f251ccc249326da760c1a4c948a91c32d0023";
- };
- }
- {
- name = "eslint_plugin_filenames___eslint_plugin_filenames_1.3.2.tgz";
- path = fetchurl {
- name = "eslint_plugin_filenames___eslint_plugin_filenames_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-filenames/-/eslint-plugin-filenames-1.3.2.tgz";
- sha1 = "7094f00d7aefdd6999e3ac19f72cea058e590cf7";
- };
- }
- {
- name = "eslint_plugin_import___eslint_plugin_import_2.22.1.tgz";
- path = fetchurl {
- name = "eslint_plugin_import___eslint_plugin_import_2.22.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz";
- sha1 = "0896c7e6a0cf44109a2d97b95903c2bb689d7702";
- };
- }
- {
- name = "eslint_plugin_jest___eslint_plugin_jest_23.8.2.tgz";
- path = fetchurl {
- name = "eslint_plugin_jest___eslint_plugin_jest_23.8.2.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.8.2.tgz";
- sha1 = "6f28b41c67ef635f803ebd9e168f6b73858eb8d4";
- };
- }
- {
- name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.6.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.6.0.tgz";
- sha1 = "7892cb7c086f7813156bca6bc48429825428e9eb";
- };
- }
- {
- name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz";
- path = fetchurl {
- name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz";
- sha1 = "845fd8b2260ad8f82564c1222fce44ad71d9418a";
- };
- }
- {
- name = "eslint_plugin_vue___eslint_plugin_vue_7.5.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_vue___eslint_plugin_vue_7.5.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.5.0.tgz";
- sha1 = "cc6d983eb22781fa2440a7573cf39af439bb5725";
- };
- }
- {
- name = "eslint_rule_composer___eslint_rule_composer_0.3.0.tgz";
- path = fetchurl {
- name = "eslint_rule_composer___eslint_rule_composer_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz";
- sha1 = "79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9";
- };
- }
- {
- name = "eslint_scope___eslint_scope_4.0.3.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz";
- sha1 = "ca03833310f6889a3264781aa82e63eb9cfe7848";
- };
- }
- {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz";
- sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c";
- };
- }
- {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- path = fetchurl {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz";
- sha1 = "d2de5e03424e707dc10c74068ddedae708741b27";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz";
- sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz";
- sha1 = "21fdc8fbcd9c795cc0321f0563702095751511a8";
- };
- }
- {
- name = "eslint___eslint_7.32.0.tgz";
- path = fetchurl {
- name = "eslint___eslint_7.32.0.tgz";
- url = "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz";
- sha1 = "c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d";
- };
- }
- {
- name = "espree___espree_6.2.1.tgz";
- path = fetchurl {
- name = "espree___espree_6.2.1.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz";
- sha1 = "77fc72e1fd744a2052c20f38a5b575832e82734a";
- };
- }
- {
- name = "espree___espree_7.3.1.tgz";
- path = fetchurl {
- name = "espree___espree_7.3.1.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz";
- sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6";
- };
- }
- {
- name = "esprima___esprima_4.0.1.tgz";
- path = fetchurl {
- name = "esprima___esprima_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz";
- sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71";
- };
- }
- {
- name = "esquery___esquery_1.4.0.tgz";
- path = fetchurl {
- name = "esquery___esquery_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
- sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
- };
- }
- {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- path = fetchurl {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz";
- sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921";
- };
- }
- {
- name = "estraverse___estraverse_4.3.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz";
- sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d";
- };
- }
- {
- name = "estraverse___estraverse_5.2.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz";
- sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880";
- };
- }
- {
- name = "esutils___esutils_2.0.3.tgz";
- path = fetchurl {
- name = "esutils___esutils_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz";
- sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64";
- };
- }
- {
- name = "etag___etag_1.8.1.tgz";
- path = fetchurl {
- name = "etag___etag_1.8.1.tgz";
- url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz";
- sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
- };
- }
- {
- name = "eve_raphael___eve_raphael_0.5.0.tgz";
- path = fetchurl {
- name = "eve_raphael___eve_raphael_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz";
- sha1 = "17c754b792beef3fa6684d79cf5a47c63c4cda30";
- };
- }
- {
- name = "eventemitter3___eventemitter3_4.0.0.tgz";
- path = fetchurl {
- name = "eventemitter3___eventemitter3_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz";
- sha1 = "d65176163887ee59f386d64c82610b696a4a74eb";
- };
- }
- {
- name = "events___events_1.1.1.tgz";
- path = fetchurl {
- name = "events___events_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz";
- sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
- };
- }
- {
- name = "events___events_3.0.0.tgz";
- path = fetchurl {
- name = "events___events_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz";
- sha1 = "9a0a0dfaf62893d92b875b8f2698ca4114973e88";
- };
- }
- {
- name = "eventsource___eventsource_1.0.7.tgz";
- path = fetchurl {
- name = "eventsource___eventsource_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz";
- sha1 = "8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0";
- };
- }
- {
- name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz";
- path = fetchurl {
- name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
- sha1 = "7fcbdb198dc71959432efe13842684e0525acb02";
- };
- }
- {
- name = "exec_sh___exec_sh_0.3.4.tgz";
- path = fetchurl {
- name = "exec_sh___exec_sh_0.3.4.tgz";
- url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz";
- sha1 = "3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5";
- };
- }
- {
- name = "execa___execa_1.0.0.tgz";
- path = fetchurl {
- name = "execa___execa_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz";
- sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8";
- };
- }
- {
- name = "execa___execa_4.0.3.tgz";
- path = fetchurl {
- name = "execa___execa_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz";
- sha1 = "0a34dabbad6d66100bd6f2c576c8669403f317f2";
- };
- }
- {
- name = "execall___execall_2.0.0.tgz";
- path = fetchurl {
- name = "execall___execall_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/execall/-/execall-2.0.0.tgz";
- sha1 = "16a06b5fe5099df7d00be5d9c06eecded1663b45";
- };
- }
- {
- name = "exit___exit_0.1.2.tgz";
- path = fetchurl {
- name = "exit___exit_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz";
- sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
- };
- }
- {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- path = fetchurl {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
- };
- }
- {
- name = "expand_tilde___expand_tilde_2.0.2.tgz";
- path = fetchurl {
- name = "expand_tilde___expand_tilde_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz";
- sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
- };
- }
- {
- name = "expect___expect_26.5.2.tgz";
- path = fetchurl {
- name = "expect___expect_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/expect/-/expect-26.5.2.tgz";
- sha1 = "3e0631c4a657a83dbec769ad246a2998953a55a6";
- };
- }
- {
- name = "express___express_4.17.1.tgz";
- path = fetchurl {
- name = "express___express_4.17.1.tgz";
- url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz";
- sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134";
- };
- }
- {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
- };
- }
- {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
- };
- }
- {
- name = "extend___extend_3.0.2.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz";
- sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa";
- };
- }
- {
- name = "external_editor___external_editor_3.1.0.tgz";
- path = fetchurl {
- name = "external_editor___external_editor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz";
- sha1 = "cb03f740befae03ea4d283caed2741a83f335495";
- };
- }
- {
- name = "extglob___extglob_2.0.4.tgz";
- path = fetchurl {
- name = "extglob___extglob_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz";
- sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543";
- };
- }
- {
- name = "extract_files___extract_files_8.1.0.tgz";
- path = fetchurl {
- name = "extract_files___extract_files_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/extract-files/-/extract-files-8.1.0.tgz";
- sha1 = "46a0690d0fe77411a2e3804852adeaa65cd59288";
- };
- }
- {
- name = "extract_from_css___extract_from_css_0.4.4.tgz";
- path = fetchurl {
- name = "extract_from_css___extract_from_css_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/extract-from-css/-/extract-from-css-0.4.4.tgz";
- sha1 = "1ea7df2e7c7c6eb9922fa08e8adaea486f6f8f92";
- };
- }
- {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- }
- {
- name = "fake_xml_http_request___fake_xml_http_request_2.1.1.tgz";
- path = fetchurl {
- name = "fake_xml_http_request___fake_xml_http_request_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/fake-xml-http-request/-/fake-xml-http-request-2.1.1.tgz";
- sha1 = "279fdac235840d7a4dff77d98ec44bce9fc690a6";
- };
- }
- {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- path = fetchurl {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
- sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525";
- };
- }
- {
- name = "fast_glob___fast_glob_3.2.5.tgz";
- path = fetchurl {
- name = "fast_glob___fast_glob_3.2.5.tgz";
- url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz";
- sha1 = "7939af2a656de79a4f1901903ee8adcaa7cb9661";
- };
- }
- {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- path = fetchurl {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
- sha1 = "874bf69c6f404c2b5d99c481341399fd55892633";
- };
- }
- {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- path = fetchurl {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
- };
- }
- {
- name = "fast_mersenne_twister___fast_mersenne_twister_1.0.2.tgz";
- path = fetchurl {
- name = "fast_mersenne_twister___fast_mersenne_twister_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/fast-mersenne-twister/-/fast-mersenne-twister-1.0.2.tgz";
- sha1 = "5ead7caf3ace592a5789d11767732bd81cbaaa56";
- };
- }
- {
- name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz";
- path = fetchurl {
- name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz";
- url = "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz";
- sha1 = "9990f7d3a88cc5a9ffd1f1745745251700d497e2";
- };
- }
- {
- name = "fastq___fastq_1.10.1.tgz";
- path = fetchurl {
- name = "fastq___fastq_1.10.1.tgz";
- url = "https://registry.yarnpkg.com/fastq/-/fastq-1.10.1.tgz";
- sha1 = "8b8f2ac8bf3632d67afcd65dac248d5fdc45385e";
- };
- }
- {
- name = "fault___fault_1.0.4.tgz";
- path = fetchurl {
- name = "fault___fault_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz";
- sha1 = "eafcfc0a6d214fc94601e170df29954a4f842f13";
- };
- }
- {
- name = "faye_websocket___faye_websocket_0.11.3.tgz";
- path = fetchurl {
- name = "faye_websocket___faye_websocket_0.11.3.tgz";
- url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz";
- sha1 = "5c0e9a8968e8912c286639fde977a8b209f2508e";
- };
- }
- {
- name = "fb_watchman___fb_watchman_2.0.1.tgz";
- path = fetchurl {
- name = "fb_watchman___fb_watchman_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz";
- sha1 = "fc84fb39d2709cf3ff6d743706157bb5708a8a85";
- };
- }
- {
- name = "figgy_pudding___figgy_pudding_3.5.1.tgz";
- path = fetchurl {
- name = "figgy_pudding___figgy_pudding_3.5.1.tgz";
- url = "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz";
- sha1 = "862470112901c727a0e495a80744bd5baa1d6790";
- };
- }
- {
- name = "figures___figures_3.2.0.tgz";
- path = fetchurl {
- name = "figures___figures_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz";
- sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af";
- };
- }
- {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- path = fetchurl {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz";
- sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027";
- };
- }
- {
- name = "file_loader___file_loader_6.2.0.tgz";
- path = fetchurl {
- name = "file_loader___file_loader_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz";
- sha1 = "baef7cf8e1840df325e4390b4484879480eebe4d";
- };
- }
- {
- name = "fill_range___fill_range_4.0.0.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
- };
- }
- {
- name = "fill_range___fill_range_7.0.1.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz";
- sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40";
- };
- }
- {
- name = "finalhandler___finalhandler_1.1.2.tgz";
- path = fetchurl {
- name = "finalhandler___finalhandler_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz";
- sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d";
- };
- }
- {
- name = "find_cache_dir___find_cache_dir_2.1.0.tgz";
- path = fetchurl {
- name = "find_cache_dir___find_cache_dir_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz";
- sha1 = "8d0f94cd13fe43c6c7c261a0d86115ca918c05f7";
- };
- }
- {
- name = "find_cache_dir___find_cache_dir_3.3.1.tgz";
- path = fetchurl {
- name = "find_cache_dir___find_cache_dir_3.3.1.tgz";
- url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz";
- sha1 = "89b33fad4a4670daa94f855f7fbe31d6d84fe880";
- };
- }
- {
- name = "find_root___find_root_1.1.0.tgz";
- path = fetchurl {
- name = "find_root___find_root_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz";
- sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4";
- };
- }
- {
- name = "find_up___find_up_2.1.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz";
- sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
- };
- }
- {
- name = "find_up___find_up_3.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz";
- sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73";
- };
- }
- {
- name = "find_up___find_up_4.1.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz";
- sha1 = "97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19";
- };
- }
- {
- name = "findup_sync___findup_sync_3.0.0.tgz";
- path = fetchurl {
- name = "findup_sync___findup_sync_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz";
- sha1 = "17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1";
- };
- }
- {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- path = fetchurl {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz";
- sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11";
- };
- }
- {
- name = "flatted___flatted_3.1.1.tgz";
- path = fetchurl {
- name = "flatted___flatted_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz";
- sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469";
- };
- }
- {
- name = "flow_parser___flow_parser_0.157.0.tgz";
- path = fetchurl {
- name = "flow_parser___flow_parser_0.157.0.tgz";
- url = "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.157.0.tgz";
- sha1 = "8ef0a748a838a505820a3099690472757d39581c";
- };
- }
- {
- name = "flush_write_stream___flush_write_stream_1.1.1.tgz";
- path = fetchurl {
- name = "flush_write_stream___flush_write_stream_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz";
- sha1 = "8dd7d873a1babc207d94ead0c2e0e44276ebf2e8";
- };
- }
- {
- name = "follow_redirects___follow_redirects_1.13.0.tgz";
- path = fetchurl {
- name = "follow_redirects___follow_redirects_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz";
- sha1 = "b42e8d93a2a7eea5ed88633676d6597bc8e384db";
- };
- }
- {
- name = "for_in___for_in_1.0.2.tgz";
- path = fetchurl {
- name = "for_in___for_in_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
- };
- }
- {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- path = fetchurl {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- }
- {
- name = "form_data___form_data_2.3.3.tgz";
- path = fetchurl {
- name = "form_data___form_data_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz";
- sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6";
- };
- }
- {
- name = "format___format_0.2.2.tgz";
- path = fetchurl {
- name = "format___format_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz";
- sha1 = "d6170107e9efdc4ed30c9dc39016df942b5cb58b";
- };
- }
- {
- name = "forwarded___forwarded_0.1.2.tgz";
- path = fetchurl {
- name = "forwarded___forwarded_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz";
- sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
- };
- }
- {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- path = fetchurl {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
- };
- }
- {
- name = "fresh___fresh_0.5.2.tgz";
- path = fetchurl {
- name = "fresh___fresh_0.5.2.tgz";
- url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz";
- sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
- };
- }
- {
- name = "from2___from2_2.3.0.tgz";
- path = fetchurl {
- name = "from2___from2_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz";
- sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
- };
- }
- {
- name = "fs_extra___fs_extra_8.1.0.tgz";
- path = fetchurl {
- name = "fs_extra___fs_extra_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz";
- sha1 = "49d43c45a88cd9677668cb7be1b46efdb8d2e1c0";
- };
- }
- {
- name = "fs_minipass___fs_minipass_2.0.0.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.0.0.tgz";
- sha1 = "a6415edab02fae4b9e9230bc87ee2e4472003cd1";
- };
- }
- {
- name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz";
- path = fetchurl {
- name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
- sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
- };
- }
- {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- path = fetchurl {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- }
- {
- name = "fsevents___fsevents_2.1.3.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz";
- sha1 = "fb738703ae8d2f9fe900c33836ddebee8b97f23e";
- };
- }
- {
- name = "function_bind___function_bind_1.1.1.tgz";
- path = fetchurl {
- name = "function_bind___function_bind_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz";
- sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d";
- };
- }
- {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- path = fetchurl {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
- };
- }
- {
- name = "fuzzaldrin_plus___fuzzaldrin_plus_0.6.0.tgz";
- path = fetchurl {
- name = "fuzzaldrin_plus___fuzzaldrin_plus_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz";
- sha1 = "832f6489fbe876769459599c914a670ec22947ee";
- };
- }
- {
- name = "gensync___gensync_1.0.0_beta.2.tgz";
- path = fetchurl {
- name = "gensync___gensync_1.0.0_beta.2.tgz";
- url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz";
- sha1 = "32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0";
- };
- }
- {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz";
- sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
- };
- }
- {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- path = fetchurl {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
- sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6";
- };
- }
- {
- name = "get_package_type___get_package_type_0.1.0.tgz";
- path = fetchurl {
- name = "get_package_type___get_package_type_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz";
- sha1 = "8de2d803cff44df3bc6c456e6668b36c3926e11a";
- };
- }
- {
- name = "get_stdin___get_stdin_6.0.0.tgz";
- path = fetchurl {
- name = "get_stdin___get_stdin_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz";
- sha1 = "9e09bf712b360ab9225e812048f71fde9c89657b";
- };
- }
- {
- name = "get_stdin___get_stdin_8.0.0.tgz";
- path = fetchurl {
- name = "get_stdin___get_stdin_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz";
- sha1 = "cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53";
- };
- }
- {
- name = "get_stream___get_stream_4.1.0.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz";
- sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5";
- };
- }
- {
- name = "get_stream___get_stream_5.2.0.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz";
- sha1 = "4966a1795ee5ace65e706c4b7beb71257d6e22d3";
- };
- }
- {
- name = "get_value___get_value_2.0.6.tgz";
- path = fetchurl {
- name = "get_value___get_value_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
- };
- }
- {
- name = "getpass___getpass_0.1.7.tgz";
- path = fetchurl {
- name = "getpass___getpass_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- }
- {
- name = "gettext_extractor_vue___gettext_extractor_vue_5.0.0.tgz";
- path = fetchurl {
- name = "gettext_extractor_vue___gettext_extractor_vue_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/gettext-extractor-vue/-/gettext-extractor-vue-5.0.0.tgz";
- sha1 = "dc463868d49e14097c4545c8ed4851d8d3edd6dd";
- };
- }
- {
- name = "gettext_extractor___gettext_extractor_3.5.3.tgz";
- path = fetchurl {
- name = "gettext_extractor___gettext_extractor_3.5.3.tgz";
- url = "https://registry.yarnpkg.com/gettext-extractor/-/gettext-extractor-3.5.3.tgz";
- sha1 = "6ed46931c154a7485a80fa8b91b835ff7b8d0411";
- };
- }
- {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
- sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
- };
- }
- {
- name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz";
- path = fetchurl {
- name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz";
- sha1 = "c75297087c851b9a578bd217dd59a92f59fe546e";
- };
- }
- {
- name = "glob___glob_7.1.7.tgz";
- path = fetchurl {
- name = "glob___glob_7.1.7.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz";
- sha1 = "3b193e9233f01d42d0b3f78294bbeeb418f94a90";
- };
- }
- {
- name = "global_dirs___global_dirs_2.0.1.tgz";
- path = fetchurl {
- name = "global_dirs___global_dirs_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.0.1.tgz";
- sha1 = "acdf3bb6685bcd55cb35e8a052266569e9469201";
- };
- }
- {
- name = "global_modules___global_modules_1.0.0.tgz";
- path = fetchurl {
- name = "global_modules___global_modules_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz";
- sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea";
- };
- }
- {
- name = "global_modules___global_modules_2.0.0.tgz";
- path = fetchurl {
- name = "global_modules___global_modules_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz";
- sha1 = "997605ad2345f27f51539bea26574421215c7780";
- };
- }
- {
- name = "global_prefix___global_prefix_1.0.2.tgz";
- path = fetchurl {
- name = "global_prefix___global_prefix_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz";
- sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
- };
- }
- {
- name = "global_prefix___global_prefix_3.0.0.tgz";
- path = fetchurl {
- name = "global_prefix___global_prefix_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz";
- sha1 = "fc85f73064df69f50421f47f883fe5b913ba9b97";
- };
- }
- {
- name = "global___global_4.4.0.tgz";
- path = fetchurl {
- name = "global___global_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz";
- sha1 = "3e7b105179006a323ed71aafca3e9c57a5cc6406";
- };
- }
- {
- name = "globals___globals_11.12.0.tgz";
- path = fetchurl {
- name = "globals___globals_11.12.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz";
- sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e";
- };
- }
- {
- name = "globals___globals_13.9.0.tgz";
- path = fetchurl {
- name = "globals___globals_13.9.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-13.9.0.tgz";
- sha1 = "4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb";
- };
- }
- {
- name = "globby___globby_11.0.4.tgz";
- path = fetchurl {
- name = "globby___globby_11.0.4.tgz";
- url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz";
- sha1 = "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5";
- };
- }
- {
- name = "globby___globby_6.1.0.tgz";
- path = fetchurl {
- name = "globby___globby_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz";
- sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c";
- };
- }
- {
- name = "globjoin___globjoin_0.1.4.tgz";
- path = fetchurl {
- name = "globjoin___globjoin_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz";
- sha1 = "2f4494ac8919e3767c5cbb691e9f463324285d43";
- };
- }
- {
- name = "gonzales_pe___gonzales_pe_4.3.0.tgz";
- path = fetchurl {
- name = "gonzales_pe___gonzales_pe_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.3.0.tgz";
- sha1 = "fe9dec5f3c557eead09ff868c65826be54d067b3";
- };
- }
- {
- name = "good_listener___good_listener_1.2.2.tgz";
- path = fetchurl {
- name = "good_listener___good_listener_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz";
- sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
- };
- }
- {
- name = "got___got_9.6.0.tgz";
- path = fetchurl {
- name = "got___got_9.6.0.tgz";
- url = "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz";
- sha1 = "edf45e7d67f99545705de1f7bbeeeb121765ed85";
- };
- }
- {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- path = fetchurl {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz";
- sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a";
- };
- }
- {
- name = "graphlib___graphlib_2.1.8.tgz";
- path = fetchurl {
- name = "graphlib___graphlib_2.1.8.tgz";
- url = "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.8.tgz";
- sha1 = "5761d414737870084c92ec7b5dbcb0592c9d35da";
- };
- }
- {
- name = "graphql_tag___graphql_tag_2.11.0.tgz";
- path = fetchurl {
- name = "graphql_tag___graphql_tag_2.11.0.tgz";
- url = "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.11.0.tgz";
- sha1 = "1deb53a01c46a7eb401d6cb59dec86fa1cccbffd";
- };
- }
- {
- name = "graphql___graphql_15.4.0.tgz";
- path = fetchurl {
- name = "graphql___graphql_15.4.0.tgz";
- url = "https://registry.yarnpkg.com/graphql/-/graphql-15.4.0.tgz";
- sha1 = "e459dea1150da5a106486ba7276518b5295a4347";
- };
- }
- {
- name = "growly___growly_1.3.0.tgz";
- path = fetchurl {
- name = "growly___growly_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz";
- sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
- };
- }
- {
- name = "gzip_size___gzip_size_6.0.0.tgz";
- path = fetchurl {
- name = "gzip_size___gzip_size_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz";
- sha1 = "065367fd50c239c0671cbcbad5be3e2eeb10e462";
- };
- }
- {
- name = "handle_thing___handle_thing_2.0.0.tgz";
- path = fetchurl {
- name = "handle_thing___handle_thing_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz";
- sha1 = "0e039695ff50c93fc288557d696f3c1dc6776754";
- };
- }
- {
- name = "har_schema___har_schema_2.0.0.tgz";
- path = fetchurl {
- name = "har_schema___har_schema_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- }
- {
- name = "har_validator___har_validator_5.1.5.tgz";
- path = fetchurl {
- name = "har_validator___har_validator_5.1.5.tgz";
- url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz";
- sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd";
- };
- }
- {
- name = "hard_rejection___hard_rejection_2.1.0.tgz";
- path = fetchurl {
- name = "hard_rejection___hard_rejection_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz";
- sha1 = "1c6eda5c1685c63942766d79bb40ae773cecd883";
- };
- }
- {
- name = "has_flag___has_flag_3.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
- };
- }
- {
- name = "has_flag___has_flag_4.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz";
- sha1 = "944771fd9c81c81265c4d6941860da06bb59479b";
- };
- }
- {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- path = fetchurl {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz";
- sha1 = "165d3070c00309752a1236a479331e3ac56f1423";
- };
- }
- {
- name = "has_value___has_value_0.3.1.tgz";
- path = fetchurl {
- name = "has_value___has_value_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
- };
- }
- {
- name = "has_value___has_value_1.0.0.tgz";
- path = fetchurl {
- name = "has_value___has_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
- };
- }
- {
- name = "has_values___has_values_0.1.4.tgz";
- path = fetchurl {
- name = "has_values___has_values_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
- };
- }
- {
- name = "has_values___has_values_1.0.0.tgz";
- path = fetchurl {
- name = "has_values___has_values_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
- };
- }
- {
- name = "has_yarn___has_yarn_2.1.0.tgz";
- path = fetchurl {
- name = "has_yarn___has_yarn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz";
- sha1 = "137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77";
- };
- }
- {
- name = "has___has_1.0.3.tgz";
- path = fetchurl {
- name = "has___has_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz";
- sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796";
- };
- }
- {
- name = "hash_base___hash_base_2.0.2.tgz";
- path = fetchurl {
- name = "hash_base___hash_base_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz";
- sha1 = "66ea1d856db4e8a5470cadf6fce23ae5244ef2e1";
- };
- }
- {
- name = "hash_base___hash_base_3.0.4.tgz";
- path = fetchurl {
- name = "hash_base___hash_base_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz";
- sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
- };
- }
- {
- name = "hash_sum___hash_sum_1.0.2.tgz";
- path = fetchurl {
- name = "hash_sum___hash_sum_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz";
- sha1 = "33b40777754c6432573c120cc3808bbd10d47f04";
- };
- }
- {
- name = "hash.js___hash.js_1.1.3.tgz";
- path = fetchurl {
- name = "hash.js___hash.js_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz";
- sha1 = "340dedbe6290187151c1ea1d777a3448935df846";
- };
- }
- {
- name = "he___he_1.2.0.tgz";
- path = fetchurl {
- name = "he___he_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz";
- sha1 = "84ae65fa7eafb165fddb61566ae14baf05664f0f";
- };
- }
- {
- name = "highlight.js___highlight.js_10.7.2.tgz";
- path = fetchurl {
- name = "highlight.js___highlight.js_10.7.2.tgz";
- url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.2.tgz";
- sha1 = "89319b861edc66c48854ed1e6da21ea89f847360";
- };
- }
- {
- name = "hmac_drbg___hmac_drbg_1.0.1.tgz";
- path = fetchurl {
- name = "hmac_drbg___hmac_drbg_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
- sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
- };
- }
- {
- name = "homedir_polyfill___homedir_polyfill_1.0.1.tgz";
- path = fetchurl {
- name = "homedir_polyfill___homedir_polyfill_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
- sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
- };
- }
- {
- name = "hosted_git_info___hosted_git_info_2.8.8.tgz";
- path = fetchurl {
- name = "hosted_git_info___hosted_git_info_2.8.8.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz";
- sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488";
- };
- }
- {
- name = "hosted_git_info___hosted_git_info_3.0.8.tgz";
- path = fetchurl {
- name = "hosted_git_info___hosted_git_info_3.0.8.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz";
- sha1 = "6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d";
- };
- }
- {
- name = "hpack.js___hpack.js_2.1.6.tgz";
- path = fetchurl {
- name = "hpack.js___hpack.js_2.1.6.tgz";
- url = "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz";
- sha1 = "87774c0949e513f42e84575b3c45681fade2a0b2";
- };
- }
- {
- name = "html_encoding_sniffer___html_encoding_sniffer_2.0.1.tgz";
- path = fetchurl {
- name = "html_encoding_sniffer___html_encoding_sniffer_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz";
- sha1 = "42a6dc4fd33f00281176e8b23759ca4e4fa185f3";
- };
- }
- {
- name = "html_entities___html_entities_1.4.0.tgz";
- path = fetchurl {
- name = "html_entities___html_entities_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz";
- sha1 = "cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc";
- };
- }
- {
- name = "html_escaper___html_escaper_2.0.0.tgz";
- path = fetchurl {
- name = "html_escaper___html_escaper_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz";
- sha1 = "71e87f931de3fe09e56661ab9a29aadec707b491";
- };
- }
- {
- name = "html_tags___html_tags_3.1.0.tgz";
- path = fetchurl {
- name = "html_tags___html_tags_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz";
- sha1 = "7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140";
- };
- }
- {
- name = "htmlparser2___htmlparser2_3.10.1.tgz";
- path = fetchurl {
- name = "htmlparser2___htmlparser2_3.10.1.tgz";
- url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz";
- sha1 = "bd679dc3f59897b6a34bb10749c855bb53a9392f";
- };
- }
- {
- name = "htmlparser2___htmlparser2_6.1.0.tgz";
- path = fetchurl {
- name = "htmlparser2___htmlparser2_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz";
- sha1 = "c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7";
- };
- }
- {
- name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz";
- path = fetchurl {
- name = "http_cache_semantics___http_cache_semantics_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz";
- sha1 = "49e91c5cbf36c9b94bcfcd71c23d5249ec74e390";
- };
- }
- {
- name = "http_deceiver___http_deceiver_1.2.7.tgz";
- path = fetchurl {
- name = "http_deceiver___http_deceiver_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz";
- sha1 = "fa7168944ab9a519d337cb0bec7284dc3e723d87";
- };
- }
- {
- name = "http_errors___http_errors_1.7.2.tgz";
- path = fetchurl {
- name = "http_errors___http_errors_1.7.2.tgz";
- url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz";
- sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f";
- };
- }
- {
- name = "http_errors___http_errors_1.6.2.tgz";
- path = fetchurl {
- name = "http_errors___http_errors_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz";
- sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
- };
- }
- {
- name = "http_parser_js___http_parser_js_0.5.3.tgz";
- path = fetchurl {
- name = "http_parser_js___http_parser_js_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz";
- sha1 = "01d2709c79d41698bb01d4decc5e9da4e4a033d9";
- };
- }
- {
- name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz";
- path = fetchurl {
- name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz";
- sha1 = "e4821beef5b2142a2026bd73926fe537631c5405";
- };
- }
- {
- name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz";
- path = fetchurl {
- name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz";
- url = "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz";
- sha1 = "183c7dc4aa1479150306498c210cdaf96080a43a";
- };
- }
- {
- name = "http_proxy___http_proxy_1.18.1.tgz";
- path = fetchurl {
- name = "http_proxy___http_proxy_1.18.1.tgz";
- url = "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz";
- sha1 = "401541f0534884bbf95260334e72f88ee3976549";
- };
- }
- {
- name = "http_signature___http_signature_1.2.0.tgz";
- path = fetchurl {
- name = "http_signature___http_signature_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- }
- {
- name = "https_browserify___https_browserify_1.0.0.tgz";
- path = fetchurl {
- name = "https_browserify___https_browserify_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz";
- sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
- };
- }
- {
- name = "https_proxy_agent___https_proxy_agent_2.2.4.tgz";
- path = fetchurl {
- name = "https_proxy_agent___https_proxy_agent_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz";
- sha1 = "4ee7a737abd92678a293d9b34a1af4d0d08c787b";
- };
- }
- {
- name = "human_signals___human_signals_1.1.1.tgz";
- path = fetchurl {
- name = "human_signals___human_signals_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz";
- sha1 = "c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz";
- sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b";
- };
- }
- {
- name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz";
- path = fetchurl {
- name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz";
- sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded";
- };
- }
- {
- name = "icss_utils___icss_utils_4.1.1.tgz";
- path = fetchurl {
- name = "icss_utils___icss_utils_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz";
- sha1 = "21170b53789ee27447c2f47dd683081403f9a467";
- };
- }
- {
- name = "ieee754___ieee754_1.1.13.tgz";
- path = fetchurl {
- name = "ieee754___ieee754_1.1.13.tgz";
- url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz";
- sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84";
- };
- }
- {
- name = "iferr___iferr_0.1.5.tgz";
- path = fetchurl {
- name = "iferr___iferr_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz";
- sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
- };
- }
- {
- name = "ignore_by_default___ignore_by_default_1.0.1.tgz";
- path = fetchurl {
- name = "ignore_by_default___ignore_by_default_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz";
- sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
- };
- }
- {
- name = "ignore___ignore_4.0.6.tgz";
- path = fetchurl {
- name = "ignore___ignore_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz";
- sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc";
- };
- }
- {
- name = "ignore___ignore_5.1.8.tgz";
- path = fetchurl {
- name = "ignore___ignore_5.1.8.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz";
- sha1 = "f150a8b50a34289b33e22f5889abd4d8016f0e57";
- };
- }
- {
- name = "immediate___immediate_3.0.6.tgz";
- path = fetchurl {
- name = "immediate___immediate_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz";
- sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b";
- };
- }
- {
- name = "immer___immer_7.0.7.tgz";
- path = fetchurl {
- name = "immer___immer_7.0.7.tgz";
- url = "https://registry.yarnpkg.com/immer/-/immer-7.0.7.tgz";
- sha1 = "9dfe713d49bf871cc59aedfce59b1992fa37a977";
- };
- }
- {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- path = fetchurl {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz";
- sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b";
- };
- }
- {
- name = "import_lazy___import_lazy_2.1.0.tgz";
- path = fetchurl {
- name = "import_lazy___import_lazy_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz";
- sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
- };
- }
- {
- name = "import_lazy___import_lazy_4.0.0.tgz";
- path = fetchurl {
- name = "import_lazy___import_lazy_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz";
- sha1 = "e8eb627483a0a43da3c03f3e35548be5cb0cc153";
- };
- }
- {
- name = "import_local___import_local_2.0.0.tgz";
- path = fetchurl {
- name = "import_local___import_local_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz";
- sha1 = "55070be38a5993cf18ef6db7e961f5bee5c5a09d";
- };
- }
- {
- name = "import_local___import_local_3.0.2.tgz";
- path = fetchurl {
- name = "import_local___import_local_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz";
- sha1 = "a8cfd0431d1de4a2199703d003e3e62364fa6db6";
- };
- }
- {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- path = fetchurl {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
- };
- }
- {
- name = "indent_string___indent_string_4.0.0.tgz";
- path = fetchurl {
- name = "indent_string___indent_string_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz";
- sha1 = "624f8f4497d619b2d9768531d58f4122854d7251";
- };
- }
- {
- name = "indexes_of___indexes_of_1.0.1.tgz";
- path = fetchurl {
- name = "indexes_of___indexes_of_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz";
- sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607";
- };
- }
- {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- path = fetchurl {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz";
- sha1 = "c4cefcaa8e51051c2a40ba2ce8a3d27295af9467";
- };
- }
- {
- name = "inflected___inflected_2.0.4.tgz";
- path = fetchurl {
- name = "inflected___inflected_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inflected/-/inflected-2.0.4.tgz";
- sha1 = "323770961ccbe992a98ea930512e9a82d3d3ef77";
- };
- }
- {
- name = "inflight___inflight_1.0.6.tgz";
- path = fetchurl {
- name = "inflight___inflight_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- }
- {
- name = "inherits___inherits_2.0.4.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz";
- sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c";
- };
- }
- {
- name = "inherits___inherits_2.0.1.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz";
- sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
- };
- }
- {
- name = "inherits___inherits_2.0.3.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- }
- {
- name = "ini___ini_1.3.8.tgz";
- path = fetchurl {
- name = "ini___ini_1.3.8.tgz";
- url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz";
- sha1 = "a29da425b48806f34767a4efce397269af28432c";
- };
- }
- {
- name = "inquirer_glob_prompt___inquirer_glob_prompt_0.1.0.tgz";
- path = fetchurl {
- name = "inquirer_glob_prompt___inquirer_glob_prompt_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/inquirer-glob-prompt/-/inquirer-glob-prompt-0.1.0.tgz";
- sha1 = "3676bc10bcdd31e17121146be9c6467a2d79fc85";
- };
- }
- {
- name = "inquirer___inquirer_8.1.2.tgz";
- path = fetchurl {
- name = "inquirer___inquirer_8.1.2.tgz";
- url = "https://registry.yarnpkg.com/inquirer/-/inquirer-8.1.2.tgz";
- sha1 = "65b204d2cd7fb63400edd925dfe428bafd422e3d";
- };
- }
- {
- name = "internal_ip___internal_ip_4.3.0.tgz";
- path = fetchurl {
- name = "internal_ip___internal_ip_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz";
- sha1 = "845452baad9d2ca3b69c635a137acb9a0dad0907";
- };
- }
- {
- name = "interpret___interpret_1.4.0.tgz";
- path = fetchurl {
- name = "interpret___interpret_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz";
- sha1 = "665ab8bc4da27a774a40584e812e3e0fa45b1a1e";
- };
- }
- {
- name = "invariant___invariant_2.2.4.tgz";
- path = fetchurl {
- name = "invariant___invariant_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz";
- sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6";
- };
- }
- {
- name = "ip_regex___ip_regex_2.1.0.tgz";
- path = fetchurl {
- name = "ip_regex___ip_regex_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz";
- sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9";
- };
- }
- {
- name = "ip___ip_1.1.5.tgz";
- path = fetchurl {
- name = "ip___ip_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
- };
- }
- {
- name = "ipaddr.js___ipaddr.js_1.9.0.tgz";
- path = fetchurl {
- name = "ipaddr.js___ipaddr.js_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz";
- sha1 = "37df74e430a0e47550fe54a2defe30d8acd95f65";
- };
- }
- {
- name = "ipaddr.js___ipaddr.js_1.9.1.tgz";
- path = fetchurl {
- name = "ipaddr.js___ipaddr.js_1.9.1.tgz";
- url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz";
- sha1 = "bff38543eeb8984825079ff3a2a8e6cbd46781b3";
- };
- }
- {
- name = "is_absolute_url___is_absolute_url_3.0.3.tgz";
- path = fetchurl {
- name = "is_absolute_url___is_absolute_url_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz";
- sha1 = "96c6a22b6a23929b11ea0afb1836c36ad4a5d698";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
- sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656";
- };
- }
- {
- name = "is_alphabetical___is_alphabetical_1.0.4.tgz";
- path = fetchurl {
- name = "is_alphabetical___is_alphabetical_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz";
- sha1 = "9e7d6b94916be22153745d184c298cbf986a686d";
- };
- }
- {
- name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz";
- path = fetchurl {
- name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz";
- sha1 = "7eb9a2431f855f6b1ef1a78e326df515696c4dbf";
- };
- }
- {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- path = fetchurl {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- }
- {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- path = fetchurl {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz";
- sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09";
- };
- }
- {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- path = fetchurl {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz";
- sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be";
- };
- }
- {
- name = "is_buffer___is_buffer_2.0.5.tgz";
- path = fetchurl {
- name = "is_buffer___is_buffer_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz";
- sha1 = "ebc252e400d22ff8d77fa09888821a24a658c191";
- };
- }
- {
- name = "is_callable___is_callable_1.2.3.tgz";
- path = fetchurl {
- name = "is_callable___is_callable_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz";
- sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e";
- };
- }
- {
- name = "is_ci___is_ci_2.0.0.tgz";
- path = fetchurl {
- name = "is_ci___is_ci_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz";
- sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c";
- };
- }
- {
- name = "is_core_module___is_core_module_2.4.0.tgz";
- path = fetchurl {
- name = "is_core_module___is_core_module_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz";
- sha1 = "8e9fc8e15027b011418026e98f0e6f4d86305cc1";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
- sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7";
- };
- }
- {
- name = "is_date_object___is_date_object_1.0.1.tgz";
- path = fetchurl {
- name = "is_date_object___is_date_object_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz";
- sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
- };
- }
- {
- name = "is_decimal___is_decimal_1.0.4.tgz";
- path = fetchurl {
- name = "is_decimal___is_decimal_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz";
- sha1 = "65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5";
- };
- }
- {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca";
- };
- }
- {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz";
- sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec";
- };
- }
- {
- name = "is_docker___is_docker_2.1.1.tgz";
- path = fetchurl {
- name = "is_docker___is_docker_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz";
- sha1 = "4125a88e44e450d384e09047ede71adc2d144156";
- };
- }
- {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
- };
- }
- {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz";
- sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4";
- };
- }
- {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz";
- sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d";
- };
- }
- {
- name = "is_generator_fn___is_generator_fn_2.1.0.tgz";
- path = fetchurl {
- name = "is_generator_fn___is_generator_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz";
- sha1 = "7d140adc389aaf3011a8f2a2a4cfa6faadffb118";
- };
- }
- {
- name = "is_glob___is_glob_4.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz";
- sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc";
- };
- }
- {
- name = "is_hexadecimal___is_hexadecimal_1.0.4.tgz";
- path = fetchurl {
- name = "is_hexadecimal___is_hexadecimal_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz";
- sha1 = "cc35c97588da4bd49a8eedd6bc4082d44dcb23a7";
- };
- }
- {
- name = "is_installed_globally___is_installed_globally_0.3.2.tgz";
- path = fetchurl {
- name = "is_installed_globally___is_installed_globally_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz";
- sha1 = "fd3efa79ee670d1187233182d5b0a1dd00313141";
- };
- }
- {
- name = "is_interactive___is_interactive_1.0.0.tgz";
- path = fetchurl {
- name = "is_interactive___is_interactive_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz";
- sha1 = "cea6e6ae5c870a7b0a0004070b7b587e0252912e";
- };
- }
- {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- path = fetchurl {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
- sha1 = "3de746c18dda2319241a53675908d8f766f11c24";
- };
- }
- {
- name = "is_npm___is_npm_4.0.0.tgz";
- path = fetchurl {
- name = "is_npm___is_npm_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz";
- sha1 = "c90dd8380696df87a7a6d823c20d0b12bbe3c84d";
- };
- }
- {
- name = "is_number___is_number_3.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
- };
- }
- {
- name = "is_number___is_number_7.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz";
- sha1 = "7535345b896734d5f80c4d06c50955527a14f12b";
- };
- }
- {
- name = "is_obj___is_obj_2.0.0.tgz";
- path = fetchurl {
- name = "is_obj___is_obj_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz";
- sha1 = "473fb05d973705e3fd9620545018ca8e22ef4982";
- };
- }
- {
- name = "is_path_cwd___is_path_cwd_2.2.0.tgz";
- path = fetchurl {
- name = "is_path_cwd___is_path_cwd_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz";
- sha1 = "67d43b82664a7b5191fd9119127eb300048a9fdb";
- };
- }
- {
- name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz";
- path = fetchurl {
- name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz";
- sha1 = "bfe2dca26c69f397265a4009963602935a053acb";
- };
- }
- {
- name = "is_path_inside___is_path_inside_2.1.0.tgz";
- path = fetchurl {
- name = "is_path_inside___is_path_inside_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz";
- sha1 = "7c9810587d659a40d27bcdb4d5616eab059494b2";
- };
- }
- {
- name = "is_path_inside___is_path_inside_3.0.2.tgz";
- path = fetchurl {
- name = "is_path_inside___is_path_inside_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz";
- sha1 = "f5220fc82a3e233757291dddc9c5877f2a1f3017";
- };
- }
- {
- name = "is_plain_obj___is_plain_obj_1.1.0.tgz";
- path = fetchurl {
- name = "is_plain_obj___is_plain_obj_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
- sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
- };
- }
- {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- path = fetchurl {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz";
- sha1 = "45e42e37fccf1f40da8e5f76ee21515840c09287";
- };
- }
- {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- path = fetchurl {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677";
- };
- }
- {
- name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.0.tgz";
- path = fetchurl {
- name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz";
- sha1 = "0c52e54bcca391bb2c494b21e8626d7336c6e397";
- };
- }
- {
- name = "is_regex___is_regex_1.1.3.tgz";
- path = fetchurl {
- name = "is_regex___is_regex_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz";
- sha1 = "d029f9aff6448b93ebbe3f33dac71511fdcbef9f";
- };
- }
- {
- name = "is_regexp___is_regexp_2.1.0.tgz";
- path = fetchurl {
- name = "is_regexp___is_regexp_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-2.1.0.tgz";
- sha1 = "cd734a56864e23b956bf4e7c66c396a4c0b22c2d";
- };
- }
- {
- name = "is_stream___is_stream_1.1.0.tgz";
- path = fetchurl {
- name = "is_stream___is_stream_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz";
- sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
- };
- }
- {
- name = "is_stream___is_stream_2.0.0.tgz";
- path = fetchurl {
- name = "is_stream___is_stream_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz";
- sha1 = "bde9c32680d6fae04129d6ac9d921ce7815f78e3";
- };
- }
- {
- name = "is_string___is_string_1.0.5.tgz";
- path = fetchurl {
- name = "is_string___is_string_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz";
- sha1 = "40493ed198ef3ff477b8c7f92f644ec82a5cd3a6";
- };
- }
- {
- name = "is_symbol___is_symbol_1.0.2.tgz";
- path = fetchurl {
- name = "is_symbol___is_symbol_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz";
- sha1 = "a055f6ae57192caee329e7a860118b497a950f38";
- };
- }
- {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- path = fetchurl {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- }
- {
- name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz";
- path = fetchurl {
- name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz";
- sha1 = "3f26c76a809593b52bfa2ecb5710ed2779b522a7";
- };
- }
- {
- name = "is_whitespace___is_whitespace_0.3.0.tgz";
- path = fetchurl {
- name = "is_whitespace___is_whitespace_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/is-whitespace/-/is-whitespace-0.3.0.tgz";
- sha1 = "1639ecb1be036aec69a54cbb401cfbed7114ab7f";
- };
- }
- {
- name = "is_windows___is_windows_1.0.2.tgz";
- path = fetchurl {
- name = "is_windows___is_windows_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz";
- sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d";
- };
- }
- {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- path = fetchurl {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz";
- sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d";
- };
- }
- {
- name = "is_wsl___is_wsl_2.2.0.tgz";
- path = fetchurl {
- name = "is_wsl___is_wsl_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz";
- sha1 = "74a4c76e77ca9fd3f932f290c17ea326cd157271";
- };
- }
- {
- name = "is_yarn_global___is_yarn_global_0.3.0.tgz";
- path = fetchurl {
- name = "is_yarn_global___is_yarn_global_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz";
- sha1 = "d502d3382590ea3004893746754c89139973e232";
- };
- }
- {
- name = "isarray___isarray_1.0.0.tgz";
- path = fetchurl {
- name = "isarray___isarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- }
- {
- name = "isexe___isexe_2.0.0.tgz";
- path = fetchurl {
- name = "isexe___isexe_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- }
- {
- name = "isobject___isobject_2.1.0.tgz";
- path = fetchurl {
- name = "isobject___isobject_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
- };
- }
- {
- name = "isobject___isobject_3.0.1.tgz";
- path = fetchurl {
- name = "isobject___isobject_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
- };
- }
- {
- name = "isstream___isstream_0.1.2.tgz";
- path = fetchurl {
- name = "isstream___isstream_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- }
- {
- name = "istanbul_lib_coverage___istanbul_lib_coverage_3.0.0.tgz";
- path = fetchurl {
- name = "istanbul_lib_coverage___istanbul_lib_coverage_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz";
- sha1 = "f5944a37c70b550b02a78a5c3b2055b280cec8ec";
- };
- }
- {
- name = "istanbul_lib_instrument___istanbul_lib_instrument_4.0.3.tgz";
- path = fetchurl {
- name = "istanbul_lib_instrument___istanbul_lib_instrument_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz";
- sha1 = "873c6fff897450118222774696a3f28902d77c1d";
- };
- }
- {
- name = "istanbul_lib_report___istanbul_lib_report_3.0.0.tgz";
- path = fetchurl {
- name = "istanbul_lib_report___istanbul_lib_report_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz";
- sha1 = "7518fe52ea44de372f460a76b5ecda9ffb73d8a6";
- };
- }
- {
- name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.0.tgz";
- path = fetchurl {
- name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz";
- sha1 = "75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9";
- };
- }
- {
- name = "istanbul_reports___istanbul_reports_3.0.2.tgz";
- path = fetchurl {
- name = "istanbul_reports___istanbul_reports_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz";
- sha1 = "d593210e5000683750cb09fc0644e4b6e27fd53b";
- };
- }
- {
- name = "istextorbinary___istextorbinary_2.2.1.tgz";
- path = fetchurl {
- name = "istextorbinary___istextorbinary_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.2.1.tgz";
- sha1 = "a5231a08ef6dd22b268d0895084cf8d58b5bec53";
- };
- }
- {
- name = "jed___jed_1.1.1.tgz";
- path = fetchurl {
- name = "jed___jed_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/jed/-/jed-1.1.1.tgz";
- sha1 = "7a549bbd9ffe1585b0cd0a191e203055bee574b4";
- };
- }
- {
- name = "jest_canvas_mock___jest_canvas_mock_2.1.2.tgz";
- path = fetchurl {
- name = "jest_canvas_mock___jest_canvas_mock_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/jest-canvas-mock/-/jest-canvas-mock-2.1.2.tgz";
- sha1 = "0d16c9f91534f773fd132fc289f2e6b6db8faa28";
- };
- }
- {
- name = "jest_changed_files___jest_changed_files_26.5.2.tgz";
- path = fetchurl {
- name = "jest_changed_files___jest_changed_files_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.5.2.tgz";
- sha1 = "330232c6a5c09a7f040a5870e8f0a9c6abcdbed5";
- };
- }
- {
- name = "jest_cli___jest_cli_26.5.2.tgz";
- path = fetchurl {
- name = "jest_cli___jest_cli_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.5.2.tgz";
- sha1 = "0df114399b4036a3f046f0a9f25c50372c76b3a2";
- };
- }
- {
- name = "jest_config___jest_config_26.5.2.tgz";
- path = fetchurl {
- name = "jest_config___jest_config_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-config/-/jest-config-26.5.2.tgz";
- sha1 = "6e828e25f10124433dd008fbd83348636de0972a";
- };
- }
- {
- name = "jest_diff___jest_diff_26.5.2.tgz";
- path = fetchurl {
- name = "jest_diff___jest_diff_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.5.2.tgz";
- sha1 = "8e26cb32dc598e8b8a1b9deff55316f8313c8053";
- };
- }
- {
- name = "jest_docblock___jest_docblock_26.0.0.tgz";
- path = fetchurl {
- name = "jest_docblock___jest_docblock_26.0.0.tgz";
- url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz";
- sha1 = "3e2fa20899fc928cb13bd0ff68bd3711a36889b5";
- };
- }
- {
- name = "jest_each___jest_each_26.5.2.tgz";
- path = fetchurl {
- name = "jest_each___jest_each_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-each/-/jest-each-26.5.2.tgz";
- sha1 = "35e68d6906a7f826d3ca5803cfe91d17a5a34c31";
- };
- }
- {
- name = "jest_environment_jsdom___jest_environment_jsdom_26.5.2.tgz";
- path = fetchurl {
- name = "jest_environment_jsdom___jest_environment_jsdom_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.5.2.tgz";
- sha1 = "5feab05b828fd3e4b96bee5e0493464ddd2bb4bc";
- };
- }
- {
- name = "jest_environment_node___jest_environment_node_26.5.2.tgz";
- path = fetchurl {
- name = "jest_environment_node___jest_environment_node_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.5.2.tgz";
- sha1 = "275a0f01b5e47447056f1541a15ed4da14acca03";
- };
- }
- {
- name = "jest_get_type___jest_get_type_26.3.0.tgz";
- path = fetchurl {
- name = "jest_get_type___jest_get_type_26.3.0.tgz";
- url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz";
- sha1 = "e97dc3c3f53c2b406ca7afaed4493b1d099199e0";
- };
- }
- {
- name = "jest_haste_map___jest_haste_map_26.5.2.tgz";
- path = fetchurl {
- name = "jest_haste_map___jest_haste_map_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.5.2.tgz";
- sha1 = "a15008abfc502c18aa56e4919ed8c96304ceb23d";
- };
- }
- {
- name = "jest_jasmine2___jest_jasmine2_26.5.2.tgz";
- path = fetchurl {
- name = "jest_jasmine2___jest_jasmine2_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.5.2.tgz";
- sha1 = "0e33819d31b1f2aab5efd1e02ce502209c0e64a2";
- };
- }
- {
- name = "jest_junit___jest_junit_12.0.0.tgz";
- path = fetchurl {
- name = "jest_junit___jest_junit_12.0.0.tgz";
- url = "https://registry.yarnpkg.com/jest-junit/-/jest-junit-12.0.0.tgz";
- sha1 = "3ebd4a6a84b50c4ab18323a8f7d9cceb9d845df6";
- };
- }
- {
- name = "jest_leak_detector___jest_leak_detector_26.5.2.tgz";
- path = fetchurl {
- name = "jest_leak_detector___jest_leak_detector_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.5.2.tgz";
- sha1 = "83fcf9a4a6ef157549552cb4f32ca1d6221eea69";
- };
- }
- {
- name = "jest_matcher_utils___jest_matcher_utils_26.5.2.tgz";
- path = fetchurl {
- name = "jest_matcher_utils___jest_matcher_utils_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.5.2.tgz";
- sha1 = "6aa2c76ce8b9c33e66f8856ff3a52bab59e6c85a";
- };
- }
- {
- name = "jest_message_util___jest_message_util_26.5.2.tgz";
- path = fetchurl {
- name = "jest_message_util___jest_message_util_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.5.2.tgz";
- sha1 = "6c4c4c46dcfbabb47cd1ba2f6351559729bc11bb";
- };
- }
- {
- name = "jest_mock___jest_mock_26.5.2.tgz";
- path = fetchurl {
- name = "jest_mock___jest_mock_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.5.2.tgz";
- sha1 = "c9302e8ef807f2bfc749ee52e65ad11166a1b6a1";
- };
- }
- {
- name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz";
- path = fetchurl {
- name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz";
- sha1 = "b704ac0ae028a89108a4d040b3f919dfddc8e33c";
- };
- }
- {
- name = "jest_raw_loader___jest_raw_loader_1.0.1.tgz";
- path = fetchurl {
- name = "jest_raw_loader___jest_raw_loader_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/jest-raw-loader/-/jest-raw-loader-1.0.1.tgz";
- sha1 = "ce9f56d54650f157c4a7d16d224ba5d613bcd626";
- };
- }
- {
- name = "jest_regex_util___jest_regex_util_26.0.0.tgz";
- path = fetchurl {
- name = "jest_regex_util___jest_regex_util_26.0.0.tgz";
- url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz";
- sha1 = "d25e7184b36e39fd466c3bc41be0971e821fee28";
- };
- }
- {
- name = "jest_resolve_dependencies___jest_resolve_dependencies_26.5.2.tgz";
- path = fetchurl {
- name = "jest_resolve_dependencies___jest_resolve_dependencies_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.5.2.tgz";
- sha1 = "ee30b7cfea81c81bf5e195a9287d7ec07f893170";
- };
- }
- {
- name = "jest_resolve___jest_resolve_26.5.2.tgz";
- path = fetchurl {
- name = "jest_resolve___jest_resolve_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.5.2.tgz";
- sha1 = "0d719144f61944a428657b755a0e5c6af4fc8602";
- };
- }
- {
- name = "jest_runner___jest_runner_26.5.2.tgz";
- path = fetchurl {
- name = "jest_runner___jest_runner_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.5.2.tgz";
- sha1 = "4f9e6b0bb7eb4710c209a9e145b8a10894f4c19f";
- };
- }
- {
- name = "jest_runtime___jest_runtime_26.5.2.tgz";
- path = fetchurl {
- name = "jest_runtime___jest_runtime_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.5.2.tgz";
- sha1 = "b72f5f79eb2fe0c46bfef4cdb9c1e01d1c69ba41";
- };
- }
- {
- name = "jest_serializer___jest_serializer_26.5.0.tgz";
- path = fetchurl {
- name = "jest_serializer___jest_serializer_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.5.0.tgz";
- sha1 = "f5425cc4c5f6b4b355f854b5f0f23ec6b962bc13";
- };
- }
- {
- name = "jest_snapshot___jest_snapshot_26.5.2.tgz";
- path = fetchurl {
- name = "jest_snapshot___jest_snapshot_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.5.2.tgz";
- sha1 = "0cf7642eaf8e8d2736bd443f619959bf237f9ccf";
- };
- }
- {
- name = "jest_transform_graphql___jest_transform_graphql_2.1.0.tgz";
- path = fetchurl {
- name = "jest_transform_graphql___jest_transform_graphql_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/jest-transform-graphql/-/jest-transform-graphql-2.1.0.tgz";
- sha1 = "903cb66bb27bc2772fd3e5dd4f7e9b57230f5829";
- };
- }
- {
- name = "jest_util___jest_util_26.5.2.tgz";
- path = fetchurl {
- name = "jest_util___jest_util_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-util/-/jest-util-26.5.2.tgz";
- sha1 = "8403f75677902cc52a1b2140f568e91f8ed4f4d7";
- };
- }
- {
- name = "jest_validate___jest_validate_26.5.2.tgz";
- path = fetchurl {
- name = "jest_validate___jest_validate_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.5.2.tgz";
- sha1 = "7ea266700b64234cd1c0cee982490c5a80e9b0f0";
- };
- }
- {
- name = "jest_watcher___jest_watcher_26.5.2.tgz";
- path = fetchurl {
- name = "jest_watcher___jest_watcher_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.5.2.tgz";
- sha1 = "2957f4461007e0769d74b537379ecf6b7c696916";
- };
- }
- {
- name = "jest_worker___jest_worker_26.5.0.tgz";
- path = fetchurl {
- name = "jest_worker___jest_worker_26.5.0.tgz";
- url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.5.0.tgz";
- sha1 = "87deee86dbbc5f98d9919e0dadf2c40e3152fa30";
- };
- }
- {
- name = "jest___jest_26.5.2.tgz";
- path = fetchurl {
- name = "jest___jest_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/jest/-/jest-26.5.2.tgz";
- sha1 = "c6791642b331fe7abd2f993b0a74aa546f7be0fb";
- };
- }
- {
- name = "jmespath___jmespath_0.15.0.tgz";
- path = fetchurl {
- name = "jmespath___jmespath_0.15.0.tgz";
- url = "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz";
- sha1 = "a3f222a9aae9f966f5d27c796510e28091764217";
- };
- }
- {
- name = "jquery.caret___jquery.caret_0.3.1.tgz";
- path = fetchurl {
- name = "jquery.caret___jquery.caret_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/jquery.caret/-/jquery.caret-0.3.1.tgz";
- sha1 = "9c093318faf327eff322e826ca9f3241368bc7b8";
- };
- }
- {
- name = "jquery___jquery_3.6.0.tgz";
- path = fetchurl {
- name = "jquery___jquery_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz";
- sha1 = "c72a09f15c1bdce142f49dbf1170bdf8adac2470";
- };
- }
- {
- name = "js_beautify___js_beautify_1.11.0.tgz";
- path = fetchurl {
- name = "js_beautify___js_beautify_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.11.0.tgz";
- sha1 = "afb873dc47d58986360093dcb69951e8bcd5ded2";
- };
- }
- {
- name = "js_cookie___js_cookie_2.2.1.tgz";
- path = fetchurl {
- name = "js_cookie___js_cookie_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz";
- sha1 = "69e106dc5d5806894562902aa5baec3744e9b2b8";
- };
- }
- {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz";
- sha1 = "19203fb59991df98e3a287050d4647cdeaf32499";
- };
- }
- {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
- sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
- };
- }
- {
- name = "js2xmlparser___js2xmlparser_3.0.0.tgz";
- path = fetchurl {
- name = "js2xmlparser___js2xmlparser_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/js2xmlparser/-/js2xmlparser-3.0.0.tgz";
- sha1 = "3fb60eaa089c5440f9319f51760ccd07e2499733";
- };
- }
- {
- name = "jsbn___jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "jsbn___jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- }
- {
- name = "jscodeshift___jscodeshift_0.11.0.tgz";
- path = fetchurl {
- name = "jscodeshift___jscodeshift_0.11.0.tgz";
- url = "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.11.0.tgz";
- sha1 = "4f95039408f3f06b0e39bb4d53bc3139f5330e2f";
- };
- }
- {
- name = "jsdoc_vue___jsdoc_vue_1.0.0.tgz";
- path = fetchurl {
- name = "jsdoc_vue___jsdoc_vue_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/jsdoc-vue/-/jsdoc-vue-1.0.0.tgz";
- sha1 = "ff3ac1ba6bc4a74079bb79058a7bf0066e346235";
- };
- }
- {
- name = "jsdoc___jsdoc_3.5.5.tgz";
- path = fetchurl {
- name = "jsdoc___jsdoc_3.5.5.tgz";
- url = "https://registry.yarnpkg.com/jsdoc/-/jsdoc-3.5.5.tgz";
- sha1 = "484521b126e81904d632ff83ec9aaa096708fa4d";
- };
- }
- {
- name = "jsdom___jsdom_16.4.0.tgz";
- path = fetchurl {
- name = "jsdom___jsdom_16.4.0.tgz";
- url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz";
- sha1 = "36005bde2d136f73eee1a830c6d45e55408edddb";
- };
- }
- {
- name = "jsesc___jsesc_2.5.2.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_2.5.2.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz";
- sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4";
- };
- }
- {
- name = "jsesc___jsesc_0.5.0.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz";
- sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
- };
- }
- {
- name = "json_buffer___json_buffer_3.0.0.tgz";
- path = fetchurl {
- name = "json_buffer___json_buffer_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz";
- sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
- };
- }
- {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- path = fetchurl {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9";
- };
- }
- {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- path = fetchurl {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz";
- sha1 = "7c47805a94319928e05777405dc12e1f7a4ee02d";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz";
- sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2";
- };
- }
- {
- name = "json_schema___json_schema_0.2.3.tgz";
- path = fetchurl {
- name = "json_schema___json_schema_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- }
- {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- path = fetchurl {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
- sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
- };
- }
- {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- path = fetchurl {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- }
- {
- name = "json3___json3_3.3.3.tgz";
- path = fetchurl {
- name = "json3___json3_3.3.3.tgz";
- url = "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz";
- sha1 = "7fc10e375fc5ae42c4705a5cc0aa6f62be305b81";
- };
- }
- {
- name = "json5___json5_1.0.1.tgz";
- path = fetchurl {
- name = "json5___json5_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz";
- sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe";
- };
- }
- {
- name = "json5___json5_2.1.3.tgz";
- path = fetchurl {
- name = "json5___json5_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz";
- sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43";
- };
- }
- {
- name = "jsonc_parser___jsonc_parser_2.3.1.tgz";
- path = fetchurl {
- name = "jsonc_parser___jsonc_parser_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-2.3.1.tgz";
- sha1 = "59549150b133f2efacca48fe9ce1ec0659af2342";
- };
- }
- {
- name = "jsonc_parser___jsonc_parser_3.0.0.tgz";
- path = fetchurl {
- name = "jsonc_parser___jsonc_parser_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz";
- sha1 = "abdd785701c7e7eaca8a9ec8cf070ca51a745a22";
- };
- }
- {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- path = fetchurl {
- name = "jsonfile___jsonfile_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz";
- sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
- };
- }
- {
- name = "jsprim___jsprim_1.4.1.tgz";
- path = fetchurl {
- name = "jsprim___jsprim_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- }
- {
- name = "jszip_utils___jszip_utils_0.0.2.tgz";
- path = fetchurl {
- name = "jszip_utils___jszip_utils_0.0.2.tgz";
- url = "https://registry.yarnpkg.com/jszip-utils/-/jszip-utils-0.0.2.tgz";
- sha1 = "457d5cbca60a1c2e0706e9da2b544e8e7bc50bf8";
- };
- }
- {
- name = "jszip___jszip_3.1.3.tgz";
- path = fetchurl {
- name = "jszip___jszip_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/jszip/-/jszip-3.1.3.tgz";
- sha1 = "8a920403b2b1651c0fc126be90192d9080957c37";
- };
- }
- {
- name = "katex___katex_0.13.2.tgz";
- path = fetchurl {
- name = "katex___katex_0.13.2.tgz";
- url = "https://registry.yarnpkg.com/katex/-/katex-0.13.2.tgz";
- sha1 = "4075b9144e6af992ec9a4b772fa3754763be5f26";
- };
- }
- {
- name = "keyv___keyv_3.1.0.tgz";
- path = fetchurl {
- name = "keyv___keyv_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz";
- sha1 = "ecc228486f69991e49e9476485a5be1e8fc5c4d9";
- };
- }
- {
- name = "khroma___khroma_1.4.1.tgz";
- path = fetchurl {
- name = "khroma___khroma_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/khroma/-/khroma-1.4.1.tgz";
- sha1 = "ad6a5b6a972befc5112ce5129887a1a83af2c003";
- };
- }
- {
- name = "killable___killable_1.0.1.tgz";
- path = fetchurl {
- name = "killable___killable_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz";
- sha1 = "4c8ce441187a061c7474fb87ca08e2a638194892";
- };
- }
- {
- name = "kind_of___kind_of_3.2.2.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- }
- {
- name = "kind_of___kind_of_4.0.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
- };
- }
- {
- name = "kind_of___kind_of_5.1.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz";
- sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d";
- };
- }
- {
- name = "kind_of___kind_of_6.0.3.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_6.0.3.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz";
- sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd";
- };
- }
- {
- name = "klaw___klaw_2.0.0.tgz";
- path = fetchurl {
- name = "klaw___klaw_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/klaw/-/klaw-2.0.0.tgz";
- sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6";
- };
- }
- {
- name = "kleur___kleur_3.0.3.tgz";
- path = fetchurl {
- name = "kleur___kleur_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz";
- sha1 = "a79c9ecc86ee1ce3fa6206d1216c501f147fc07e";
- };
- }
- {
- name = "known_css_properties___known_css_properties_0.20.0.tgz";
- path = fetchurl {
- name = "known_css_properties___known_css_properties_0.20.0.tgz";
- url = "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.20.0.tgz";
- sha1 = "0570831661b47dd835293218381166090ff60e96";
- };
- }
- {
- name = "latest_version___latest_version_5.1.0.tgz";
- path = fetchurl {
- name = "latest_version___latest_version_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz";
- sha1 = "119dfe908fe38d15dfa43ecd13fa12ec8832face";
- };
- }
- {
- name = "leven___leven_3.1.0.tgz";
- path = fetchurl {
- name = "leven___leven_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz";
- sha1 = "77891de834064cccba82ae7842bb6b14a13ed7f2";
- };
- }
- {
- name = "levenary___levenary_1.1.1.tgz";
- path = fetchurl {
- name = "levenary___levenary_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz";
- sha1 = "842a9ee98d2075aa7faeedbe32679e9205f46f77";
- };
- }
- {
- name = "levn___levn_0.4.1.tgz";
- path = fetchurl {
- name = "levn___levn_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz";
- sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade";
- };
- }
- {
- name = "levn___levn_0.3.0.tgz";
- path = fetchurl {
- name = "levn___levn_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz";
- sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
- };
- }
- {
- name = "lie___lie_3.1.1.tgz";
- path = fetchurl {
- name = "lie___lie_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz";
- sha1 = "9a436b2cc7746ca59de7a41fa469b3efb76bd87e";
- };
- }
- {
- name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
- path = fetchurl {
- name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz";
- sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00";
- };
- }
- {
- name = "linkify_it___linkify_it_2.2.0.tgz";
- path = fetchurl {
- name = "linkify_it___linkify_it_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz";
- sha1 = "e3b54697e78bf915c70a38acd78fd09e0058b1cf";
- };
- }
- {
- name = "linkify_it___linkify_it_3.0.2.tgz";
- path = fetchurl {
- name = "linkify_it___linkify_it_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.2.tgz";
- sha1 = "f55eeb8bc1d3ae754049e124ab3bb56d97797fb8";
- };
- }
- {
- name = "load_json_file___load_json_file_2.0.0.tgz";
- path = fetchurl {
- name = "load_json_file___load_json_file_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz";
- sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8";
- };
- }
- {
- name = "loader_runner___loader_runner_2.4.0.tgz";
- path = fetchurl {
- name = "loader_runner___loader_runner_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz";
- sha1 = "ed47066bfe534d7e84c4c7b9998c2a75607d9357";
- };
- }
- {
- name = "loader_utils___loader_utils_1.4.0.tgz";
- path = fetchurl {
- name = "loader_utils___loader_utils_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz";
- sha1 = "c579b5e34cb34b1a74edc6c1fb36bfa371d5a613";
- };
- }
- {
- name = "loader_utils___loader_utils_2.0.0.tgz";
- path = fetchurl {
- name = "loader_utils___loader_utils_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz";
- sha1 = "e4cace5b816d425a166b5f097e10cd12b36064b0";
- };
- }
- {
- name = "locate_path___locate_path_2.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz";
- sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
- };
- }
- {
- name = "locate_path___locate_path_3.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz";
- sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e";
- };
- }
- {
- name = "locate_path___locate_path_5.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz";
- sha1 = "1afba396afd676a6d42504d0a67a3a7eb9f62aa0";
- };
- }
- {
- name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz";
- path = fetchurl {
- name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
- sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
- };
- }
- {
- name = "lodash.assign___lodash.assign_4.2.0.tgz";
- path = fetchurl {
- name = "lodash.assign___lodash.assign_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz";
- sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7";
- };
- }
- {
- name = "lodash.camelcase___lodash.camelcase_4.3.0.tgz";
- path = fetchurl {
- name = "lodash.camelcase___lodash.camelcase_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
- sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
- };
- }
- {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
- sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
- };
- }
- {
- name = "lodash.compact___lodash.compact_3.0.1.tgz";
- path = fetchurl {
- name = "lodash.compact___lodash.compact_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.compact/-/lodash.compact-3.0.1.tgz";
- sha1 = "540ce3837745975807471e16b4a2ba21e7256ca5";
- };
- }
- {
- name = "lodash.differencewith___lodash.differencewith_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.differencewith___lodash.differencewith_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz";
- sha1 = "bafafbc918b55154e179176a00bb0aefaac854b7";
- };
- }
- {
- name = "lodash.find___lodash.find_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.find___lodash.find_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz";
- sha1 = "cb0704d47ab71789ffa0de8b97dd926fb88b13b1";
- };
- }
- {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz";
- sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f";
- };
- }
- {
- name = "lodash.forin___lodash.forin_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.forin___lodash.forin_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.forin/-/lodash.forin-4.4.0.tgz";
- sha1 = "5d3f20ae564011fbe88381f7d98949c9c9519731";
- };
- }
- {
- name = "lodash.get___lodash.get_4.4.2.tgz";
- path = fetchurl {
- name = "lodash.get___lodash.get_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz";
- sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99";
- };
- }
- {
- name = "lodash.has___lodash.has_4.5.2.tgz";
- path = fetchurl {
- name = "lodash.has___lodash.has_4.5.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.has/-/lodash.has-4.5.2.tgz";
- sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862";
- };
- }
- {
- name = "lodash.invokemap___lodash.invokemap_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.invokemap___lodash.invokemap_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.invokemap/-/lodash.invokemap-4.6.0.tgz";
- sha1 = "1748cda5d8b0ef8369c4eb3ec54c21feba1f2d62";
- };
- }
- {
- name = "lodash.isempty___lodash.isempty_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.isempty___lodash.isempty_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz";
- sha1 = "6f86cbedd8be4ec987be9aaf33c9684db1b31e7e";
- };
- }
- {
- name = "lodash.isequal___lodash.isequal_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.isequal___lodash.isequal_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz";
- sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
- };
- }
- {
- name = "lodash.isfunction___lodash.isfunction_3.0.9.tgz";
- path = fetchurl {
- name = "lodash.isfunction___lodash.isfunction_3.0.9.tgz";
- url = "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz";
- sha1 = "06de25df4db327ac931981d1bdb067e5af68d051";
- };
- }
- {
- name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz";
- path = fetchurl {
- name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz";
- sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343";
- };
- }
- {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- path = fetchurl {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
- sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
- };
- }
- {
- name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz";
- path = fetchurl {
- name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz";
- sha1 = "8489b1cb0d29ff88195cceca448ff6d6cc295c36";
- };
- }
- {
- name = "lodash.lowerfirst___lodash.lowerfirst_4.3.1.tgz";
- path = fetchurl {
- name = "lodash.lowerfirst___lodash.lowerfirst_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz";
- sha1 = "de3c7b12e02c6524a0059c2f6cb7c5c52655a13d";
- };
- }
- {
- name = "lodash.map___lodash.map_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.map___lodash.map_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz";
- sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3";
- };
- }
- {
- name = "lodash.mapvalues___lodash.mapvalues_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.mapvalues___lodash.mapvalues_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz";
- sha1 = "1bafa5005de9dd6f4f26668c30ca37230cc9689c";
- };
- }
- {
- name = "lodash.merge___lodash.merge_4.6.2.tgz";
- path = fetchurl {
- name = "lodash.merge___lodash.merge_4.6.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz";
- sha1 = "558aa53b43b661e1925a0afdfa36a9a1085fe57a";
- };
- }
- {
- name = "lodash.pick___lodash.pick_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.pick___lodash.pick_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz";
- sha1 = "52f05610fff9ded422611441ed1fc123a03001b3";
- };
- }
- {
- name = "lodash.snakecase___lodash.snakecase_4.1.1.tgz";
- path = fetchurl {
- name = "lodash.snakecase___lodash.snakecase_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz";
- sha1 = "39d714a35357147837aefd64b5dcbb16becd8f8d";
- };
- }
- {
- name = "lodash.sortby___lodash.sortby_4.7.0.tgz";
- path = fetchurl {
- name = "lodash.sortby___lodash.sortby_4.7.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz";
- sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438";
- };
- }
- {
- name = "lodash.template___lodash.template_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.template___lodash.template_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz";
- sha1 = "f976195cf3f347d0d5f52483569fe8031ccce8ab";
- };
- }
- {
- name = "lodash.templatesettings___lodash.templatesettings_4.2.0.tgz";
- path = fetchurl {
- name = "lodash.templatesettings___lodash.templatesettings_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz";
- sha1 = "e481310f049d3cf6d47e912ad09313b154f0fb33";
- };
- }
- {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- path = fetchurl {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz";
- sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193";
- };
- }
- {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
- sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
- };
- }
- {
- name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz";
- path = fetchurl {
- name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz";
- sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302";
- };
- }
- {
- name = "lodash.upperfirst___lodash.upperfirst_4.3.1.tgz";
- path = fetchurl {
- name = "lodash.upperfirst___lodash.upperfirst_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz";
- sha1 = "1365edf431480481ef0d1c68957a5ed99d49f7ce";
- };
- }
- {
- name = "lodash.values___lodash.values_4.3.0.tgz";
- path = fetchurl {
- name = "lodash.values___lodash.values_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.values/-/lodash.values-4.3.0.tgz";
- sha1 = "a3a6c2b0ebecc5c2cba1c17e6e620fe81b53d347";
- };
- }
- {
- name = "lodash___lodash_4.17.21.tgz";
- path = fetchurl {
- name = "lodash___lodash_4.17.21.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
- sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
- };
- }
- {
- name = "log_symbols___log_symbols_4.1.0.tgz";
- path = fetchurl {
- name = "log_symbols___log_symbols_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz";
- sha1 = "3fbdbb95b4683ac9fc785111e792e558d4abd503";
- };
- }
- {
- name = "loglevel___loglevel_1.7.1.tgz";
- path = fetchurl {
- name = "loglevel___loglevel_1.7.1.tgz";
- url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz";
- sha1 = "005fde2f5e6e47068f935ff28573e125ef72f197";
- };
- }
- {
- name = "longest_streak___longest_streak_2.0.4.tgz";
- path = fetchurl {
- name = "longest_streak___longest_streak_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz";
- sha1 = "b8599957da5b5dab64dee3fe316fa774597d90e4";
- };
- }
- {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- path = fetchurl {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz";
- sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf";
- };
- }
- {
- name = "lowercase_keys___lowercase_keys_1.0.1.tgz";
- path = fetchurl {
- name = "lowercase_keys___lowercase_keys_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
- sha1 = "6f9e30b47084d971a7c820ff15a6c5167b74c26f";
- };
- }
- {
- name = "lowercase_keys___lowercase_keys_2.0.0.tgz";
- path = fetchurl {
- name = "lowercase_keys___lowercase_keys_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz";
- sha1 = "2603e78b7b4b0006cbca2fbcc8a3202558ac9479";
- };
- }
- {
- name = "lowlight___lowlight_1.20.0.tgz";
- path = fetchurl {
- name = "lowlight___lowlight_1.20.0.tgz";
- url = "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz";
- sha1 = "ddb197d33462ad0d93bf19d17b6c301aa3941888";
- };
- }
- {
- name = "lru_cache___lru_cache_4.1.5.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_4.1.5.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz";
- sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd";
- };
- }
- {
- name = "lru_cache___lru_cache_5.1.1.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz";
- sha1 = "1da27e6710271947695daf6848e847f01d84b920";
- };
- }
- {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz";
- sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94";
- };
- }
- {
- name = "lz_string___lz_string_1.4.4.tgz";
- path = fetchurl {
- name = "lz_string___lz_string_1.4.4.tgz";
- url = "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz";
- sha1 = "c0d8eaf36059f705796e1e344811cf4c498d3a26";
- };
- }
- {
- name = "make_dir___make_dir_2.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz";
- sha1 = "5f0310e18b8be898cc07009295a30ae41e91e6f5";
- };
- }
- {
- name = "make_dir___make_dir_3.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz";
- sha1 = "415e967046b3a7f1d185277d84aa58203726a13f";
- };
- }
- {
- name = "makeerror___makeerror_1.0.11.tgz";
- path = fetchurl {
- name = "makeerror___makeerror_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz";
- sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c";
- };
- }
- {
- name = "map_cache___map_cache_0.2.2.tgz";
- path = fetchurl {
- name = "map_cache___map_cache_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
- };
- }
- {
- name = "map_obj___map_obj_1.0.1.tgz";
- path = fetchurl {
- name = "map_obj___map_obj_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz";
- sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
- };
- }
- {
- name = "map_obj___map_obj_4.1.0.tgz";
- path = fetchurl {
- name = "map_obj___map_obj_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz";
- sha1 = "b91221b542734b9f14256c0132c897c5d7256fd5";
- };
- }
- {
- name = "map_visit___map_visit_1.0.0.tgz";
- path = fetchurl {
- name = "map_visit___map_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
- };
- }
- {
- name = "markdown_it___markdown_it_12.0.2.tgz";
- path = fetchurl {
- name = "markdown_it___markdown_it_12.0.2.tgz";
- url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.0.2.tgz";
- sha1 = "4401beae8df8aa2221fc6565a7188e60a06ef0ed";
- };
- }
- {
- name = "markdown_it___markdown_it_10.0.0.tgz";
- path = fetchurl {
- name = "markdown_it___markdown_it_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz";
- sha1 = "abfc64f141b1722d663402044e43927f1f50a8dc";
- };
- }
- {
- name = "markdownlint_cli___markdownlint_cli_0.26.0.tgz";
- path = fetchurl {
- name = "markdownlint_cli___markdownlint_cli_0.26.0.tgz";
- url = "https://registry.yarnpkg.com/markdownlint-cli/-/markdownlint-cli-0.26.0.tgz";
- sha1 = "cd89e3e39a049303ec125c8aa291da4f3325df29";
- };
- }
- {
- name = "markdownlint_rule_helpers___markdownlint_rule_helpers_0.13.0.tgz";
- path = fetchurl {
- name = "markdownlint_rule_helpers___markdownlint_rule_helpers_0.13.0.tgz";
- url = "https://registry.yarnpkg.com/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.13.0.tgz";
- sha1 = "7cc6553bc7f8c4c8a43cf66fb2a3a652124f46f9";
- };
- }
- {
- name = "markdownlint___markdownlint_0.22.0.tgz";
- path = fetchurl {
- name = "markdownlint___markdownlint_0.22.0.tgz";
- url = "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.22.0.tgz";
- sha1 = "4ed95b61c17ae9f4dfca6a01f038c744846c0a72";
- };
- }
- {
- name = "marked___marked_0.3.19.tgz";
- path = fetchurl {
- name = "marked___marked_0.3.19.tgz";
- url = "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz";
- sha1 = "5d47f709c4c9fc3c216b6d46127280f40b39d790";
- };
- }
- {
- name = "mathjax___mathjax_3.1.2.tgz";
- path = fetchurl {
- name = "mathjax___mathjax_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/mathjax/-/mathjax-3.1.2.tgz";
- sha1 = "95c0d45ce2330ef7b6a815cebe7d61ecc26bbabd";
- };
- }
- {
- name = "mathml_tag_names___mathml_tag_names_2.1.3.tgz";
- path = fetchurl {
- name = "mathml_tag_names___mathml_tag_names_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz";
- sha1 = "4ddadd67308e780cf16a47685878ee27b736a0a3";
- };
- }
- {
- name = "md5.js___md5.js_1.3.4.tgz";
- path = fetchurl {
- name = "md5.js___md5.js_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz";
- sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
- };
- }
- {
- name = "md5___md5_2.2.1.tgz";
- path = fetchurl {
- name = "md5___md5_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz";
- sha1 = "53ab38d5fe3c8891ba465329ea23fac0540126f9";
- };
- }
- {
- name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz";
- path = fetchurl {
- name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz";
- sha1 = "d1ef2ca42bc377ecb0463a987910dae89bd9a28c";
- };
- }
- {
- name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz";
- path = fetchurl {
- name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz";
- sha1 = "b33f67ca820d69e6cc527a93d4039249b504bebe";
- };
- }
- {
- name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz";
- path = fetchurl {
- name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz";
- sha1 = "b8cfe6a713e1091cb5b728fc48885a4767f8b97b";
- };
- }
- {
- name = "mdurl___mdurl_1.0.1.tgz";
- path = fetchurl {
- name = "mdurl___mdurl_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz";
- sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e";
- };
- }
- {
- name = "media_typer___media_typer_0.3.0.tgz";
- path = fetchurl {
- name = "media_typer___media_typer_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz";
- sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
- };
- }
- {
- name = "memory_fs___memory_fs_0.2.0.tgz";
- path = fetchurl {
- name = "memory_fs___memory_fs_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz";
- sha1 = "f2bb25368bc121e391c2520de92969caee0a0290";
- };
- }
- {
- name = "memory_fs___memory_fs_0.4.1.tgz";
- path = fetchurl {
- name = "memory_fs___memory_fs_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz";
- sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
- };
- }
- {
- name = "memory_fs___memory_fs_0.5.0.tgz";
- path = fetchurl {
- name = "memory_fs___memory_fs_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz";
- sha1 = "324c01288b88652966d161db77838720845a8e3c";
- };
- }
- {
- name = "meow___meow_9.0.0.tgz";
- path = fetchurl {
- name = "meow___meow_9.0.0.tgz";
- url = "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz";
- sha1 = "cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364";
- };
- }
- {
- name = "merge_descriptors___merge_descriptors_1.0.1.tgz";
- path = fetchurl {
- name = "merge_descriptors___merge_descriptors_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz";
- sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
- };
- }
- {
- name = "merge_source_map___merge_source_map_1.1.0.tgz";
- path = fetchurl {
- name = "merge_source_map___merge_source_map_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz";
- sha1 = "2fdde7e6020939f70906a68f2d7ae685e4c8c646";
- };
- }
- {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- path = fetchurl {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz";
- sha1 = "52823629a14dd00c9770fb6ad47dc6310f2c1f60";
- };
- }
- {
- name = "merge2___merge2_1.4.1.tgz";
- path = fetchurl {
- name = "merge2___merge2_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz";
- sha1 = "4368892f885e907455a6fd7dc55c0c9d404990ae";
- };
- }
- {
- name = "mermaid___mermaid_8.11.5.tgz";
- path = fetchurl {
- name = "mermaid___mermaid_8.11.5.tgz";
- url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.11.5.tgz";
- sha1 = "a2a284d705abf145e0d0f27e8b913d6e11bbb92c";
- };
- }
- {
- name = "methods___methods_1.1.2.tgz";
- path = fetchurl {
- name = "methods___methods_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz";
- sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
- };
- }
- {
- name = "micromark___micromark_2.11.4.tgz";
- path = fetchurl {
- name = "micromark___micromark_2.11.4.tgz";
- url = "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz";
- sha1 = "d13436138eea826383e822449c9a5c50ee44665a";
- };
- }
- {
- name = "micromatch___micromatch_3.1.10.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_3.1.10.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz";
- sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23";
- };
- }
- {
- name = "micromatch___micromatch_4.0.2.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz";
- sha1 = "4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259";
- };
- }
- {
- name = "miller_rabin___miller_rabin_4.0.1.tgz";
- path = fetchurl {
- name = "miller_rabin___miller_rabin_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz";
- sha1 = "f080351c865b0dc562a8462966daa53543c78a4d";
- };
- }
- {
- name = "mime_db___mime_db_1.47.0.tgz";
- path = fetchurl {
- name = "mime_db___mime_db_1.47.0.tgz";
- url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz";
- sha1 = "8cb313e59965d3c05cfbf898915a267af46a335c";
- };
- }
- {
- name = "mime_types___mime_types_2.1.30.tgz";
- path = fetchurl {
- name = "mime_types___mime_types_2.1.30.tgz";
- url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz";
- sha1 = "6e7be8b4c479825f85ed6326695db73f9305d62d";
- };
- }
- {
- name = "mime___mime_1.6.0.tgz";
- path = fetchurl {
- name = "mime___mime_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz";
- sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1";
- };
- }
- {
- name = "mime___mime_2.4.4.tgz";
- path = fetchurl {
- name = "mime___mime_2.4.4.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz";
- sha1 = "bd7b91135fc6b01cde3e9bae33d659b63d8857e5";
- };
- }
- {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- path = fetchurl {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz";
- sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b";
- };
- }
- {
- name = "mimic_response___mimic_response_1.0.1.tgz";
- path = fetchurl {
- name = "mimic_response___mimic_response_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz";
- sha1 = "4923538878eef42063cb8a3e3b0798781487ab1b";
- };
- }
- {
- name = "min_document___min_document_2.19.0.tgz";
- path = fetchurl {
- name = "min_document___min_document_2.19.0.tgz";
- url = "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
- };
- }
- {
- name = "min_indent___min_indent_1.0.1.tgz";
- path = fetchurl {
- name = "min_indent___min_indent_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz";
- sha1 = "a63f681673b30571fbe8bc25686ae746eefa9869";
- };
- }
- {
- name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz";
- path = fetchurl {
- name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
- sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7";
- };
- }
- {
- name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz";
- path = fetchurl {
- name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
- sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
- };
- }
- {
- name = "minimatch___minimatch_3.0.4.tgz";
- path = fetchurl {
- name = "minimatch___minimatch_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
- };
- }
- {
- name = "minimist_options___minimist_options_4.1.0.tgz";
- path = fetchurl {
- name = "minimist_options___minimist_options_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz";
- sha1 = "c0655713c53a8a2ebd77ffa247d342c40f010619";
- };
- }
- {
- name = "minimist___minimist_1.2.5.tgz";
- path = fetchurl {
- name = "minimist___minimist_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz";
- sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602";
- };
- }
- {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- path = fetchurl {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz";
- sha1 = "22b813bf745dc6edba2576b940022ad6edc8c617";
- };
- }
- {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- path = fetchurl {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz";
- sha1 = "82e7135d7e89a50ffe64610a787953c4c4cbb373";
- };
- }
- {
- name = "minipass_pipeline___minipass_pipeline_1.2.2.tgz";
- path = fetchurl {
- name = "minipass_pipeline___minipass_pipeline_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz";
- sha1 = "3dcb6bb4a546e32969c7ad710f2c79a86abba93a";
- };
- }
- {
- name = "minipass___minipass_3.1.1.tgz";
- path = fetchurl {
- name = "minipass___minipass_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz";
- sha1 = "7607ce778472a185ad6d89082aa2070f79cedcd5";
- };
- }
- {
- name = "minizlib___minizlib_2.1.2.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz";
- sha1 = "e90d3466ba209b932451508a11ce3d3632145931";
- };
- }
- {
- name = "miragejs___miragejs_0.1.40.tgz";
- path = fetchurl {
- name = "miragejs___miragejs_0.1.40.tgz";
- url = "https://registry.yarnpkg.com/miragejs/-/miragejs-0.1.40.tgz";
- sha1 = "5bcba7634312c012748ae7f294e1516b74b37182";
- };
- }
- {
- name = "mississippi___mississippi_3.0.0.tgz";
- path = fetchurl {
- name = "mississippi___mississippi_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz";
- sha1 = "ea0a3291f97e0b5e8776b363d5f0a12d94c67022";
- };
- }
- {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- path = fetchurl {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz";
- sha1 = "1120b43dc359a785dce65b55b82e257ccf479566";
- };
- }
- {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz";
- sha1 = "d91cefd62d1436ca0f41620e251288d420099def";
- };
- }
- {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz";
- sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e";
- };
- }
- {
- name = "mock_apollo_client___mock_apollo_client_0.7.0.tgz";
- path = fetchurl {
- name = "mock_apollo_client___mock_apollo_client_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/mock-apollo-client/-/mock-apollo-client-0.7.0.tgz";
- sha1 = "5f70e75c842a9f3b3da2252f68fd47f2d9955f77";
- };
- }
- {
- name = "moment_mini___moment_mini_2.24.0.tgz";
- path = fetchurl {
- name = "moment_mini___moment_mini_2.24.0.tgz";
- url = "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.24.0.tgz";
- sha1 = "fa68d98f7fe93ae65bf1262f6abb5fb6983d8d18";
- };
- }
- {
- name = "monaco_editor_webpack_plugin___monaco_editor_webpack_plugin_4.0.0.tgz";
- path = fetchurl {
- name = "monaco_editor_webpack_plugin___monaco_editor_webpack_plugin_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-4.0.0.tgz";
- sha1 = "95be3f48f4220999b909266a9997727f0deab947";
- };
- }
- {
- name = "monaco_editor___monaco_editor_0.25.2.tgz";
- path = fetchurl {
- name = "monaco_editor___monaco_editor_0.25.2.tgz";
- url = "https://registry.yarnpkg.com/monaco-editor/-/monaco-editor-0.25.2.tgz";
- sha1 = "119e2b15bbd968a1a99c03cac9c329316d7c37e9";
- };
- }
- {
- name = "monaco_yaml___monaco_yaml_2.5.1.tgz";
- path = fetchurl {
- name = "monaco_yaml___monaco_yaml_2.5.1.tgz";
- url = "https://registry.yarnpkg.com/monaco-yaml/-/monaco-yaml-2.5.1.tgz";
- sha1 = "af9303a4aa6e3b94db62b8a8659362f31944590d";
- };
- }
- {
- name = "mousetrap___mousetrap_1.6.5.tgz";
- path = fetchurl {
- name = "mousetrap___mousetrap_1.6.5.tgz";
- url = "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz";
- sha1 = "8a766d8c272b08393d5f56074e0b5ec183485bf9";
- };
- }
- {
- name = "move_concurrently___move_concurrently_1.0.1.tgz";
- path = fetchurl {
- name = "move_concurrently___move_concurrently_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz";
- sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
- };
- }
- {
- name = "ms___ms_2.0.0.tgz";
- path = fetchurl {
- name = "ms___ms_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- }
- {
- name = "ms___ms_2.1.1.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz";
- sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a";
- };
- }
- {
- name = "ms___ms_2.1.2.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz";
- sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009";
- };
- }
- {
- name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz";
- path = fetchurl {
- name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz";
- sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901";
- };
- }
- {
- name = "multicast_dns___multicast_dns_6.1.1.tgz";
- path = fetchurl {
- name = "multicast_dns___multicast_dns_6.1.1.tgz";
- url = "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.1.1.tgz";
- sha1 = "6e7de86a570872ab17058adea7160bbeca814dde";
- };
- }
- {
- name = "mute_stream___mute_stream_0.0.8.tgz";
- path = fetchurl {
- name = "mute_stream___mute_stream_0.0.8.tgz";
- url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz";
- sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d";
- };
- }
- {
- name = "nanoid___nanoid_3.1.23.tgz";
- path = fetchurl {
- name = "nanoid___nanoid_3.1.23.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz";
- sha1 = "f744086ce7c2bc47ee0a8472574d5c78e4183a81";
- };
- }
- {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- path = fetchurl {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz";
- sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119";
- };
- }
- {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- path = fetchurl {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
- };
- }
- {
- name = "negotiator___negotiator_0.6.2.tgz";
- path = fetchurl {
- name = "negotiator___negotiator_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz";
- sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb";
- };
- }
- {
- name = "neo_async___neo_async_2.6.1.tgz";
- path = fetchurl {
- name = "neo_async___neo_async_2.6.1.tgz";
- url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz";
- sha1 = "ac27ada66167fa8849a6addd837f6b189ad2081c";
- };
- }
- {
- name = "nice_try___nice_try_1.0.5.tgz";
- path = fetchurl {
- name = "nice_try___nice_try_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz";
- sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366";
- };
- }
- {
- name = "node_dir___node_dir_0.1.17.tgz";
- path = fetchurl {
- name = "node_dir___node_dir_0.1.17.tgz";
- url = "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz";
- sha1 = "5f5665d93351335caabef8f1c554516cf5f1e4e5";
- };
- }
- {
- name = "node_ensure___node_ensure_0.0.0.tgz";
- path = fetchurl {
- name = "node_ensure___node_ensure_0.0.0.tgz";
- url = "https://registry.yarnpkg.com/node-ensure/-/node-ensure-0.0.0.tgz";
- sha1 = "ecae764150de99861ec5c810fd5d096b183932a7";
- };
- }
- {
- name = "node_fetch___node_fetch_2.6.1.tgz";
- path = fetchurl {
- name = "node_fetch___node_fetch_2.6.1.tgz";
- url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz";
- sha1 = "045bd323631f76ed2e2b55573394416b639a0052";
- };
- }
- {
- name = "node_forge___node_forge_0.10.0.tgz";
- path = fetchurl {
- name = "node_forge___node_forge_0.10.0.tgz";
- url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz";
- sha1 = "32dea2afb3e9926f02ee5ce8794902691a676bf3";
- };
- }
- {
- name = "node_int64___node_int64_0.4.0.tgz";
- path = fetchurl {
- name = "node_int64___node_int64_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz";
- sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
- };
- }
- {
- name = "node_libs_browser___node_libs_browser_2.2.1.tgz";
- path = fetchurl {
- name = "node_libs_browser___node_libs_browser_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz";
- sha1 = "b64f513d18338625f90346d27b0d235e631f6425";
- };
- }
- {
- name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
- path = fetchurl {
- name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz";
- sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40";
- };
- }
- {
- name = "node_notifier___node_notifier_8.0.0.tgz";
- path = fetchurl {
- name = "node_notifier___node_notifier_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz";
- sha1 = "a7eee2d51da6d0f7ff5094bc7108c911240c1620";
- };
- }
- {
- name = "node_releases___node_releases_1.1.73.tgz";
- path = fetchurl {
- name = "node_releases___node_releases_1.1.73.tgz";
- url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz";
- sha1 = "dd4e81ddd5277ff846b80b52bb40c49edf7a7b20";
- };
- }
- {
- name = "nodemon___nodemon_2.0.4.tgz";
- path = fetchurl {
- name = "nodemon___nodemon_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.4.tgz";
- sha1 = "55b09319eb488d6394aa9818148c0c2d1c04c416";
- };
- }
- {
- name = "nopt___nopt_4.0.3.tgz";
- path = fetchurl {
- name = "nopt___nopt_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz";
- sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48";
- };
- }
- {
- name = "nopt___nopt_1.0.10.tgz";
- path = fetchurl {
- name = "nopt___nopt_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
- };
- }
- {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- path = fetchurl {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
- sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8";
- };
- }
- {
- name = "normalize_package_data___normalize_package_data_3.0.0.tgz";
- path = fetchurl {
- name = "normalize_package_data___normalize_package_data_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz";
- sha1 = "1f8a7c423b3d2e85eb36985eaf81de381d01301a";
- };
- }
- {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
- };
- }
- {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz";
- sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65";
- };
- }
- {
- name = "normalize_range___normalize_range_0.1.2.tgz";
- path = fetchurl {
- name = "normalize_range___normalize_range_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz";
- sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
- };
- }
- {
- name = "normalize_selector___normalize_selector_0.2.0.tgz";
- path = fetchurl {
- name = "normalize_selector___normalize_selector_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz";
- sha1 = "d0b145eb691189c63a78d201dc4fdb1293ef0c03";
- };
- }
- {
- name = "normalize_url___normalize_url_4.5.0.tgz";
- path = fetchurl {
- name = "normalize_url___normalize_url_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz";
- sha1 = "453354087e6ca96957bd8f5baf753f5982142129";
- };
- }
- {
- name = "npm_run_path___npm_run_path_2.0.2.tgz";
- path = fetchurl {
- name = "npm_run_path___npm_run_path_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz";
- sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
- };
- }
- {
- name = "npm_run_path___npm_run_path_4.0.1.tgz";
- path = fetchurl {
- name = "npm_run_path___npm_run_path_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz";
- sha1 = "b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea";
- };
- }
- {
- name = "nth_check___nth_check_2.0.0.tgz";
- path = fetchurl {
- name = "nth_check___nth_check_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz";
- sha1 = "1bb4f6dac70072fc313e8c9cd1417b5074c0a125";
- };
- }
- {
- name = "num2fraction___num2fraction_1.2.2.tgz";
- path = fetchurl {
- name = "num2fraction___num2fraction_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz";
- sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
- };
- }
- {
- name = "nwsapi___nwsapi_2.2.0.tgz";
- path = fetchurl {
- name = "nwsapi___nwsapi_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz";
- sha1 = "204879a9e3d068ff2a55139c2c772780681a38b7";
- };
- }
- {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- path = fetchurl {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz";
- sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
- };
- }
- {
- name = "object_assign___object_assign_4.1.1.tgz";
- path = fetchurl {
- name = "object_assign___object_assign_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- }
- {
- name = "object_copy___object_copy_0.1.0.tgz";
- path = fetchurl {
- name = "object_copy___object_copy_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
- };
- }
- {
- name = "object_inspect___object_inspect_1.9.0.tgz";
- path = fetchurl {
- name = "object_inspect___object_inspect_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz";
- sha1 = "c90521d74e1127b67266ded3394ad6116986533a";
- };
- }
- {
- name = "object_keys___object_keys_1.1.1.tgz";
- path = fetchurl {
- name = "object_keys___object_keys_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz";
- sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e";
- };
- }
- {
- name = "object_visit___object_visit_1.0.1.tgz";
- path = fetchurl {
- name = "object_visit___object_visit_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
- };
- }
- {
- name = "object.assign___object.assign_4.1.2.tgz";
- path = fetchurl {
- name = "object.assign___object.assign_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz";
- sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940";
- };
- }
- {
- name = "object.entries___object.entries_1.1.3.tgz";
- path = fetchurl {
- name = "object.entries___object.entries_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz";
- sha1 = "c601c7f168b62374541a07ddbd3e2d5e4f7711a6";
- };
- }
- {
- name = "object.pick___object.pick_1.3.0.tgz";
- path = fetchurl {
- name = "object.pick___object.pick_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
- };
- }
- {
- name = "object.values___object.values_1.1.2.tgz";
- path = fetchurl {
- name = "object.values___object.values_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz";
- sha1 = "7a2015e06fcb0f546bd652486ce8583a4731c731";
- };
- }
- {
- name = "obuf___obuf_1.1.2.tgz";
- path = fetchurl {
- name = "obuf___obuf_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz";
- sha1 = "09bea3343d41859ebd446292d11c9d4db619084e";
- };
- }
- {
- name = "on_finished___on_finished_2.3.0.tgz";
- path = fetchurl {
- name = "on_finished___on_finished_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
- };
- }
- {
- name = "on_headers___on_headers_1.0.2.tgz";
- path = fetchurl {
- name = "on_headers___on_headers_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz";
- sha1 = "772b0ae6aaa525c399e489adfad90c403eb3c28f";
- };
- }
- {
- name = "once___once_1.4.0.tgz";
- path = fetchurl {
- name = "once___once_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- }
- {
- name = "onetime___onetime_5.1.0.tgz";
- path = fetchurl {
- name = "onetime___onetime_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz";
- sha1 = "fff0f3c91617fe62bb50189636e99ac8a6df7be5";
- };
- }
- {
- name = "opener___opener_1.5.2.tgz";
- path = fetchurl {
- name = "opener___opener_1.5.2.tgz";
- url = "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz";
- sha1 = "5d37e1f35077b9dcac4301372271afdeb2a13598";
- };
- }
- {
- name = "opn___opn_5.5.0.tgz";
- path = fetchurl {
- name = "opn___opn_5.5.0.tgz";
- url = "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz";
- sha1 = "fc7164fab56d235904c51c3b27da6758ca3b9bfc";
- };
- }
- {
- name = "optimism___optimism_0.10.3.tgz";
- path = fetchurl {
- name = "optimism___optimism_0.10.3.tgz";
- url = "https://registry.yarnpkg.com/optimism/-/optimism-0.10.3.tgz";
- sha1 = "163268fdc741dea2fb50f300bedda80356445fd7";
- };
- }
- {
- name = "optionator___optionator_0.8.3.tgz";
- path = fetchurl {
- name = "optionator___optionator_0.8.3.tgz";
- url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz";
- sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495";
- };
- }
- {
- name = "optionator___optionator_0.9.1.tgz";
- path = fetchurl {
- name = "optionator___optionator_0.9.1.tgz";
- url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz";
- sha1 = "4f236a6373dae0566a6d43e1326674f50c291499";
- };
- }
- {
- name = "ora___ora_5.4.1.tgz";
- path = fetchurl {
- name = "ora___ora_5.4.1.tgz";
- url = "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz";
- sha1 = "1b2678426af4ac4a509008e5e4ac9e9959db9e18";
- };
- }
- {
- name = "orderedmap___orderedmap_1.1.1.tgz";
- path = fetchurl {
- name = "orderedmap___orderedmap_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz";
- sha1 = "c618e77611b3b21d0fe3edc92586265e0059c789";
- };
- }
- {
- name = "original___original_1.0.2.tgz";
- path = fetchurl {
- name = "original___original_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz";
- sha1 = "e442a61cffe1c5fd20a65f3261c26663b303f25f";
- };
- }
- {
- name = "os_browserify___os_browserify_0.3.0.tgz";
- path = fetchurl {
- name = "os_browserify___os_browserify_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz";
- sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
- };
- }
- {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- path = fetchurl {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- }
- {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- path = fetchurl {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- }
- {
- name = "osenv___osenv_0.1.5.tgz";
- path = fetchurl {
- name = "osenv___osenv_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz";
- sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410";
- };
- }
- {
- name = "p_cancelable___p_cancelable_1.1.0.tgz";
- path = fetchurl {
- name = "p_cancelable___p_cancelable_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz";
- sha1 = "d078d15a3af409220c886f1d9a0ca2e441ab26cc";
- };
- }
- {
- name = "p_each_series___p_each_series_2.1.0.tgz";
- path = fetchurl {
- name = "p_each_series___p_each_series_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz";
- sha1 = "961c8dd3f195ea96c747e636b262b800a6b1af48";
- };
- }
- {
- name = "p_finally___p_finally_1.0.0.tgz";
- path = fetchurl {
- name = "p_finally___p_finally_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz";
- sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
- };
- }
- {
- name = "p_limit___p_limit_1.2.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz";
- sha1 = "0e92b6bedcb59f022c13d0f1949dc82d15909f1c";
- };
- }
- {
- name = "p_limit___p_limit_2.2.2.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz";
- sha1 = "61279b67721f5287aa1c13a9a7fbbc48c9291b1e";
- };
- }
- {
- name = "p_limit___p_limit_3.1.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz";
- sha1 = "e1daccbe78d0d1388ca18c64fea38e3e57e3706b";
- };
- }
- {
- name = "p_locate___p_locate_2.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz";
- sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
- };
- }
- {
- name = "p_locate___p_locate_3.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz";
- sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4";
- };
- }
- {
- name = "p_locate___p_locate_4.1.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz";
- sha1 = "a3428bb7088b3a60292f66919278b7c297ad4f07";
- };
- }
- {
- name = "p_map___p_map_2.1.0.tgz";
- path = fetchurl {
- name = "p_map___p_map_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz";
- sha1 = "310928feef9c9ecc65b68b17693018a665cea175";
- };
- }
- {
- name = "p_map___p_map_4.0.0.tgz";
- path = fetchurl {
- name = "p_map___p_map_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz";
- sha1 = "bb2f95a5eda2ec168ec9274e06a747c3e2904d2b";
- };
- }
- {
- name = "p_retry___p_retry_3.0.1.tgz";
- path = fetchurl {
- name = "p_retry___p_retry_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz";
- sha1 = "316b4c8893e2c8dc1cfa891f406c4b422bebf328";
- };
- }
- {
- name = "p_try___p_try_1.0.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz";
- sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
- };
- }
- {
- name = "p_try___p_try_2.2.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz";
- sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6";
- };
- }
- {
- name = "package_json___package_json_6.5.0.tgz";
- path = fetchurl {
- name = "package_json___package_json_6.5.0.tgz";
- url = "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz";
- sha1 = "6feedaca35e75725876d0b0e64974697fed145b0";
- };
- }
- {
- name = "pako___pako_1.0.6.tgz";
- path = fetchurl {
- name = "pako___pako_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz";
- sha1 = "0101211baa70c4bca4a0f63f2206e97b7dfaf258";
- };
- }
- {
- name = "papaparse___papaparse_5.3.1.tgz";
- path = fetchurl {
- name = "papaparse___papaparse_5.3.1.tgz";
- url = "https://registry.yarnpkg.com/papaparse/-/papaparse-5.3.1.tgz";
- sha1 = "770b7a9124d821d4b2132132b7bd7dce7194b5b1";
- };
- }
- {
- name = "parallel_transform___parallel_transform_1.1.0.tgz";
- path = fetchurl {
- name = "parallel_transform___parallel_transform_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz";
- sha1 = "d410f065b05da23081fcd10f28854c29bda33b06";
- };
- }
- {
- name = "parent_module___parent_module_1.0.1.tgz";
- path = fetchurl {
- name = "parent_module___parent_module_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz";
- sha1 = "691d2709e78c79fae3a156622452d00762caaaa2";
- };
- }
- {
- name = "parse_asn1___parse_asn1_5.1.0.tgz";
- path = fetchurl {
- name = "parse_asn1___parse_asn1_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz";
- sha1 = "37c4f9b7ed3ab65c74817b5f2480937fbf97c712";
- };
- }
- {
- name = "parse_color___parse_color_1.0.0.tgz";
- path = fetchurl {
- name = "parse_color___parse_color_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz";
- sha1 = "7b748b95a83f03f16a94f535e52d7f3d94658619";
- };
- }
- {
- name = "parse_entities___parse_entities_2.0.0.tgz";
- path = fetchurl {
- name = "parse_entities___parse_entities_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz";
- sha1 = "53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8";
- };
- }
- {
- name = "parse_json___parse_json_2.2.0.tgz";
- path = fetchurl {
- name = "parse_json___parse_json_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz";
- sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
- };
- }
- {
- name = "parse_json___parse_json_5.1.0.tgz";
- path = fetchurl {
- name = "parse_json___parse_json_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz";
- sha1 = "f96088cdf24a8faa9aea9a009f2d9d942c999646";
- };
- }
- {
- name = "parse_passwd___parse_passwd_1.0.0.tgz";
- path = fetchurl {
- name = "parse_passwd___parse_passwd_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz";
- sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
- };
- }
- {
- name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_6.0.1.tgz";
- path = fetchurl {
- name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz";
- sha1 = "2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6";
- };
- }
- {
- name = "parse5___parse5_6.0.1.tgz";
- path = fetchurl {
- name = "parse5___parse5_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz";
- sha1 = "e1a1c085c569b3dc08321184f19a39cc27f7c30b";
- };
- }
- {
- name = "parse5___parse5_5.1.1.tgz";
- path = fetchurl {
- name = "parse5___parse5_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz";
- sha1 = "f68e4e5ba1852ac2cadc00f4555fff6c2abb6178";
- };
- }
- {
- name = "parseurl___parseurl_1.3.3.tgz";
- path = fetchurl {
- name = "parseurl___parseurl_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz";
- sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4";
- };
- }
- {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- path = fetchurl {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
- };
- }
- {
- name = "path_browserify___path_browserify_0.0.1.tgz";
- path = fetchurl {
- name = "path_browserify___path_browserify_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz";
- sha1 = "e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a";
- };
- }
- {
- name = "path_exists___path_exists_3.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
- };
- }
- {
- name = "path_exists___path_exists_4.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz";
- sha1 = "513bdbe2d3b95d7762e8c1137efa195c6c61b5b3";
- };
- }
- {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- path = fetchurl {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- }
- {
- name = "path_is_inside___path_is_inside_1.0.2.tgz";
- path = fetchurl {
- name = "path_is_inside___path_is_inside_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz";
- sha1 = "365417dede44430d1c11af61027facf074bdfc53";
- };
- }
- {
- name = "path_key___path_key_2.0.1.tgz";
- path = fetchurl {
- name = "path_key___path_key_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz";
- sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
- };
- }
- {
- name = "path_key___path_key_3.1.1.tgz";
- path = fetchurl {
- name = "path_key___path_key_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz";
- sha1 = "581f6ade658cbba65a0d3380de7753295054f375";
- };
- }
- {
- name = "path_parse___path_parse_1.0.6.tgz";
- path = fetchurl {
- name = "path_parse___path_parse_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz";
- sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c";
- };
- }
- {
- name = "path_to_regexp___path_to_regexp_0.1.7.tgz";
- path = fetchurl {
- name = "path_to_regexp___path_to_regexp_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
- sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
- };
- }
- {
- name = "path_type___path_type_2.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz";
- sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
- };
- }
- {
- name = "path_type___path_type_4.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz";
- sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b";
- };
- }
- {
- name = "pbkdf2___pbkdf2_3.0.14.tgz";
- path = fetchurl {
- name = "pbkdf2___pbkdf2_3.0.14.tgz";
- url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz";
- sha1 = "a35e13c64799b06ce15320f459c230e68e73bade";
- };
- }
- {
- name = "pdfjs_dist___pdfjs_dist_2.1.266.tgz";
- path = fetchurl {
- name = "pdfjs_dist___pdfjs_dist_2.1.266.tgz";
- url = "https://registry.yarnpkg.com/pdfjs-dist/-/pdfjs-dist-2.1.266.tgz";
- sha1 = "cded02268b389559e807f410d2a729db62160026";
- };
- }
- {
- name = "performance_now___performance_now_2.1.0.tgz";
- path = fetchurl {
- name = "performance_now___performance_now_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- }
- {
- name = "picomatch___picomatch_2.2.2.tgz";
- path = fetchurl {
- name = "picomatch___picomatch_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz";
- sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad";
- };
- }
- {
- name = "pify___pify_2.3.0.tgz";
- path = fetchurl {
- name = "pify___pify_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz";
- sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
- };
- }
- {
- name = "pify___pify_4.0.1.tgz";
- path = fetchurl {
- name = "pify___pify_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz";
- sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231";
- };
- }
- {
- name = "pikaday___pikaday_1.8.0.tgz";
- path = fetchurl {
- name = "pikaday___pikaday_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/pikaday/-/pikaday-1.8.0.tgz";
- sha1 = "ce930e257042e852e6aadee1115e01554b2d71c5";
- };
- }
- {
- name = "pinkie_promise___pinkie_promise_2.0.1.tgz";
- path = fetchurl {
- name = "pinkie_promise___pinkie_promise_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
- sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
- };
- }
- {
- name = "pinkie___pinkie_2.0.4.tgz";
- path = fetchurl {
- name = "pinkie___pinkie_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz";
- sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
- };
- }
- {
- name = "pirates___pirates_4.0.1.tgz";
- path = fetchurl {
- name = "pirates___pirates_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz";
- sha1 = "643a92caf894566f91b2b986d2c66950a8e2fb87";
- };
- }
- {
- name = "pkg_dir___pkg_dir_2.0.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz";
- sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
- };
- }
- {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz";
- sha1 = "2749020f239ed990881b1f71210d51eb6523bea3";
- };
- }
- {
- name = "pkg_dir___pkg_dir_4.2.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz";
- sha1 = "f099133df7ede422e81d1d8448270eeb3e4261f3";
- };
- }
- {
- name = "pofile___pofile_1.0.11.tgz";
- path = fetchurl {
- name = "pofile___pofile_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/pofile/-/pofile-1.0.11.tgz";
- sha1 = "35aff58c17491d127a07336d5522ebc9df57c954";
- };
- }
- {
- name = "popper.js___popper.js_1.16.1.tgz";
- path = fetchurl {
- name = "popper.js___popper.js_1.16.1.tgz";
- url = "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz";
- sha1 = "2a223cb3dc7b6213d740e40372be40de43e65b1b";
- };
- }
- {
- name = "portal_vue___portal_vue_2.1.7.tgz";
- path = fetchurl {
- name = "portal_vue___portal_vue_2.1.7.tgz";
- url = "https://registry.yarnpkg.com/portal-vue/-/portal-vue-2.1.7.tgz";
- sha1 = "ea08069b25b640ca08a5b86f67c612f15f4e4ad4";
- };
- }
- {
- name = "portfinder___portfinder_1.0.28.tgz";
- path = fetchurl {
- name = "portfinder___portfinder_1.0.28.tgz";
- url = "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz";
- sha1 = "67c4622852bd5374dd1dd900f779f53462fac778";
- };
- }
- {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- path = fetchurl {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
- };
- }
- {
- name = "postcss_html___postcss_html_0.36.0.tgz";
- path = fetchurl {
- name = "postcss_html___postcss_html_0.36.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-html/-/postcss-html-0.36.0.tgz";
- sha1 = "b40913f94eaacc2453fd30a1327ad6ee1f88b204";
- };
- }
- {
- name = "postcss_less___postcss_less_3.1.4.tgz";
- path = fetchurl {
- name = "postcss_less___postcss_less_3.1.4.tgz";
- url = "https://registry.yarnpkg.com/postcss-less/-/postcss-less-3.1.4.tgz";
- sha1 = "369f58642b5928ef898ffbc1a6e93c958304c5ad";
- };
- }
- {
- name = "postcss_media_query_parser___postcss_media_query_parser_0.2.3.tgz";
- path = fetchurl {
- name = "postcss_media_query_parser___postcss_media_query_parser_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz";
- sha1 = "27b39c6f4d94f81b1a73b8f76351c609e5cef244";
- };
- }
- {
- name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz";
- sha1 = "818719a1ae1da325f9832446b01136eeb493cd7e";
- };
- }
- {
- name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz";
- path = fetchurl {
- name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz";
- sha1 = "dd9953f6dd476b5fd1ef2d8830c8929760b56e63";
- };
- }
- {
- name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz";
- path = fetchurl {
- name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz";
- sha1 = "385cae013cc7743f5a7d7602d1073a89eaae62ee";
- };
- }
- {
- name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz";
- sha1 = "479b46dc0c5ca3dc7fa5270851836b9ec7152f64";
- };
- }
- {
- name = "postcss_resolve_nested_selector___postcss_resolve_nested_selector_0.1.1.tgz";
- path = fetchurl {
- name = "postcss_resolve_nested_selector___postcss_resolve_nested_selector_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz";
- sha1 = "29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e";
- };
- }
- {
- name = "postcss_safe_parser___postcss_safe_parser_4.0.2.tgz";
- path = fetchurl {
- name = "postcss_safe_parser___postcss_safe_parser_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz";
- sha1 = "a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96";
- };
- }
- {
- name = "postcss_sass___postcss_sass_0.4.4.tgz";
- path = fetchurl {
- name = "postcss_sass___postcss_sass_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/postcss-sass/-/postcss-sass-0.4.4.tgz";
- sha1 = "91f0f3447b45ce373227a98b61f8d8f0785285a3";
- };
- }
- {
- name = "postcss_scss___postcss_scss_2.1.1.tgz";
- path = fetchurl {
- name = "postcss_scss___postcss_scss_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.1.1.tgz";
- sha1 = "ec3a75fa29a55e016b90bf3269026c53c1d2b383";
- };
- }
- {
- name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz";
- path = fetchurl {
- name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz";
- url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz";
- sha1 = "56075a1380a04604c38b063ea7767a129af5c2b3";
- };
- }
- {
- name = "postcss_syntax___postcss_syntax_0.36.2.tgz";
- path = fetchurl {
- name = "postcss_syntax___postcss_syntax_0.36.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-syntax/-/postcss-syntax-0.36.2.tgz";
- sha1 = "f08578c7d95834574e5593a82dfbfa8afae3b51c";
- };
- }
- {
- name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz";
- path = fetchurl {
- name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz";
- sha1 = "9ff822547e2893213cf1c30efa51ac5fd1ba8281";
- };
- }
- {
- name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz";
- path = fetchurl {
- name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz";
- sha1 = "443f6a20ced6481a2bda4fa8532a6e55d789a2cb";
- };
- }
- {
- name = "postcss___postcss_7.0.35.tgz";
- path = fetchurl {
- name = "postcss___postcss_7.0.35.tgz";
- url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz";
- sha1 = "d2be00b998f7f211d8a276974079f2e92b970e24";
- };
- }
- {
- name = "postcss___postcss_8.2.15.tgz";
- path = fetchurl {
- name = "postcss___postcss_8.2.15.tgz";
- url = "https://registry.yarnpkg.com/postcss/-/postcss-8.2.15.tgz";
- sha1 = "9e66ccf07292817d226fc315cbbf9bc148fbca65";
- };
- }
- {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- path = fetchurl {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz";
- sha1 = "debc6489d7a6e6b0e7611888cec880337d316396";
- };
- }
- {
- name = "prelude_ls___prelude_ls_1.1.2.tgz";
- path = fetchurl {
- name = "prelude_ls___prelude_ls_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz";
- sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
- };
- }
- {
- name = "prepend_http___prepend_http_2.0.0.tgz";
- path = fetchurl {
- name = "prepend_http___prepend_http_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz";
- sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
- };
- }
- {
- name = "pretender___pretender_3.4.3.tgz";
- path = fetchurl {
- name = "pretender___pretender_3.4.3.tgz";
- url = "https://registry.yarnpkg.com/pretender/-/pretender-3.4.3.tgz";
- sha1 = "a3b4160516007075d29127262f3a0063d19896e9";
- };
- }
- {
- name = "prettier___prettier_2.0.5.tgz";
- path = fetchurl {
- name = "prettier___prettier_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz";
- sha1 = "d6d56282455243f2f92cc1716692c08aa31522d4";
- };
- }
- {
- name = "prettier___prettier_2.2.1.tgz";
- path = fetchurl {
- name = "prettier___prettier_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz";
- sha1 = "795a1a78dd52f073da0cd42b21f9c91381923ff5";
- };
- }
- {
- name = "prettier___prettier_1.18.2.tgz";
- path = fetchurl {
- name = "prettier___prettier_1.18.2.tgz";
- url = "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz";
- sha1 = "6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea";
- };
- }
- {
- name = "pretty_format___pretty_format_26.5.2.tgz";
- path = fetchurl {
- name = "pretty_format___pretty_format_26.5.2.tgz";
- url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.5.2.tgz";
- sha1 = "5d896acfdaa09210683d34b6dc0e6e21423cd3e1";
- };
- }
- {
- name = "pretty___pretty_2.0.0.tgz";
- path = fetchurl {
- name = "pretty___pretty_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/pretty/-/pretty-2.0.0.tgz";
- sha1 = "adbc7960b7bbfe289a557dc5f737619a220d06a5";
- };
- }
- {
- name = "prismjs___prismjs_1.21.0.tgz";
- path = fetchurl {
- name = "prismjs___prismjs_1.21.0.tgz";
- url = "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz";
- sha1 = "36c086ec36b45319ec4218ee164c110f9fc015a3";
- };
- }
- {
- name = "private___private_0.1.8.tgz";
- path = fetchurl {
- name = "private___private_0.1.8.tgz";
- url = "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz";
- sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
- sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2";
- };
- }
- {
- name = "process___process_0.11.10.tgz";
- path = fetchurl {
- name = "process___process_0.11.10.tgz";
- url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz";
- sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
- };
- }
- {
- name = "progress___progress_2.0.3.tgz";
- path = fetchurl {
- name = "progress___progress_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz";
- sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8";
- };
- }
- {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- path = fetchurl {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz";
- sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
- };
- }
- {
- name = "prompts___prompts_2.3.2.tgz";
- path = fetchurl {
- name = "prompts___prompts_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz";
- sha1 = "480572d89ecf39566d2bd3fe2c9fccb7c4c0b068";
- };
- }
- {
- name = "prosemirror_collab___prosemirror_collab_1.2.2.tgz";
- path = fetchurl {
- name = "prosemirror_collab___prosemirror_collab_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-collab/-/prosemirror-collab-1.2.2.tgz";
- sha1 = "8d2c0e82779cfef5d051154bd0836428bd6d9c4a";
- };
- }
- {
- name = "prosemirror_commands___prosemirror_commands_1.1.10.tgz";
- path = fetchurl {
- name = "prosemirror_commands___prosemirror_commands_1.1.10.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.10.tgz";
- sha1 = "406a6589966e6cd80809cea2d801fb998639b37d";
- };
- }
- {
- name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.5.tgz";
- path = fetchurl {
- name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.5.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.5.tgz";
- sha1 = "d2808c17089df0e441ad66016aecc2b6457c8a1f";
- };
- }
- {
- name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz";
- path = fetchurl {
- name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz";
- sha1 = "0c37fd6cbb1d7c46358c2e7397f8da9a8b5c6246";
- };
- }
- {
- name = "prosemirror_history___prosemirror_history_1.2.0.tgz";
- path = fetchurl {
- name = "prosemirror_history___prosemirror_history_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.2.0.tgz";
- sha1 = "04cc4df8d2f7b2a46651a2780de191ada6d465ea";
- };
- }
- {
- name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz";
- path = fetchurl {
- name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.3.tgz";
- sha1 = "93f9199ca02473259c30d7e352e4c14022d54638";
- };
- }
- {
- name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz";
- path = fetchurl {
- name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz";
- sha1 = "8b481bf8389a5ac40d38dbd67ec3da2c7eac6a6d";
- };
- }
- {
- name = "prosemirror_markdown___prosemirror_markdown_1.5.2.tgz";
- path = fetchurl {
- name = "prosemirror_markdown___prosemirror_markdown_1.5.2.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.5.2.tgz";
- sha1 = "f188ad14caa8c2f499b4d3eb6082e19f1d9d366e";
- };
- }
- {
- name = "prosemirror_model___prosemirror_model_1.14.3.tgz";
- path = fetchurl {
- name = "prosemirror_model___prosemirror_model_1.14.3.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.14.3.tgz";
- sha1 = "a9c250d3c4023ddf10ecb41a0a7a130e9741d37e";
- };
- }
- {
- name = "prosemirror_schema_basic___prosemirror_schema_basic_1.1.2.tgz";
- path = fetchurl {
- name = "prosemirror_schema_basic___prosemirror_schema_basic_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-schema-basic/-/prosemirror-schema-basic-1.1.2.tgz";
- sha1 = "4bde5c339c845e0d08ec8fe473064e372ca51ae3";
- };
- }
- {
- name = "prosemirror_schema_list___prosemirror_schema_list_1.1.5.tgz";
- path = fetchurl {
- name = "prosemirror_schema_list___prosemirror_schema_list_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.5.tgz";
- sha1 = "e7ad9e337ea3d77da6d6a4250f3d7bd51ae980a4";
- };
- }
- {
- name = "prosemirror_state___prosemirror_state_1.3.4.tgz";
- path = fetchurl {
- name = "prosemirror_state___prosemirror_state_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.4.tgz";
- sha1 = "4c6b52628216e753fc901c6d2bfd84ce109e8952";
- };
- }
- {
- name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz";
- path = fetchurl {
- name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz";
- sha1 = "ad66300cc49500455cf1243bb129c9e7d883321e";
- };
- }
- {
- name = "prosemirror_test_builder___prosemirror_test_builder_1.0.4.tgz";
- path = fetchurl {
- name = "prosemirror_test_builder___prosemirror_test_builder_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-test-builder/-/prosemirror-test-builder-1.0.4.tgz";
- sha1 = "68d1d1cedcd90cc2fdd976d736ce87b7a5f1e873";
- };
- }
- {
- name = "prosemirror_transform___prosemirror_transform_1.3.2.tgz";
- path = fetchurl {
- name = "prosemirror_transform___prosemirror_transform_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.3.2.tgz";
- sha1 = "5620ebe7379e6fae4f34ecc881886cb22ce96579";
- };
- }
- {
- name = "prosemirror_view___prosemirror_view_1.20.0.tgz";
- path = fetchurl {
- name = "prosemirror_view___prosemirror_view_1.20.0.tgz";
- url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.20.0.tgz";
- sha1 = "64198845f0d112c14a5594732c46a96ac3d9d828";
- };
- }
- {
- name = "proto_list___proto_list_1.2.4.tgz";
- path = fetchurl {
- name = "proto_list___proto_list_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz";
- sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
- };
- }
- {
- name = "proxy_addr___proxy_addr_2.0.5.tgz";
- path = fetchurl {
- name = "proxy_addr___proxy_addr_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz";
- sha1 = "34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34";
- };
- }
- {
- name = "prr___prr_1.0.1.tgz";
- path = fetchurl {
- name = "prr___prr_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz";
- sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
- };
- }
- {
- name = "pseudomap___pseudomap_1.0.2.tgz";
- path = fetchurl {
- name = "pseudomap___pseudomap_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz";
- sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
- };
- }
- {
- name = "psl___psl_1.8.0.tgz";
- path = fetchurl {
- name = "psl___psl_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz";
- sha1 = "9326f8bcfb013adcc005fdff056acce020e51c24";
- };
- }
- {
- name = "pstree.remy___pstree.remy_1.1.8.tgz";
- path = fetchurl {
- name = "pstree.remy___pstree.remy_1.1.8.tgz";
- url = "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz";
- sha1 = "c242224f4a67c21f686839bbdb4ac282b8373d3a";
- };
- }
- {
- name = "public_encrypt___public_encrypt_4.0.0.tgz";
- path = fetchurl {
- name = "public_encrypt___public_encrypt_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz";
- sha1 = "39f699f3a46560dd5ebacbca693caf7c65c18cc6";
- };
- }
- {
- name = "pump___pump_2.0.1.tgz";
- path = fetchurl {
- name = "pump___pump_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz";
- sha1 = "12399add6e4cf7526d973cbc8b5ce2e2908b3909";
- };
- }
- {
- name = "pump___pump_3.0.0.tgz";
- path = fetchurl {
- name = "pump___pump_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz";
- sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64";
- };
- }
- {
- name = "pumpify___pumpify_1.5.1.tgz";
- path = fetchurl {
- name = "pumpify___pumpify_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz";
- sha1 = "36513be246ab27570b1a374a5ce278bfd74370ce";
- };
- }
- {
- name = "punycode___punycode_1.3.2.tgz";
- path = fetchurl {
- name = "punycode___punycode_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz";
- sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
- };
- }
- {
- name = "punycode___punycode_2.1.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz";
- sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec";
- };
- }
- {
- name = "pupa___pupa_2.0.1.tgz";
- path = fetchurl {
- name = "pupa___pupa_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/pupa/-/pupa-2.0.1.tgz";
- sha1 = "dbdc9ff48ffbea4a26a069b6f9f7abb051008726";
- };
- }
- {
- name = "purgecss_from_html___purgecss_from_html_4.0.3.tgz";
- path = fetchurl {
- name = "purgecss_from_html___purgecss_from_html_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/purgecss-from-html/-/purgecss-from-html-4.0.3.tgz";
- sha1 = "28d86d3dc8292581c4ab529a77a57daf7c2dd940";
- };
- }
- {
- name = "purgecss___purgecss_4.0.3.tgz";
- path = fetchurl {
- name = "purgecss___purgecss_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/purgecss/-/purgecss-4.0.3.tgz";
- sha1 = "8147b429f9c09db719e05d64908ea8b672913742";
- };
- }
- {
- name = "qs___qs_6.7.0.tgz";
- path = fetchurl {
- name = "qs___qs_6.7.0.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz";
- sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc";
- };
- }
- {
- name = "qs___qs_6.5.2.tgz";
- path = fetchurl {
- name = "qs___qs_6.5.2.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz";
- sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36";
- };
- }
- {
- name = "querystring_es3___querystring_es3_0.2.1.tgz";
- path = fetchurl {
- name = "querystring_es3___querystring_es3_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz";
- sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
- };
- }
- {
- name = "querystring___querystring_0.2.0.tgz";
- path = fetchurl {
- name = "querystring___querystring_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz";
- sha1 = "b209849203bb25df820da756e747005878521620";
- };
- }
- {
- name = "querystringify___querystringify_2.2.0.tgz";
- path = fetchurl {
- name = "querystringify___querystringify_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz";
- sha1 = "3345941b4153cb9d082d8eee4cda2016a9aef7f6";
- };
- }
- {
- name = "quick_lru___quick_lru_4.0.1.tgz";
- path = fetchurl {
- name = "quick_lru___quick_lru_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz";
- sha1 = "5b8878f113a58217848c6482026c73e1ba57727f";
- };
- }
- {
- name = "randombytes___randombytes_2.1.0.tgz";
- path = fetchurl {
- name = "randombytes___randombytes_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz";
- sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a";
- };
- }
- {
- name = "randomfill___randomfill_1.0.4.tgz";
- path = fetchurl {
- name = "randomfill___randomfill_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz";
- sha1 = "c92196fc86ab42be983f1bf31778224931d61458";
- };
- }
- {
- name = "range_parser___range_parser_1.2.1.tgz";
- path = fetchurl {
- name = "range_parser___range_parser_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz";
- sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031";
- };
- }
- {
- name = "raphael___raphael_2.2.7.tgz";
- path = fetchurl {
- name = "raphael___raphael_2.2.7.tgz";
- url = "https://registry.yarnpkg.com/raphael/-/raphael-2.2.7.tgz";
- sha1 = "231b19141f8d086986d8faceb66f8b562ee2c810";
- };
- }
- {
- name = "raw_body___raw_body_2.4.0.tgz";
- path = fetchurl {
- name = "raw_body___raw_body_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz";
- sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332";
- };
- }
- {
- name = "raw_loader___raw_loader_4.0.2.tgz";
- path = fetchurl {
- name = "raw_loader___raw_loader_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz";
- sha1 = "1aac6b7d1ad1501e66efdac1522c73e59a584eb6";
- };
- }
- {
- name = "rc___rc_1.2.8.tgz";
- path = fetchurl {
- name = "rc___rc_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz";
- sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed";
- };
- }
- {
- name = "react_is___react_is_16.13.1.tgz";
- path = fetchurl {
- name = "react_is___react_is_16.13.1.tgz";
- url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz";
- sha1 = "789729a4dc36de2999dc156dd6c1d9c18cea56a4";
- };
- }
- {
- name = "read_pkg_up___read_pkg_up_2.0.0.tgz";
- path = fetchurl {
- name = "read_pkg_up___read_pkg_up_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz";
- sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be";
- };
- }
- {
- name = "read_pkg_up___read_pkg_up_7.0.1.tgz";
- path = fetchurl {
- name = "read_pkg_up___read_pkg_up_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz";
- sha1 = "f3a6135758459733ae2b95638056e1854e7ef507";
- };
- }
- {
- name = "read_pkg___read_pkg_2.0.0.tgz";
- path = fetchurl {
- name = "read_pkg___read_pkg_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz";
- sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8";
- };
- }
- {
- name = "read_pkg___read_pkg_5.2.0.tgz";
- path = fetchurl {
- name = "read_pkg___read_pkg_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz";
- sha1 = "7bf295438ca5a33e56cd30e053b34ee7250c93cc";
- };
- }
- {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz";
- sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57";
- };
- }
- {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz";
- sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198";
- };
- }
- {
- name = "readable_stream___readable_stream_2.0.6.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz";
- sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e";
- };
- }
- {
- name = "readdir_enhanced___readdir_enhanced_2.2.4.tgz";
- path = fetchurl {
- name = "readdir_enhanced___readdir_enhanced_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/readdir-enhanced/-/readdir-enhanced-2.2.4.tgz";
- sha1 = "773fb8a8de5f645fb13d9403746d490d4facb3e6";
- };
- }
- {
- name = "readdirp___readdirp_3.4.0.tgz";
- path = fetchurl {
- name = "readdirp___readdirp_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz";
- sha1 = "9fdccdf9e9155805449221ac645e8303ab5b9ada";
- };
- }
- {
- name = "recast___recast_0.20.5.tgz";
- path = fetchurl {
- name = "recast___recast_0.20.5.tgz";
- url = "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz";
- sha1 = "8e2c6c96827a1b339c634dd232957d230553ceae";
- };
- }
- {
- name = "redent___redent_3.0.0.tgz";
- path = fetchurl {
- name = "redent___redent_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz";
- sha1 = "e557b7998316bb53c9f1f56fa626352c6963059f";
- };
- }
- {
- name = "regenerate_unicode_properties___regenerate_unicode_properties_8.2.0.tgz";
- path = fetchurl {
- name = "regenerate_unicode_properties___regenerate_unicode_properties_8.2.0.tgz";
- url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz";
- sha1 = "e5de7111d655e7ba60c057dbe9ff37c87e65cdec";
- };
- }
- {
- name = "regenerate___regenerate_1.4.0.tgz";
- path = fetchurl {
- name = "regenerate___regenerate_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz";
- sha1 = "4a856ec4b56e4077c557589cae85e7a4c8869a11";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz";
- sha1 = "d878a1d094b4306d10b9096484b33ebd55e26697";
- };
- }
- {
- name = "regenerator_transform___regenerator_transform_0.14.4.tgz";
- path = fetchurl {
- name = "regenerator_transform___regenerator_transform_0.14.4.tgz";
- url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz";
- sha1 = "5266857896518d1616a78a0479337a30ea974cc7";
- };
- }
- {
- name = "regex_not___regex_not_1.0.2.tgz";
- path = fetchurl {
- name = "regex_not___regex_not_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz";
- sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c";
- };
- }
- {
- name = "regexpp___regexpp_3.1.0.tgz";
- path = fetchurl {
- name = "regexpp___regexpp_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz";
- sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2";
- };
- }
- {
- name = "regexpu_core___regexpu_core_4.7.0.tgz";
- path = fetchurl {
- name = "regexpu_core___regexpu_core_4.7.0.tgz";
- url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz";
- sha1 = "fcbf458c50431b0bb7b45d6967b8192d91f3d938";
- };
- }
- {
- name = "registry_auth_token___registry_auth_token_4.1.1.tgz";
- path = fetchurl {
- name = "registry_auth_token___registry_auth_token_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz";
- sha1 = "40a33be1e82539460f94328b0f7f0f84c16d9479";
- };
- }
- {
- name = "registry_url___registry_url_5.1.0.tgz";
- path = fetchurl {
- name = "registry_url___registry_url_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz";
- sha1 = "e98334b50d5434b81136b44ec638d9c2009c5009";
- };
- }
- {
- name = "regjsgen___regjsgen_0.5.2.tgz";
- path = fetchurl {
- name = "regjsgen___regjsgen_0.5.2.tgz";
- url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz";
- sha1 = "92ff295fb1deecbf6ecdab2543d207e91aa33733";
- };
- }
- {
- name = "regjsparser___regjsparser_0.6.4.tgz";
- path = fetchurl {
- name = "regjsparser___regjsparser_0.6.4.tgz";
- url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz";
- sha1 = "a769f8684308401a66e9b529d2436ff4d0666272";
- };
- }
- {
- name = "remark_parse___remark_parse_9.0.0.tgz";
- path = fetchurl {
- name = "remark_parse___remark_parse_9.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz";
- sha1 = "4d20a299665880e4f4af5d90b7c7b8a935853640";
- };
- }
- {
- name = "remark_stringify___remark_stringify_9.0.1.tgz";
- path = fetchurl {
- name = "remark_stringify___remark_stringify_9.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz";
- sha1 = "576d06e910548b0a7191a71f27b33f1218862894";
- };
- }
- {
- name = "remark___remark_13.0.0.tgz";
- path = fetchurl {
- name = "remark___remark_13.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz";
- sha1 = "d15d9bf71a402f40287ebe36067b66d54868e425";
- };
- }
- {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- path = fetchurl {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
- };
- }
- {
- name = "repeat_element___repeat_element_1.1.3.tgz";
- path = fetchurl {
- name = "repeat_element___repeat_element_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz";
- sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce";
- };
- }
- {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- path = fetchurl {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- }
- {
- name = "request_light___request_light_0.2.5.tgz";
- path = fetchurl {
- name = "request_light___request_light_0.2.5.tgz";
- url = "https://registry.yarnpkg.com/request-light/-/request-light-0.2.5.tgz";
- sha1 = "38a3da7b2e56f7af8cbba57e8a94930ee2380746";
- };
- }
- {
- name = "request_promise_core___request_promise_core_1.1.4.tgz";
- path = fetchurl {
- name = "request_promise_core___request_promise_core_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz";
- sha1 = "3eedd4223208d419867b78ce815167d10593a22f";
- };
- }
- {
- name = "request_promise_native___request_promise_native_1.0.9.tgz";
- path = fetchurl {
- name = "request_promise_native___request_promise_native_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz";
- sha1 = "e407120526a5efdc9a39b28a5679bf47b9d9dc28";
- };
- }
- {
- name = "request___request_2.88.2.tgz";
- path = fetchurl {
- name = "request___request_2.88.2.tgz";
- url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz";
- sha1 = "d73c918731cb5a87da047e207234146f664d12b3";
- };
- }
- {
- name = "require_directory___require_directory_2.1.1.tgz";
- path = fetchurl {
- name = "require_directory___require_directory_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- }
- {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- path = fetchurl {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz";
- sha1 = "89a7fdd938261267318eafe14f9c32e598c36909";
- };
- }
- {
- name = "require_main_filename___require_main_filename_2.0.0.tgz";
- path = fetchurl {
- name = "require_main_filename___require_main_filename_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz";
- sha1 = "d0b329ecc7cc0f61649f62215be69af54aa8989b";
- };
- }
- {
- name = "require_package_name___require_package_name_2.0.1.tgz";
- path = fetchurl {
- name = "require_package_name___require_package_name_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz";
- sha1 = "c11e97276b65b8e2923f75dabf5fb2ef0c3841b9";
- };
- }
- {
- name = "requires_port___requires_port_1.0.0.tgz";
- path = fetchurl {
- name = "requires_port___requires_port_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz";
- sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
- };
- }
- {
- name = "requizzle___requizzle_0.2.1.tgz";
- path = fetchurl {
- name = "requizzle___requizzle_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/requizzle/-/requizzle-0.2.1.tgz";
- sha1 = "6943c3530c4d9a7e46f1cddd51c158fc670cdbde";
- };
- }
- {
- name = "resolve_cwd___resolve_cwd_2.0.0.tgz";
- path = fetchurl {
- name = "resolve_cwd___resolve_cwd_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
- sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
- };
- }
- {
- name = "resolve_cwd___resolve_cwd_3.0.0.tgz";
- path = fetchurl {
- name = "resolve_cwd___resolve_cwd_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz";
- sha1 = "0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d";
- };
- }
- {
- name = "resolve_dir___resolve_dir_1.0.1.tgz";
- path = fetchurl {
- name = "resolve_dir___resolve_dir_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz";
- sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
- };
- }
- {
- name = "resolve_from___resolve_from_3.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz";
- sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
- };
- }
- {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz";
- sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6";
- };
- }
- {
- name = "resolve_from___resolve_from_5.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz";
- sha1 = "c35225843df8f776df21c57557bc087e9dfdfc69";
- };
- }
- {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- path = fetchurl {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
- };
- }
- {
- name = "resolve___resolve_1.20.0.tgz";
- path = fetchurl {
- name = "resolve___resolve_1.20.0.tgz";
- url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz";
- sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975";
- };
- }
- {
- name = "responselike___responselike_1.0.2.tgz";
- path = fetchurl {
- name = "responselike___responselike_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz";
- sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7";
- };
- }
- {
- name = "restore_cursor___restore_cursor_3.1.0.tgz";
- path = fetchurl {
- name = "restore_cursor___restore_cursor_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz";
- sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e";
- };
- }
- {
- name = "ret___ret_0.1.15.tgz";
- path = fetchurl {
- name = "ret___ret_0.1.15.tgz";
- url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz";
- sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc";
- };
- }
- {
- name = "retry___retry_0.12.0.tgz";
- path = fetchurl {
- name = "retry___retry_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz";
- sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b";
- };
- }
- {
- name = "reusify___reusify_1.0.4.tgz";
- path = fetchurl {
- name = "reusify___reusify_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz";
- sha1 = "90da382b1e126efc02146e90845a88db12925d76";
- };
- }
- {
- name = "rimraf___rimraf_2.6.3.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.6.3.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz";
- sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab";
- };
- }
- {
- name = "rimraf___rimraf_3.0.2.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz";
- sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
- };
- }
- {
- name = "ripemd160___ripemd160_2.0.1.tgz";
- path = fetchurl {
- name = "ripemd160___ripemd160_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz";
- sha1 = "0f4584295c53a3628af7e6d79aca21ce57d1c6e7";
- };
- }
- {
- name = "rope_sequence___rope_sequence_1.3.2.tgz";
- path = fetchurl {
- name = "rope_sequence___rope_sequence_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz";
- sha1 = "a19e02d72991ca71feb6b5f8a91154e48e3c098b";
- };
- }
- {
- name = "route_recognizer___route_recognizer_0.3.4.tgz";
- path = fetchurl {
- name = "route_recognizer___route_recognizer_0.3.4.tgz";
- url = "https://registry.yarnpkg.com/route-recognizer/-/route-recognizer-0.3.4.tgz";
- sha1 = "39ab1ffbce1c59e6d2bdca416f0932611e4f3ca3";
- };
- }
- {
- name = "rsvp___rsvp_4.8.4.tgz";
- path = fetchurl {
- name = "rsvp___rsvp_4.8.4.tgz";
- url = "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz";
- sha1 = "b50e6b34583f3dd89329a2f23a8a2be072845911";
- };
- }
- {
- name = "run_async___run_async_2.4.1.tgz";
- path = fetchurl {
- name = "run_async___run_async_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz";
- sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455";
- };
- }
- {
- name = "run_parallel___run_parallel_1.1.10.tgz";
- path = fetchurl {
- name = "run_parallel___run_parallel_1.1.10.tgz";
- url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz";
- sha1 = "60a51b2ae836636c81377df16cb107351bcd13ef";
- };
- }
- {
- name = "run_queue___run_queue_1.0.3.tgz";
- path = fetchurl {
- name = "run_queue___run_queue_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz";
- sha1 = "e848396f057d223f24386924618e25694161ec47";
- };
- }
- {
- name = "rw___rw_1.3.3.tgz";
- path = fetchurl {
- name = "rw___rw_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz";
- sha1 = "3f862dfa91ab766b14885ef4d01124bfda074fb4";
- };
- }
- {
- name = "rxjs___rxjs_6.6.7.tgz";
- path = fetchurl {
- name = "rxjs___rxjs_6.6.7.tgz";
- url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz";
- sha1 = "90ac018acabf491bf65044235d5863c4dab804c9";
- };
- }
- {
- name = "rxjs___rxjs_7.3.0.tgz";
- path = fetchurl {
- name = "rxjs___rxjs_7.3.0.tgz";
- url = "https://registry.yarnpkg.com/rxjs/-/rxjs-7.3.0.tgz";
- sha1 = "39fe4f3461dc1e50be1475b2b85a0a88c1e938c6";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d";
- };
- }
- {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- path = fetchurl {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz";
- sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
- };
- }
- {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- path = fetchurl {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a";
- };
- }
- {
- name = "sane___sane_4.1.0.tgz";
- path = fetchurl {
- name = "sane___sane_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz";
- sha1 = "ed881fd922733a6c461bc189dc2b6c006f3ffded";
- };
- }
- {
- name = "sass___sass_1.32.12.tgz";
- path = fetchurl {
- name = "sass___sass_1.32.12.tgz";
- url = "https://registry.yarnpkg.com/sass/-/sass-1.32.12.tgz";
- sha1 = "a2a47ad0f1c168222db5206444a30c12457abb9f";
- };
- }
- {
- name = "sax___sax_1.2.1.tgz";
- path = fetchurl {
- name = "sax___sax_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz";
- sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a";
- };
- }
- {
- name = "saxes___saxes_5.0.1.tgz";
- path = fetchurl {
- name = "saxes___saxes_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz";
- sha1 = "eebab953fa3b7608dbe94e5dadb15c888fa6696d";
- };
- }
- {
- name = "schema_utils___schema_utils_0.4.5.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_0.4.5.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz";
- sha1 = "21836f0608aac17b78f9e3e24daff14a5ca13a3e";
- };
- }
- {
- name = "schema_utils___schema_utils_1.0.0.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz";
- sha1 = "0b79a93204d7b600d4b2850d1f66c2a34951c770";
- };
- }
- {
- name = "schema_utils___schema_utils_2.7.1.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz";
- sha1 = "1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7";
- };
- }
- {
- name = "schema_utils___schema_utils_3.0.0.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz";
- sha1 = "67502f6aa2b66a2d4032b4279a2944978a0913ef";
- };
- }
- {
- name = "scrollparent___scrollparent_2.0.1.tgz";
- path = fetchurl {
- name = "scrollparent___scrollparent_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/scrollparent/-/scrollparent-2.0.1.tgz";
- sha1 = "715d5b9cc57760fb22bdccc3befb5bfe06b1a317";
- };
- }
- {
- name = "select_hose___select_hose_2.0.0.tgz";
- path = fetchurl {
- name = "select_hose___select_hose_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz";
- sha1 = "625d8658f865af43ec962bfc376a37359a4994ca";
- };
- }
- {
- name = "select2___select2_3.5.2_browserify.tgz";
- path = fetchurl {
- name = "select2___select2_3.5.2_browserify.tgz";
- url = "https://registry.yarnpkg.com/select2/-/select2-3.5.2-browserify.tgz";
- sha1 = "dc4dafda38d67a734e8a97a46f0d3529ae05391d";
- };
- }
- {
- name = "select___select_1.1.2.tgz";
- path = fetchurl {
- name = "select___select_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz";
- sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
- };
- }
- {
- name = "selfsigned___selfsigned_1.10.8.tgz";
- path = fetchurl {
- name = "selfsigned___selfsigned_1.10.8.tgz";
- url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz";
- sha1 = "0d17208b7d12c33f8eac85c41835f27fc3d81a30";
- };
- }
- {
- name = "semver_diff___semver_diff_3.1.1.tgz";
- path = fetchurl {
- name = "semver_diff___semver_diff_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz";
- sha1 = "05f77ce59f325e00e2706afd67bb506ddb1ca32b";
- };
- }
- {
- name = "semver___semver_5.7.1.tgz";
- path = fetchurl {
- name = "semver___semver_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz";
- sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
- };
- }
- {
- name = "semver___semver_7.0.0.tgz";
- path = fetchurl {
- name = "semver___semver_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz";
- sha1 = "5f3ca35761e47e05b206c6daff2cf814f0316b8e";
- };
- }
- {
- name = "semver___semver_6.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_6.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz";
- sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d";
- };
- }
- {
- name = "semver___semver_7.3.5.tgz";
- path = fetchurl {
- name = "semver___semver_7.3.5.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
- sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
- };
- }
- {
- name = "send___send_0.17.1.tgz";
- path = fetchurl {
- name = "send___send_0.17.1.tgz";
- url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz";
- sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_2.1.2.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz";
- sha1 = "ecec53b0e0317bdc95ef76ab7074b7384785fa61";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_4.0.0.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz";
- sha1 = "b525e1238489a5ecfc42afacc3fe99e666f4b1aa";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz";
- sha1 = "7886ec848049a462467a97d3d918ebb2aaf934f4";
- };
- }
- {
- name = "serve_index___serve_index_1.9.1.tgz";
- path = fetchurl {
- name = "serve_index___serve_index_1.9.1.tgz";
- url = "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz";
- sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239";
- };
- }
- {
- name = "serve_static___serve_static_1.14.1.tgz";
- path = fetchurl {
- name = "serve_static___serve_static_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz";
- sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9";
- };
- }
- {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- path = fetchurl {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- }
- {
- name = "set_value___set_value_2.0.1.tgz";
- path = fetchurl {
- name = "set_value___set_value_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz";
- sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b";
- };
- }
- {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- path = fetchurl {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz";
- sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
- };
- }
- {
- name = "setprototypeof___setprototypeof_1.0.3.tgz";
- path = fetchurl {
- name = "setprototypeof___setprototypeof_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz";
- sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
- };
- }
- {
- name = "setprototypeof___setprototypeof_1.1.1.tgz";
- path = fetchurl {
- name = "setprototypeof___setprototypeof_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz";
- sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683";
- };
- }
- {
- name = "sha.js___sha.js_2.4.10.tgz";
- path = fetchurl {
- name = "sha.js___sha.js_2.4.10.tgz";
- url = "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz";
- sha1 = "b1fde5cd7d11a5626638a07c604ab909cfa31f9b";
- };
- }
- {
- name = "shallow_clone___shallow_clone_3.0.1.tgz";
- path = fetchurl {
- name = "shallow_clone___shallow_clone_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz";
- sha1 = "8f2981ad92531f55035b01fb230769a40e02efa3";
- };
- }
- {
- name = "shebang_command___shebang_command_1.2.0.tgz";
- path = fetchurl {
- name = "shebang_command___shebang_command_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz";
- sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
- };
- }
- {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- path = fetchurl {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz";
- sha1 = "ccd0af4f8835fbdc265b82461aaf0c36663f34ea";
- };
- }
- {
- name = "shebang_regex___shebang_regex_1.0.0.tgz";
- path = fetchurl {
- name = "shebang_regex___shebang_regex_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz";
- sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
- };
- }
- {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- path = fetchurl {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz";
- sha1 = "ae16f1644d873ecad843b0307b143362d4c42172";
- };
- }
- {
- name = "shellwords___shellwords_0.1.1.tgz";
- path = fetchurl {
- name = "shellwords___shellwords_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz";
- sha1 = "d6b9181c1a48d397324c84871efbcfc73fc0654b";
- };
- }
- {
- name = "shortcss___shortcss_0.1.3.tgz";
- path = fetchurl {
- name = "shortcss___shortcss_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/shortcss/-/shortcss-0.1.3.tgz";
- sha1 = "ee2a7904d80b7f5502c98408f4a2f313faadfb48";
- };
- }
- {
- name = "sigmund___sigmund_1.0.1.tgz";
- path = fetchurl {
- name = "sigmund___sigmund_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz";
- sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
- };
- }
- {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- path = fetchurl {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz";
- sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c";
- };
- }
- {
- name = "sirv___sirv_1.0.11.tgz";
- path = fetchurl {
- name = "sirv___sirv_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/sirv/-/sirv-1.0.11.tgz";
- sha1 = "81c19a29202048507d6ec0d8ba8910fda52eb5a4";
- };
- }
- {
- name = "sisteransi___sisteransi_1.0.5.tgz";
- path = fetchurl {
- name = "sisteransi___sisteransi_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz";
- sha1 = "134d681297756437cc05ca01370d3a7a571075ed";
- };
- }
- {
- name = "slash___slash_3.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz";
- sha1 = "6539be870c165adbd5240220dbe361f1bc4d4634";
- };
- }
- {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz";
- sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b";
- };
- }
- {
- name = "smooshpack___smooshpack_0.0.62.tgz";
- path = fetchurl {
- name = "smooshpack___smooshpack_0.0.62.tgz";
- url = "https://registry.yarnpkg.com/smooshpack/-/smooshpack-0.0.62.tgz";
- sha1 = "cb31b9f808f73de3146b050f84d044eb353b5503";
- };
- }
- {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- path = fetchurl {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b";
- };
- }
- {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- path = fetchurl {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2";
- };
- }
- {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- path = fetchurl {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz";
- sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d";
- };
- }
- {
- name = "sockjs_client___sockjs_client_1.5.0.tgz";
- path = fetchurl {
- name = "sockjs_client___sockjs_client_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.0.tgz";
- sha1 = "2f8ff5d4b659e0d092f7aba0b7c386bd2aa20add";
- };
- }
- {
- name = "sockjs___sockjs_0.3.21.tgz";
- path = fetchurl {
- name = "sockjs___sockjs_0.3.21.tgz";
- url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz";
- sha1 = "b34ffb98e796930b60a0cfa11904d6a339a7d417";
- };
- }
- {
- name = "sortablejs___sortablejs_1.10.2.tgz";
- path = fetchurl {
- name = "sortablejs___sortablejs_1.10.2.tgz";
- url = "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.10.2.tgz";
- sha1 = "6e40364d913f98b85a14f6678f92b5c1221f5290";
- };
- }
- {
- name = "source_list_map___source_list_map_2.0.0.tgz";
- path = fetchurl {
- name = "source_list_map___source_list_map_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz";
- sha1 = "aaa47403f7b245a92fbc97ea08f250d6087ed085";
- };
- }
- {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- path = fetchurl {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz";
- sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a";
- };
- }
- {
- name = "source_map_support___source_map_support_0.5.19.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.5.19.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz";
- sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61";
- };
- }
- {
- name = "source_map_url___source_map_url_0.4.0.tgz";
- path = fetchurl {
- name = "source_map_url___source_map_url_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz";
- sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
- };
- }
- {
- name = "source_map___source_map_0.5.6.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.5.6.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz";
- sha1 = "75ce38f52bf0733c5a7f0c118d81334a2bb5f412";
- };
- }
- {
- name = "source_map___source_map_0.6.1.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz";
- sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263";
- };
- }
- {
- name = "source_map___source_map_0.7.3.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.7.3.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz";
- sha1 = "5302f8169031735226544092e64981f751750383";
- };
- }
- {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- path = fetchurl {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz";
- sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9";
- };
- }
- {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- path = fetchurl {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz";
- sha1 = "3f28ce1a77a00372683eade4a433183527a2163d";
- };
- }
- {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- path = fetchurl {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz";
- sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679";
- };
- }
- {
- name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz";
- path = fetchurl {
- name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz";
- sha1 = "c80757383c28abf7296744998cbc106ae8b854ce";
- };
- }
- {
- name = "spdy_transport___spdy_transport_3.0.0.tgz";
- path = fetchurl {
- name = "spdy_transport___spdy_transport_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz";
- sha1 = "00d4863a6400ad75df93361a1608605e5dcdcf31";
- };
- }
- {
- name = "spdy___spdy_4.0.2.tgz";
- path = fetchurl {
- name = "spdy___spdy_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz";
- sha1 = "b74f466203a3eda452c02492b91fb9e84a27677b";
- };
- }
- {
- name = "specificity___specificity_0.4.1.tgz";
- path = fetchurl {
- name = "specificity___specificity_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/specificity/-/specificity-0.4.1.tgz";
- sha1 = "aab5e645012db08ba182e151165738d00887b019";
- };
- }
- {
- name = "split_string___split_string_3.1.0.tgz";
- path = fetchurl {
- name = "split_string___split_string_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz";
- sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
- };
- }
- {
- name = "sql.js___sql.js_0.4.0.tgz";
- path = fetchurl {
- name = "sql.js___sql.js_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/sql.js/-/sql.js-0.4.0.tgz";
- sha1 = "23be9635520eb0ff43a741e7e830397266e88445";
- };
- }
- {
- name = "sshpk___sshpk_1.16.1.tgz";
- path = fetchurl {
- name = "sshpk___sshpk_1.16.1.tgz";
- url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz";
- sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877";
- };
- }
- {
- name = "ssri___ssri_6.0.1.tgz";
- path = fetchurl {
- name = "ssri___ssri_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz";
- sha1 = "2a3c41b28dd45b62b63676ecb74001265ae9edd8";
- };
- }
- {
- name = "ssri___ssri_8.0.0.tgz";
- path = fetchurl {
- name = "ssri___ssri_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz";
- sha1 = "79ca74e21f8ceaeddfcb4b90143c458b8d988808";
- };
- }
- {
- name = "stack_utils___stack_utils_2.0.2.tgz";
- path = fetchurl {
- name = "stack_utils___stack_utils_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz";
- sha1 = "5cf48b4557becb4638d0bc4f21d23f5d19586593";
- };
- }
- {
- name = "static_extend___static_extend_0.1.2.tgz";
- path = fetchurl {
- name = "static_extend___static_extend_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
- };
- }
- {
- name = "statuses___statuses_1.5.0.tgz";
- path = fetchurl {
- name = "statuses___statuses_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz";
- sha1 = "161c7dac177659fd9811f43771fa99381478628c";
- };
- }
- {
- name = "stealthy_require___stealthy_require_1.1.1.tgz";
- path = fetchurl {
- name = "stealthy_require___stealthy_require_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz";
- sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b";
- };
- }
- {
- name = "stream_browserify___stream_browserify_2.0.1.tgz";
- path = fetchurl {
- name = "stream_browserify___stream_browserify_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz";
- sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db";
- };
- }
- {
- name = "stream_each___stream_each_1.2.2.tgz";
- path = fetchurl {
- name = "stream_each___stream_each_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.2.tgz";
- sha1 = "8e8c463f91da8991778765873fe4d960d8f616bd";
- };
- }
- {
- name = "stream_http___stream_http_2.8.2.tgz";
- path = fetchurl {
- name = "stream_http___stream_http_2.8.2.tgz";
- url = "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.2.tgz";
- sha1 = "4126e8c6b107004465918aa2fc35549e77402c87";
- };
- }
- {
- name = "stream_shift___stream_shift_1.0.0.tgz";
- path = fetchurl {
- name = "stream_shift___stream_shift_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz";
- sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
- };
- }
- {
- name = "string_hash___string_hash_1.1.3.tgz";
- path = fetchurl {
- name = "string_hash___string_hash_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz";
- sha1 = "e8aafc0ac1855b4666929ed7dd1275df5d6c811b";
- };
- }
- {
- name = "string_length___string_length_4.0.1.tgz";
- path = fetchurl {
- name = "string_length___string_length_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz";
- sha1 = "4a973bf31ef77c4edbceadd6af2611996985f8a1";
- };
- }
- {
- name = "string_width___string_width_2.1.1.tgz";
- path = fetchurl {
- name = "string_width___string_width_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz";
- sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e";
- };
- }
- {
- name = "string_width___string_width_3.1.0.tgz";
- path = fetchurl {
- name = "string_width___string_width_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz";
- sha1 = "22767be21b62af1081574306f69ac51b62203961";
- };
- }
- {
- name = "string_width___string_width_4.2.0.tgz";
- path = fetchurl {
- name = "string_width___string_width_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz";
- sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5";
- };
- }
- {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz";
- path = fetchurl {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz";
- sha1 = "a22bd53cca5c7cf44d7c9d5c732118873d6cd18b";
- };
- }
- {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz";
- path = fetchurl {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz";
- sha1 = "9b4cb590e123bb36564401d59824298de50fd5aa";
- };
- }
- {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz";
- sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8";
- };
- }
- {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
- };
- }
- {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- }
- {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- }
- {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz";
- sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae";
- };
- }
- {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532";
- };
- }
- {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- path = fetchurl {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz";
- sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
- };
- }
- {
- name = "strip_bom___strip_bom_4.0.0.tgz";
- path = fetchurl {
- name = "strip_bom___strip_bom_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz";
- sha1 = "9c3505c1db45bcedca3d9cf7a16f5c5aa3901878";
- };
- }
- {
- name = "strip_eof___strip_eof_1.0.0.tgz";
- path = fetchurl {
- name = "strip_eof___strip_eof_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz";
- sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
- };
- }
- {
- name = "strip_final_newline___strip_final_newline_2.0.0.tgz";
- path = fetchurl {
- name = "strip_final_newline___strip_final_newline_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz";
- sha1 = "89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad";
- };
- }
- {
- name = "strip_indent___strip_indent_3.0.0.tgz";
- path = fetchurl {
- name = "strip_indent___strip_indent_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz";
- sha1 = "c32e1cee940b6b3432c771bc2c54bcce73cd3001";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz";
- sha1 = "31f1281b3832630434831c310c01cccda8cbe006";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
- };
- }
- {
- name = "style_loader___style_loader_2.0.0.tgz";
- path = fetchurl {
- name = "style_loader___style_loader_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/style-loader/-/style-loader-2.0.0.tgz";
- sha1 = "9669602fd4690740eaaec137799a03addbbc393c";
- };
- }
- {
- name = "style_search___style_search_0.1.0.tgz";
- path = fetchurl {
- name = "style_search___style_search_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz";
- sha1 = "7958c793e47e32e07d2b5cafe5c0bf8e12e77902";
- };
- }
- {
- name = "stylelint_declaration_strict_value___stylelint_declaration_strict_value_1.7.7.tgz";
- path = fetchurl {
- name = "stylelint_declaration_strict_value___stylelint_declaration_strict_value_1.7.7.tgz";
- url = "https://registry.yarnpkg.com/stylelint-declaration-strict-value/-/stylelint-declaration-strict-value-1.7.7.tgz";
- sha1 = "d2f0aabc7f3e701a8988207f27d9696bd1d1ed0d";
- };
- }
- {
- name = "stylelint_scss___stylelint_scss_3.18.0.tgz";
- path = fetchurl {
- name = "stylelint_scss___stylelint_scss_3.18.0.tgz";
- url = "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-3.18.0.tgz";
- sha1 = "8f06371c223909bf3f62e839548af1badeed31e9";
- };
- }
- {
- name = "stylelint___stylelint_13.9.0.tgz";
- path = fetchurl {
- name = "stylelint___stylelint_13.9.0.tgz";
- url = "https://registry.yarnpkg.com/stylelint/-/stylelint-13.9.0.tgz";
- sha1 = "93921ee6e11d4556b9f31131f485dc813b68e32a";
- };
- }
- {
- name = "stylis___stylis_4.0.10.tgz";
- path = fetchurl {
- name = "stylis___stylis_4.0.10.tgz";
- url = "https://registry.yarnpkg.com/stylis/-/stylis-4.0.10.tgz";
- sha1 = "446512d1097197ab3f02fb3c258358c3f7a14240";
- };
- }
- {
- name = "sugarss___sugarss_2.0.0.tgz";
- path = fetchurl {
- name = "sugarss___sugarss_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/sugarss/-/sugarss-2.0.0.tgz";
- sha1 = "ddd76e0124b297d40bf3cca31c8b22ecb43bc61d";
- };
- }
- {
- name = "supports_color___supports_color_5.5.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_5.5.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz";
- sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f";
- };
- }
- {
- name = "supports_color___supports_color_6.1.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz";
- sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3";
- };
- }
- {
- name = "supports_color___supports_color_7.2.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz";
- sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da";
- };
- }
- {
- name = "supports_hyperlinks___supports_hyperlinks_2.1.0.tgz";
- path = fetchurl {
- name = "supports_hyperlinks___supports_hyperlinks_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz";
- sha1 = "f663df252af5f37c5d49bbd7eeefa9e0b9e59e47";
- };
- }
- {
- name = "svg_tags___svg_tags_1.0.0.tgz";
- path = fetchurl {
- name = "svg_tags___svg_tags_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz";
- sha1 = "58f71cee3bd519b59d4b2a843b6c7de64ac04764";
- };
- }
- {
- name = "swagger_ui_dist___swagger_ui_dist_3.44.1.tgz";
- path = fetchurl {
- name = "swagger_ui_dist___swagger_ui_dist_3.44.1.tgz";
- url = "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.44.1.tgz";
- sha1 = "757385a79698b8ef7045287be585671db4e4a252";
- };
- }
- {
- name = "symbol_observable___symbol_observable_1.2.0.tgz";
- path = fetchurl {
- name = "symbol_observable___symbol_observable_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz";
- sha1 = "c22688aed4eab3cdc2dfeacbb561660560a00804";
- };
- }
- {
- name = "symbol_tree___symbol_tree_3.2.4.tgz";
- path = fetchurl {
- name = "symbol_tree___symbol_tree_3.2.4.tgz";
- url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz";
- sha1 = "430637d248ba77e078883951fb9aa0eed7c63fa2";
- };
- }
- {
- name = "table___table_6.7.1.tgz";
- path = fetchurl {
- name = "table___table_6.7.1.tgz";
- url = "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz";
- sha1 = "ee05592b7143831a8c94f3cee6aae4c1ccef33e2";
- };
- }
- {
- name = "taffydb___taffydb_2.6.2.tgz";
- path = fetchurl {
- name = "taffydb___taffydb_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/taffydb/-/taffydb-2.6.2.tgz";
- sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
- };
- }
- {
- name = "tapable___tapable_0.1.10.tgz";
- path = fetchurl {
- name = "tapable___tapable_0.1.10.tgz";
- url = "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz";
- sha1 = "29c35707c2b70e50d07482b5d202e8ed446dafd4";
- };
- }
- {
- name = "tapable___tapable_1.1.3.tgz";
- path = fetchurl {
- name = "tapable___tapable_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz";
- sha1 = "a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2";
- };
- }
- {
- name = "tar___tar_6.0.5.tgz";
- path = fetchurl {
- name = "tar___tar_6.0.5.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz";
- sha1 = "bde815086e10b39f1dcd298e89d596e1535e200f";
- };
- }
- {
- name = "temp___temp_0.8.4.tgz";
- path = fetchurl {
- name = "temp___temp_0.8.4.tgz";
- url = "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz";
- sha1 = "8c97a33a4770072e0a05f919396c7665a7dd59f2";
- };
- }
- {
- name = "term_size___term_size_2.2.0.tgz";
- path = fetchurl {
- name = "term_size___term_size_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz";
- sha1 = "1f16adedfe9bdc18800e1776821734086fcc6753";
- };
- }
- {
- name = "terminal_link___terminal_link_2.1.1.tgz";
- path = fetchurl {
- name = "terminal_link___terminal_link_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz";
- sha1 = "14a64a27ab3c0df933ea546fba55f2d078edc994";
- };
- }
- {
- name = "terser_webpack_plugin___terser_webpack_plugin_1.4.3.tgz";
- path = fetchurl {
- name = "terser_webpack_plugin___terser_webpack_plugin_1.4.3.tgz";
- url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz";
- sha1 = "5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c";
- };
- }
- {
- name = "terser___terser_4.3.1.tgz";
- path = fetchurl {
- name = "terser___terser_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/terser/-/terser-4.3.1.tgz";
- sha1 = "09820bcb3398299c4b48d9a86aefc65127d0ed65";
- };
- }
- {
- name = "test_exclude___test_exclude_6.0.0.tgz";
- path = fetchurl {
- name = "test_exclude___test_exclude_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz";
- sha1 = "04a8698661d805ea6fa293b6cb9e63ac044ef15e";
- };
- }
- {
- name = "text_table___text_table_0.2.0.tgz";
- path = fetchurl {
- name = "text_table___text_table_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz";
- sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
- };
- }
- {
- name = "textextensions___textextensions_2.2.0.tgz";
- path = fetchurl {
- name = "textextensions___textextensions_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/textextensions/-/textextensions-2.2.0.tgz";
- sha1 = "38ac676151285b658654581987a0ce1a4490d286";
- };
- }
- {
- name = "three_orbit_controls___three_orbit_controls_82.1.0.tgz";
- path = fetchurl {
- name = "three_orbit_controls___three_orbit_controls_82.1.0.tgz";
- url = "https://registry.yarnpkg.com/three-orbit-controls/-/three-orbit-controls-82.1.0.tgz";
- sha1 = "11a7f33d0a20ecec98f098b37780f6537374fab4";
- };
- }
- {
- name = "three_stl_loader___three_stl_loader_1.0.4.tgz";
- path = fetchurl {
- name = "three_stl_loader___three_stl_loader_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/three-stl-loader/-/three-stl-loader-1.0.4.tgz";
- sha1 = "6b3319a31e3b910aab1883d19b00c81a663c3e03";
- };
- }
- {
- name = "three___three_0.84.0.tgz";
- path = fetchurl {
- name = "three___three_0.84.0.tgz";
- url = "https://registry.yarnpkg.com/three/-/three-0.84.0.tgz";
- sha1 = "95be85a55a0fa002aa625ed559130957dcffd918";
- };
- }
- {
- name = "throat___throat_5.0.0.tgz";
- path = fetchurl {
- name = "throat___throat_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz";
- sha1 = "c5199235803aad18754a667d659b5e72ce16764b";
- };
- }
- {
- name = "throttle_debounce___throttle_debounce_2.1.0.tgz";
- path = fetchurl {
- name = "throttle_debounce___throttle_debounce_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz";
- sha1 = "257e648f0a56bd9e54fe0f132c4ab8611df4e1d5";
- };
- }
- {
- name = "through2___through2_2.0.5.tgz";
- path = fetchurl {
- name = "through2___through2_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz";
- sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd";
- };
- }
- {
- name = "through___through_2.3.8.tgz";
- path = fetchurl {
- name = "through___through_2.3.8.tgz";
- url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz";
- sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
- };
- }
- {
- name = "thunky___thunky_0.1.0.tgz";
- path = fetchurl {
- name = "thunky___thunky_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz";
- sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
- };
- }
- {
- name = "timeago.js___timeago.js_4.0.2.tgz";
- path = fetchurl {
- name = "timeago.js___timeago.js_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/timeago.js/-/timeago.js-4.0.2.tgz";
- sha1 = "724e8c8833e3490676c7bb0a75f5daf20e558028";
- };
- }
- {
- name = "timers_browserify___timers_browserify_2.0.10.tgz";
- path = fetchurl {
- name = "timers_browserify___timers_browserify_2.0.10.tgz";
- url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz";
- sha1 = "1d28e3d2aadf1d5a5996c4e9f95601cd053480ae";
- };
- }
- {
- name = "timezone_mock___timezone_mock_1.0.8.tgz";
- path = fetchurl {
- name = "timezone_mock___timezone_mock_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/timezone-mock/-/timezone-mock-1.0.8.tgz";
- sha1 = "1b9f7af13f2bf84b7aa3d3d6e24aa17255b6037d";
- };
- }
- {
- name = "tiny_emitter___tiny_emitter_2.0.2.tgz";
- path = fetchurl {
- name = "tiny_emitter___tiny_emitter_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.0.2.tgz";
- sha1 = "82d27468aca5ade8e5fd1e6d22b57dd43ebdfb7c";
- };
- }
- {
- name = "tippy.js___tippy.js_6.3.1.tgz";
- path = fetchurl {
- name = "tippy.js___tippy.js_6.3.1.tgz";
- url = "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.1.tgz";
- sha1 = "3788a007be7015eee0fd589a66b98fb3f8f10181";
- };
- }
- {
- name = "tiptap_commands___tiptap_commands_1.17.1.tgz";
- path = fetchurl {
- name = "tiptap_commands___tiptap_commands_1.17.1.tgz";
- url = "https://registry.yarnpkg.com/tiptap-commands/-/tiptap-commands-1.17.1.tgz";
- sha1 = "a8974a26d87db57b2fd4fc56a552520c69e43a4a";
- };
- }
- {
- name = "tiptap_extensions___tiptap_extensions_1.35.2.tgz";
- path = fetchurl {
- name = "tiptap_extensions___tiptap_extensions_1.35.2.tgz";
- url = "https://registry.yarnpkg.com/tiptap-extensions/-/tiptap-extensions-1.35.2.tgz";
- sha1 = "83dd6ee703ae8c83b58c7608f97253fcc4f1a94c";
- };
- }
- {
- name = "tiptap_utils___tiptap_utils_1.13.1.tgz";
- path = fetchurl {
- name = "tiptap_utils___tiptap_utils_1.13.1.tgz";
- url = "https://registry.yarnpkg.com/tiptap-utils/-/tiptap-utils-1.13.1.tgz";
- sha1 = "f2150ded432465d66aa03a5ab333803415cddd20";
- };
- }
- {
- name = "tiptap___tiptap_1.32.2.tgz";
- path = fetchurl {
- name = "tiptap___tiptap_1.32.2.tgz";
- url = "https://registry.yarnpkg.com/tiptap/-/tiptap-1.32.2.tgz";
- sha1 = "cd6259e853652bfc6860758ff44ebb695d5edd1c";
- };
- }
- {
- name = "tmp___tmp_0.0.33.tgz";
- path = fetchurl {
- name = "tmp___tmp_0.0.33.tgz";
- url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz";
- sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9";
- };
- }
- {
- name = "tmpl___tmpl_1.0.4.tgz";
- path = fetchurl {
- name = "tmpl___tmpl_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz";
- sha1 = "23640dd7b42d00433911140820e5cf440e521dd1";
- };
- }
- {
- name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz";
- path = fetchurl {
- name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
- sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
- };
- }
- {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- path = fetchurl {
- name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz";
- sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
- };
- }
- {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- path = fetchurl {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
- };
- }
- {
- name = "to_readable_stream___to_readable_stream_1.0.0.tgz";
- path = fetchurl {
- name = "to_readable_stream___to_readable_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz";
- sha1 = "ce0aa0c2f3df6adf852efb404a783e77c0475771";
- };
- }
- {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
- };
- }
- {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz";
- sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4";
- };
- }
- {
- name = "to_regex___to_regex_3.0.2.tgz";
- path = fetchurl {
- name = "to_regex___to_regex_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz";
- sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce";
- };
- }
- {
- name = "toggle_selection___toggle_selection_1.0.6.tgz";
- path = fetchurl {
- name = "toggle_selection___toggle_selection_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz";
- sha1 = "6e45b1263f2017fa0acc7d89d78b15b8bf77da32";
- };
- }
- {
- name = "toidentifier___toidentifier_1.0.0.tgz";
- path = fetchurl {
- name = "toidentifier___toidentifier_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz";
- sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553";
- };
- }
- {
- name = "totalist___totalist_1.1.0.tgz";
- path = fetchurl {
- name = "totalist___totalist_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz";
- sha1 = "a4d65a3e546517701e3e5c37a47a70ac97fe56df";
- };
- }
- {
- name = "touch___touch_3.1.0.tgz";
- path = fetchurl {
- name = "touch___touch_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz";
- sha1 = "fe365f5f75ec9ed4e56825e0bb76d24ab74af83b";
- };
- }
- {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz";
- sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2";
- };
- }
- {
- name = "tough_cookie___tough_cookie_3.0.1.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz";
- sha1 = "9df4f57e739c26930a018184887f4adb7dca73b2";
- };
- }
- {
- name = "tr46___tr46_2.0.2.tgz";
- path = fetchurl {
- name = "tr46___tr46_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz";
- sha1 = "03273586def1595ae08fedb38d7733cee91d2479";
- };
- }
- {
- name = "trim_newlines___trim_newlines_3.0.0.tgz";
- path = fetchurl {
- name = "trim_newlines___trim_newlines_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz";
- sha1 = "79726304a6a898aa8373427298d54c2ee8b1cb30";
- };
- }
- {
- name = "trough___trough_1.0.5.tgz";
- path = fetchurl {
- name = "trough___trough_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz";
- sha1 = "b8b639cefad7d0bb2abd37d433ff8293efa5f406";
- };
- }
- {
- name = "ts_invariant___ts_invariant_0.4.4.tgz";
- path = fetchurl {
- name = "ts_invariant___ts_invariant_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz";
- sha1 = "97a523518688f93aafad01b0e80eb803eb2abd86";
- };
- }
- {
- name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz";
- path = fetchurl {
- name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz";
- url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz";
- sha1 = "098547a6c4448807e8fcb8eae081064ee9a3c90b";
- };
- }
- {
- name = "tslib___tslib_1.13.0.tgz";
- path = fetchurl {
- name = "tslib___tslib_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz";
- sha1 = "c881e13cc7015894ed914862d276436fa9a47043";
- };
- }
- {
- name = "tslib___tslib_2.3.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz";
- sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01";
- };
- }
- {
- name = "tslib___tslib_2.1.0.tgz";
- path = fetchurl {
- name = "tslib___tslib_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz";
- sha1 = "da60860f1c2ecaa5703ab7d39bc05b6bf988b97a";
- };
- }
- {
- name = "tsutils___tsutils_3.17.1.tgz";
- path = fetchurl {
- name = "tsutils___tsutils_3.17.1.tgz";
- url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz";
- sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759";
- };
- }
- {
- name = "tty_browserify___tty_browserify_0.0.0.tgz";
- path = fetchurl {
- name = "tty_browserify___tty_browserify_0.0.0.tgz";
- url = "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz";
- sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
- };
- }
- {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- path = fetchurl {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- }
- {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- path = fetchurl {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- }
- {
- name = "type_check___type_check_0.4.0.tgz";
- path = fetchurl {
- name = "type_check___type_check_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz";
- sha1 = "07b8203bfa7056c0657050e3ccd2c37730bab8f1";
- };
- }
- {
- name = "type_check___type_check_0.3.2.tgz";
- path = fetchurl {
- name = "type_check___type_check_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz";
- sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
- };
- }
- {
- name = "type_detect___type_detect_4.0.8.tgz";
- path = fetchurl {
- name = "type_detect___type_detect_4.0.8.tgz";
- url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz";
- sha1 = "7646fb5f18871cfbb7749e69bd39a6388eb7450c";
- };
- }
- {
- name = "type_fest___type_fest_0.18.1.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.18.1.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz";
- sha1 = "db4bc151a4a2cf4eebf9add5db75508db6cc841f";
- };
- }
- {
- name = "type_fest___type_fest_0.20.2.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.20.2.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz";
- sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4";
- };
- }
- {
- name = "type_fest___type_fest_0.6.0.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz";
- sha1 = "8d2a2370d3df886eb5c90ada1c5bf6188acf838b";
- };
- }
- {
- name = "type_fest___type_fest_0.8.1.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.8.1.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz";
- sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d";
- };
- }
- {
- name = "type_is___type_is_1.6.18.tgz";
- path = fetchurl {
- name = "type_is___type_is_1.6.18.tgz";
- url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz";
- sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131";
- };
- }
- {
- name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz";
- path = fetchurl {
- name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz";
- url = "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
- sha1 = "a97ee7a9ff42691b9f783ff1bc5112fe3fca9080";
- };
- }
- {
- name = "typedarray___typedarray_0.0.6.tgz";
- path = fetchurl {
- name = "typedarray___typedarray_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
- };
- }
- {
- name = "typescript___typescript_4.1.5.tgz";
- path = fetchurl {
- name = "typescript___typescript_4.1.5.tgz";
- url = "https://registry.yarnpkg.com/typescript/-/typescript-4.1.5.tgz";
- sha1 = "123a3b214aaff3be32926f0d8f1f6e704eb89a72";
- };
- }
- {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- path = fetchurl {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz";
- sha1 = "9c411a802a409a91fc6cf74081baba34b24499ac";
- };
- }
- {
- name = "undefsafe___undefsafe_2.0.2.tgz";
- path = fetchurl {
- name = "undefsafe___undefsafe_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz";
- sha1 = "225f6b9e0337663e0d8e7cfd686fc2836ccace76";
- };
- }
- {
- name = "underscore_contrib___underscore_contrib_0.3.0.tgz";
- path = fetchurl {
- name = "underscore_contrib___underscore_contrib_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/underscore-contrib/-/underscore-contrib-0.3.0.tgz";
- sha1 = "665b66c24783f8fa2b18c9f8cbb0e2c7d48c26c7";
- };
- }
- {
- name = "underscore___underscore_1.6.0.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz";
- sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
- };
- }
- {
- name = "underscore___underscore_1.8.3.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.8.3.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz";
- sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
- };
- }
- {
- name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz";
- path = fetchurl {
- name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz";
- sha1 = "2619800c4c825800efdd8343af7dd9933cbe2818";
- };
- }
- {
- name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz";
- path = fetchurl {
- name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz";
- sha1 = "8ed2a32569961bce9227d09cd3ffbb8fed5f020c";
- };
- }
- {
- name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.2.0.tgz";
- path = fetchurl {
- name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz";
- sha1 = "0d91f600eeeb3096aa962b1d6fc88876e64ea531";
- };
- }
- {
- name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.4.tgz";
- path = fetchurl {
- name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz";
- sha1 = "5a533f31b4317ea76f17d807fa0d116546111dd0";
- };
- }
- {
- name = "unified___unified_9.2.0.tgz";
- path = fetchurl {
- name = "unified___unified_9.2.0.tgz";
- url = "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz";
- sha1 = "67a62c627c40589edebbf60f53edfd4d822027f8";
- };
- }
- {
- name = "union_value___union_value_1.0.1.tgz";
- path = fetchurl {
- name = "union_value___union_value_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz";
- sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847";
- };
- }
- {
- name = "uniq___uniq_1.0.1.tgz";
- path = fetchurl {
- name = "uniq___uniq_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz";
- sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
- };
- }
- {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- path = fetchurl {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz";
- sha1 = "1d69769369ada0583103a1e6ae87681b56573230";
- };
- }
- {
- name = "unique_slug___unique_slug_2.0.0.tgz";
- path = fetchurl {
- name = "unique_slug___unique_slug_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.0.tgz";
- sha1 = "db6676e7c7cc0629878ff196097c78855ae9f4ab";
- };
- }
- {
- name = "unique_string___unique_string_2.0.0.tgz";
- path = fetchurl {
- name = "unique_string___unique_string_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz";
- sha1 = "39c6451f81afb2749de2b233e3f7c5e8843bd89d";
- };
- }
- {
- name = "unist_util_find_all_after___unist_util_find_all_after_3.0.2.tgz";
- path = fetchurl {
- name = "unist_util_find_all_after___unist_util_find_all_after_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz";
- sha1 = "fdfecd14c5b7aea5e9ef38d5e0d5f774eeb561f6";
- };
- }
- {
- name = "unist_util_is___unist_util_is_4.0.4.tgz";
- path = fetchurl {
- name = "unist_util_is___unist_util_is_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.4.tgz";
- sha1 = "3e9e8de6af2eb0039a59f50c9b3e99698a924f50";
- };
- }
- {
- name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz";
- path = fetchurl {
- name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz";
- sha1 = "cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da";
- };
- }
- {
- name = "universalify___universalify_0.1.2.tgz";
- path = fetchurl {
- name = "universalify___universalify_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz";
- sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66";
- };
- }
- {
- name = "unpipe___unpipe_1.0.0.tgz";
- path = fetchurl {
- name = "unpipe___unpipe_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz";
- sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
- };
- }
- {
- name = "unset_value___unset_value_1.0.0.tgz";
- path = fetchurl {
- name = "unset_value___unset_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
- };
- }
- {
- name = "update_notifier___update_notifier_4.1.0.tgz";
- path = fetchurl {
- name = "update_notifier___update_notifier_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.0.tgz";
- sha1 = "4866b98c3bc5b5473c020b1250583628f9a328f3";
- };
- }
- {
- name = "uri_js___uri_js_4.4.0.tgz";
- path = fetchurl {
- name = "uri_js___uri_js_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz";
- sha1 = "aa714261de793e8a82347a7bcc9ce74e86f28602";
- };
- }
- {
- name = "urix___urix_0.1.0.tgz";
- path = fetchurl {
- name = "urix___urix_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
- };
- }
- {
- name = "url_loader___url_loader_4.1.1.tgz";
- path = fetchurl {
- name = "url_loader___url_loader_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz";
- sha1 = "28505e905cae158cf07c92ca622d7f237e70a4e2";
- };
- }
- {
- name = "url_parse_lax___url_parse_lax_3.0.0.tgz";
- path = fetchurl {
- name = "url_parse_lax___url_parse_lax_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz";
- sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c";
- };
- }
- {
- name = "url_parse___url_parse_1.4.7.tgz";
- path = fetchurl {
- name = "url_parse___url_parse_1.4.7.tgz";
- url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz";
- sha1 = "a8a83535e8c00a316e403a5db4ac1b9b853ae278";
- };
- }
- {
- name = "url_search_params_polyfill___url_search_params_polyfill_5.1.0.tgz";
- path = fetchurl {
- name = "url_search_params_polyfill___url_search_params_polyfill_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/url-search-params-polyfill/-/url-search-params-polyfill-5.1.0.tgz";
- sha1 = "f0405dcc2e921bf7f5fdf8c4e616f1e8088ef31b";
- };
- }
- {
- name = "url___url_0.10.3.tgz";
- path = fetchurl {
- name = "url___url_0.10.3.tgz";
- url = "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz";
- sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64";
- };
- }
- {
- name = "url___url_0.11.0.tgz";
- path = fetchurl {
- name = "url___url_0.11.0.tgz";
- url = "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz";
- sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
- };
- }
- {
- name = "use___use_3.1.1.tgz";
- path = fetchurl {
- name = "use___use_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz";
- sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f";
- };
- }
- {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- path = fetchurl {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- }
- {
- name = "util___util_0.10.3.tgz";
- path = fetchurl {
- name = "util___util_0.10.3.tgz";
- url = "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz";
- sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
- };
- }
- {
- name = "util___util_0.11.1.tgz";
- path = fetchurl {
- name = "util___util_0.11.1.tgz";
- url = "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz";
- sha1 = "3236733720ec64bb27f6e26f421aaa2e1b588d61";
- };
- }
- {
- name = "utils_merge___utils_merge_1.0.1.tgz";
- path = fetchurl {
- name = "utils_merge___utils_merge_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
- };
- }
- {
- name = "uuid___uuid_3.3.2.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.3.2.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz";
- sha1 = "1b4af4955eb3077c501c23872fc6513811587131";
- };
- }
- {
- name = "uuid___uuid_8.1.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-8.1.0.tgz";
- sha1 = "6f1536eb43249f473abc6bd58ff983da1ca30d8d";
- };
- }
- {
- name = "uuid___uuid_3.4.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz";
- sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee";
- };
- }
- {
- name = "uuid___uuid_8.3.1.tgz";
- path = fetchurl {
- name = "uuid___uuid_8.3.1.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.1.tgz";
- sha1 = "2ba2e6ca000da60fce5a196954ab241131e05a31";
- };
- }
- {
- name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz";
- path = fetchurl {
- name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz";
- sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132";
- };
- }
- {
- name = "v8_to_istanbul___v8_to_istanbul_5.0.1.tgz";
- path = fetchurl {
- name = "v8_to_istanbul___v8_to_istanbul_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz";
- sha1 = "0608f5b49a481458625edb058488607f25498ba5";
- };
- }
- {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- path = fetchurl {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a";
- };
- }
- {
- name = "vary___vary_1.1.2.tgz";
- path = fetchurl {
- name = "vary___vary_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz";
- sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
- };
- }
- {
- name = "verror___verror_1.10.0.tgz";
- path = fetchurl {
- name = "verror___verror_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- }
- {
- name = "vfile_message___vfile_message_2.0.4.tgz";
- path = fetchurl {
- name = "vfile_message___vfile_message_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz";
- sha1 = "5b43b88171d409eae58477d13f23dd41d52c371a";
- };
- }
- {
- name = "vfile___vfile_4.2.1.tgz";
- path = fetchurl {
- name = "vfile___vfile_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz";
- sha1 = "03f1dce28fc625c625bc6514350fbdb00fa9e624";
- };
- }
- {
- name = "visibilityjs___visibilityjs_1.2.4.tgz";
- path = fetchurl {
- name = "visibilityjs___visibilityjs_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-1.2.4.tgz";
- sha1 = "bff8663da62c8c10ad4ee5ae6a1ae6fac4259d63";
- };
- }
- {
- name = "vm_browserify___vm_browserify_1.1.0.tgz";
- path = fetchurl {
- name = "vm_browserify___vm_browserify_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz";
- sha1 = "bd76d6a23323e2ca8ffa12028dc04559c75f9019";
- };
- }
- {
- name = "vscode_json_languageservice___vscode_json_languageservice_3.9.1.tgz";
- path = fetchurl {
- name = "vscode_json_languageservice___vscode_json_languageservice_3.9.1.tgz";
- url = "https://registry.yarnpkg.com/vscode-json-languageservice/-/vscode-json-languageservice-3.9.1.tgz";
- sha1 = "f72b581f8cd2bd9b47445ccf8b0ddcde6aba7483";
- };
- }
- {
- name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz";
- path = fetchurl {
- name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz";
- sha1 = "a7bf74ef3254d0a0c272fab15c82128e378b3be9";
- };
- }
- {
- name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz";
- path = fetchurl {
- name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz";
- sha1 = "b8aab6afae2849c84a8983d39a1cf742417afe2f";
- };
- }
- {
- name = "vscode_languageserver_textdocument___vscode_languageserver_textdocument_1.0.1.tgz";
- path = fetchurl {
- name = "vscode_languageserver_textdocument___vscode_languageserver_textdocument_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz";
- sha1 = "178168e87efad6171b372add1dea34f53e5d330f";
- };
- }
- {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz";
- path = fetchurl {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz";
- sha1 = "d3b5952246d30e5241592b6dde8280e03942e743";
- };
- }
- {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.16.0_next.2.tgz";
- path = fetchurl {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.16.0_next.2.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz";
- sha1 = "940bd15c992295a65eae8ab6b8568a1e8daa3083";
- };
- }
- {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.15.1.tgz";
- path = fetchurl {
- name = "vscode_languageserver_types___vscode_languageserver_types_3.15.1.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.15.1.tgz";
- sha1 = "17be71d78d2f6236d414f0001ce1ef4d23e6b6de";
- };
- }
- {
- name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz";
- path = fetchurl {
- name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz";
- url = "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz";
- sha1 = "0d2feddd33f92aadf5da32450df498d52f6f14eb";
- };
- }
- {
- name = "vscode_nls___vscode_nls_4.1.2.tgz";
- path = fetchurl {
- name = "vscode_nls___vscode_nls_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-4.1.2.tgz";
- sha1 = "ca8bf8bb82a0987b32801f9fddfdd2fb9fd3c167";
- };
- }
- {
- name = "vscode_nls___vscode_nls_5.0.0.tgz";
- path = fetchurl {
- name = "vscode_nls___vscode_nls_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-5.0.0.tgz";
- sha1 = "99f0da0bd9ea7cda44e565a74c54b1f2bc257840";
- };
- }
- {
- name = "vscode_uri___vscode_uri_1.0.8.tgz";
- path = fetchurl {
- name = "vscode_uri___vscode_uri_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz";
- sha1 = "9769aaececae4026fb6e22359cb38946580ded59";
- };
- }
- {
- name = "vscode_uri___vscode_uri_2.1.2.tgz";
- path = fetchurl {
- name = "vscode_uri___vscode_uri_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-2.1.2.tgz";
- sha1 = "c8d40de93eb57af31f3c715dd650e2ca2c096f1c";
- };
- }
- {
- name = "vue_apollo___vue_apollo_3.0.3.tgz";
- path = fetchurl {
- name = "vue_apollo___vue_apollo_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/vue-apollo/-/vue-apollo-3.0.3.tgz";
- sha1 = "7f29558df76eec0f03251847eef153816a261827";
- };
- }
- {
- name = "vue_eslint_parser___vue_eslint_parser_7.4.1.tgz";
- path = fetchurl {
- name = "vue_eslint_parser___vue_eslint_parser_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz";
- sha1 = "e4adcf7876a7379758d9056a72235af18a587f92";
- };
- }
- {
- name = "vue_functional_data_merge___vue_functional_data_merge_3.1.0.tgz";
- path = fetchurl {
- name = "vue_functional_data_merge___vue_functional_data_merge_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/vue-functional-data-merge/-/vue-functional-data-merge-3.1.0.tgz";
- sha1 = "08a7797583b7f35680587f8a1d51d729aa1dc657";
- };
- }
- {
- name = "vue_hot_reload_api___vue_hot_reload_api_2.3.0.tgz";
- path = fetchurl {
- name = "vue_hot_reload_api___vue_hot_reload_api_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.0.tgz";
- sha1 = "97976142405d13d8efae154749e88c4e358cf926";
- };
- }
- {
- name = "vue_jest___vue_jest_4.0.1.tgz";
- path = fetchurl {
- name = "vue_jest___vue_jest_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/vue-jest/-/vue-jest-4.0.1.tgz";
- sha1 = "683efc351c24456865b1356bae69d5bb663dafb5";
- };
- }
- {
- name = "vue_loader___vue_loader_15.9.6.tgz";
- path = fetchurl {
- name = "vue_loader___vue_loader_15.9.6.tgz";
- url = "https://registry.yarnpkg.com/vue-loader/-/vue-loader-15.9.6.tgz";
- sha1 = "f4bb9ae20c3a8370af3ecf09b8126d38ffdb6b8b";
- };
- }
- {
- name = "vue_observe_visibility___vue_observe_visibility_1.0.0.tgz";
- path = fetchurl {
- name = "vue_observe_visibility___vue_observe_visibility_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/vue-observe-visibility/-/vue-observe-visibility-1.0.0.tgz";
- sha1 = "17cf1b2caf74022f0f3c95371468ddf2b9573152";
- };
- }
- {
- name = "vue_resize___vue_resize_1.0.1.tgz";
- path = fetchurl {
- name = "vue_resize___vue_resize_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/vue-resize/-/vue-resize-1.0.1.tgz";
- sha1 = "c120bed4e09938771d622614f57dbcf58a5147ee";
- };
- }
- {
- name = "vue_router___vue_router_3.4.9.tgz";
- path = fetchurl {
- name = "vue_router___vue_router_3.4.9.tgz";
- url = "https://registry.yarnpkg.com/vue-router/-/vue-router-3.4.9.tgz";
- sha1 = "c016f42030ae2932f14e4748b39a1d9a0e250e66";
- };
- }
- {
- name = "vue_runtime_helpers___vue_runtime_helpers_1.1.2.tgz";
- path = fetchurl {
- name = "vue_runtime_helpers___vue_runtime_helpers_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/vue-runtime-helpers/-/vue-runtime-helpers-1.1.2.tgz";
- sha1 = "446b7b820888ab0c5264d2c3a32468e72e4100f3";
- };
- }
- {
- name = "vue_style_loader___vue_style_loader_4.1.0.tgz";
- path = fetchurl {
- name = "vue_style_loader___vue_style_loader_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.0.tgz";
- sha1 = "7588bd778e2c9f8d87bfc3c5a4a039638da7a863";
- };
- }
- {
- name = "vue_template_compiler___vue_template_compiler_2.6.12.tgz";
- path = fetchurl {
- name = "vue_template_compiler___vue_template_compiler_2.6.12.tgz";
- url = "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz";
- sha1 = "947ed7196744c8a5285ebe1233fe960437fcc57e";
- };
- }
- {
- name = "vue_template_es2015_compiler___vue_template_es2015_compiler_1.9.1.tgz";
- path = fetchurl {
- name = "vue_template_es2015_compiler___vue_template_es2015_compiler_1.9.1.tgz";
- url = "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz";
- sha1 = "1ee3bc9a16ecbf5118be334bb15f9c46f82f5825";
- };
- }
- {
- name = "vue_virtual_scroll_list___vue_virtual_scroll_list_1.4.7.tgz";
- path = fetchurl {
- name = "vue_virtual_scroll_list___vue_virtual_scroll_list_1.4.7.tgz";
- url = "https://registry.yarnpkg.com/vue-virtual-scroll-list/-/vue-virtual-scroll-list-1.4.7.tgz";
- sha1 = "12ee26833885f5bb4d37dc058085ccf3ce5b5a74";
- };
- }
- {
- name = "vue___vue_2.6.12.tgz";
- path = fetchurl {
- name = "vue___vue_2.6.12.tgz";
- url = "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz";
- sha1 = "f5ebd4fa6bd2869403e29a896aed4904456c9123";
- };
- }
- {
- name = "vuedraggable___vuedraggable_2.23.0.tgz";
- path = fetchurl {
- name = "vuedraggable___vuedraggable_2.23.0.tgz";
- url = "https://registry.yarnpkg.com/vuedraggable/-/vuedraggable-2.23.0.tgz";
- sha1 = "1f4a5a601675a5dbf0d96ee61aebfffa43445262";
- };
- }
- {
- name = "vuex___vuex_3.6.0.tgz";
- path = fetchurl {
- name = "vuex___vuex_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/vuex/-/vuex-3.6.0.tgz";
- sha1 = "95efa56a58f7607c135b053350833a09e01aa813";
- };
- }
- {
- name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz";
- path = fetchurl {
- name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz";
- sha1 = "0a89cdf5cc15822df9c360543676963e0cc308cd";
- };
- }
- {
- name = "w3c_keyname___w3c_keyname_2.2.4.tgz";
- path = fetchurl {
- name = "w3c_keyname___w3c_keyname_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.4.tgz";
- sha1 = "4ade6916f6290224cdbd1db8ac49eab03d0eef6b";
- };
- }
- {
- name = "w3c_xmlserializer___w3c_xmlserializer_2.0.0.tgz";
- path = fetchurl {
- name = "w3c_xmlserializer___w3c_xmlserializer_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz";
- sha1 = "3e7104a05b75146cc60f564380b7f683acf1020a";
- };
- }
- {
- name = "walker___walker_1.0.7.tgz";
- path = fetchurl {
- name = "walker___walker_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz";
- sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb";
- };
- }
- {
- name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz";
- path = fetchurl {
- name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz";
- sha1 = "38500072ee6ece66f3769936950ea1771be1c957";
- };
- }
- {
- name = "watchpack___watchpack_1.7.5.tgz";
- path = fetchurl {
- name = "watchpack___watchpack_1.7.5.tgz";
- url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz";
- sha1 = "1267e6c55e0b9b5be44c2023aed5437a2c26c453";
- };
- }
- {
- name = "wbuf___wbuf_1.7.3.tgz";
- path = fetchurl {
- name = "wbuf___wbuf_1.7.3.tgz";
- url = "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz";
- sha1 = "c1d8d149316d3ea852848895cb6a0bfe887b87df";
- };
- }
- {
- name = "wcwidth___wcwidth_1.0.1.tgz";
- path = fetchurl {
- name = "wcwidth___wcwidth_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz";
- sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8";
- };
- }
- {
- name = "web_vitals___web_vitals_0.2.4.tgz";
- path = fetchurl {
- name = "web_vitals___web_vitals_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz";
- sha1 = "ec3df43c834a207fd7cdefd732b2987896e08511";
- };
- }
- {
- name = "webidl_conversions___webidl_conversions_5.0.0.tgz";
- path = fetchurl {
- name = "webidl_conversions___webidl_conversions_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz";
- sha1 = "ae59c8a00b121543a2acc65c0434f57b0fc11aff";
- };
- }
- {
- name = "webidl_conversions___webidl_conversions_6.1.0.tgz";
- path = fetchurl {
- name = "webidl_conversions___webidl_conversions_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz";
- sha1 = "9111b4d7ea80acd40f5270d666621afa78b69514";
- };
- }
- {
- name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.2.tgz";
- path = fetchurl {
- name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.4.2.tgz";
- sha1 = "39898cf6200178240910d629705f0f3493f7d666";
- };
- }
- {
- name = "webpack_cli___webpack_cli_3.3.12.tgz";
- path = fetchurl {
- name = "webpack_cli___webpack_cli_3.3.12.tgz";
- url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz";
- sha1 = "94e9ada081453cd0aa609c99e500012fd3ad2d4a";
- };
- }
- {
- name = "webpack_dev_middleware___webpack_dev_middleware_3.7.2.tgz";
- path = fetchurl {
- name = "webpack_dev_middleware___webpack_dev_middleware_3.7.2.tgz";
- url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz";
- sha1 = "0019c3db716e3fa5cecbf64f2ab88a74bab331f3";
- };
- }
- {
- name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz";
- path = fetchurl {
- name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz";
- url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz";
- sha1 = "695ebced76a4929f0d5de7fd73fafe185fe33708";
- };
- }
- {
- name = "webpack_log___webpack_log_2.0.0.tgz";
- path = fetchurl {
- name = "webpack_log___webpack_log_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz";
- sha1 = "5b7928e0637593f119d32f6227c1e0ac31e1b47f";
- };
- }
- {
- name = "webpack_sources___webpack_sources_1.4.3.tgz";
- path = fetchurl {
- name = "webpack_sources___webpack_sources_1.4.3.tgz";
- url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz";
- sha1 = "eedd8ec0b928fbf1cbfe994e22d2d890f330a933";
- };
- }
- {
- name = "webpack_stats_plugin___webpack_stats_plugin_0.3.1.tgz";
- path = fetchurl {
- name = "webpack_stats_plugin___webpack_stats_plugin_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-0.3.1.tgz";
- sha1 = "1103c39a305a4e6ba15d5078db84bc0b35447417";
- };
- }
- {
- name = "webpack___webpack_4.46.0.tgz";
- path = fetchurl {
- name = "webpack___webpack_4.46.0.tgz";
- url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz";
- sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542";
- };
- }
- {
- name = "websocket_driver___websocket_driver_0.7.4.tgz";
- path = fetchurl {
- name = "websocket_driver___websocket_driver_0.7.4.tgz";
- url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz";
- sha1 = "89ad5295bbf64b480abcba31e4953aca706f5760";
- };
- }
- {
- name = "websocket_extensions___websocket_extensions_0.1.1.tgz";
- path = fetchurl {
- name = "websocket_extensions___websocket_extensions_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz";
- sha1 = "76899499c184b6ef754377c2dbb0cd6cb55d29e7";
- };
- }
- {
- name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz";
- path = fetchurl {
- name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz";
- sha1 = "5abacf777c32166a51d085d6b4f3e7d27113ddb0";
- };
- }
- {
- name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz";
- path = fetchurl {
- name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz";
- sha1 = "3d4b1e0312d2079879f826aff18dbeeca5960fbf";
- };
- }
- {
- name = "whatwg_url___whatwg_url_8.1.0.tgz";
- path = fetchurl {
- name = "whatwg_url___whatwg_url_8.1.0.tgz";
- url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz";
- sha1 = "c628acdcf45b82274ce7281ee31dd3c839791771";
- };
- }
- {
- name = "which_module___which_module_2.0.0.tgz";
- path = fetchurl {
- name = "which_module___which_module_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz";
- sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
- };
- }
- {
- name = "which___which_1.3.1.tgz";
- path = fetchurl {
- name = "which___which_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz";
- sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a";
- };
- }
- {
- name = "which___which_2.0.2.tgz";
- path = fetchurl {
- name = "which___which_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz";
- sha1 = "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1";
- };
- }
- {
- name = "widest_line___widest_line_3.1.0.tgz";
- path = fetchurl {
- name = "widest_line___widest_line_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz";
- sha1 = "8292333bbf66cb45ff0de1603b136b7ae1496eca";
- };
- }
- {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- path = fetchurl {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz";
- sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c";
- };
- }
- {
- name = "worker_farm___worker_farm_1.7.0.tgz";
- path = fetchurl {
- name = "worker_farm___worker_farm_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz";
- sha1 = "26a94c5391bbca926152002f69b84a4bf772e5a8";
- };
- }
- {
- name = "worker_loader___worker_loader_2.0.0.tgz";
- path = fetchurl {
- name = "worker_loader___worker_loader_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/worker-loader/-/worker-loader-2.0.0.tgz";
- sha1 = "45fda3ef76aca815771a89107399ee4119b430ac";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-4.0.0.tgz";
- sha1 = "b3570d7c70156159a2d42be5cc942e957f7b1131";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_5.1.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz";
- sha1 = "1fd1f67235d5b6d0fee781056001bfb694c03b09";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_6.2.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz";
- sha1 = "e9393ba07102e6c91a3b221478f0257cd2856e53";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz";
- sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43";
- };
- }
- {
- name = "wrappy___wrappy_1.0.2.tgz";
- path = fetchurl {
- name = "wrappy___wrappy_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- }
- {
- name = "write_file_atomic___write_file_atomic_2.4.3.tgz";
- path = fetchurl {
- name = "write_file_atomic___write_file_atomic_2.4.3.tgz";
- url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz";
- sha1 = "1fd2e9ae1df3e75b8d8c367443c692d4ca81f481";
- };
- }
- {
- name = "write_file_atomic___write_file_atomic_3.0.3.tgz";
- path = fetchurl {
- name = "write_file_atomic___write_file_atomic_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz";
- sha1 = "56bd5c5a5c70481cd19c571bd39ab965a5de56e8";
- };
- }
- {
- name = "ws___ws_6.2.1.tgz";
- path = fetchurl {
- name = "ws___ws_6.2.1.tgz";
- url = "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz";
- sha1 = "442fdf0a47ed64f59b6a5d8ff130f4748ed524fb";
- };
- }
- {
- name = "ws___ws_7.4.4.tgz";
- path = fetchurl {
- name = "ws___ws_7.4.4.tgz";
- url = "https://registry.yarnpkg.com/ws/-/ws-7.4.4.tgz";
- sha1 = "383bc9742cb202292c9077ceab6f6047b17f2d59";
- };
- }
- {
- name = "xdg_basedir___xdg_basedir_4.0.0.tgz";
- path = fetchurl {
- name = "xdg_basedir___xdg_basedir_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz";
- sha1 = "4bc8d9984403696225ef83a1573cbbcb4e79db13";
- };
- }
- {
- name = "xhr_mock___xhr_mock_2.5.1.tgz";
- path = fetchurl {
- name = "xhr_mock___xhr_mock_2.5.1.tgz";
- url = "https://registry.yarnpkg.com/xhr-mock/-/xhr-mock-2.5.1.tgz";
- sha1 = "c591498a8269cc1ce5fefac20d590357affd348b";
- };
- }
- {
- name = "xml_name_validator___xml_name_validator_3.0.0.tgz";
- path = fetchurl {
- name = "xml_name_validator___xml_name_validator_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz";
- sha1 = "6ae73e06de4d8c6e47f9fb181f78d648ad457c6a";
- };
- }
- {
- name = "xml2js___xml2js_0.4.19.tgz";
- path = fetchurl {
- name = "xml2js___xml2js_0.4.19.tgz";
- url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz";
- sha1 = "686c20f213209e94abf0d1bcf1efaa291c7827a7";
- };
- }
- {
- name = "xml___xml_1.0.1.tgz";
- path = fetchurl {
- name = "xml___xml_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz";
- sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
- sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
- };
- }
- {
- name = "xmlchars___xmlchars_2.2.0.tgz";
- path = fetchurl {
- name = "xmlchars___xmlchars_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz";
- sha1 = "060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb";
- };
- }
- {
- name = "xmlcreate___xmlcreate_1.0.2.tgz";
- path = fetchurl {
- name = "xmlcreate___xmlcreate_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/xmlcreate/-/xmlcreate-1.0.2.tgz";
- sha1 = "fa6bf762a60a413fb3dd8f4b03c5b269238d308f";
- };
- }
- {
- name = "xtend___xtend_4.0.2.tgz";
- path = fetchurl {
- name = "xtend___xtend_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz";
- sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54";
- };
- }
- {
- name = "xterm___xterm_3.14.5.tgz";
- path = fetchurl {
- name = "xterm___xterm_3.14.5.tgz";
- url = "https://registry.yarnpkg.com/xterm/-/xterm-3.14.5.tgz";
- sha1 = "c9d14e48be6873aa46fb429f22f2165557fd2dea";
- };
- }
- {
- name = "y18n___y18n_4.0.0.tgz";
- path = fetchurl {
- name = "y18n___y18n_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz";
- sha1 = "95ef94f85ecc81d007c264e190a120f0a3c8566b";
- };
- }
- {
- name = "yallist___yallist_2.1.2.tgz";
- path = fetchurl {
- name = "yallist___yallist_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
- };
- }
- {
- name = "yallist___yallist_3.0.3.tgz";
- path = fetchurl {
- name = "yallist___yallist_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz";
- sha1 = "b4b049e314be545e3ce802236d6cd22cd91c3de9";
- };
- }
- {
- name = "yallist___yallist_4.0.0.tgz";
- path = fetchurl {
- name = "yallist___yallist_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz";
- sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72";
- };
- }
- {
- name = "yaml_ast_parser_custom_tags___yaml_ast_parser_custom_tags_0.0.43.tgz";
- path = fetchurl {
- name = "yaml_ast_parser_custom_tags___yaml_ast_parser_custom_tags_0.0.43.tgz";
- url = "https://registry.yarnpkg.com/yaml-ast-parser-custom-tags/-/yaml-ast-parser-custom-tags-0.0.43.tgz";
- sha1 = "46968145ce4e24cb03c3312057f0f141b93a7d02";
- };
- }
- {
- name = "yaml_language_server___yaml_language_server_0.11.1.tgz";
- path = fetchurl {
- name = "yaml_language_server___yaml_language_server_0.11.1.tgz";
- url = "https://registry.yarnpkg.com/yaml-language-server/-/yaml-language-server-0.11.1.tgz";
- sha1 = "4ddc72eb9a6dd7dc41f31af2a8f5c72cce456cc9";
- };
- }
- {
- name = "yaml___yaml_1.10.0.tgz";
- path = fetchurl {
- name = "yaml___yaml_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz";
- sha1 = "3b593add944876077d4d683fee01081bd9fff31e";
- };
- }
- {
- name = "yargs_parser___yargs_parser_13.1.2.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_13.1.2.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz";
- sha1 = "130f09702ebaeef2650d54ce6e3e5706f7a4fb38";
- };
- }
- {
- name = "yargs_parser___yargs_parser_18.1.3.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_18.1.3.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz";
- sha1 = "be68c4975c6b2abf469236b0c870362fab09a7b0";
- };
- }
- {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz";
- sha1 = "b42890f14566796f85ae8e3a25290d205f154a54";
- };
- }
- {
- name = "yargs___yargs_13.3.2.tgz";
- path = fetchurl {
- name = "yargs___yargs_13.3.2.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz";
- sha1 = "ad7ffefec1aa59565ac915f82dccb38a9c31a2dd";
- };
- }
- {
- name = "yargs___yargs_15.4.1.tgz";
- path = fetchurl {
- name = "yargs___yargs_15.4.1.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz";
- sha1 = "0d87a16de01aee9d8bec2bfbf74f67851730f4f8";
- };
- }
- {
- name = "yarn_check_webpack_plugin___yarn_check_webpack_plugin_1.2.0.tgz";
- path = fetchurl {
- name = "yarn_check_webpack_plugin___yarn_check_webpack_plugin_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/yarn-check-webpack-plugin/-/yarn-check-webpack-plugin-1.2.0.tgz";
- sha1 = "0eb00cdcdb430f0494222a3eab1d2832737840cc";
- };
- }
- {
- name = "yarn_deduplicate___yarn_deduplicate_3.1.0.tgz";
- path = fetchurl {
- name = "yarn_deduplicate___yarn_deduplicate_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/yarn-deduplicate/-/yarn-deduplicate-3.1.0.tgz";
- sha1 = "3018d93e95f855f236a215b591fe8bc4bcabba3e";
- };
- }
- {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- path = fetchurl {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz";
- sha1 = "0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b";
- };
- }
- {
- name = "zen_observable_ts___zen_observable_ts_0.8.21.tgz";
- path = fetchurl {
- name = "zen_observable_ts___zen_observable_ts_0.8.21.tgz";
- url = "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz";
- sha1 = "85d0031fbbde1eba3cd07d3ba90da241215f421d";
- };
- }
- {
- name = "zen_observable___zen_observable_0.8.11.tgz";
- path = fetchurl {
- name = "zen_observable___zen_observable_0.8.11.tgz";
- url = "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.11.tgz";
- sha1 = "d3415885eeeb42ee5abb9821c95bb518fcd6d199";
- };
- }
- {
- name = "zrender___zrender_4.3.2.tgz";
- path = fetchurl {
- name = "zrender___zrender_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/zrender/-/zrender-4.3.2.tgz";
- sha1 = "ec7432f9415c82c73584b6b7b8c47e1b016209c6";
- };
- }
- {
- name = "zwitch___zwitch_1.0.5.tgz";
- path = fetchurl {
- name = "zwitch___zwitch_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz";
- sha1 = "d11d7381ffed16b742f6af7b3f223d5cd9fe9920";
- };
- }
- ];
-}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/mercurial/4.9.nix b/third_party/nixpkgs/pkgs/applications/version-management/mercurial/4.9.nix
deleted file mode 100644
index 0a76f7df97..0000000000
--- a/third_party/nixpkgs/pkgs/applications/version-management/mercurial/4.9.nix
+++ /dev/null
@@ -1,68 +0,0 @@
-{ lib, stdenv, fetchurl, python2Packages, makeWrapper
-, guiSupport ? false, tk ? null
-, ApplicationServices
-}:
-
-let
- inherit (python2Packages) docutils hg-git dulwich python;
-
-in python2Packages.buildPythonApplication rec {
- pname = "mercurial";
- version = "4.9.1";
-
- src = fetchurl {
- url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz";
- sha256 = "0iybbkd9add066729zg01kwz5hhc1s6lhp9rrnsmzq6ihyxj3p8v";
- };
-
- format = "other";
-
- inherit python; # pass it so that the same version can be used in hg2git
-
- nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ docutils ]
- ++ lib.optionals stdenv.isDarwin [ ApplicationServices ];
-
- propagatedBuildInputs = [ hg-git dulwich ];
-
- makeFlags = [ "PREFIX=$(out)" ];
-
- postInstall = (lib.optionalString guiSupport
- ''
- mkdir -p $out/etc/mercurial
- cp contrib/hgk $out/bin
- cat >> $out/etc/mercurial/hgrc << EOF
- [extensions]
- hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
- EOF
- # setting HG so that hgk can be run itself as well (not only hg view)
- WRAP_TK=" --set TK_LIBRARY ${tk}/lib/${tk.libPrefix}
- --set HG $out/bin/hg
- --prefix PATH : ${tk}/bin "
- '') +
- ''
- for i in $(cd $out/bin && ls); do
- wrapProgram $out/bin/$i \
- $WRAP_TK
- done
-
- # copy hgweb.cgi to allow use in apache
- mkdir -p $out/share/cgi-bin
- cp -v hgweb.cgi contrib/hgweb.wsgi $out/share/cgi-bin
- chmod u+x $out/share/cgi-bin/hgweb.cgi
-
- # install bash/zsh completions
- install -v -m644 -D contrib/bash_completion $out/share/bash-completion/completions/_hg
- install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg
- '';
-
- meta = {
- description = "A fast, lightweight SCM system for very large distributed projects";
- homepage = "https://www.mercurial-scm.org";
- downloadPage = "https://www.mercurial-scm.org/release/";
- license = lib.licenses.gpl2;
- maintainers = [ lib.maintainers.eraserhd ];
- updateWalker = true;
- platforms = lib.platforms.unix;
- };
-}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/pijul/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/pijul/default.nix
index e5a12dd900..32126c7ce6 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/pijul/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/pijul/default.nix
@@ -13,14 +13,14 @@
rustPlatform.buildRustPackage rec {
pname = "pijul";
- version = "1.0.0-alpha.53";
+ version = "1.0.0-alpha.55";
src = fetchCrate {
inherit version pname;
- sha256 = "1y5wnqscyfhd806qs6gfmssm7hvfdi7mxc9p1125jnmzca4wcsm2";
+ sha256 = "sha256-1nnn0cdDe+WOetGtRe7dMEyuCcbfRHdJWFxQ4bTXebQ=";
};
- cargoSha256 = "0m9zjagq59rxf5pysklal030f4n0dqgmjsgwcnljajxc2r26665h";
+ cargoSha256 = "sha256-j9xf97qPdhtakIwhAql0/Go5fPxlyWKAVLk5CMBfAbs=";
cargoBuildFlags = lib.optional gitImportSupport "--features=git";
diff --git a/third_party/nixpkgs/pkgs/applications/video/clapper/default.nix b/third_party/nixpkgs/pkgs/applications/video/clapper/default.nix
index 9635838304..176efb7995 100644
--- a/third_party/nixpkgs/pkgs/applications/video/clapper/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/video/clapper/default.nix
@@ -18,6 +18,8 @@
, gtk4
, gst_all_1
, libadwaita
+, appstream-glib
+, libsoup
}:
stdenv.mkDerivation rec {
@@ -32,6 +34,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
+ appstream-glib
desktop-file-utils # for update-desktop-database
glib
gobject-introspection
@@ -53,6 +56,7 @@ stdenv.mkDerivation rec {
gst_all_1.gst-plugins-ugly
gtk4
libadwaita
+ libsoup
wayland
wayland-protocols
];
diff --git a/third_party/nixpkgs/pkgs/applications/video/ffmpeg-normalize/default.nix b/third_party/nixpkgs/pkgs/applications/video/ffmpeg-normalize/default.nix
index db1399ef60..41c035350d 100644
--- a/third_party/nixpkgs/pkgs/applications/video/ffmpeg-normalize/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/video/ffmpeg-normalize/default.nix
@@ -7,11 +7,11 @@
buildPythonApplication rec {
pname = "ffmpeg-normalize";
- version = "1.22.3";
+ version = "1.22.4";
src = fetchPypi {
inherit pname version;
- sha256 = "317a9636587182280debc85d483f6d21987ceb6cd96ab36a2399836780eca822";
+ sha256 = "a20978538ae9a51bdbe5ef5aa0f87ede0f8efd2817ab240980de56eac36982e3";
};
propagatedBuildInputs = [ ffmpeg ffmpeg-progress-yield ];
diff --git a/third_party/nixpkgs/pkgs/applications/video/freetube/default.nix b/third_party/nixpkgs/pkgs/applications/video/freetube/default.nix
index 211112b4ee..aa32e8828e 100644
--- a/third_party/nixpkgs/pkgs/applications/video/freetube/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/video/freetube/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "freetube";
- version = "0.14.0";
+ version = "0.15.0";
src = fetchurl {
url = "https://github.com/FreeTubeApp/FreeTube/releases/download/v${version}-beta/freetube_${version}_amd64.AppImage";
- sha256 = "sha256:0qaghj70ffc90wck1i4217ky5d6cryrmgna2ipsc4v8dcvbyc1lh";
+ sha256 = "sha256-52cVY3SBT048tErydk3l27yBvM/FMVpEMf5miAeInDM=";
};
appimageContents = appimageTools.extractType2 {
diff --git a/third_party/nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix b/third_party/nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix
index ebf5de4e00..4eac16d349 100644
--- a/third_party/nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/video/mkvtoolnix/default.nix
@@ -47,13 +47,13 @@ let
in
stdenv.mkDerivation rec {
pname = "mkvtoolnix";
- version = "61.0.0";
+ version = "62.0.0";
src = fetchFromGitLab {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
- sha256 = "04f18jr0a5m1sah8163m28b82w1ikjzmahqy67pbbpzg0mc6rqr4";
+ sha256 = "0pjf1lkpjirqanazm7a28b8bsyin4i1kd1s4y169zsilzb28kpiz";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/virtualization/cloud-hypervisor/default.nix b/third_party/nixpkgs/pkgs/applications/virtualization/cloud-hypervisor/default.nix
index 05e468a732..1afab16730 100644
--- a/third_party/nixpkgs/pkgs/applications/virtualization/cloud-hypervisor/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/virtualization/cloud-hypervisor/default.nix
@@ -2,19 +2,19 @@
rustPlatform.buildRustPackage rec {
pname = "cloud-hypervisor";
- version = "18.0";
+ version = "19.0";
src = fetchFromGitHub {
owner = "cloud-hypervisor";
repo = pname;
rev = "v${version}";
- sha256 = "0k9gclkba2bhmyqhyigjgfgcnqpg16v3yczhh08ljxmbrsbs02ig";
+ sha256 = "0h3varacv9696mih8zrz3fp6xa8hxxvwzkrslhpf9ilcjs1bjihd";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optional stdenv.isAarch64 dtc;
- cargoSha256 = "086ldzb1rbbrzjbklay4nvhc18ipyxi9gnp56f06393zvfbhc5dl";
+ cargoSha256 = "015r9m9fr634ppn4qy0b8w1khjlxsv3wbpf3s7crmklzy57wakxl";
meta = with lib; {
homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor";
diff --git a/third_party/nixpkgs/pkgs/applications/window-managers/cagebreak/default.nix b/third_party/nixpkgs/pkgs/applications/window-managers/cagebreak/default.nix
index fe4b2be479..124c1abe6f 100644
--- a/third_party/nixpkgs/pkgs/applications/window-managers/cagebreak/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/window-managers/cagebreak/default.nix
@@ -74,7 +74,8 @@ stdenv.mkDerivation rec {
'';
postFixup = lib.optionalString withXwayland ''
- wrapProgram $out/bin/cagebreak --prefix PATH : "${xwayland}/bin"
+ wrapProgram $out/bin/cagebreak \
+ --prefix PATH : "${lib.makeBinPath [ xwayland ]}"
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/applications/window-managers/sway/default.nix b/third_party/nixpkgs/pkgs/applications/window-managers/sway/default.nix
index 92de633f0f..fb0cb31fad 100644
--- a/third_party/nixpkgs/pkgs/applications/window-managers/sway/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/window-managers/sway/default.nix
@@ -6,6 +6,8 @@
, nixosTests
# Used by the NixOS module:
, isNixOS ? false
+
+, enableXWayland ? true
}:
stdenv.mkDerivation rec {
@@ -40,13 +42,16 @@ stdenv.mkDerivation rec {
buildInputs = [
wayland libxkbcommon pcre json_c dbus libevdev
pango cairo libinput libcap pam gdk-pixbuf librsvg
- wlroots wayland-protocols libdrm
+ wayland-protocols libdrm
+ (wlroots.override { inherit enableXWayland; })
];
mesonFlags = [
"-Ddefault-wallpaper=false"
"-Dsd-bus-provider=libsystemd"
- ];
+ ]
+ ++ lib.optional (!enableXWayland) "-Dxwayland=disabled"
+ ;
passthru.tests.basic = nixosTests.sway;
diff --git a/third_party/nixpkgs/pkgs/applications/window-managers/sway/lock-fancy.nix b/third_party/nixpkgs/pkgs/applications/window-managers/sway/lock-fancy.nix
index bee1f925f6..8c2a7e9164 100644
--- a/third_party/nixpkgs/pkgs/applications/window-managers/sway/lock-fancy.nix
+++ b/third_party/nixpkgs/pkgs/applications/window-managers/sway/lock-fancy.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, fetchFromGitHub, coreutils, grim, gawk, swaylock
-, imagemagick, getopt, fontconfig, makeWrapper
+{ lib, stdenv, fetchFromGitHub, coreutils, grim, gawk, jq, swaylock
+, imagemagick, getopt, fontconfig, wmctrl, makeWrapper
}:
let
@@ -7,20 +7,22 @@ let
coreutils
grim
gawk
+ jq
swaylock
imagemagick
getopt
fontconfig
+ wmctrl
];
in stdenv.mkDerivation rec {
pname = "swaylock-fancy-unstable";
- version = "2020-02-22";
+ version = "2021-10-11";
src = fetchFromGitHub {
owner = "Big-B";
repo = "swaylock-fancy";
- rev = "5cf977b12f372740aa7b7e5a607d583f93f1e028";
- sha256 = "0laqwzi6069sgz91i69438ns0g2nq4zkqickavrf80h4g3gcs8vm";
+ rev = "265fbfb438392339bf676b0a9dbe294abe2a699e";
+ sha256 = "NjxeJyWYXBb1P8sXKgb2EWjF+cNodTE83r1YwRYoBjM=";
};
postPatch = ''
diff --git a/third_party/nixpkgs/pkgs/applications/window-managers/sway/wrapper.nix b/third_party/nixpkgs/pkgs/applications/window-managers/sway/wrapper.nix
index 07459295d7..7bcb26e0c9 100644
--- a/third_party/nixpkgs/pkgs/applications/window-managers/sway/wrapper.nix
+++ b/third_party/nixpkgs/pkgs/applications/window-managers/sway/wrapper.nix
@@ -6,6 +6,8 @@
, extraOptions ? [] # E.g.: [ "--verbose" ]
# Used by the NixOS module:
, isNixOS ? false
+
+, enableXWayland ? true
}:
assert extraSessionCommands != "" -> withBaseWrapper;
@@ -13,7 +15,7 @@ assert extraSessionCommands != "" -> withBaseWrapper;
with lib;
let
- sway = sway-unwrapped.override { inherit isNixOS; };
+ sway = sway-unwrapped.override { inherit isNixOS enableXWayland; };
baseWrapper = writeShellScriptBin "sway" ''
set -o errexit
if [ ! "$_SWAY_WRAPPER_ALREADY_EXECUTED" ]; then
diff --git a/third_party/nixpkgs/pkgs/build-support/agda/default.nix b/third_party/nixpkgs/pkgs/build-support/agda/default.nix
index 5df02fbd5c..9fe9aa4579 100644
--- a/third_party/nixpkgs/pkgs/build-support/agda/default.nix
+++ b/third_party/nixpkgs/pkgs/build-support/agda/default.nix
@@ -79,7 +79,12 @@ let
find -not \( -path ${everythingFile} -or -path ${lib.interfaceFile everythingFile} \) -and \( ${concatMapStringsSep " -or " (p: "-name '*.${p}'") (extensions ++ extraExtensions)} \) -exec cp -p --parents -t "$out" {} +
runHook postInstall
'';
+
meta = if meta.broken or false then meta // { hydraPlatforms = lib.platforms.none; } else meta;
+
+ # Retrieve all packages from the finished package set that have the current package as a dependency and build them
+ passthru.tests = with builtins;
+ lib.filterAttrs (name: pkg: self.lib.isUnbrokenAgdaPackage pkg && elem pname (map (pkg: pkg.pname) pkg.buildInputs)) self;
};
in
{
diff --git a/third_party/nixpkgs/pkgs/build-support/agda/lib.nix b/third_party/nixpkgs/pkgs/build-support/agda/lib.nix
index 976151a828..80a0974192 100644
--- a/third_party/nixpkgs/pkgs/build-support/agda/lib.nix
+++ b/third_party/nixpkgs/pkgs/build-support/agda/lib.nix
@@ -7,4 +7,9 @@
* interfaceFile "src/Everything.lagda.tex" == "src/Everything.agdai"
*/
interfaceFile = agdaFile: lib.head (builtins.match ''(.*\.)l?agda(\.(md|org|rst|tex))?'' agdaFile) + "agdai";
+
+ /* Takes an arbitrary derivation and says whether it is an agda library package
+ * that is not marked as broken.
+ */
+ isUnbrokenAgdaPackage = pkg: pkg.isAgdaDerivation or false && !pkg.meta.broken;
}
diff --git a/third_party/nixpkgs/pkgs/build-support/build-dotnet-module/default.nix b/third_party/nixpkgs/pkgs/build-support/build-dotnet-module/default.nix
index 0c1a1f686e..0161c101e5 100644
--- a/third_party/nixpkgs/pkgs/build-support/build-dotnet-module/default.nix
+++ b/third_party/nixpkgs/pkgs/build-support/build-dotnet-module/default.nix
@@ -32,7 +32,7 @@
# The dotnet SDK to use.
, dotnet-sdk ? dotnetCorePackages.sdk_5_0
# The dotnet runtime to use.
-, dotnet-runtime ? dotnetCorePackages.net_5_0
+, dotnet-runtime ? dotnetCorePackages.runtime_5_0
, ... } @ args:
assert projectFile == null -> throw "Defining the `projectFile` attribute is required. This is usually an `.csproj`, or `.sln` file.";
diff --git a/third_party/nixpkgs/pkgs/build-support/docker/default.nix b/third_party/nixpkgs/pkgs/build-support/docker/default.nix
index 47fd99c12f..a42b025bc7 100644
--- a/third_party/nixpkgs/pkgs/build-support/docker/default.nix
+++ b/third_party/nixpkgs/pkgs/build-support/docker/default.nix
@@ -37,6 +37,11 @@
let
+ inherit (lib)
+ escapeShellArgs
+ toList
+ ;
+
mkDbExtraCommand = contents:
let
contentsList = if builtins.isList contents then contents else [ contents ];
@@ -402,7 +407,7 @@ rec {
preMount = lib.optionalString (contents != null && contents != [ ]) ''
echo "Adding contents..."
- for item in ${toString contents}; do
+ for item in ${escapeShellArgs (map (c: "${c}") (toList contents))}; do
echo "Adding $item..."
rsync -a${if keepContentsDirlinks then "K" else "k"} --chown=0:0 $item/ layer/
done
diff --git a/third_party/nixpkgs/pkgs/build-support/docker/examples.nix b/third_party/nixpkgs/pkgs/build-support/docker/examples.nix
index 9f6823a587..141c2ba0ea 100644
--- a/third_party/nixpkgs/pkgs/build-support/docker/examples.nix
+++ b/third_party/nixpkgs/pkgs/build-support/docker/examples.nix
@@ -553,4 +553,16 @@ rec {
# Example export of the bash image
exportBash = pkgs.dockerTools.exportImage { fromImage = bash; };
+
+ build-image-with-path = buildImage {
+ name = "build-image-with-path";
+ tag = "latest";
+ contents = [ pkgs.bashInteractive ./test-dummy ];
+ };
+
+ layered-image-with-path = pkgs.dockerTools.streamLayeredImage {
+ name = "layered-image-with-path";
+ tag = "latest";
+ contents = [ pkgs.bashInteractive ./test-dummy ];
+ };
}
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/default.nix b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/default.nix
new file mode 100644
index 0000000000..03be881311
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/default.nix
@@ -0,0 +1,74 @@
+{ stdenv, lib, makeWrapper, coreutils, nix-prefetch-git, fetchurl, nodejs-slim, prefetch-yarn-deps, cacert, callPackage }:
+
+let
+ yarnpkg-lockfile-tar = fetchurl {
+ url = "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz";
+ sha512 = "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==";
+ };
+
+in {
+ prefetch-yarn-deps = stdenv.mkDerivation {
+ name = "prefetch-yarn-deps";
+
+ dontUnpack = true;
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = [ coreutils nix-prefetch-git nodejs-slim ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ mkdir libexec
+ tar --strip-components=1 -xf ${yarnpkg-lockfile-tar} package/index.js
+ mv index.js libexec/yarnpkg-lockfile.js
+ cp ${./index.js} libexec/index.js
+ patchShebangs libexec/index.js
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+ cp -r libexec $out
+ makeWrapper $out/libexec/index.js $out/bin/prefetch-yarn-deps \
+ --prefix PATH : ${lib.makeBinPath [ coreutils nix-prefetch-git ]}
+
+ runHook postInstall
+ '';
+ };
+
+ fetchYarnDeps = let
+ f = {
+ name ? "offline",
+ yarnLock,
+ hash ? "",
+ sha256 ? "",
+ }: let
+ hash_ =
+ if hash != "" then { outputHashAlgo = null; outputHash = hash; }
+ else if sha256 != "" then { outputHashAlgo = "sha256"; outputHash = sha256; }
+ else throw "fetchYarnDeps requires a hash";
+ in stdenv.mkDerivation {
+ inherit name;
+
+ dontUnpack = true;
+ dontInstall = true;
+
+ nativeBuildInputs = [ prefetch-yarn-deps ];
+ GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";
+
+ buildPhase = ''
+ mkdir -p $out
+ (cd $out; prefetch-yarn-deps --verbose --builder ${yarnLock})
+ '';
+
+ outputHashMode = "recursive";
+ inherit (hash_) outputHashAlgo outputHash;
+ };
+
+ in lib.setFunctionArgs f (lib.functionArgs f) // {
+ tests = callPackage ./tests {};
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/index.js b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/index.js
new file mode 100755
index 0000000000..a9c5ab29cc
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/index.js
@@ -0,0 +1,169 @@
+#!/usr/bin/env node
+'use strict'
+
+const fs = require('fs')
+const crypto = require('crypto')
+const process = require('process')
+const https = require('https')
+const child_process = require('child_process')
+const path = require('path')
+const lockfile = require('./yarnpkg-lockfile.js')
+const { promisify } = require('util')
+
+const execFile = promisify(child_process.execFile)
+
+const exec = async (...args) => {
+ const res = await execFile(...args)
+ if (res.error) throw new Error(res.stderr)
+ return res
+}
+
+const downloadFileHttps = (fileName, url, expectedHash) => {
+ return new Promise((resolve, reject) => {
+ https.get(url, (res) => {
+ const file = fs.createWriteStream(fileName)
+ const hash = crypto.createHash('sha1')
+ res.pipe(file)
+ res.pipe(hash).setEncoding('hex')
+ res.on('end', () => {
+ file.close()
+ const h = hash.read()
+ if (h != expectedHash) return reject(new Error(`hash mismatch, expected ${expectedHash}, got ${h}`))
+ resolve()
+ })
+ res.on('error', e => reject(e))
+ })
+ })
+}
+
+const downloadGit = async (fileName, url, rev) => {
+ await exec('nix-prefetch-git', [
+ '--out', fileName + '.tmp',
+ '--url', url,
+ '--rev', rev,
+ '--builder'
+ ])
+
+ await exec('tar', [
+ // hopefully make it reproducible across runs and systems
+ '--owner=0', '--group=0', '--numeric-owner', '--format=gnu', '--sort=name', '--mtime=@1',
+
+ // Set u+w because tar-fs can't unpack archives with read-only dirs: https://github.com/mafintosh/tar-fs/issues/79
+ '--mode', 'u+w',
+
+ '-C', fileName + '.tmp',
+ '-cf', fileName, '.'
+ ])
+
+ await exec('rm', [ '-rf', fileName + '.tmp', ])
+}
+
+const downloadPkg = (pkg, verbose) => {
+ const [ url, hash ] = pkg.resolved.split('#')
+ if (verbose) console.log('downloading ' + url)
+ if (url.startsWith('https://codeload.github.com/') && url.includes('/tar.gz/')) {
+ const fileName = path.basename(url)
+ const s = url.split('/')
+ downloadGit(fileName, `https://github.com/${s[3]}/${s[4]}.git`, s[6])
+ } else if (url.startsWith('https://')) {
+ const fileName = url
+ .replace(/https:\/\/(.)*(.com)\//g, '') // prevents having long directory names
+ .replace(/[@/%:-]/g, '_') // replace @ and : and - and % characters with underscore
+
+ return downloadFileHttps(fileName, url, hash)
+ } else if (url.startsWith('git+')) {
+ const fileName = path.basename(url)
+ return downloadGit(fileName, url.replace(/^git\+/, ''), hash)
+ } else {
+ throw new Error('don\'t know how to download "' + url + '"')
+ }
+}
+
+const performParallel = tasks => {
+ const worker = async () => {
+ while (tasks.length > 0) await tasks.shift()()
+ }
+
+ const workers = []
+ for (let i = 0; i < 4; i++) {
+ workers.push(worker())
+ }
+
+ return Promise.all(workers)
+}
+
+const prefetchYarnDeps = async (lockContents, verbose) => {
+ const lockData = lockfile.parse(lockContents)
+ const tasks = Object.values(
+ Object.entries(lockData.object)
+ .map(([key, value]) => {
+ return { key, ...value }
+ })
+ .reduce((out, pkg) => {
+ out[pkg.resolved] = pkg
+ return out
+ }, {})
+ )
+ .map(pkg => () => downloadPkg(pkg, verbose))
+
+ await performParallel(tasks)
+ await fs.promises.writeFile('yarn.lock', lockContents)
+ if (verbose) console.log('Done')
+}
+
+const showUsage = async () => {
+ process.stderr.write(`
+syntax: prefetch-yarn-deps [path to yarn.lock] [options]
+
+Options:
+ -h --help Show this help
+ -v --verbose Verbose output
+ --builder Only perform the download to current directory, then exit
+`)
+ process.exit(1)
+}
+
+const main = async () => {
+ const args = process.argv.slice(2)
+ let next, lockFile, verbose, isBuilder
+ while (next = args.shift()) {
+ if (next == '--builder') {
+ isBuilder = true
+ } else if (next == '--verbose' || next == '-v') {
+ verbose = true
+ } else if (next == '--help' || next == '-h') {
+ showUsage()
+ } else if (!lockFile) {
+ lockFile = next
+ } else {
+ showUsage()
+ }
+ }
+ let lockContents
+ try {
+ lockContents = await fs.promises.readFile(lockFile || 'yarn.lock', 'utf-8')
+ } catch {
+ showUsage()
+ }
+
+ if (isBuilder) {
+ await prefetchYarnDeps(lockContents, verbose)
+ } else {
+ const { stdout: tmpDir } = await exec('mktemp', [ '-d' ])
+
+ try {
+ process.chdir(tmpDir.trim())
+ await prefetchYarnDeps(lockContents, verbose)
+ const { stdout: hash } = await exec('nix-hash', [ '--type', 'sha256', '--base32', tmpDir.trim() ])
+ console.log(hash)
+ } finally {
+ await exec('rm', [ '-rf', tmpDir.trim() ])
+ }
+ }
+}
+
+main()
+ .catch(e => {
+ console.error(e)
+ process.exit(1)
+ })
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/default.nix b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/default.nix
new file mode 100644
index 0000000000..a781dad830
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/default.nix
@@ -0,0 +1,16 @@
+{ invalidateFetcherByDrvHash, fetchYarnDeps, ... }:
+
+{
+ simple = invalidateFetcherByDrvHash fetchYarnDeps {
+ yarnLock = ./simple.lock;
+ sha256 = "sha256-Erdkw2E8wWT09jFNLXGkrdwKl0HuSZWnUDJUrV95vSE=";
+ };
+ gitDep = invalidateFetcherByDrvHash fetchYarnDeps {
+ yarnLock = ./git.lock;
+ sha256 = "sha256-lAqN4LpoE+jgsQO1nDtuORwcVEO7ogEV53jCu2jFJUI=";
+ };
+ githubDep = invalidateFetcherByDrvHash fetchYarnDeps {
+ yarnLock = ./github.lock;
+ sha256 = "sha256-Tsfgyjxz8x6gNmfN0xR7G/NQNoEs4svxRN/N+26vfJU=";
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/git.lock b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/git.lock
new file mode 100644
index 0000000000..9eda5b2c40
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/git.lock
@@ -0,0 +1,7 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"async@git+https://github.com/caolan/async":
+ version "3.2.1"
+ resolved "git+https://github.com/caolan/async#fc9ba651341af5ab974aade6b1640e345912be83"
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/github.lock b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/github.lock
new file mode 100644
index 0000000000..057e043a53
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/github.lock
@@ -0,0 +1,7 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"async@github:caolan/async":
+ version "3.2.1"
+ resolved "https://codeload.github.com/caolan/async/tar.gz/fc9ba651341af5ab974aade6b1640e345912be83"
diff --git a/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/simple.lock b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/simple.lock
new file mode 100644
index 0000000000..db2f4b2be4
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/build-support/node/fetch-yarn-deps/tests/simple.lock
@@ -0,0 +1,8 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+lit-html@1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-1.4.1.tgz#0c6f3ee4ad4eb610a49831787f0478ad8e9ae5e0"
+ integrity sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==
diff --git a/third_party/nixpkgs/pkgs/build-support/rust/default.nix b/third_party/nixpkgs/pkgs/build-support/rust/default.nix
index 2eb45bcafa..3d7057dd7d 100644
--- a/third_party/nixpkgs/pkgs/build-support/rust/default.nix
+++ b/third_party/nixpkgs/pkgs/build-support/rust/default.nix
@@ -1,17 +1,15 @@
-{ stdenv
-, lib
-, buildPackages
+{ lib
+, importCargoLock
+, fetchCargoTarball
+, rust
+, stdenv
+, callPackage
, cacert
+, git
, cargoBuildHook
, cargoCheckHook
, cargoInstallHook
, cargoSetupHook
-, fetchCargoTarball
-, importCargoLock
-, rustPlatform
-, callPackage
-, git
-, rust
, rustc
, libiconv
, windows
@@ -19,12 +17,6 @@
{ name ? "${args.pname}-${args.version}"
- # SRI hash
-, cargoHash ? ""
-
- # Legacy hash
-, cargoSha256 ? ""
-
# Name for the vendored dependencies tarball
, cargoDepsName ? name
@@ -56,7 +48,7 @@
, buildAndTestSubdir ? null
, ... } @ args:
-assert cargoVendorDir == null && cargoLock == null -> cargoSha256 == "" && cargoHash == ""
+assert cargoVendorDir == null && cargoLock == null -> !(args ? cargoSha256) && !(args ? cargoHash)
-> throw "cargoSha256, cargoHash, cargoVendorDir, or cargoLock must be set";
assert buildType == "release" || buildType == "debug";
@@ -68,15 +60,17 @@ let
else fetchCargoTarball ({
inherit src srcs sourceRoot unpackPhase cargoUpdateHook;
name = cargoDepsName;
- hash = cargoHash;
patches = cargoPatches;
- sha256 = cargoSha256;
+ } // lib.optionalAttrs (args ? cargoHash) {
+ hash = args.cargoHash;
+ } // lib.optionalAttrs (args ? cargoSha256) {
+ sha256 = args.cargoSha256;
} // depsExtraArgs)
else null;
# If we have a cargoSha256 fixed-output derivation, validate it at build time
# against the src fixed-output derivation to check consistency.
- validateCargoDeps = !(cargoHash == "" && cargoSha256 == "");
+ validateCargoDeps = args ? cargoHash || args ? cargoSha256;
target = rust.toRustTargetSpec stdenv.hostPlatform;
targetIsJSON = lib.hasSuffix ".json" target;
@@ -88,7 +82,7 @@ let
(lib.removeSuffix ".json" (builtins.baseNameOf "${target}"))
else target;
- sysroot = (callPackage ./sysroot {}) {
+ sysroot = callPackage ./sysroot { } {
inherit target shortTarget;
RUSTFLAGS = args.RUSTFLAGS or "";
originalCargoToml = src + /Cargo.toml; # profile info is later extracted
diff --git a/third_party/nixpkgs/pkgs/build-support/rust/fetchCargoTarball.nix b/third_party/nixpkgs/pkgs/build-support/rust/fetchCargoTarball.nix
index 2e8830b475..c2be9aac82 100644
--- a/third_party/nixpkgs/pkgs/build-support/rust/fetchCargoTarball.nix
+++ b/third_party/nixpkgs/pkgs/build-support/rust/fetchCargoTarball.nix
@@ -22,15 +22,13 @@ in
, srcs ? []
, patches ? []
, sourceRoot ? ""
-, hash ? ""
-, sha256 ? ""
, cargoUpdateHook ? ""
, ...
} @ args:
let hash_ =
- if hash != "" then { outputHashAlgo = null; outputHash = hash; }
- else if sha256 != "" then { outputHashAlgo = "sha256"; outputHash = sha256; }
+ if args ? hash then { outputHashAlgo = null; outputHash = args.hash; }
+ else if args ? sha256 then { outputHashAlgo = "sha256"; outputHash = args.sha256; }
else throw "fetchCargoTarball requires a hash for ${name}";
in stdenv.mkDerivation ({
name = "${name}-vendor.tar.gz";
diff --git a/third_party/nixpkgs/pkgs/data/fonts/bront/default.nix b/third_party/nixpkgs/pkgs/data/fonts/bront/default.nix
new file mode 100644
index 0000000000..d21c820f12
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/data/fonts/bront/default.nix
@@ -0,0 +1,26 @@
+{ stdenvNoCC, lib, fetchFromGitHub }:
+
+stdenvNoCC.mkDerivation {
+ pname = "bront_fonts";
+ version = "unstable-2015-06-28";
+
+ src = fetchFromGitHub {
+ owner = "chrismwendt";
+ repo = "bront";
+ rev = "aef23d9a11416655a8351230edb3c2377061c077";
+ sha256 = "1sx2gv19pgdyccb38sx3qnwszksmva7pqa1c8m35s6cipgjhhgb4";
+ };
+
+ installPhase = ''
+ install -m444 -Dt $out/share/fonts/truetype *Bront.ttf
+ '';
+
+ meta = with lib; {
+ description = "Bront Fonts";
+ longDescription = "Ubuntu Mono Bront and DejaVu Sans Mono Bront fonts.";
+ homepage = "https://github.com/chrismwendt/bront";
+ license = licenses.free;
+ platforms = platforms.all;
+ maintainers = [ maintainers.grburst ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/data/fonts/cascadia-code/default.nix b/third_party/nixpkgs/pkgs/data/fonts/cascadia-code/default.nix
index c223f9366a..b6a1a7a2c1 100644
--- a/third_party/nixpkgs/pkgs/data/fonts/cascadia-code/default.nix
+++ b/third_party/nixpkgs/pkgs/data/fonts/cascadia-code/default.nix
@@ -1,13 +1,13 @@
{ lib, fetchzip }:
let
- version = "2106.17";
+ version = "2108.26";
in
fetchzip {
name = "cascadia-code-${version}";
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaCode-${version}.zip";
- sha256 = "sha256-EsXD6gY3q3KIk37vYPz731lLz5989cd+s5fz5rKIn2k=";
+ sha256 = "1dvwn5rs4ss4rwd64namy8ccz8dagkk84qjg13sxxqizyd5y08h1";
postFetch = ''
mkdir -p $out/share/fonts/
diff --git a/third_party/nixpkgs/pkgs/data/misc/hackage/pin.json b/third_party/nixpkgs/pkgs/data/misc/hackage/pin.json
index ad72f3e357..aaab65085f 100644
--- a/third_party/nixpkgs/pkgs/data/misc/hackage/pin.json
+++ b/third_party/nixpkgs/pkgs/data/misc/hackage/pin.json
@@ -1,6 +1,6 @@
{
- "commit": "67f421ee170f4f161832c146be8ef87499ff0d37",
- "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/67f421ee170f4f161832c146be8ef87499ff0d37.tar.gz",
- "sha256": "0rzwh0iff4xn499vvzv960gmrd85z6amjbbsyhb5qcldcap5jpjs",
- "msg": "Update from Hackage at 2021-10-11T20:00:11Z"
+ "commit": "73463ac080cd55650580d58fe80e5b2dcdfe5a7e",
+ "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/73463ac080cd55650580d58fe80e5b2dcdfe5a7e.tar.gz",
+ "sha256": "1vwlpkrpfj6wdzlv4lwargyakyci81gri70z2jhkpvv3l6adc0gk",
+ "msg": "Update from Hackage at 2021-10-15T10:42:20Z"
}
diff --git a/third_party/nixpkgs/pkgs/data/themes/arc/default.nix b/third_party/nixpkgs/pkgs/data/themes/arc/default.nix
index ea2362c052..ea18da119c 100644
--- a/third_party/nixpkgs/pkgs/data/themes/arc/default.nix
+++ b/third_party/nixpkgs/pkgs/data/themes/arc/default.nix
@@ -15,13 +15,13 @@
stdenv.mkDerivation rec {
pname = "arc-theme";
- version = "20210412";
+ version = "20211018";
src = fetchFromGitHub {
owner = "jnsh";
repo = pname;
rev = version;
- sha256 = "sha256-BNJirtBtdWsIzQfsJsZzg1zFbJEzZPq1j2qZ+1QjRH8=";
+ sha256 = "1rrxm5b7l8kq1h0lm08ck54xljzm8w573mxx904n3rhdg3ri9d63";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/desktops/enlightenment/terminology/default.nix b/third_party/nixpkgs/pkgs/desktops/enlightenment/terminology/default.nix
index 36c449ee9d..e74f91d8d4 100644
--- a/third_party/nixpkgs/pkgs/desktops/enlightenment/terminology/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/enlightenment/terminology/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "terminology";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
- sha256 = "0v74858yvrrfy0l2pq7yn6izvqhpkb9gw2jpd3a3khjwv8kw6frz";
+ url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
+ sha256 = "0imk7cjkcjss3zf4hjwmy54pbizm6l6pq553jcx7bpsnhs56bbsz";
};
nativeBuildInputs = [
@@ -30,11 +30,11 @@ stdenv.mkDerivation rec {
patchShebangs data/colorschemes/*.py
'';
- meta = {
+ meta = with lib; {
description = "Powerful terminal emulator based on EFL";
homepage = "https://www.enlightenment.org/about-terminology";
- license = lib.licenses.bsd2;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
+ license = licenses.bsd2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
index 1a3a67f0d7..617ef1cc38 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/default.nix
@@ -47,9 +47,11 @@ stdenv.mkDerivation rec {
};
patches = lib.optionals withPantheon [
+ # Make this respect dark mode settings from Pantheon
# https://github.com/elementary/browser
- ./dark-style.patch
- ./navigation-buttons.patch
+ # The patch currently differs from upstream (updated for epiphany 40 and 41).
+ ./pantheon-dark-style.patch
+ ./pantheon-navigation-buttons.patch
];
nativeBuildInputs = [
@@ -95,7 +97,9 @@ stdenv.mkDerivation rec {
p11-kit
sqlite
webkitgtk
- ] ++ lib.optional withPantheon pantheon.granite;
+ ] ++ lib.optionals withPantheon [
+ pantheon.granite
+ ];
# Tests need an X display
mesonFlags = [
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/dark-style.patch b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/pantheon-dark-style.patch
similarity index 100%
rename from third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/dark-style.patch
rename to third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/pantheon-dark-style.patch
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/navigation-buttons.patch b/third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/pantheon-navigation-buttons.patch
similarity index 100%
rename from third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/navigation-buttons.patch
rename to third_party/nixpkgs/pkgs/desktops/gnome/core/epiphany/pantheon-navigation-buttons.patch
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/default.nix
index 39eb033833..45812dbc90 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/default.nix
@@ -30,6 +30,7 @@
, gsettings-desktop-schemas
, gnome-desktop
, dbus
+, pantheon
, python3
, texlive
, t1lib
@@ -40,6 +41,7 @@
, supportMultimedia ? true # PDF multimedia
, libgxps
, supportXPS ? true # Open XML Paper Specification via libgxps
+, withPantheon ? false
}:
stdenv.mkDerivation rec {
@@ -53,6 +55,13 @@ stdenv.mkDerivation rec {
sha256 = "lautDW/urJVg2zq4C6fF6rsf3xyg47PJMzmvBUU6JNg=";
};
+ patches = lib.optionals withPantheon [
+ # Make this respect dark mode settings from Pantheon
+ # https://github.com/elementary/evince
+ # The patch currently differs from upstream (updated for evince 41).
+ ./pantheon-dark-style.patch
+ ];
+
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
@@ -96,9 +105,18 @@ stdenv.mkDerivation rec {
poppler
t1lib
texlive.bin.core # kpathsea for DVI support
- ] ++ lib.optional supportXPS libgxps
- ++ lib.optionals supportMultimedia (with gst_all_1; [
- gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ]);
+ ] ++ lib.optionals supportXPS [
+ libgxps
+ ] ++ lib.optionals supportMultimedia (with gst_all_1; [
+ gstreamer
+ gst-plugins-base
+ gst-plugins-good
+ gst-plugins-bad
+ gst-plugins-ugly
+ gst-libav
+ ]) ++ lib.optionals withPantheon [
+ pantheon.granite
+ ];
mesonFlags = [
"-Dnautilus=false"
@@ -128,8 +146,8 @@ stdenv.mkDerivation rec {
on the GNOME Desktop with a single simple application.
'';
- license = lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = teams.gnome.members;
+ maintainers = teams.gnome.members ++ teams.pantheon.members;
};
}
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/pantheon-dark-style.patch b/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/pantheon-dark-style.patch
new file mode 100644
index 0000000000..5e1ef67b08
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/evince/pantheon-dark-style.patch
@@ -0,0 +1,86 @@
+diff --git a/meson.build b/meson.build
+index bcb69cf7..4a18c08c 100644
+--- a/meson.build
++++ b/meson.build
+@@ -162,6 +162,7 @@ gmodule_dep = dependency('gmodule-2.0')
+ gmodule_no_export_dep = dependency('gmodule-no-export-2.0', version: glib_req_version)
+ gtk_dep = dependency('gtk+-3.0', version: gtk_req_version)
+ gthread_dep = dependency('gthread-2.0', version: glib_req_version)
++granite_dep = dependency('granite')
+ # Keep the version here synchronised with subprojects/libhandy.wrap
+ hdy_dep = dependency('libhandy-1', version: hdy_req_version, fallback: ['libhandy', 'libhandy_dep'])
+
+diff --git a/shell/ev-application.c b/shell/ev-application.c
+index e704bda2..d705328c 100644
+--- a/shell/ev-application.c
++++ b/shell/ev-application.c
+@@ -30,6 +30,7 @@
+ #include
+ #include
+ #include
++#include
+ #include
+ #ifdef GDK_WINDOWING_X11
+ #include
+@@ -176,7 +177,7 @@ ev_spawn (const char *uri,
+
+ g_string_append_printf (cmd, " %s", path);
+ g_free (path);
+-
++
+ /* Page label */
+ if (dest) {
+ switch (ev_link_dest_get_dest_type (dest)) {
+@@ -940,6 +941,20 @@ ev_application_migrate_config_dir (EvApplication *application)
+ g_free (old_accels);
+ }
+
++static void
++ev_application_set_prefers_color_scheme ()
++{
++ GtkSettings* gtk_settings = gtk_settings_get_default ();
++ GraniteSettings* granite_settings = granite_settings_get_default ();
++
++ g_object_set (
++ gtk_settings,
++ "gtk-application-prefer-dark-theme",
++ granite_settings_get_prefers_color_scheme (granite_settings) == GRANITE_SETTINGS_COLOR_SCHEME_DARK,
++ NULL
++ );
++}
++
+ static void
+ ev_application_startup (GApplication *gapplication)
+ {
+@@ -992,6 +1007,7 @@ ev_application_startup (GApplication *gapplication)
+
+ EvApplication *application = EV_APPLICATION (gapplication);
+ const gchar **it;
++ GraniteSettings* granite_settings = granite_settings_get_default ();
+
+ g_application_set_resource_base_path (gapplication, "/org/gnome/evince");
+
+@@ -999,6 +1015,11 @@ ev_application_startup (GApplication *gapplication)
+
+ hdy_init ();
+
++ ev_application_set_prefers_color_scheme ();
++
++ g_signal_connect (granite_settings, "notify::prefers-color-scheme",
++ G_CALLBACK(ev_application_set_prefers_color_scheme), NULL);
++
+ for (it = action_accels; it[0]; it += g_strv_length ((gchar **)it) + 1)
+ gtk_application_set_accels_for_action (GTK_APPLICATION (application), it[0], &it[1]);
+ }
+diff --git a/shell/meson.build b/shell/meson.build
+index 7cbc48f2..a3089b13 100644
+--- a/shell/meson.build
++++ b/shell/meson.build
+@@ -52,6 +52,7 @@ sources += gnome.compile_resources(
+ deps = [
+ gdk_pixbuf_dep,
+ gnome_desktop_dep,
++ granite_dep,
+ hdy_dep,
+ libevmisc_dep,
+ libevproperties_dep,
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/default.nix
index 814878d571..89a49e4cec 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/default.nix
@@ -13,6 +13,13 @@ stdenv.mkDerivation rec {
updateScript = gnome.updateScript { packageName = "gnome-backgrounds"; attrPath = "gnome.gnome-backgrounds"; };
};
+ patches = [
+ # Makes the database point to stable paths in /run/current-system/sw/share, which don't decay whenever this package's hash changes.
+ # This assumes a nixos + gnome system, where this package is installed in environment.systemPackages,
+ # and /share outputs are included in environment.pathsToLink.
+ ./stable-dir.patch
+ ];
+
nativeBuildInputs = [ meson ninja pkg-config gettext ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/stable-dir.patch b/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/stable-dir.patch
new file mode 100644
index 0000000000..cbc55e8a5c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/core/gnome-backgrounds/stable-dir.patch
@@ -0,0 +1,9 @@
+diff --git a/backgrounds/meson.build b/backgrounds/meson.build
+index 2175a16..cf521df 100644
+--- a/backgrounds/meson.build
++++ b/backgrounds/meson.build
+@@ -1,5 +1,5 @@
+ dataconf = configuration_data()
+-dataconf.set('BACKGROUNDDIR', backgrounddir)
++dataconf.set('BACKGROUNDDIR', '/run/current-system/sw/share/backgrounds/gnome')
+ dataconf.set('datadir', datadir)
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/collisions.json b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/collisions.json
index 20ddff521c..2b2f6eb277 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/collisions.json
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/collisions.json
@@ -79,6 +79,10 @@
"unredirect@vaina.lt",
"unredirect@aunetx"
],
+ "floating-dock": [
+ "floatingDock@sun.wxg@gmail.com",
+ "floating-dock@nandoferreira_prof@hotmail.com"
+ ],
"extension-list": [
"extension-list@tu.berry",
"screen-lock@garciabaameiro.com"
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/dash-to-dock/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/dash-to-dock/default.nix
deleted file mode 100644
index 5b1d110d46..0000000000
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/dash-to-dock/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, glib
-, gettext
-, sassc
-}:
-
-stdenv.mkDerivation rec {
- pname = "gnome-shell-extension-dash-to-dock";
- version = "unstable-2021-10-03";
-
- # temporarily switched to commit hash because GNOME 40 version is not released yet.
- src = fetchFromGitHub {
- owner = "micheleg";
- repo = "dash-to-dock";
- rev = "9605dd69fe86d4f92416299c3f62605e75827dd3";
- sha256 = "0vrkiq5z2f11gqlfyis2rsnp6j25hwsp24s21vr55qkzkfszsigg";
- };
-
- nativeBuildInputs = [
- glib
- gettext
- sassc
- ];
-
- makeFlags = [
- "INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions"
- ];
-
- passthru = {
- extensionUuid = "dash-to-dock@micxgx.gmail.com";
- extensionPortalSlug = "dash-to-dock";
- };
-
- meta = with lib; {
- description = "A dock for the Gnome Shell";
- homepage = "https://micheleg.github.io/dash-to-dock/";
- license = licenses.gpl2;
- maintainers = with maintainers; [ eperuffo jtojnar ];
- };
-}
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionOverrides.nix b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionOverrides.nix
index 17fec38a6e..058f0c54ad 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionOverrides.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionOverrides.nix
@@ -11,6 +11,10 @@
# the upstream repository's sources.
super: super // {
+ "dash-to-dock@micxgx.gmail.com" = super."dash-to-dock@micxgx.gmail.com".overrideAttrs (old: {
+ meta.maintainers = with lib.maintainers; [ eperuffo jtojnar rhoriguchi ];
+ });
+
"display-brightness-ddcutil@themightydeity.github.com" = super."display-brightness-ddcutil@themightydeity.github.com".overrideAttrs (old: {
# Has a hard-coded path to a run-time dependency
# https://github.com/NixOS/nixpkgs/issues/136111
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionRenames.nix b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionRenames.nix
index 03e8a6eafc..c7bc0b65ab 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionRenames.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensionRenames.nix
@@ -38,6 +38,8 @@
"extension-list@tu.berry" = "extension-list";
"screen-lock@garciabaameiro.com" = "screen-lock"; # Don't know why they got 'extension-list' as slug
+ "floatingDock@sun.wxg@gmail.com" = "floating-dock-2";
+ "floating-dock@nandoferreira_prof@hotmail.com" = "floating-dock";
# ############################################################################
# These are conflicts for 3.38 extensions. They will very probably come back
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensions.json b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensions.json
index 8ca57305a0..e05c4ce74b 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensions.json
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/extensions.json
@@ -10,9 +10,10 @@
, {"uuid": "native-window-placement@gnome-shell-extensions.gcampax.github.com", "name": "Native Window Placement", "pname": "native-window-placement", "description": "Arrange windows in overview in a more compact way.", "link": "https://extensions.gnome.org/extension/18/native-window-placement/", "shell_version_map": {"38": {"version": "45", "sha256": "15vhdcfrfbsinp0m1jfygjl4djccafhvgwc1rsi321jvykqhajmm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFycmFuZ2Ugd2luZG93cyBpbiBvdmVydmlldyBpbiBhIG1vcmUgY29tcGFjdCB3YXkuIiwKICAiZXh0ZW5zaW9uLWlkIjogIm5hdGl2ZS13aW5kb3ctcGxhY2VtZW50IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiTmF0aXZlIFdpbmRvdyBQbGFjZW1lbnQiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgIndlcG1hc2NoZGFAZ214LmRlIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5uYXRpdmUtd2luZG93LXBsYWNlbWVudCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuZ25vbWUub3JnL0dOT01FL2dub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJ1dWlkIjogIm5hdGl2ZS13aW5kb3ctcGxhY2VtZW50QGdub21lLXNoZWxsLWV4dGVuc2lvbnMuZ2NhbXBheC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDQ1Cn0="}, "40": {"version": "47", "sha256": "1v424l1svrmw5yikxgbi1j14xx307dg9zy21f34rv2il8bf72vk4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFycmFuZ2Ugd2luZG93cyBpbiBvdmVydmlldyBpbiBhIG1vcmUgY29tcGFjdCB3YXkuIiwKICAiZXh0ZW5zaW9uLWlkIjogIm5hdGl2ZS13aW5kb3ctcGxhY2VtZW50IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiTmF0aXZlIFdpbmRvdyBQbGFjZW1lbnQiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgIndlcG1hc2NoZGFAZ214LmRlIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5uYXRpdmUtd2luZG93LXBsYWNlbWVudCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9HTk9NRS9nbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAidXVpZCI6ICJuYXRpdmUtd2luZG93LXBsYWNlbWVudEBnbm9tZS1zaGVsbC1leHRlbnNpb25zLmdjYW1wYXguZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA0Nwp9"}}}
, {"uuid": "user-theme@gnome-shell-extensions.gcampax.github.com", "name": "User Themes", "pname": "user-themes", "description": "Load shell themes from user directory.", "link": "https://extensions.gnome.org/extension/19/user-themes/", "shell_version_map": {"38": {"version": "42", "sha256": "0jykwcd8pmvr03dm2vala6nzzhi9i83c11svgx8wymfvxr5qrya8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvYWQgc2hlbGwgdGhlbWVzIGZyb20gdXNlciBkaXJlY3RvcnkuIiwKICAiZXh0ZW5zaW9uLWlkIjogInVzZXItdGhlbWUiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAibmFtZSI6ICJVc2VyIFRoZW1lcyIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAiam9obi5zdG93ZXJzQGdtYWlsLmNvbSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudXNlci10aGVtZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuZ25vbWUub3JnL0dOT01FL2dub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJ1dWlkIjogInVzZXItdGhlbWVAZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5nY2FtcGF4LmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNDIKfQ=="}, "40": {"version": "46", "sha256": "07gbzvbnxah5bws5vc6sivw43j0rgm23n6vsp4a64z7s8s2ay7sm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvYWQgc2hlbGwgdGhlbWVzIGZyb20gdXNlciBkaXJlY3RvcnkuIiwKICAiZXh0ZW5zaW9uLWlkIjogInVzZXItdGhlbWUiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAibmFtZSI6ICJVc2VyIFRoZW1lcyIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAiam9obi5zdG93ZXJzQGdtYWlsLmNvbSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudXNlci10aGVtZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9HTk9NRS9nbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAidXVpZCI6ICJ1c2VyLXRoZW1lQGdub21lLXNoZWxsLWV4dGVuc2lvbnMuZ2NhbXBheC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDQ2Cn0="}}}
, {"uuid": "workspace-indicator@gnome-shell-extensions.gcampax.github.com", "name": "Workspace Indicator", "pname": "workspace-indicator", "description": "Put an indicator on the panel signaling in which workspace you are, and give you the possibility of switching to another one.", "link": "https://extensions.gnome.org/extension/21/workspace-indicator/", "shell_version_map": {"38": {"version": "45", "sha256": "16y7zhlsj0qjwwj78fvcr81m7081i2y30gwjm35qahr3j0gfrk16", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlB1dCBhbiBpbmRpY2F0b3Igb24gdGhlIHBhbmVsIHNpZ25hbGluZyBpbiB3aGljaCB3b3Jrc3BhY2UgeW91IGFyZSwgYW5kIGdpdmUgeW91IHRoZSBwb3NzaWJpbGl0eSBvZiBzd2l0Y2hpbmcgdG8gYW5vdGhlciBvbmUuIiwKICAiZXh0ZW5zaW9uLWlkIjogIndvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAibmFtZSI6ICJXb3Jrc3BhY2UgSW5kaWNhdG9yIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJlcmljay5yZWRAZ21haWwuY29tIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3Jrc3BhY2UtaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5nbm9tZS5vcmcvR05PTUUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgInV1aWQiOiAid29ya3NwYWNlLWluZGljYXRvckBnbm9tZS1zaGVsbC1leHRlbnNpb25zLmdjYW1wYXguZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA0NQp9"}, "40": {"version": "49", "sha256": "0483k1scq0lwfpg3i3yww7kfzv0qwlp6aqyikkacivh0nkq6v2iy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlB1dCBhbiBpbmRpY2F0b3Igb24gdGhlIHBhbmVsIHNpZ25hbGluZyBpbiB3aGljaCB3b3Jrc3BhY2UgeW91IGFyZSwgYW5kIGdpdmUgeW91IHRoZSBwb3NzaWJpbGl0eSBvZiBzd2l0Y2hpbmcgdG8gYW5vdGhlciBvbmUuIiwKICAiZXh0ZW5zaW9uLWlkIjogIndvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAibmFtZSI6ICJXb3Jrc3BhY2UgSW5kaWNhdG9yIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJlcmljay5yZWRAZ21haWwuY29tIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3Jrc3BhY2UtaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuZ25vbWUub3JnL0dOT01FL2dub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJ1dWlkIjogIndvcmtzcGFjZS1pbmRpY2F0b3JAZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5nY2FtcGF4LmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNDkKfQ=="}}}
-, {"uuid": "gTile@vibou", "name": "gTile", "pname": "gtile", "description": "Tile windows on a grid.", "link": "https://extensions.gnome.org/extension/28/gtile/", "shell_version_map": {"38": {"version": "45", "sha256": "1fm4ljkw0l4w8z1qd9i30nd7khvzjvc0kykv659xkqj7lghyk02k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGUgd2luZG93cyBvbiBhIGdyaWQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ3RpbGVAdmlib3UiLAogICJuYW1lIjogImdUaWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmd0aWxlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2dUaWxlIiwKICAidXVpZCI6ICJnVGlsZUB2aWJvdSIsCiAgInZlcnNpb24iOiA0NQp9"}, "40": {"version": "45", "sha256": "1fm4ljkw0l4w8z1qd9i30nd7khvzjvc0kykv659xkqj7lghyk02k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGUgd2luZG93cyBvbiBhIGdyaWQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ3RpbGVAdmlib3UiLAogICJuYW1lIjogImdUaWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmd0aWxlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2dUaWxlIiwKICAidXVpZCI6ICJnVGlsZUB2aWJvdSIsCiAgInZlcnNpb24iOiA0NQp9"}}}
-, {"uuid": "lockkeys@vaina.lt", "name": "Lock Keys", "pname": "lock-keys", "description": "Numlock & Capslock status on the panel", "link": "https://extensions.gnome.org/extension/36/lock-keys/", "shell_version_map": {"38": {"version": "44", "sha256": "02xaqp1sgs15pvg4gmldx1m6zjk00ax1kivnafggpdw2swzf65v5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk51bWxvY2sgJiBDYXBzbG9jayBzdGF0dXMgb24gdGhlIHBhbmVsIiwKICAibmFtZSI6ICJMb2NrIEtleXMiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIkthemltaWVyYXMgVmFpbmEsIFBpZXJyZSBPc3NtYW4sIGVyZ3VpbGxlLCBqb25uaXVzLCBQaGlsaXBwIFdvbGZlciwgTWFyaXVzeiBMaXNvd3NraSwgQ3Jpc3RpYW4gQmVyb2l6YSwgd2FybXN1bjAyMjAsIFJhc211cyBLYWosIFBhYmxvIE1hcnRpbi1Hb21leiBCb3Vza2EsIFJhcGhhXHUwMGVibCBSb2NoZXQsIEx1aXogTmlja2VsLCBKZXNzZSwgRHVcdTAxNjFhbiBLYXppayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9rYXp5c21hc3Rlci9nbm9tZS1zaGVsbC1leHRlbnNpb24tbG9ja2tleXMiLAogICJ1dWlkIjogImxvY2trZXlzQHZhaW5hLmx0IiwKICAidmVyc2lvbiI6IDQ0Cn0="}, "40": {"version": "44", "sha256": "02xaqp1sgs15pvg4gmldx1m6zjk00ax1kivnafggpdw2swzf65v5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk51bWxvY2sgJiBDYXBzbG9jayBzdGF0dXMgb24gdGhlIHBhbmVsIiwKICAibmFtZSI6ICJMb2NrIEtleXMiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIkthemltaWVyYXMgVmFpbmEsIFBpZXJyZSBPc3NtYW4sIGVyZ3VpbGxlLCBqb25uaXVzLCBQaGlsaXBwIFdvbGZlciwgTWFyaXVzeiBMaXNvd3NraSwgQ3Jpc3RpYW4gQmVyb2l6YSwgd2FybXN1bjAyMjAsIFJhc211cyBLYWosIFBhYmxvIE1hcnRpbi1Hb21leiBCb3Vza2EsIFJhcGhhXHUwMGVibCBSb2NoZXQsIEx1aXogTmlja2VsLCBKZXNzZSwgRHVcdTAxNjFhbiBLYXppayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9rYXp5c21hc3Rlci9nbm9tZS1zaGVsbC1leHRlbnNpb24tbG9ja2tleXMiLAogICJ1dWlkIjogImxvY2trZXlzQHZhaW5hLmx0IiwKICAidmVyc2lvbiI6IDQ0Cn0="}}}
+, {"uuid": "gTile@vibou", "name": "gTile", "pname": "gtile", "description": "Tile windows on a grid.", "link": "https://extensions.gnome.org/extension/28/gtile/", "shell_version_map": {"38": {"version": "47", "sha256": "0l6b2sl2sfcq2292nbxsq6qq3qwl8ck5ixkzzv2wpazlikkjdwms", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGUgd2luZG93cyBvbiBhIGdyaWQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ3RpbGVAdmlib3UiLAogICJuYW1lIjogImdUaWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmd0aWxlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9nVGlsZSIsCiAgInV1aWQiOiAiZ1RpbGVAdmlib3UiLAogICJ2ZXJzaW9uIjogNDcKfQ=="}, "40": {"version": "47", "sha256": "0l6b2sl2sfcq2292nbxsq6qq3qwl8ck5ixkzzv2wpazlikkjdwms", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGUgd2luZG93cyBvbiBhIGdyaWQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ3RpbGVAdmlib3UiLAogICJuYW1lIjogImdUaWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmd0aWxlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9nVGlsZSIsCiAgInV1aWQiOiAiZ1RpbGVAdmlib3UiLAogICJ2ZXJzaW9uIjogNDcKfQ=="}}}
+, {"uuid": "lockkeys@vaina.lt", "name": "Lock Keys", "pname": "lock-keys", "description": "Numlock & Capslock status on the panel", "link": "https://extensions.gnome.org/extension/36/lock-keys/", "shell_version_map": {"38": {"version": "45", "sha256": "0cqkhi8k8lywjsy9g6nbl5kbv8bvz4nql16k1ciajar4443gbz7i", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk51bWxvY2sgJiBDYXBzbG9jayBzdGF0dXMgb24gdGhlIHBhbmVsIiwKICAibmFtZSI6ICJMb2NrIEtleXMiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIkthemltaWVyYXMgVmFpbmEsIFBpZXJyZSBPc3NtYW4sIGVyZ3VpbGxlLCBqb25uaXVzLCBQaGlsaXBwIFdvbGZlciwgTWFyaXVzeiBMaXNvd3NraSwgQ3Jpc3RpYW4gQmVyb2l6YSwgd2FybXN1bjAyMjAsIFJhc211cyBLYWosIFBhYmxvIE1hcnRpbi1Hb21leiBCb3Vza2EsIFJhcGhhXHUwMGVibCBSb2NoZXQsIEx1aXogTmlja2VsLCBKZXNzZSwgRHVcdTAxNjFhbiBLYXppayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2F6eXNtYXN0ZXIvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWxvY2trZXlzIiwKICAidXVpZCI6ICJsb2Nra2V5c0B2YWluYS5sdCIsCiAgInZlcnNpb24iOiA0NQp9"}, "40": {"version": "45", "sha256": "0cqkhi8k8lywjsy9g6nbl5kbv8bvz4nql16k1ciajar4443gbz7i", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk51bWxvY2sgJiBDYXBzbG9jayBzdGF0dXMgb24gdGhlIHBhbmVsIiwKICAibmFtZSI6ICJMb2NrIEtleXMiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIkthemltaWVyYXMgVmFpbmEsIFBpZXJyZSBPc3NtYW4sIGVyZ3VpbGxlLCBqb25uaXVzLCBQaGlsaXBwIFdvbGZlciwgTWFyaXVzeiBMaXNvd3NraSwgQ3Jpc3RpYW4gQmVyb2l6YSwgd2FybXN1bjAyMjAsIFJhc211cyBLYWosIFBhYmxvIE1hcnRpbi1Hb21leiBCb3Vza2EsIFJhcGhhXHUwMGVibCBSb2NoZXQsIEx1aXogTmlja2VsLCBKZXNzZSwgRHVcdTAxNjFhbiBLYXppayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2F6eXNtYXN0ZXIvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWxvY2trZXlzIiwKICAidXVpZCI6ICJsb2Nra2V5c0B2YWluYS5sdCIsCiAgInZlcnNpb24iOiA0NQp9"}}}
, {"uuid": "putWindow@clemens.lab21.org", "name": "Put Windows", "pname": "put-windows", "description": "Fully customizable replacement for the old compiz put plugin. \n * Move windows to left/right side, bottom/top, center or corner \n * Move window to other screen \n * Select focused window using the keyboard \n * Application based window placement \n\n Please check github if your gnome-shell version is not supported", "link": "https://extensions.gnome.org/extension/39/put-windows/", "shell_version_map": {"38": {"version": "32", "sha256": "1n4hk2sqdbcn25lxk02vljc9xxbidragimvc4b6dj2m72625lx67", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZ1bGx5IGN1c3RvbWl6YWJsZSByZXBsYWNlbWVudCBmb3IgdGhlIG9sZCBjb21waXogcHV0IHBsdWdpbi4gXG4gKiBNb3ZlIHdpbmRvd3MgdG8gbGVmdC9yaWdodCBzaWRlLCBib3R0b20vdG9wLCBjZW50ZXIgb3IgY29ybmVyIFxuICogTW92ZSB3aW5kb3cgdG8gb3RoZXIgc2NyZWVuIFxuICogU2VsZWN0IGZvY3VzZWQgd2luZG93IHVzaW5nIHRoZSBrZXlib2FyZCBcbiAqIEFwcGxpY2F0aW9uIGJhc2VkIHdpbmRvdyBwbGFjZW1lbnQgXG5cbiBQbGVhc2UgY2hlY2sgZ2l0aHViIGlmIHlvdXIgZ25vbWUtc2hlbGwgdmVyc2lvbiBpcyBub3Qgc3VwcG9ydGVkIiwKICAiZ2V0dGV4dC1kb21haW4iOiAicHV0V2luZG93IiwKICAibmFtZSI6ICJQdXQgV2luZG93cyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5vcmctbGFiMjEtcHV0d2luZG93IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbmVnZXN0aS9nbm9tZS1zaGVsbC1leHRlbnNpb25zLW5lZ2VzdGkiLAogICJ1dWlkIjogInB1dFdpbmRvd0BjbGVtZW5zLmxhYjIxLm9yZyIsCiAgInZlcnNpb24iOiAzMgp9"}}}
+, {"uuid": "permanent-notifications@bonzini.gnu.org", "name": "Permanent notifications", "pname": "permanent-notifications", "description": "Keep notifications on the message tray until clicked", "link": "https://extensions.gnome.org/extension/41/permanent-notifications/", "shell_version_map": {"40": {"version": "5", "sha256": "1dwqag1sp9gs030qjngzw3ifs1gwamq7c18zh61jzc18xv3f8j0z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIktlZXAgbm90aWZpY2F0aW9ucyBvbiB0aGUgbWVzc2FnZSB0cmF5IHVudGlsIGNsaWNrZWQiLAogICJsb2NhbGVkaXIiOiAiL3Vzci9zaGFyZS9sb2NhbGUiLAogICJuYW1lIjogIlBlcm1hbmVudCBub3RpZmljYXRpb25zIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJib256aW5pQGdudS5vcmciCiAgXSwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjIiLAogICAgIjMuMi4xIiwKICAgICIzLjQiLAogICAgIjMuMy45MCIsCiAgICAiMy4zLjkxIiwKICAgICIzLjMuOTIiLAogICAgIjMuNiIsCiAgICAiMy40LjEiLAogICAgIjMuMy45MyIsCiAgICAiMy4zLjk0IiwKICAgICIzLjgiLAogICAgIjMuMTAiLAogICAgIjQwLjAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9ib256aW5pL2dub21lLXNoZWxsLXBlcm1hbmVudC1ub3RpZmljYXRpb25zIiwKICAidXVpZCI6ICJwZXJtYW5lbnQtbm90aWZpY2F0aW9uc0Bib256aW5pLmdudS5vcmciLAogICJ2ZXJzaW9uIjogNQp9"}}}
, {"uuid": "gnome-shell-trash-extension", "name": "Trash", "pname": "trash", "description": "A Trash button for the GNOME shell panel", "link": "https://extensions.gnome.org/extension/48/trash/", "shell_version_map": {"38": {"version": "18", "sha256": "1cysvxrgi7lnig7d8blhqqbxz0phd4fvn7nww6zpihjnw32rvm4z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgVHJhc2ggYnV0dG9uIGZvciB0aGUgR05PTUUgc2hlbGwgcGFuZWwiLAogICJsb2NhbGVkaXIiOiAibG9jYWxlIiwKICAibmFtZSI6ICJUcmFzaCIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiAiQXhlbCB2b24gQmVydG9sZGkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9iZXJ0b2xkaWEvZ25vbWUtc2hlbGwtdHJhc2gtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJnbm9tZS1zaGVsbC10cmFzaC1leHRlbnNpb24iLAogICJ2ZXJzaW9uIjogMTgKfQ=="}}}
, {"uuid": "RecentItems@bananenfisch.net", "name": "Recent Items", "pname": "recent-items", "description": "Adds an icon for recently used items at the top panel; clear list by click; left click: open file, right click: open containing folder; Settings for: number of items, number of items under \"more\" and blacklisting options are defined at the top of extension.js (see https://github.com/bananenfisch/RecentItems for more infos).", "link": "https://extensions.gnome.org/extension/72/recent-items/", "shell_version_map": {"40": {"version": "20", "sha256": "0ys8lanv0xxbwfmqkfvdqvhbnv4vfjpzvpqjj11c1lxbv4wp2mbj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYW4gaWNvbiBmb3IgcmVjZW50bHkgdXNlZCBpdGVtcyBhdCB0aGUgdG9wIHBhbmVsOyBjbGVhciBsaXN0IGJ5IGNsaWNrOyBsZWZ0IGNsaWNrOiBvcGVuIGZpbGUsIHJpZ2h0IGNsaWNrOiBvcGVuIGNvbnRhaW5pbmcgZm9sZGVyOyBTZXR0aW5ncyBmb3I6IG51bWJlciBvZiBpdGVtcywgbnVtYmVyIG9mIGl0ZW1zIHVuZGVyIFwibW9yZVwiIGFuZCBibGFja2xpc3Rpbmcgb3B0aW9ucyBhcmUgZGVmaW5lZCBhdCB0aGUgdG9wIG9mIGV4dGVuc2lvbi5qcyAoc2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9iYW5hbmVuZmlzY2gvUmVjZW50SXRlbXMgZm9yIG1vcmUgaW5mb3MpLiIsCiAgIm5hbWUiOiAiUmVjZW50IEl0ZW1zIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHA6Ly93d3cuYmFuYW5lbmZpc2NoLm5ldC9nbm9tZSIsCiAgInV1aWQiOiAiUmVjZW50SXRlbXNAYmFuYW5lbmZpc2NoLm5ldCIsCiAgInZlcnNpb24iOiAyMAp9"}}}
, {"uuid": "lockscreen@sri.ramkrishna.me", "name": "Lock Screen", "pname": "lock-screen", "description": "Add lock icon to the panel and lock the screen instead of using ctrl-alt-l", "link": "https://extensions.gnome.org/extension/83/lock-screen/", "shell_version_map": {"40": {"version": "13", "sha256": "1zlc6m3mai884mkgyg4mwvb7dc3wwpgysbkpfqw35cxpxf7chfk2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBsb2NrIGljb24gdG8gdGhlIHBhbmVsIGFuZCBsb2NrIHRoZSBzY3JlZW4gaW5zdGVhZCBvZiB1c2luZyBjdHJsLWFsdC1sIiwKICAibmFtZSI6ICJMb2NrIFNjcmVlbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xMCIsCiAgICAiMy4xMiIsCiAgICAiMy4xNCIsCiAgICAiMy4xNiIsCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3NyYW1rcmlzaG5hL2dub21lMy1leHRlbnNpb25zIiwKICAidXVpZCI6ICJsb2Nrc2NyZWVuQHNyaS5yYW1rcmlzaG5hLm1lIiwKICAidmVyc2lvbiI6IDEzCn0="}}}
@@ -22,16 +23,16 @@
, {"uuid": "system-monitor@paradoxxx.zero.gmail.com", "name": "system-monitor", "pname": "system-monitor", "description": "Display system information in GNOME Shell status bar, such as memory, CPU, disk and battery usages, network rates…", "link": "https://extensions.gnome.org/extension/120/system-monitor/", "shell_version_map": {"40": {"version": "40", "sha256": "05xmpbwwjzax5y7p7a492k6mmv9rjiyinnrfkzrzm16yncn3mbvj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgc3lzdGVtIGluZm9ybWF0aW9uIGluIEdOT01FIFNoZWxsIHN0YXR1cyBiYXIsIHN1Y2ggYXMgbWVtb3J5LCBDUFUsIGRpc2sgYW5kIGJhdHRlcnkgdXNhZ2VzLCBuZXR3b3JrIHJhdGVzXHUyMDI2IiwKICAiZ2V0dGV4dC1kb21haW4iOiAic3lzdGVtLW1vbml0b3IiLAogICJuYW1lIjogInN5c3RlbS1tb25pdG9yIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnN5c3RlbS1tb25pdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3BhcmFkb3h4eHplcm8vZ25vbWUtc2hlbGwtc3lzdGVtLW1vbml0b3ItYXBwbGV0IiwKICAidXVpZCI6ICJzeXN0ZW0tbW9uaXRvckBwYXJhZG94eHguemVyby5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogNDAKfQ=="}}}
, {"uuid": "Fuzzy_Clock@dallagi", "name": "Fuzzy Clock", "pname": "fuzzy-clock", "description": "A human-readable clock for the gnome-shell panel", "link": "https://extensions.gnome.org/extension/202/fuzzy-clock/", "shell_version_map": {"38": {"version": "9", "sha256": "1cga3192balji63zmbbyixb4r53j48zhil4hnv57l3b25k4rmk0i", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgaHVtYW4tcmVhZGFibGUgY2xvY2sgZm9yIHRoZSBnbm9tZS1zaGVsbCBwYW5lbCIsCiAgIm5hbWUiOiAiRnV6enkgQ2xvY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9kYWxsYWdpL2dub21lLXNoZWxsLWZ1enp5LWNsb2NrIiwKICAidXVpZCI6ICJGdXp6eV9DbG9ja0BkYWxsYWdpIiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
, {"uuid": "PersianCalendar@oxygenws.com", "name": "Persian Calendar", "pname": "persian-calendar", "description": "Shows Persian date in the top panel.\n\nIt shows:\n1- Persian calendar\n2- It can show, today is a holiday or not!\n3- Show notification onDayChanged!\n4- Date converter between Persian, Gregorian and Lunar Hijri\n5- Events:\n5-1- Official solar events.\n5-2- Official lunar events.\n5-3- Official international events.\n5-4- Traditional Persian events.\n5-5- Persian personages.\n\nPlease \"rate\" here and \"star\" the project in GitHub.\nPlease open an issue in GitHub if you've found something or have an idea!", "link": "https://extensions.gnome.org/extension/240/persian-calendar/", "shell_version_map": {"38": {"version": "73", "sha256": "14p27d2h58jam7h97y06safsc2c8rwmjy74nak5w9cv7s0wx4kar", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIFBlcnNpYW4gZGF0ZSBpbiB0aGUgdG9wIHBhbmVsLlxuXG5JdCBzaG93czpcbjEtIFBlcnNpYW4gY2FsZW5kYXJcbjItIEl0IGNhbiBzaG93LCB0b2RheSBpcyBhIGhvbGlkYXkgb3Igbm90IVxuMy0gU2hvdyBub3RpZmljYXRpb24gb25EYXlDaGFuZ2VkIVxuNC0gRGF0ZSBjb252ZXJ0ZXIgYmV0d2VlbiBQZXJzaWFuLCBHcmVnb3JpYW4gYW5kIEx1bmFyIEhpanJpXG41LSBFdmVudHM6XG41LTEtIE9mZmljaWFsIHNvbGFyIGV2ZW50cy5cbjUtMi0gT2ZmaWNpYWwgbHVuYXIgZXZlbnRzLlxuNS0zLSBPZmZpY2lhbCBpbnRlcm5hdGlvbmFsIGV2ZW50cy5cbjUtNC0gVHJhZGl0aW9uYWwgUGVyc2lhbiBldmVudHMuXG41LTUtIFBlcnNpYW4gcGVyc29uYWdlcy5cblxuUGxlYXNlIFwicmF0ZVwiIGhlcmUgYW5kIFwic3RhclwiIHRoZSBwcm9qZWN0IGluIEdpdEh1Yi5cblBsZWFzZSBvcGVuIGFuIGlzc3VlIGluIEdpdEh1YiBpZiB5b3UndmUgZm91bmQgc29tZXRoaW5nIG9yIGhhdmUgYW4gaWRlYSEiLAogICJuYW1lIjogIlBlcnNpYW4gQ2FsZW5kYXIiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIk9taWQgTW90dGFnaGkgUmFkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb21pZC9QZXJzaWFuLUNhbGVuZGFyLWZvci1Hbm9tZS1TaGVsbCIsCiAgInV1aWQiOiAiUGVyc2lhbkNhbGVuZGFyQG94eWdlbndzLmNvbSIsCiAgInZlcnNpb24iOiA3Mwp9"}, "40": {"version": "89", "sha256": "1szb28inm12glf7q79rxhm0qbpysdjq9vn0z329z9c7qv3qhndn6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIFBlcnNpYW4gZGF0ZSBpbiB0aGUgdG9wIHBhbmVsLlxuXG5JdCBzaG93czpcbjEtIFBlcnNpYW4gY2FsZW5kYXJcbjItIEl0IGNhbiBzaG93LCB0b2RheSBpcyBhIGhvbGlkYXkgb3Igbm90IVxuMy0gU2hvdyBub3RpZmljYXRpb24gb25EYXlDaGFuZ2VkIVxuNC0gRGF0ZSBjb252ZXJ0ZXIgYmV0d2VlbiBQZXJzaWFuLCBHcmVnb3JpYW4gYW5kIEx1bmFyIEhpanJpXG41LSBFdmVudHM6XG41LTEtIE9mZmljaWFsIHNvbGFyIGV2ZW50cy5cbjUtMi0gT2ZmaWNpYWwgbHVuYXIgZXZlbnRzLlxuNS0zLSBPZmZpY2lhbCBpbnRlcm5hdGlvbmFsIGV2ZW50cy5cbjUtNC0gVHJhZGl0aW9uYWwgUGVyc2lhbiBldmVudHMuXG41LTUtIFBlcnNpYW4gcGVyc29uYWdlcy5cblxuUGxlYXNlIFwicmF0ZVwiIGhlcmUgYW5kIFwic3RhclwiIHRoZSBwcm9qZWN0IGluIEdpdEh1Yi5cblBsZWFzZSBvcGVuIGFuIGlzc3VlIGluIEdpdEh1YiBpZiB5b3UndmUgZm91bmQgc29tZXRoaW5nIG9yIGhhdmUgYW4gaWRlYSEiLAogICJuYW1lIjogIlBlcnNpYW4gQ2FsZW5kYXIiLAogICJvcmlnaW5hbC1hdXRob3JzIjogIk9taWQgTW90dGFnaGkgUmFkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9vbWlkL1BlcnNpYW4tQ2FsZW5kYXItZm9yLUdub21lLVNoZWxsIiwKICAidXVpZCI6ICJQZXJzaWFuQ2FsZW5kYXJAb3h5Z2Vud3MuY29tIiwKICAidmVyc2lvbiI6IDg5Cn0="}}}
-, {"uuid": "kimpanel@kde.org", "name": "Input Method Panel", "pname": "kimpanel", "description": "Input Method Panel using KDE's kimpanel protocol for Gnome-Shell", "link": "https://extensions.gnome.org/extension/261/kimpanel/", "shell_version_map": {"38": {"version": "59", "sha256": "0rh2in9cm9khvmhhzyyw98z6bwvv95v59zcapkjpd7kbs38hqdw2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklucHV0IE1ldGhvZCBQYW5lbCB1c2luZyBLREUncyBraW1wYW5lbCBwcm90b2NvbCBmb3IgR25vbWUtU2hlbGwiLAogICJleHRlbnNpb24taWQiOiAia2ltcGFuZWwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zLWtpbXBhbmVsIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJJbnB1dCBNZXRob2QgUGFuZWwiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMua2ltcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS93ZW5neHQvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWtpbXBhbmVsIiwKICAidXVpZCI6ICJraW1wYW5lbEBrZGUub3JnIiwKICAidmVyc2lvbiI6IDU5Cn0="}, "40": {"version": "62", "sha256": "18nl9m74849vgdljjcickwsa4anrwl1b1p58l7pqw9pv4m08myn7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklucHV0IE1ldGhvZCBQYW5lbCB1c2luZyBLREUncyBraW1wYW5lbCBwcm90b2NvbCBmb3IgR25vbWUtU2hlbGwiLAogICJleHRlbnNpb24taWQiOiAia2ltcGFuZWwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zLWtpbXBhbmVsIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJJbnB1dCBNZXRob2QgUGFuZWwiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMua2ltcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwLjAiLAogICAgIjQwLmJldGEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS93ZW5neHQvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWtpbXBhbmVsIiwKICAidXVpZCI6ICJraW1wYW5lbEBrZGUub3JnIiwKICAidmVyc2lvbiI6IDYyCn0="}}}
+, {"uuid": "kimpanel@kde.org", "name": "Input Method Panel", "pname": "kimpanel", "description": "Input Method Panel using KDE's kimpanel protocol for Gnome-Shell", "link": "https://extensions.gnome.org/extension/261/kimpanel/", "shell_version_map": {"38": {"version": "59", "sha256": "0rh2in9cm9khvmhhzyyw98z6bwvv95v59zcapkjpd7kbs38hqdw2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklucHV0IE1ldGhvZCBQYW5lbCB1c2luZyBLREUncyBraW1wYW5lbCBwcm90b2NvbCBmb3IgR25vbWUtU2hlbGwiLAogICJleHRlbnNpb24taWQiOiAia2ltcGFuZWwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zLWtpbXBhbmVsIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJJbnB1dCBNZXRob2QgUGFuZWwiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMua2ltcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS93ZW5neHQvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWtpbXBhbmVsIiwKICAidXVpZCI6ICJraW1wYW5lbEBrZGUub3JnIiwKICAidmVyc2lvbiI6IDU5Cn0="}, "40": {"version": "67", "sha256": "0w6dirqr2apg95c8912a7qx5msfsqjrma2f6aq1k3a3dqzkavzm0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklucHV0IE1ldGhvZCBQYW5lbCB1c2luZyBLREUncyBraW1wYW5lbCBwcm90b2NvbCBmb3IgR25vbWUtU2hlbGwiLAogICJleHRlbnNpb24taWQiOiAia2ltcGFuZWwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zLWtpbXBhbmVsIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJJbnB1dCBNZXRob2QgUGFuZWwiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMua2ltcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3dlbmd4dC9nbm9tZS1zaGVsbC1leHRlbnNpb24ta2ltcGFuZWwiLAogICJ1dWlkIjogImtpbXBhbmVsQGtkZS5vcmciLAogICJ2ZXJzaW9uIjogNjcKfQ=="}}}
, {"uuid": "impatience@gfxmonk.net", "name": "Impatience", "pname": "impatience", "description": "Speed up the gnome-shell animation speed", "link": "https://extensions.gnome.org/extension/277/impatience/", "shell_version_map": {"40": {"version": "17", "sha256": "10zjxf8swp3n34q3mdid4ni109r1274c2iyd8nmwzyzsi11a14dj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNwZWVkIHVwIHRoZSBnbm9tZS1zaGVsbCBhbmltYXRpb24gc3BlZWQiLAogICJuYW1lIjogIkltcGF0aWVuY2UiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cDovL2dmeG1vbmsubmV0L2Rpc3QvMGluc3RhbGwvZ25vbWUtc2hlbGwtaW1wYXRpZW5jZS54bWwiLAogICJ1dWlkIjogImltcGF0aWVuY2VAZ2Z4bW9uay5uZXQiLAogICJ2ZXJzaW9uIjogMTcKfQ=="}}}
, {"uuid": "windowoverlay-icons@sustmidown.centrum.cz", "name": "WindowOverlay Icons", "pname": "windowoverlay-icons", "description": "Add application icons to window overview", "link": "https://extensions.gnome.org/extension/302/windowoverlay-icons/", "shell_version_map": {"38": {"version": "37", "sha256": "108a5i5v62a9i61av5pib3b0hcpmb6pw3np7c29jfngs25n14wd3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhcHBsaWNhdGlvbiBpY29ucyB0byB3aW5kb3cgb3ZlcnZpZXciLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJ3aW5kb3dvdmVybGF5LWljb25zIiwKICAibmFtZSI6ICJXaW5kb3dPdmVybGF5IEljb25zIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLndpbmRvd292ZXJsYXktaWNvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdXN0bWkvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXdpbmRvd292ZXJsYXktaWNvbnMiLAogICJ1dWlkIjogIndpbmRvd292ZXJsYXktaWNvbnNAc3VzdG1pZG93bi5jZW50cnVtLmN6IiwKICAidmVyc2lvbiI6IDM3Cn0="}}}
-, {"uuid": "dash-to-dock@micxgx.gmail.com", "name": "Dash to Dock", "pname": "dash-to-dock", "description": "A dock for the Gnome Shell. This extension moves the dash out of the overview transforming it in a dock for an easier launching of applications and a faster switching between windows and desktops. Side and bottom placement options are available.", "link": "https://extensions.gnome.org/extension/307/dash-to-dock/", "shell_version_map": {"38": {"version": "69", "sha256": "1nmqg875lxbxn8plwgmsrkhq126hcv56yl6iyq5wc4ljp98niaw0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZG9jayBmb3IgdGhlIEdub21lIFNoZWxsLiBUaGlzIGV4dGVuc2lvbiBtb3ZlcyB0aGUgZGFzaCBvdXQgb2YgdGhlIG92ZXJ2aWV3IHRyYW5zZm9ybWluZyBpdCBpbiBhIGRvY2sgZm9yIGFuIGVhc2llciBsYXVuY2hpbmcgb2YgYXBwbGljYXRpb25zIGFuZCBhIGZhc3RlciBzd2l0Y2hpbmcgYmV0d2VlbiB3aW5kb3dzIGFuZCBkZXNrdG9wcy4gU2lkZSBhbmQgYm90dG9tIHBsYWNlbWVudCBvcHRpb25zIGFyZSBhdmFpbGFibGUuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaHRvZG9jayIsCiAgIm5hbWUiOiAiRGFzaCB0byBEb2NrIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIm1pY3hneEBnbWFpbC5jb20iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vbWljaGVsZWcuZ2l0aHViLmlvL2Rhc2gtdG8tZG9jay8iLAogICJ1dWlkIjogImRhc2gtdG8tZG9ja0BtaWN4Z3guZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDY5Cn0="}}}
+, {"uuid": "dash-to-dock@micxgx.gmail.com", "name": "Dash to Dock", "pname": "dash-to-dock", "description": "A dock for the Gnome Shell. This extension moves the dash out of the overview transforming it in a dock for an easier launching of applications and a faster switching between windows and desktops. Side and bottom placement options are available.", "link": "https://extensions.gnome.org/extension/307/dash-to-dock/", "shell_version_map": {"38": {"version": "69", "sha256": "1nmqg875lxbxn8plwgmsrkhq126hcv56yl6iyq5wc4ljp98niaw0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZG9jayBmb3IgdGhlIEdub21lIFNoZWxsLiBUaGlzIGV4dGVuc2lvbiBtb3ZlcyB0aGUgZGFzaCBvdXQgb2YgdGhlIG92ZXJ2aWV3IHRyYW5zZm9ybWluZyBpdCBpbiBhIGRvY2sgZm9yIGFuIGVhc2llciBsYXVuY2hpbmcgb2YgYXBwbGljYXRpb25zIGFuZCBhIGZhc3RlciBzd2l0Y2hpbmcgYmV0d2VlbiB3aW5kb3dzIGFuZCBkZXNrdG9wcy4gU2lkZSBhbmQgYm90dG9tIHBsYWNlbWVudCBvcHRpb25zIGFyZSBhdmFpbGFibGUuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaHRvZG9jayIsCiAgIm5hbWUiOiAiRGFzaCB0byBEb2NrIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIm1pY3hneEBnbWFpbC5jb20iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vbWljaGVsZWcuZ2l0aHViLmlvL2Rhc2gtdG8tZG9jay8iLAogICJ1dWlkIjogImRhc2gtdG8tZG9ja0BtaWN4Z3guZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDY5Cn0="}, "40": {"version": "70", "sha256": "0i84pd1z69hvi5h63cnfm89j9vida86cnzfcl0khvzplm41cjchj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZG9jayBmb3IgdGhlIEdub21lIFNoZWxsLiBUaGlzIGV4dGVuc2lvbiBtb3ZlcyB0aGUgZGFzaCBvdXQgb2YgdGhlIG92ZXJ2aWV3IHRyYW5zZm9ybWluZyBpdCBpbiBhIGRvY2sgZm9yIGFuIGVhc2llciBsYXVuY2hpbmcgb2YgYXBwbGljYXRpb25zIGFuZCBhIGZhc3RlciBzd2l0Y2hpbmcgYmV0d2VlbiB3aW5kb3dzIGFuZCBkZXNrdG9wcy4gU2lkZSBhbmQgYm90dG9tIHBsYWNlbWVudCBvcHRpb25zIGFyZSBhdmFpbGFibGUuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaHRvZG9jayIsCiAgIm5hbWUiOiAiRGFzaCB0byBEb2NrIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIm1pY3hneEBnbWFpbC5jb20iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL21pY2hlbGVnLmdpdGh1Yi5pby9kYXNoLXRvLWRvY2svIiwKICAidXVpZCI6ICJkYXNoLXRvLWRvY2tAbWljeGd4LmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiA3MAp9"}}}
, {"uuid": "mythtv-fnx@fnxweb.com", "name": "MythTV", "pname": "mythtv", "description": "Displays MythTV status (free space and upcoming recordings)", "link": "https://extensions.gnome.org/extension/321/mythtv/", "shell_version_map": {"38": {"version": "10", "sha256": "070h11gk5zpxn5xbc71skdz174hbb72l0isia2vp7d9wy4ackl0k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIE15dGhUViBzdGF0dXMgKGZyZWUgc3BhY2UgYW5kIHVwY29taW5nIHJlY29yZGluZ3MpIiwKICAibmFtZSI6ICJNeXRoVFYiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mbnh3ZWIvZ25vbWUtc2hlbGwtbXl0aHR2IiwKICAidXVpZCI6ICJteXRodHYtZm54QGZueHdlYi5jb20iLAogICJ2ZXJzaW9uIjogMTAKfQ=="}}}
, {"uuid": "middleclickclose@paolo.tranquilli.gmail.com", "name": "Quick Close in Overview", "pname": "middle-click-to-close-in-overview", "description": "Close windows with a button click (the middle one by default) when in overview mode", "link": "https://extensions.gnome.org/extension/352/middle-click-to-close-in-overview/", "shell_version_map": {"38": {"version": "17", "sha256": "1nv6cjyiz1i7fddh21h0zmrvzfi3y70y1f0xsv2zd0rfg6rf0r77", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNsb3NlIHdpbmRvd3Mgd2l0aCBhIGJ1dHRvbiBjbGljayAodGhlIG1pZGRsZSBvbmUgYnkgZGVmYXVsdCkgd2hlbiBpbiBvdmVydmlldyBtb2RlIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJRdWljayBDbG9zZSBpbiBPdmVydmlldyIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAiUGFvbG8gVHJhbnF1aWxsaSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubWlkZGxlY2xpY2tjbG9zZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3A5MXBhdWwvbWlkZGxlY2xpY2tjbG9zZSIsCiAgInV1aWQiOiAibWlkZGxlY2xpY2tjbG9zZUBwYW9sby50cmFucXVpbGxpLmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiAxNwp9"}, "40": {"version": "20", "sha256": "1nylf06jr8lllq1m92g5qhwvdc9vgagc4iszd6p38jmb27sbfgw6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNsb3NlIHdpbmRvd3Mgd2l0aCBhIGJ1dHRvbiBjbGljayAodGhlIG1pZGRsZSBvbmUgYnkgZGVmYXVsdCkgd2hlbiBpbiBvdmVydmlldyBtb2RlIiwKICAibG9jYWxlIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJRdWljayBDbG9zZSBpbiBPdmVydmlldyIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAiUGFvbG8gVHJhbnF1aWxsaSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubWlkZGxlY2xpY2tjbG9zZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9wOTFwYXVsL21pZGRsZWNsaWNrY2xvc2UiLAogICJ1dWlkIjogIm1pZGRsZWNsaWNrY2xvc2VAcGFvbG8udHJhbnF1aWxsaS5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMjAKfQ=="}}}
, {"uuid": "status-area-horizontal-spacing@mathematical.coffee.gmail.com", "name": "Status Area Horizontal Spacing", "pname": "status-area-horizontal-spacing", "description": "Reduce the horizontal spacing between icons in the top-right status area", "link": "https://extensions.gnome.org/extension/355/status-area-horizontal-spacing/", "shell_version_map": {"38": {"version": "16", "sha256": "05hhj10hlcpbgd9sbvq89vxzqj6ndf21syas8zidy6yfy613b6l3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlZHVjZSB0aGUgaG9yaXpvbnRhbCBzcGFjaW5nIGJldHdlZW4gaWNvbnMgaW4gdGhlIHRvcC1yaWdodCBzdGF0dXMgYXJlYSIsCiAgImRldi12ZXJzaW9uIjogIjIuMS40IiwKICAibmFtZSI6ICJTdGF0dXMgQXJlYSBIb3Jpem9udGFsIFNwYWNpbmciLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuc3RhdHVzLWFyZWEtaG9yaXpvbnRhbC1zcGFjaW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjQiLAogICAgIjMuNiIsCiAgICAiMy44IiwKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vcDkxcGF1bC9zdGF0dXMtYXJlYS1ob3Jpem9udGFsLXNwYWNpbmctZ25vbWUtc2hlbGwtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJzdGF0dXMtYXJlYS1ob3Jpem9udGFsLXNwYWNpbmdAbWF0aGVtYXRpY2FsLmNvZmZlZS5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTYKfQ=="}, "40": {"version": "18", "sha256": "0r501b8frnrrxfl8l2j6xcjgw1w99h753n47zr8mwpbx5wpcbw5w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlZHVjZSB0aGUgaG9yaXpvbnRhbCBzcGFjaW5nIGJldHdlZW4gaWNvbnMgaW4gdGhlIHRvcC1yaWdodCBzdGF0dXMgYXJlYSIsCiAgImRldi12ZXJzaW9uIjogIjIuMS40IiwKICAibmFtZSI6ICJTdGF0dXMgQXJlYSBIb3Jpem9udGFsIFNwYWNpbmciLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuc3RhdHVzLWFyZWEtaG9yaXpvbnRhbC1zcGFjaW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL3A5MXBhdWwvc3RhdHVzLWFyZWEtaG9yaXpvbnRhbC1zcGFjaW5nLWdub21lLXNoZWxsLWV4dGVuc2lvbiIsCiAgInV1aWQiOiAic3RhdHVzLWFyZWEtaG9yaXpvbnRhbC1zcGFjaW5nQG1hdGhlbWF0aWNhbC5jb2ZmZWUuZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE4Cn0="}}}
, {"uuid": "activities-config@nls1729", "name": "Activities Configurator", "pname": "activities-configurator", "description": "Activities Configurator, activities-config@nls1729 - Effective March 29, 2021 the extension is NOT MAINTAINED. I give my permission to anyone who may want to become the maintainer. I do not have the free time or energy necessary to maintain the extension.\n\nConfigure the Activities Button and Top Panel. Select an icon. Change the text. Disable Hot Corner or set the Hot Corner Threshold. Set Panel Background color and transparency plus much more to enhance your desktop. Click the icon or text with the secondary mouse button to launch the GS Extension Prefs.", "link": "https://extensions.gnome.org/extension/358/activities-configurator/", "shell_version_map": {"38": {"version": "89", "sha256": "1z00smimg5fj6ri35g80bvfzzy5xxxrgwy4idsakphszdwryi8ny", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFjdGl2aXRpZXMgQ29uZmlndXJhdG9yLCBhY3Rpdml0aWVzLWNvbmZpZ0BubHMxNzI5IC0gIEVmZmVjdGl2ZSBNYXJjaCAyOSwgMjAyMSB0aGUgZXh0ZW5zaW9uIGlzIE5PVCBNQUlOVEFJTkVELiAgSSBnaXZlIG15IHBlcm1pc3Npb24gdG8gYW55b25lIHdobyBtYXkgd2FudCB0byBiZWNvbWUgdGhlIG1haW50YWluZXIuICBJIGRvIG5vdCBoYXZlIHRoZSBmcmVlIHRpbWUgb3IgZW5lcmd5IG5lY2Vzc2FyeSB0byBtYWludGFpbiB0aGUgZXh0ZW5zaW9uLlxuXG5Db25maWd1cmUgdGhlIEFjdGl2aXRpZXMgQnV0dG9uIGFuZCBUb3AgUGFuZWwuIFNlbGVjdCBhbiBpY29uLiBDaGFuZ2UgdGhlIHRleHQuIERpc2FibGUgSG90IENvcm5lciBvciBzZXQgdGhlIEhvdCBDb3JuZXIgVGhyZXNob2xkLiBTZXQgUGFuZWwgQmFja2dyb3VuZCBjb2xvciBhbmQgdHJhbnNwYXJlbmN5IHBsdXMgbXVjaCBtb3JlIHRvIGVuaGFuY2UgeW91ciBkZXNrdG9wLiAgQ2xpY2sgdGhlIGljb24gb3IgdGV4dCB3aXRoIHRoZSBzZWNvbmRhcnkgbW91c2UgYnV0dG9uIHRvIGxhdW5jaCB0aGUgR1MgRXh0ZW5zaW9uIFByZWZzLiIsCiAgImV4dGVuc2lvbi1pZCI6ICJhY3Rpdml0aWVzLWNvbmZpZyIsCiAgImdldHRleHQtZG9tYWluIjogImFjdGl2aXRpZXMtY29uZmlnLWV4dGVuc2lvbiIsCiAgIm5hbWUiOiAiQWN0aXZpdGllcyBDb25maWd1cmF0b3IiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYWN0aXZpdGllcy1jb25maWciLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vbmxzMTcyOS5naXRodWIuaW8vYWN0aXZpdGllc19jb25maWcuaHRtbCIsCiAgInV1aWQiOiAiYWN0aXZpdGllcy1jb25maWdAbmxzMTcyOSIsCiAgInZlcnNpb24iOiA4OQp9"}}}
, {"uuid": "remmina-search-provider@alexmurray.github.com", "name": "Remmina Search Provider", "pname": "remmina-search-provider", "description": "Search for Remmina Remote Desktop Connections\n\nEasily search for and launch connections to remote machines by name and protocol.", "link": "https://extensions.gnome.org/extension/473/remmina-search-provider/", "shell_version_map": {"40": {"version": "13", "sha256": "04wxydmbx0nm5ss2i10y4alxsr6fkia2is85ln23k25bqn8b4csi", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNlYXJjaCBmb3IgUmVtbWluYSBSZW1vdGUgRGVza3RvcCBDb25uZWN0aW9uc1xuXG5FYXNpbHkgc2VhcmNoIGZvciBhbmQgbGF1bmNoIGNvbm5lY3Rpb25zIHRvIHJlbW90ZSBtYWNoaW5lcyBieSBuYW1lIGFuZCBwcm90b2NvbC4iLAogICJuYW1lIjogIlJlbW1pbmEgU2VhcmNoIFByb3ZpZGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjMyIiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYWxleG11cnJheS9yZW1taW5hLXNlYXJjaC1wcm92aWRlci8iLAogICJ1dWlkIjogInJlbW1pbmEtc2VhcmNoLXByb3ZpZGVyQGFsZXhtdXJyYXkuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAxMwp9"}}}
-, {"uuid": "uptime-indicator@gniourfgniourf.gmail.com", "name": "Uptime Indicator", "pname": "uptime-indicator", "description": "Indicates uptime in status area. When clicked, a popup menu indicates the date when the system was started.", "link": "https://extensions.gnome.org/extension/508/uptime-indicator/", "shell_version_map": {"40": {"version": "15", "sha256": "1k6v4bxp355j38ldfsbqnqk4n7q70w91z134n077a8q99sgrj9zx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkluZGljYXRlcyB1cHRpbWUgaW4gc3RhdHVzIGFyZWEuIFdoZW4gY2xpY2tlZCwgYSBwb3B1cCBtZW51IGluZGljYXRlcyB0aGUgZGF0ZSB3aGVuIHRoZSBzeXN0ZW0gd2FzIHN0YXJ0ZWQuIiwKICAibmFtZSI6ICJVcHRpbWUgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjQiLAogICAgIjMuNiIsCiAgICAiMy44IiwKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vR25pb3VyZi9VcHRpbWUtSW5kaWNhdG9yIiwKICAidXVpZCI6ICJ1cHRpbWUtaW5kaWNhdG9yQGduaW91cmZnbmlvdXJmLmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiAxNQp9"}}}
+, {"uuid": "uptime-indicator@gniourfgniourf.gmail.com", "name": "Uptime Indicator", "pname": "uptime-indicator", "description": "Indicates uptime in status area. When clicked, a popup menu indicates the date when the system was started.", "link": "https://extensions.gnome.org/extension/508/uptime-indicator/", "shell_version_map": {"38": {"version": "18", "sha256": "1pzcbkc8a1f886wn7avpdw81vqch9zcyjr0pr961rfw3nykd073c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkluZGljYXRlcyB1cHRpbWUgaW4gc3RhdHVzIGFyZWEuIFdoZW4gY2xpY2tlZCwgYSBwb3B1cCBtZW51IGluZGljYXRlcyB0aGUgZGF0ZSB3aGVuIHRoZSBzeXN0ZW0gd2FzIHN0YXJ0ZWQuIiwKICAibmFtZSI6ICJVcHRpbWUgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0duaW91cmYvVXB0aW1lLUluZGljYXRvciIsCiAgInV1aWQiOiAidXB0aW1lLWluZGljYXRvckBnbmlvdXJmZ25pb3VyZi5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTgKfQ=="}, "40": {"version": "18", "sha256": "1pzcbkc8a1f886wn7avpdw81vqch9zcyjr0pr961rfw3nykd073c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkluZGljYXRlcyB1cHRpbWUgaW4gc3RhdHVzIGFyZWEuIFdoZW4gY2xpY2tlZCwgYSBwb3B1cCBtZW51IGluZGljYXRlcyB0aGUgZGF0ZSB3aGVuIHRoZSBzeXN0ZW0gd2FzIHN0YXJ0ZWQuIiwKICAibmFtZSI6ICJVcHRpbWUgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0duaW91cmYvVXB0aW1lLUluZGljYXRvciIsCiAgInV1aWQiOiAidXB0aW1lLWluZGljYXRvckBnbmlvdXJmZ25pb3VyZi5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTgKfQ=="}}}
, {"uuid": "caffeine@patapon.info", "name": "Caffeine", "pname": "caffeine", "description": "Disable the screensaver and auto suspend", "link": "https://extensions.gnome.org/extension/517/caffeine/", "shell_version_map": {"38": {"version": "37", "sha256": "05g1910jcwkjl9gmvnk57ip20sbzy09mk4v6q2fm0pg8398v0vhf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc2FibGUgdGhlIHNjcmVlbnNhdmVyIGFuZCBhdXRvIHN1c3BlbmQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb24tY2FmZmVpbmUiLAogICJuYW1lIjogIkNhZmZlaW5lIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNhZmZlaW5lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZW9ucGF0YXBvbi9nbm9tZS1zaGVsbC1leHRlbnNpb24tY2FmZmVpbmUiLAogICJ1dWlkIjogImNhZmZlaW5lQHBhdGFwb24uaW5mbyIsCiAgInZlcnNpb24iOiAzNwp9"}, "40": {"version": "40", "sha256": "1rza4ppzcimh6qmg14srawv16vas4lbcw4njxjigl29d9qf43sdr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc2FibGUgdGhlIHNjcmVlbnNhdmVyIGFuZCBhdXRvIHN1c3BlbmQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb24tY2FmZmVpbmUiLAogICJuYW1lIjogIkNhZmZlaW5lIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNhZmZlaW5lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9lb25wYXRhcG9uL2dub21lLXNoZWxsLWV4dGVuc2lvbi1jYWZmZWluZSIsCiAgInV1aWQiOiAiY2FmZmVpbmVAcGF0YXBvbi5pbmZvIiwKICAidmVyc2lvbiI6IDQwCn0="}}}
, {"uuid": "backslide@codeisland.org", "name": "BackSlide", "pname": "backslide", "description": "Automatic background-image (wallpaper) slideshow for Gnome Shell", "link": "https://extensions.gnome.org/extension/543/backslide/", "shell_version_map": {"38": {"version": "18", "sha256": "1vm4w61cksj9ya5z4xcy7h96bk0wwi5njp0lyhnqa8j2fgsq5iin", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF1dG9tYXRpYyBiYWNrZ3JvdW5kLWltYWdlICh3YWxscGFwZXIpIHNsaWRlc2hvdyBmb3IgR25vbWUgU2hlbGwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJiYWNrc2xpZGUiLAogICJuYW1lIjogIkJhY2tTbGlkZSIsCiAgIm9yaWdpbmFsLWF1dGhvciI6ICJMdWthcyBLbnV0aCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9iaXRidWNrZXQub3JnL0x1a2FzS251dGgvYmFja3NsaWRlIiwKICAidXVpZCI6ICJiYWNrc2xpZGVAY29kZWlzbGFuZC5vcmciLAogICJ2ZXJzaW9uIjogMTgKfQ=="}, "40": {"version": "21", "sha256": "1qakl3wiwhx68yfqafd5241hfmin0v1x779ljs5bqj2hqld3dzz8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF1dG9tYXRpYyBiYWNrZ3JvdW5kLWltYWdlICh3YWxscGFwZXIpIHNsaWRlc2hvdyBmb3IgR25vbWUgU2hlbGwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJiYWNrc2xpZGUiLAogICJuYW1lIjogIkJhY2tTbGlkZSIsCiAgIm9yaWdpbmFsLWF1dGhvciI6ICJMdWthcyBLbnV0aCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vYml0YnVja2V0Lm9yZy9MdWthc0tudXRoL2JhY2tzbGlkZSIsCiAgInV1aWQiOiAiYmFja3NsaWRlQGNvZGVpc2xhbmQub3JnIiwKICAidmVyc2lvbiI6IDIxCn0="}}}
, {"uuid": "historymanager-prefix-search@sustmidown.centrum.cz", "name": "HistoryManager Prefix Search", "pname": "historymanager-prefix-search", "description": "Use PageUp and PageDown to move in HistoryManager (eg. RunCommand, Looking Glass) according to prefix", "link": "https://extensions.gnome.org/extension/544/historymanager-prefix-search/", "shell_version_map": {"40": {"version": "14", "sha256": "1n6gac80xrk6lhlj29zb03h62ia0a66va0i9pmjgqbg3bs74yds0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVzZSBQYWdlVXAgYW5kIFBhZ2VEb3duIHRvIG1vdmUgaW4gSGlzdG9yeU1hbmFnZXIgKGVnLiBSdW5Db21tYW5kLCBMb29raW5nIEdsYXNzKSBhY2NvcmRpbmcgdG8gcHJlZml4IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiaGlzdG9yeW1hbmFnZXItcHJlZml4LXNlYXJjaCIsCiAgIm5hbWUiOiAiSGlzdG9yeU1hbmFnZXIgUHJlZml4IFNlYXJjaCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5oaXN0b3J5bWFuYWdlci1wcmVmaXgtc2VhcmNoIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjYiLAogICAgIjMuOCIsCiAgICAiMy43LjMiLAogICAgIjMuMTAiLAogICAgIjMuMTIiLAogICAgIjMuMTQiLAogICAgIjMuMTYiLAogICAgIjMuMTgiLAogICAgIjMuMjAiLAogICAgIjMuMjIiLAogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vc3VzdG1pL2dub21lLXNoZWxsLWV4dGVuc2lvbi1oaXN0b3J5bWFuYWdlci1wcmVmaXgtc2VhcmNoIiwKICAidXVpZCI6ICJoaXN0b3J5bWFuYWdlci1wcmVmaXgtc2VhcmNoQHN1c3RtaWRvd24uY2VudHJ1bS5jeiIsCiAgInZlcnNpb24iOiAxNAp9"}}}
@@ -46,7 +47,7 @@
, {"uuid": "appindicatorsupport@rgcjonas.gmail.com", "name": "AppIndicator and KStatusNotifierItem Support", "pname": "appindicator-support", "description": "Adds AppIndicator, KStatusNotifierItem and legacy Tray icons support to the Shell", "link": "https://extensions.gnome.org/extension/615/appindicator-support/", "shell_version_map": {"38": {"version": "41", "sha256": "0d2pvcw13wr7jbwjds4byxnq3q9vqm2r6fs5plcgl2dp787kmxi2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgQXBwSW5kaWNhdG9yLCBLU3RhdHVzTm90aWZpZXJJdGVtIGFuZCBsZWdhY3kgVHJheSBpY29ucyBzdXBwb3J0IHRvIHRoZSBTaGVsbCIsCiAgImdldHRleHQtZG9tYWluIjogIkFwcEluZGljYXRvckV4dGVuc2lvbiIsCiAgIm5hbWUiOiAiQXBwSW5kaWNhdG9yIGFuZCBLU3RhdHVzTm90aWZpZXJJdGVtIFN1cHBvcnQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYXBwaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS91YnVudHUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWFwcGluZGljYXRvciIsCiAgInV1aWQiOiAiYXBwaW5kaWNhdG9yc3VwcG9ydEByZ2Nqb25hcy5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogNDEKfQ=="}, "40": {"version": "41", "sha256": "0d2pvcw13wr7jbwjds4byxnq3q9vqm2r6fs5plcgl2dp787kmxi2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgQXBwSW5kaWNhdG9yLCBLU3RhdHVzTm90aWZpZXJJdGVtIGFuZCBsZWdhY3kgVHJheSBpY29ucyBzdXBwb3J0IHRvIHRoZSBTaGVsbCIsCiAgImdldHRleHQtZG9tYWluIjogIkFwcEluZGljYXRvckV4dGVuc2lvbiIsCiAgIm5hbWUiOiAiQXBwSW5kaWNhdG9yIGFuZCBLU3RhdHVzTm90aWZpZXJJdGVtIFN1cHBvcnQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYXBwaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS91YnVudHUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWFwcGluZGljYXRvciIsCiAgInV1aWQiOiAiYXBwaW5kaWNhdG9yc3VwcG9ydEByZ2Nqb25hcy5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogNDEKfQ=="}}}
, {"uuid": "bitcoin-markets@ottoallmendinger.github.com", "name": "Bitcoin Markets", "pname": "bitcoin-markets", "description": "Display info on various crypto-currency exchanges.", "link": "https://extensions.gnome.org/extension/648/bitcoin-markets/", "shell_version_map": {"38": {"version": "57", "sha256": "1dbrkr49gi93nps610afvw2q68d1ialkhxsxd0waa8xgwjxwzyxd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgaW5mbyBvbiB2YXJpb3VzIGNyeXB0by1jdXJyZW5jeSBleGNoYW5nZXMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtYml0Y29pbi1tYXJrZXRzIiwKICAiZ2l0LXZlcnNpb24iOiAidjU3IiwKICAibmFtZSI6ICJCaXRjb2luIE1hcmtldHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYml0Y29pbi1tYXJrZXRzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vT3R0b0FsbG1lbmRpbmdlci9nbm9tZS1zaGVsbC1iaXRjb2luLW1hcmtldHMvIiwKICAidXVpZCI6ICJiaXRjb2luLW1hcmtldHNAb3R0b2FsbG1lbmRpbmdlci5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDU3Cn0="}, "40": {"version": "58", "sha256": "1alsbyykqy2147ssx016ixqyj3phk3pmviw41dr0vakxfwr5f7g1", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgaW5mbyBvbiB2YXJpb3VzIGNyeXB0by1jdXJyZW5jeSBleGNoYW5nZXMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtYml0Y29pbi1tYXJrZXRzIiwKICAiZ2l0LXZlcnNpb24iOiAidjU4IiwKICAibmFtZSI6ICJCaXRjb2luIE1hcmtldHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYml0Y29pbi1tYXJrZXRzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL090dG9BbGxtZW5kaW5nZXIvZ25vbWUtc2hlbGwtYml0Y29pbi1tYXJrZXRzLyIsCiAgInV1aWQiOiAiYml0Y29pbi1tYXJrZXRzQG90dG9hbGxtZW5kaW5nZXIuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA1OAp9"}}}
, {"uuid": "ShellTile@emasab.it", "name": "ShellTile", "pname": "shelltile", "description": "A tiling window extension for GNOME Shell. Just move a window to the edges of the screen to create a tiling, otherwise move a window over another one, holding down the Control key. Grouped windows minimize, resize, raise and change workspace together. Move or maximize a window to remove it from the group.", "link": "https://extensions.gnome.org/extension/657/shelltile/", "shell_version_map": {"38": {"version": "65", "sha256": "0kb7crng8lmkcjjxzd7ma2x0x43rg4j5ygvvpiq5z2j15rx8bcg4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgdGlsaW5nIHdpbmRvdyBleHRlbnNpb24gZm9yIEdOT01FIFNoZWxsLiBKdXN0IG1vdmUgYSB3aW5kb3cgdG8gdGhlIGVkZ2VzIG9mIHRoZSBzY3JlZW4gdG8gY3JlYXRlIGEgdGlsaW5nLCBvdGhlcndpc2UgbW92ZSBhIHdpbmRvdyBvdmVyIGFub3RoZXIgb25lLCBob2xkaW5nIGRvd24gdGhlIENvbnRyb2wga2V5LiBHcm91cGVkIHdpbmRvd3MgbWluaW1pemUsIHJlc2l6ZSwgcmFpc2UgYW5kIGNoYW5nZSB3b3Jrc3BhY2UgdG9nZXRoZXIuIE1vdmUgb3IgbWF4aW1pemUgYSB3aW5kb3cgdG8gcmVtb3ZlIGl0IGZyb20gdGhlIGdyb3VwLiIsCiAgImdldHRleHQtZG9tYWluIjogInNoZWxsdGlsZSIsCiAgIm5hbWUiOiAiU2hlbGxUaWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnNoZWxsdGlsZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy42IiwKICAgICIzLjgiLAogICAgIjMuMTAiLAogICAgIjMuMTIiLAogICAgIjMuMTQiLAogICAgIjMuMTYiLAogICAgIjMuMTgiLAogICAgIjMuMjAiLAogICAgIjMuMjIiLAogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9lbWFzYWIvc2hlbGx0aWxlIiwKICAidXVpZCI6ICJTaGVsbFRpbGVAZW1hc2FiLml0IiwKICAidmVyc2lvbiI6IDY1Cn0="}}}
-, {"uuid": "lunarcal@ailin.nemui", "name": "Lunar Calendar 农历", "pname": "lunar-calendar", "description": "Display Chinese Lunar Calendar in panel\n\n⚠⚠⚠ dependency: typelib-1_0-LunarDate-3_0 / gir1.2-lunar-date-2.0", "link": "https://extensions.gnome.org/extension/675/lunar-calendar/", "shell_version_map": {"38": {"version": "25", "sha256": "1pj439wdsqpxim6p4d0y09v40kdjga908hagxfyvq0fzjykc51rn", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNyZWF0b3IiOiAiTmVpIiwKICAiZGVzY3JpcHRpb24iOiAiRGlzcGxheSBDaGluZXNlIEx1bmFyIENhbGVuZGFyIGluIHBhbmVsXG5cblx1MjZhMFx1MjZhMFx1MjZhMCBkZXBlbmRlbmN5OiB0eXBlbGliLTFfMC1MdW5hckRhdGUtM18wIC8gZ2lyMS4yLWx1bmFyLWRhdGUtMi4wIiwKICAibmFtZSI6ICJMdW5hciBDYWxlbmRhciBcdTUxOWNcdTUzODYiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubHVuYXItY2FsZW5kYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAibHVuYXJjYWxAYWlsaW4ubmVtdWkiLAogICJ2ZXJzaW9uIjogMjUKfQ=="}, "40": {"version": "26", "sha256": "0f5yiazgaylv9h2s53blw2jvs99wqnypdhf5j2p7i2wdyaq1hbip", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNyZWF0b3IiOiAiTmVpIiwKICAiZGVzY3JpcHRpb24iOiAiRGlzcGxheSBDaGluZXNlIEx1bmFyIENhbGVuZGFyIGluIHBhbmVsXG5cblx1MjZhMFx1MjZhMFx1MjZhMCBkZXBlbmRlbmN5OiB0eXBlbGliLTFfMC1MdW5hckRhdGUtM18wIC8gZ2lyMS4yLWx1bmFyLWRhdGUtMi4wIiwKICAibmFtZSI6ICJMdW5hciBDYWxlbmRhciBcdTUxOWNcdTUzODYiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubHVuYXItY2FsZW5kYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImx1bmFyY2FsQGFpbGluLm5lbXVpIiwKICAidmVyc2lvbiI6IDI2Cn0="}}}
+, {"uuid": "lunarcal@ailin.nemui", "name": "Lunar Calendar 农历", "pname": "lunar-calendar", "description": "Display Chinese Lunar Calendar in panel\n\n⚠⚠⚠ dependency: typelib-1_0-LunarDate-3_0 / gir1.2-lunar-date-2.0", "link": "https://extensions.gnome.org/extension/675/lunar-calendar/", "shell_version_map": {"38": {"version": "25", "sha256": "1pj439wdsqpxim6p4d0y09v40kdjga908hagxfyvq0fzjykc51rn", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNyZWF0b3IiOiAiTmVpIiwKICAiZGVzY3JpcHRpb24iOiAiRGlzcGxheSBDaGluZXNlIEx1bmFyIENhbGVuZGFyIGluIHBhbmVsXG5cblx1MjZhMFx1MjZhMFx1MjZhMCBkZXBlbmRlbmN5OiB0eXBlbGliLTFfMC1MdW5hckRhdGUtM18wIC8gZ2lyMS4yLWx1bmFyLWRhdGUtMi4wIiwKICAibmFtZSI6ICJMdW5hciBDYWxlbmRhciBcdTUxOWNcdTUzODYiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubHVuYXItY2FsZW5kYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAibHVuYXJjYWxAYWlsaW4ubmVtdWkiLAogICJ2ZXJzaW9uIjogMjUKfQ=="}, "40": {"version": "27", "sha256": "159iiyw0sblq8jwkm1qfcakgdy3rvk07vzz8q6yj2davp64wpg5n", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNyZWF0b3IiOiAiTmVpIiwKICAiZGVzY3JpcHRpb24iOiAiRGlzcGxheSBDaGluZXNlIEx1bmFyIENhbGVuZGFyIGluIHBhbmVsXG5cblx1MjZhMFx1MjZhMFx1MjZhMCBkZXBlbmRlbmN5OiB0eXBlbGliLTFfMC1MdW5hckRhdGUtM18wIC8gZ2lyMS4yLWx1bmFyLWRhdGUtMi4wIiwKICAibmFtZSI6ICJMdW5hciBDYWxlbmRhciBcdTUxOWNcdTUzODYiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubHVuYXItY2FsZW5kYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJsdW5hcmNhbEBhaWxpbi5uZW11aSIsCiAgInZlcnNpb24iOiAyNwp9"}}}
, {"uuid": "scroll-workspaces@gfxmonk.net", "name": "Top Panel Workspace Scroll", "pname": "top-panel-workspace-scroll", "description": "Change workspaces by scrolling over the top panel", "link": "https://extensions.gnome.org/extension/701/top-panel-workspace-scroll/", "shell_version_map": {"40": {"version": "24", "sha256": "1i7l26x22wzqplq42z2317ynq4s4vwwzb3ql9lhpkyn8d7g7xa4x", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZSB3b3Jrc3BhY2VzIGJ5IHNjcm9sbGluZyBvdmVyIHRoZSB0b3AgcGFuZWwiLAogICJuYW1lIjogIlRvcCBQYW5lbCBXb3Jrc3BhY2UgU2Nyb2xsIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJ0aW1AZ2Z4bW9uay5uZXQiCiAgXSwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm5ldC5nZnhtb25rLnNjcm9sbC13b3Jrc3BhY2VzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2dmeG1vbmsvZ25vbWUtc2hlbGwtc2Nyb2xsLXdvcmtzcGFjZXMiLAogICJ1dWlkIjogInNjcm9sbC13b3Jrc3BhY2VzQGdmeG1vbmsubmV0IiwKICAidmVyc2lvbiI6IDI0Cn0="}}}
, {"uuid": "all-windows@ezix.org", "name": "All Windows", "pname": "all-windows", "description": "List open windows of all workspaces", "link": "https://extensions.gnome.org/extension/704/all-windows/", "shell_version_map": {"40": {"version": "11", "sha256": "12d083bakv6l4dg6hmkh9c4q0cybfjq9y0dl3w85slsc7v60gj2w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpc3Qgb3BlbiB3aW5kb3dzIG9mIGFsbCB3b3Jrc3BhY2VzIiwKICAibmFtZSI6ICJBbGwgV2luZG93cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9seW9uZWwvYWxsLXdpbmRvd3MiLAogICJ1dWlkIjogImFsbC13aW5kb3dzQGV6aXgub3JnIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "panel-osd@berend.de.schouwer.gmail.com", "name": "Panel OSD", "pname": "panel-osd", "description": "Configuring where on the (main) screen notifications will appear, instead of just above the message tray", "link": "https://extensions.gnome.org/extension/708/panel-osd/", "shell_version_map": {"38": {"version": "39", "sha256": "109qlcckx5z8fwndpr86r2bfggyh4akmi6lqi0ki7gr9bfigdqnv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbmZpZ3VyaW5nIHdoZXJlIG9uIHRoZSAobWFpbikgc2NyZWVuIG5vdGlmaWNhdGlvbnMgd2lsbCBhcHBlYXIsIGluc3RlYWQgb2YganVzdCBhYm92ZSB0aGUgbWVzc2FnZSB0cmF5IiwKICAibG9jYWxlZGlyIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJQYW5lbCBPU0QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMTAiLAogICAgIjMuMTIiLAogICAgIjMuMTQiLAogICAgIjMuMTYiLAogICAgIjMuMTgiLAogICAgIjMuMjAiLAogICAgIjMuMjIiLAogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9qZW5zbG9keS9nbm9tZS1zaGVsbC1leHRlbnNpb24tcGFuZWwtb3NkIiwKICAidXVpZCI6ICJwYW5lbC1vc2RAYmVyZW5kLmRlLnNjaG91d2VyLmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiAzOQp9"}, "40": {"version": "40", "sha256": "0hskvmdnqjihixaxhb7a7apsx0203zmymm5j6ncb2al928p795yx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbmZpZ3VyaW5nIHdoZXJlIG9uIHRoZSAobWFpbikgc2NyZWVuIG5vdGlmaWNhdGlvbnMgd2lsbCBhcHBlYXIsIGluc3RlYWQgb2YganVzdCBhYm92ZSB0aGUgbWVzc2FnZSB0cmF5IiwKICAibG9jYWxlZGlyIjogIi91c3IvbG9jYWwvc2hhcmUvbG9jYWxlIiwKICAibmFtZSI6ICJQYW5lbCBPU0QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vamVuc2xvZHkvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXBhbmVsLW9zZCIsCiAgInV1aWQiOiAicGFuZWwtb3NkQGJlcmVuZC5kZS5zY2hvdXdlci5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogNDAKfQ=="}}}
@@ -71,9 +72,11 @@
, {"uuid": "radio@hslbck.gmail.com", "name": "Internet Radio", "pname": "internet-radio", "description": "Listen to an Internet Radio Stream", "link": "https://extensions.gnome.org/extension/836/internet-radio/", "shell_version_map": {"38": {"version": "14", "sha256": "013wbf3npz7f438i39cd41s6whs4lgaigv4i1zais994n9ybw5y9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpc3RlbiB0byBhbiBJbnRlcm5ldCBSYWRpbyBTdHJlYW0iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJyYWRpb0Boc2xiY2suZ21haWwuY29tIiwKICAibmFtZSI6ICJJbnRlcm5ldCBSYWRpbyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5yYWRpbyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2hzbGJjay9nbm9tZS1zaGVsbC1leHRlbnNpb24tcmFkaW8iLAogICJ1dWlkIjogInJhZGlvQGhzbGJjay5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTQKfQ=="}, "40": {"version": "15", "sha256": "0l5wi3f78shh2p23mjpjazygbw8wxnmzmwmjs0ng317ya2hnzkh4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpc3RlbiB0byBhbiBJbnRlcm5ldCBSYWRpbyBTdHJlYW0iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJyYWRpb0Boc2xiY2suZ21haWwuY29tIiwKICAibmFtZSI6ICJJbnRlcm5ldCBSYWRpbyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5yYWRpbyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oc2xiY2svZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXJhZGlvIiwKICAidXVpZCI6ICJyYWRpb0Boc2xiY2suZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE1Cn0="}}}
, {"uuid": "freon@UshakovVasilii_Github.yahoo.com", "name": "Freon", "pname": "freon", "description": "Shows CPU temperature, disk temperature, video card temperature (NVIDIA/Catalyst/Bumblebee&NVIDIA), voltage and fan RPM (forked from xtranophilist/gnome-shell-extension-sensors)", "link": "https://extensions.gnome.org/extension/841/freon/", "shell_version_map": {"38": {"version": "43", "sha256": "06jj01flj6iyx93aqz8ipzijnrammp6xqpgqwxfh0pf2clr6nwrq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIENQVSB0ZW1wZXJhdHVyZSwgZGlzayB0ZW1wZXJhdHVyZSwgdmlkZW8gY2FyZCB0ZW1wZXJhdHVyZSAoTlZJRElBL0NhdGFseXN0L0J1bWJsZWJlZSZOVklESUEpLCB2b2x0YWdlIGFuZCBmYW4gUlBNIChmb3JrZWQgZnJvbSB4dHJhbm9waGlsaXN0L2dub21lLXNoZWxsLWV4dGVuc2lvbi1zZW5zb3JzKSIsCiAgImdldHRleHQtZG9tYWluIjogImZyZW9uIiwKICAibmFtZSI6ICJGcmVvbiIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5mcmVvbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1VzaGFrb3ZWYXNpbGlpL2dub21lLXNoZWxsLWV4dGVuc2lvbi1mcmVvbiIsCiAgInV1aWQiOiAiZnJlb25AVXNoYWtvdlZhc2lsaWlfR2l0aHViLnlhaG9vLmNvbSIsCiAgInZlcnNpb24iOiA0Mwp9"}, "40": {"version": "45", "sha256": "129gpr57qj8c8180hzzszvkvylgg1i6ql4hwf45v49s3q17lrilh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIENQVSB0ZW1wZXJhdHVyZSwgZGlzayB0ZW1wZXJhdHVyZSwgdmlkZW8gY2FyZCB0ZW1wZXJhdHVyZSAoTlZJRElBL0NhdGFseXN0L0J1bWJsZWJlZSZOVklESUEpLCB2b2x0YWdlIGFuZCBmYW4gUlBNIChmb3JrZWQgZnJvbSB4dHJhbm9waGlsaXN0L2dub21lLXNoZWxsLWV4dGVuc2lvbi1zZW5zb3JzKSIsCiAgImdldHRleHQtZG9tYWluIjogImZyZW9uIiwKICAibmFtZSI6ICJGcmVvbiIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5mcmVvbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vVXNoYWtvdlZhc2lsaWkvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWZyZW9uIiwKICAidXVpZCI6ICJmcmVvbkBVc2hha292VmFzaWxpaV9HaXRodWIueWFob28uY29tIiwKICAidmVyc2lvbiI6IDQ1Cn0="}}}
, {"uuid": "shell-volume-mixer@derhofbauer.at", "name": "Volume Mixer", "pname": "volume-mixer", "description": "Applet allowing separate configuration of PulseAudio mixers.\n\nShell Volume Mixer is an extension for GNOME Shell allowing separate configuration of PulseAudio devices and output switches. It features a profile switcher to quickly switch between pinned profiles and devices.\n\nMiddle mouse click on a slider mutes the selected stream.\n\nPlease file bugs and feature requests on the GitHub page.", "link": "https://extensions.gnome.org/extension/858/volume-mixer/", "shell_version_map": {"38": {"version": "39", "sha256": "1cnyapjvqri5k5m4nbcmbcx97b4akwv32h7ddav2ipahqh1lqqzj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxldCBhbGxvd2luZyBzZXBhcmF0ZSBjb25maWd1cmF0aW9uIG9mIFB1bHNlQXVkaW8gbWl4ZXJzLlxuXG5TaGVsbCBWb2x1bWUgTWl4ZXIgaXMgYW4gZXh0ZW5zaW9uIGZvciBHTk9NRSBTaGVsbCBhbGxvd2luZyBzZXBhcmF0ZSBjb25maWd1cmF0aW9uIG9mIFB1bHNlQXVkaW8gZGV2aWNlcyBhbmQgb3V0cHV0IHN3aXRjaGVzLiBJdCBmZWF0dXJlcyBhIHByb2ZpbGUgc3dpdGNoZXIgdG8gcXVpY2tseSBzd2l0Y2ggYmV0d2VlbiBwaW5uZWQgcHJvZmlsZXMgYW5kIGRldmljZXMuXG5cbk1pZGRsZSBtb3VzZSBjbGljayBvbiBhIHNsaWRlciBtdXRlcyB0aGUgc2VsZWN0ZWQgc3RyZWFtLlxuXG5QbGVhc2UgZmlsZSBidWdzIGFuZCBmZWF0dXJlIHJlcXVlc3RzIG9uIHRoZSBHaXRIdWIgcGFnZS4iLAogICJuYW1lIjogIlZvbHVtZSBNaXhlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2FsZWhvL2dub21lLXNoZWxsLXZvbHVtZS1taXhlciIsCiAgInV1aWQiOiAic2hlbGwtdm9sdW1lLW1peGVyQGRlcmhvZmJhdWVyLmF0IiwKICAidmVyc2lvbiI6IDM5Cn0="}, "40": {"version": "40", "sha256": "1s4jzq1iy006k3m0r28qiayb46135y71qqv583k1sn9sppda5b4d", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxldCBhbGxvd2luZyBzZXBhcmF0ZSBjb25maWd1cmF0aW9uIG9mIFB1bHNlQXVkaW8gbWl4ZXJzLlxuXG5TaGVsbCBWb2x1bWUgTWl4ZXIgaXMgYW4gZXh0ZW5zaW9uIGZvciBHTk9NRSBTaGVsbCBhbGxvd2luZyBzZXBhcmF0ZSBjb25maWd1cmF0aW9uIG9mIFB1bHNlQXVkaW8gZGV2aWNlcyBhbmQgb3V0cHV0IHN3aXRjaGVzLiBJdCBmZWF0dXJlcyBhIHByb2ZpbGUgc3dpdGNoZXIgdG8gcXVpY2tseSBzd2l0Y2ggYmV0d2VlbiBwaW5uZWQgcHJvZmlsZXMgYW5kIGRldmljZXMuXG5cbk1pZGRsZSBtb3VzZSBjbGljayBvbiBhIHNsaWRlciBtdXRlcyB0aGUgc2VsZWN0ZWQgc3RyZWFtLlxuXG5QbGVhc2UgZmlsZSBidWdzIGFuZCBmZWF0dXJlIHJlcXVlc3RzIG9uIHRoZSBHaXRIdWIgcGFnZS4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zLXNoZWxsLXZvbHVtZS1taXhlciIsCiAgIm5hbWUiOiAiVm9sdW1lIE1peGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnNoZWxsLXZvbHVtZS1taXhlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9hbGVoby9nbm9tZS1zaGVsbC12b2x1bWUtbWl4ZXIiLAogICJ1dWlkIjogInNoZWxsLXZvbHVtZS1taXhlckBkZXJob2ZiYXVlci5hdCIsCiAgInZlcnNpb24iOiA0MAp9"}}}
+, {"uuid": "FRC@jcdubacq.dubacq.fr", "name": "French Republican Calendar", "pname": "french-republican-calendar", "description": "Displays the French Republican Calendar in the top panel", "link": "https://extensions.gnome.org/extension/874/french-republican-calendar/", "shell_version_map": {"38": {"version": "11", "sha256": "13mypljavdmy6rj00cphnkjiimdxw1hzj7mhzlq8m99x5h8d9ahg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIHRoZSBGcmVuY2ggUmVwdWJsaWNhbiBDYWxlbmRhciBpbiB0aGUgdG9wIHBhbmVsIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiRlJDIiwKICAibmFtZSI6ICJGcmVuY2ggUmVwdWJsaWNhbiBDYWxlbmRhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOC4xIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJGUkNAamNkdWJhY3EuZHViYWNxLmZyIiwKICAidmVyc2lvbiI6IDExCn0="}, "40": {"version": "11", "sha256": "13mypljavdmy6rj00cphnkjiimdxw1hzj7mhzlq8m99x5h8d9ahg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIHRoZSBGcmVuY2ggUmVwdWJsaWNhbiBDYWxlbmRhciBpbiB0aGUgdG9wIHBhbmVsIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiRlJDIiwKICAibmFtZSI6ICJGcmVuY2ggUmVwdWJsaWNhbiBDYWxlbmRhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOC4xIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJGUkNAamNkdWJhY3EuZHViYWNxLmZyIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com", "name": "Screenshot Window Sizer", "pname": "screenshot-window-sizer", "description": "Resize windows for GNOME Software screenshots", "link": "https://extensions.gnome.org/extension/881/screenshot-window-sizer/", "shell_version_map": {"38": {"version": "22", "sha256": "18b8f2agv397pdyaicx2qirqfnm0swbnspw43kb2hr0jn8lkzz1v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlc2l6ZSB3aW5kb3dzIGZvciBHTk9NRSBTb2Z0d2FyZSBzY3JlZW5zaG90cyIsCiAgImV4dGVuc2lvbi1pZCI6ICJzY3JlZW5zaG90LXdpbmRvdy1zaXplciIsCiAgImdldHRleHQtZG9tYWluIjogImdub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJuYW1lIjogIlNjcmVlbnNob3QgV2luZG93IFNpemVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnNjcmVlbnNob3Qtd2luZG93LXNpemVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5nbm9tZS5vcmcvR05PTUUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgInV1aWQiOiAic2NyZWVuc2hvdC13aW5kb3ctc2l6ZXJAZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5nY2FtcGF4LmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMjIKfQ=="}, "40": {"version": "25", "sha256": "0pdf76kf6z7m9wvqsy36v1r02zfk8pgkpf21im2cq9x4qwh9gkf2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlc2l6ZSB3aW5kb3dzIGZvciBHTk9NRSBTb2Z0d2FyZSBzY3JlZW5zaG90cyIsCiAgImV4dGVuc2lvbi1pZCI6ICJzY3JlZW5zaG90LXdpbmRvdy1zaXplciIsCiAgImdldHRleHQtZG9tYWluIjogImdub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJuYW1lIjogIlNjcmVlbnNob3QgV2luZG93IFNpemVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnNjcmVlbnNob3Qtd2luZG93LXNpemVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuZ25vbWUub3JnL0dOT01FL2dub21lLXNoZWxsLWV4dGVuc2lvbnMiLAogICJ1dWlkIjogInNjcmVlbnNob3Qtd2luZG93LXNpemVyQGdub21lLXNoZWxsLWV4dGVuc2lvbnMuZ2NhbXBheC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDI1Cn0="}}}
, {"uuid": "mailnag@pulb.github.com", "name": "Mailnag", "pname": "mailnag", "description": "Mail indicator (GMail, IMAP, POP) for GNOME.\n\nPlease note that this extension requires the mailnag daemon.\nInstall it from your distros package repositories or get it here:\nhttps://github.com/pulb/mailnag\n\nPlease also note that this version of the extension does not support avatars (as shown in the screenshot).\nIf you like to have avatar support install this extension from your distros package repositories or get a package from here:\nhttps://github.com/pulb/mailnag-gnome-shell\n\nIMPORTANT:\nI do not get notifications for user comments. Please always report bugs here:\nhttps://github.com/pulb/mailnag-gnome-shell/issues", "link": "https://extensions.gnome.org/extension/886/mailnag/", "shell_version_map": {"38": {"version": "20", "sha256": "15n816y34qlc7va72q75ngzw1my3n5j7xhg9a6dc0g8q4dd0g2r9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1haWwgaW5kaWNhdG9yIChHTWFpbCwgSU1BUCwgUE9QKSBmb3IgR05PTUUuXG5cblBsZWFzZSBub3RlIHRoYXQgdGhpcyBleHRlbnNpb24gcmVxdWlyZXMgdGhlIG1haWxuYWcgZGFlbW9uLlxuSW5zdGFsbCBpdCBmcm9tIHlvdXIgZGlzdHJvcyBwYWNrYWdlIHJlcG9zaXRvcmllcyBvciBnZXQgaXQgaGVyZTpcbmh0dHBzOi8vZ2l0aHViLmNvbS9wdWxiL21haWxuYWdcblxuUGxlYXNlIGFsc28gbm90ZSB0aGF0IHRoaXMgdmVyc2lvbiBvZiB0aGUgZXh0ZW5zaW9uIGRvZXMgbm90IHN1cHBvcnQgYXZhdGFycyAoYXMgc2hvd24gaW4gdGhlIHNjcmVlbnNob3QpLlxuSWYgeW91IGxpa2UgdG8gaGF2ZSBhdmF0YXIgc3VwcG9ydCBpbnN0YWxsIHRoaXMgZXh0ZW5zaW9uIGZyb20geW91ciBkaXN0cm9zIHBhY2thZ2UgcmVwb3NpdG9yaWVzIG9yIGdldCBhIHBhY2thZ2UgZnJvbSBoZXJlOlxuaHR0cHM6Ly9naXRodWIuY29tL3B1bGIvbWFpbG5hZy1nbm9tZS1zaGVsbFxuXG5JTVBPUlRBTlQ6XG5JIGRvIG5vdCBnZXQgbm90aWZpY2F0aW9ucyBmb3IgdXNlciBjb21tZW50cy4gUGxlYXNlIGFsd2F5cyByZXBvcnQgYnVncyBoZXJlOlxuaHR0cHM6Ly9naXRodWIuY29tL3B1bGIvbWFpbG5hZy1nbm9tZS1zaGVsbC9pc3N1ZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJtYWlsbmFnLWdub21lLXNoZWxsIiwKICAibmFtZSI6ICJNYWlsbmFnIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1haWxuYWciLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAibWFpbG5hZ0BwdWxiLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMjAKfQ=="}, "40": {"version": "21", "sha256": "060lmc6jacjv1p4a6n7c3l0kmfskq012pgrf2gar0kf49lqrp665", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1haWwgaW5kaWNhdG9yIChHTWFpbCwgSU1BUCwgUE9QKSBmb3IgR05PTUUuXG5cblBsZWFzZSBub3RlIHRoYXQgdGhpcyBleHRlbnNpb24gcmVxdWlyZXMgdGhlIG1haWxuYWcgZGFlbW9uLlxuSW5zdGFsbCBpdCBmcm9tIHlvdXIgZGlzdHJvcyBwYWNrYWdlIHJlcG9zaXRvcmllcyBvciBnZXQgaXQgaGVyZTpcbmh0dHBzOi8vZ2l0aHViLmNvbS9wdWxiL21haWxuYWdcblxuUGxlYXNlIGFsc28gbm90ZSB0aGF0IHRoaXMgdmVyc2lvbiBvZiB0aGUgZXh0ZW5zaW9uIGRvZXMgbm90IHN1cHBvcnQgYXZhdGFycyAoYXMgc2hvd24gaW4gdGhlIHNjcmVlbnNob3QpLlxuSWYgeW91IGxpa2UgdG8gaGF2ZSBhdmF0YXIgc3VwcG9ydCBpbnN0YWxsIHRoaXMgZXh0ZW5zaW9uIGZyb20geW91ciBkaXN0cm9zIHBhY2thZ2UgcmVwb3NpdG9yaWVzIG9yIGdldCBhIHBhY2thZ2UgZnJvbSBoZXJlOlxuaHR0cHM6Ly9naXRodWIuY29tL3B1bGIvbWFpbG5hZy1nbm9tZS1zaGVsbFxuXG5JTVBPUlRBTlQ6XG5JIGRvIG5vdCBnZXQgbm90aWZpY2F0aW9ucyBmb3IgdXNlciBjb21tZW50cy4gUGxlYXNlIGFsd2F5cyByZXBvcnQgYnVncyBoZXJlOlxuaHR0cHM6Ly9naXRodWIuY29tL3B1bGIvbWFpbG5hZy1nbm9tZS1zaGVsbC9pc3N1ZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJtYWlsbmFnLWdub21lLXNoZWxsIiwKICAibmFtZSI6ICJNYWlsbmFnIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1haWxuYWciLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogIm1haWxuYWdAcHVsYi5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDIxCn0="}}}
, {"uuid": "mmod-panel@mmogp.com", "name": "MMOD Panel", "pname": "mmod-panel", "description": "Upgrades the Topbar in Gnome3, creating a customizable panel and providing options for fine-tuning your Desktop Experience.\n\nFeatures include:\n▸ Set comfort levels to provide theme support and fine-tune the overall look and feel of the panel.\n▸ Set the location/position of the panel (bottom by default).\n▸ Add a button to the panel in place of the activities link, using an icon of your preference.\n▸ Auto-hide the panel when not active/in-focus (makes use of pressure/gesture for showing the panel).\n▸ Display and manage your favorites/running apps directly on the panel.\n▸ Move the date menu to the aggregate/tray area.\n▸ Access and manage your extension preferences directly from the aggregate menu.\n▸ Customize behavior of the overview and panel(hot-corners/animations/effects) to suit your preferences.\n▸ More to come soon!\n\nThis project is loosely based on the Panel Settings extension:\nhttps://github.com/eddiefullmetal/gnome-shell-extensions/tree/master/panelSettings%40eddiefullmetal.gr\n\nSadly, Panel Settings has not seen any maintenance in years, though this is why I decided to create MMOD Panel.\n\nI also took inspiration from the following Gnome extensions: System-Monitor, Taskbar, and DashToDock.\n\nFor those of you who are wondering, the theme used in the screen shot is the Zukitwo-Dark-Shell Shell Theme; \neverything else is default Gnome on Debian Buster. However, the author of the aforementioned shell theme has \nchanged the name for various reasons to Ciliora-Prima-Shell - which can be found here:\n\n http://gnome-look.org/content/show.php?content=165096\n\nVersion 10 (1.2.1-10) for Gnome-Shell: 3.10, 3.12, 3.12.2, 3.14, 3.14.4, 3.16, 3.16.2, 3.18, 3.20, 3.22, 3.24, 3.26, 3.26.2, 3.28, 3.30, 3.32, 3.34, 3.35, 3.35.91, 3.36, 3.36.3, 3.36.4, 3.36.6, 3.38, 3.38.2\nRik \n\nGerman Translation(s) for MMOD-Panel courtesy of Jonius Zeidler \n\nSource Repository: https://gitlab.com/mmod/mmod-panel/\n", "link": "https://extensions.gnome.org/extension/898/mmod-panel/", "shell_version_map": {"38": {"version": "10", "sha256": "00c52ddg039hd0r6qkq8hmhcl6x6s8lbndn7g53cscjwd0yqxk7j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVwZ3JhZGVzIHRoZSBUb3BiYXIgaW4gR25vbWUzLCBjcmVhdGluZyBhIGN1c3RvbWl6YWJsZSBwYW5lbCBhbmQgcHJvdmlkaW5nIG9wdGlvbnMgZm9yIGZpbmUtdHVuaW5nIHlvdXIgRGVza3RvcCBFeHBlcmllbmNlLlxuXG5GZWF0dXJlcyBpbmNsdWRlOlxuXHUyNWI4IFNldCBjb21mb3J0IGxldmVscyB0byBwcm92aWRlIHRoZW1lIHN1cHBvcnQgYW5kIGZpbmUtdHVuZSB0aGUgb3ZlcmFsbCBsb29rIGFuZCBmZWVsIG9mIHRoZSBwYW5lbC5cblx1MjViOCBTZXQgdGhlIGxvY2F0aW9uL3Bvc2l0aW9uIG9mIHRoZSBwYW5lbCAoYm90dG9tIGJ5IGRlZmF1bHQpLlxuXHUyNWI4IEFkZCBhIGJ1dHRvbiB0byB0aGUgcGFuZWwgaW4gcGxhY2Ugb2YgdGhlIGFjdGl2aXRpZXMgbGluaywgdXNpbmcgYW4gaWNvbiBvZiB5b3VyIHByZWZlcmVuY2UuXG5cdTI1YjggQXV0by1oaWRlIHRoZSBwYW5lbCB3aGVuIG5vdCBhY3RpdmUvaW4tZm9jdXMgKG1ha2VzIHVzZSBvZiBwcmVzc3VyZS9nZXN0dXJlIGZvciBzaG93aW5nIHRoZSBwYW5lbCkuXG5cdTI1YjggRGlzcGxheSBhbmQgbWFuYWdlIHlvdXIgZmF2b3JpdGVzL3J1bm5pbmcgYXBwcyBkaXJlY3RseSBvbiB0aGUgcGFuZWwuXG5cdTI1YjggTW92ZSB0aGUgZGF0ZSBtZW51IHRvIHRoZSBhZ2dyZWdhdGUvdHJheSBhcmVhLlxuXHUyNWI4IEFjY2VzcyBhbmQgbWFuYWdlIHlvdXIgZXh0ZW5zaW9uIHByZWZlcmVuY2VzIGRpcmVjdGx5IGZyb20gdGhlIGFnZ3JlZ2F0ZSBtZW51LlxuXHUyNWI4IEN1c3RvbWl6ZSBiZWhhdmlvciBvZiB0aGUgb3ZlcnZpZXcgYW5kIHBhbmVsKGhvdC1jb3JuZXJzL2FuaW1hdGlvbnMvZWZmZWN0cykgdG8gc3VpdCB5b3VyIHByZWZlcmVuY2VzLlxuXHUyNWI4IE1vcmUgdG8gY29tZSBzb29uIVxuXG5UaGlzIHByb2plY3QgaXMgbG9vc2VseSBiYXNlZCBvbiB0aGUgUGFuZWwgU2V0dGluZ3MgZXh0ZW5zaW9uOlxuaHR0cHM6Ly9naXRodWIuY29tL2VkZGllZnVsbG1ldGFsL2dub21lLXNoZWxsLWV4dGVuc2lvbnMvdHJlZS9tYXN0ZXIvcGFuZWxTZXR0aW5ncyU0MGVkZGllZnVsbG1ldGFsLmdyXG5cblNhZGx5LCBQYW5lbCBTZXR0aW5ncyBoYXMgbm90IHNlZW4gYW55IG1haW50ZW5hbmNlIGluIHllYXJzLCB0aG91Z2ggdGhpcyBpcyB3aHkgSSBkZWNpZGVkIHRvIGNyZWF0ZSBNTU9EIFBhbmVsLlxuXG5JIGFsc28gdG9vayBpbnNwaXJhdGlvbiBmcm9tIHRoZSBmb2xsb3dpbmcgR25vbWUgZXh0ZW5zaW9uczogU3lzdGVtLU1vbml0b3IsIFRhc2tiYXIsIGFuZCBEYXNoVG9Eb2NrLlxuXG5Gb3IgdGhvc2Ugb2YgeW91IHdobyBhcmUgd29uZGVyaW5nLCB0aGUgdGhlbWUgdXNlZCBpbiB0aGUgc2NyZWVuIHNob3QgaXMgdGhlIFp1a2l0d28tRGFyay1TaGVsbCBTaGVsbCBUaGVtZTsgXG5ldmVyeXRoaW5nIGVsc2UgaXMgZGVmYXVsdCBHbm9tZSBvbiBEZWJpYW4gQnVzdGVyLiBIb3dldmVyLCB0aGUgYXV0aG9yIG9mIHRoZSBhZm9yZW1lbnRpb25lZCBzaGVsbCB0aGVtZSBoYXMgXG5jaGFuZ2VkIHRoZSBuYW1lIGZvciB2YXJpb3VzIHJlYXNvbnMgdG8gQ2lsaW9yYS1QcmltYS1TaGVsbCAtIHdoaWNoIGNhbiBiZSBmb3VuZCBoZXJlOlxuXG4gIGh0dHA6Ly9nbm9tZS1sb29rLm9yZy9jb250ZW50L3Nob3cucGhwP2NvbnRlbnQ9MTY1MDk2XG5cblZlcnNpb24gMTAgKDEuMi4xLTEwKSBmb3IgR25vbWUtU2hlbGw6IDMuMTAsIDMuMTIsIDMuMTIuMiwgMy4xNCwgMy4xNC40LCAzLjE2LCAzLjE2LjIsIDMuMTgsIDMuMjAsIDMuMjIsIDMuMjQsIDMuMjYsIDMuMjYuMiwgMy4yOCwgMy4zMCwgMy4zMiwgMy4zNCwgMy4zNSwgMy4zNS45MSwgMy4zNiwgMy4zNi4zLCAzLjM2LjQsIDMuMzYuNiwgMy4zOCwgMy4zOC4yXG5SaWsgPHJpa0BtbW9kLmNvPlxuXG5HZXJtYW4gVHJhbnNsYXRpb24ocykgZm9yIE1NT0QtUGFuZWwgY291cnRlc3kgb2YgSm9uaXVzIFplaWRsZXIgPGpvbmF0YW5femVpZGxlckBnbXguZGU+XG5cblNvdXJjZSBSZXBvc2l0b3J5OiBodHRwczovL2dpdGxhYi5jb20vbW1vZC9tbW9kLXBhbmVsL1xuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAibW1vZC1wYW5lbCIsCiAgIm5hbWUiOiAiTU1PRCBQYW5lbCIsCiAgIm9yaWdpbmFsLWF1dGhvciI6ICJyaWtAbW1vZC5jbyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xMCIsCiAgICAiMy4xMiIsCiAgICAiMy4xMi4yIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE0LjQiLAogICAgIjMuMTYuMiIsCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4yNi4yIiwKICAgICIzLjMyIiwKICAgICIzLjI4LjIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjMuMzYuMyIsCiAgICAiMy4zNi40IiwKICAgICIzLjM1LjkxIiwKICAgICIzLjM2LjYiLAogICAgIjMuMzguMiIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL21tb2QvbW1vZC1wYW5lbC8iLAogICJ1dWlkIjogIm1tb2QtcGFuZWxAbW1vZ3AuY29tIiwKICAidmVyc2lvbiI6IDEwCn0="}}}
+, {"uuid": "modern-calc@kaer", "name": "Modern Calc", "pname": "modern-calc", "description": "A full featured calculator for gnome-shell.", "link": "https://extensions.gnome.org/extension/900/modern-calc/", "shell_version_map": {"38": {"version": "11", "sha256": "0f0fmldcr8ywghp8w61wvi2qb29yc82xmgkqb7khj14zgv4l6apw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZnVsbCBmZWF0dXJlZCBjYWxjdWxhdG9yIGZvciBnbm9tZS1zaGVsbC4iLAogICJuYW1lIjogIk1vZGVybiBDYWxjIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIkthZXIgKHRoZS50aGluLmtpbmcud2F5KzIwMTRAZ21haWwuY29tKSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5tb2Rlcm4tY2FsYyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2thZXIvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLW1vZGVybi1jYWxjIiwKICAidXVpZCI6ICJtb2Rlcm4tY2FsY0BrYWVyIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "disconnect-wifi@kgshank.net", "name": "Disconnect Wifi", "pname": "disconnect-wifi", "description": "Adds a Disconnect option for Wifi in status menu, when a network is connected. Shows a Reconnect option, after network is disconnected.", "link": "https://extensions.gnome.org/extension/904/disconnect-wifi/", "shell_version_map": {"38": {"version": "28", "sha256": "0j5f3ckx43zqdhr5iby36rhllgd9pvl8sshpzwfwdwff220yablr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYSBEaXNjb25uZWN0IG9wdGlvbiBmb3IgV2lmaSBpbiBzdGF0dXMgbWVudSwgd2hlbiBhIG5ldHdvcmsgaXMgY29ubmVjdGVkLiBTaG93cyBhIFJlY29ubmVjdCBvcHRpb24sIGFmdGVyIG5ldHdvcmsgaXMgZGlzY29ubmVjdGVkLiIsCiAgIm5hbWUiOiAiRGlzY29ubmVjdCBXaWZpIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIkdvcEkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2dzaGFuay9nc2UtZGlzY29ubmVjdC13aWZpIiwKICAidXVpZCI6ICJkaXNjb25uZWN0LXdpZmlAa2dzaGFuay5uZXQiLAogICJ2ZXJzaW9uIjogMjgKfQ=="}, "40": {"version": "28", "sha256": "0j5f3ckx43zqdhr5iby36rhllgd9pvl8sshpzwfwdwff220yablr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYSBEaXNjb25uZWN0IG9wdGlvbiBmb3IgV2lmaSBpbiBzdGF0dXMgbWVudSwgd2hlbiBhIG5ldHdvcmsgaXMgY29ubmVjdGVkLiBTaG93cyBhIFJlY29ubmVjdCBvcHRpb24sIGFmdGVyIG5ldHdvcmsgaXMgZGlzY29ubmVjdGVkLiIsCiAgIm5hbWUiOiAiRGlzY29ubmVjdCBXaWZpIiwKICAib3JpZ2luYWwtYXV0aG9yIjogIkdvcEkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2dzaGFuay9nc2UtZGlzY29ubmVjdC13aWZpIiwKICAidXVpZCI6ICJkaXNjb25uZWN0LXdpZmlAa2dzaGFuay5uZXQiLAogICJ2ZXJzaW9uIjogMjgKfQ=="}}}
, {"uuid": "refresh-wifi@kgshank.net", "name": "Refresh Wifi Connections", "pname": "refresh-wifi-connections", "description": "This extension adds a refresh button to the Wi-Fi connection selection dialog to manually request for a network scan.\n\nNOTE: In GNOME Shell 3.32 and above, the available network list is automatically updated every 15 seconds, so most people probably don't need this extension anymore.", "link": "https://extensions.gnome.org/extension/905/refresh-wifi-connections/", "shell_version_map": {"38": {"version": "14", "sha256": "18jszbk9sszyjvjdh28s1ynj8s5f8y5xqh4mqy1msnbg68m228bc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGFkZHMgYSByZWZyZXNoIGJ1dHRvbiB0byB0aGUgV2ktRmkgY29ubmVjdGlvbiBzZWxlY3Rpb24gZGlhbG9nIHRvIG1hbnVhbGx5IHJlcXVlc3QgZm9yIGEgbmV0d29yayBzY2FuLlxuXG5OT1RFOiBJbiBHTk9NRSBTaGVsbCAzLjMyIGFuZCBhYm92ZSwgdGhlIGF2YWlsYWJsZSBuZXR3b3JrIGxpc3QgaXMgYXV0b21hdGljYWxseSB1cGRhdGVkIGV2ZXJ5IDE1IHNlY29uZHMsIHNvIG1vc3QgcGVvcGxlIHByb2JhYmx5IGRvbid0IG5lZWQgdGhpcyBleHRlbnNpb24gYW55bW9yZS4iLAogICJuYW1lIjogIlJlZnJlc2ggV2lmaSBDb25uZWN0aW9ucyIsCiAgIm9yaWdpbmFsLWF1dGhvciI6ICJHb3BJIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2dzaGFuay9nc2UtcmVmcmVzaC13aWZpIiwKICAidXVpZCI6ICJyZWZyZXNoLXdpZmlAa2dzaGFuay5uZXQiLAogICJ2ZXJzaW9uIjogMTQKfQ=="}}}
, {"uuid": "sound-output-device-chooser@kgshank.net", "name": "Sound Input & Output Device Chooser", "pname": "sound-output-device-chooser", "description": "Shows a list of sound output and input devices (similar to gnome sound settings) in the status menu below the volume slider. Various active ports like HDMI , Speakers etc. of the same device are also displayed for selection. V20+ needs python as dependency. If you want to continue with the old method without Python, use options to switch off New Port identification. But it works with only English", "link": "https://extensions.gnome.org/extension/906/sound-output-device-chooser/", "shell_version_map": {"38": {"version": "38", "sha256": "1dxn1cag03y9kak9pipniwazqai3mxizmhjm5gp86ifgaaaps5sc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIGEgbGlzdCBvZiBzb3VuZCBvdXRwdXQgYW5kIGlucHV0IGRldmljZXMgKHNpbWlsYXIgdG8gZ25vbWUgc291bmQgc2V0dGluZ3MpIGluIHRoZSBzdGF0dXMgbWVudSBiZWxvdyB0aGUgdm9sdW1lIHNsaWRlci4gVmFyaW91cyBhY3RpdmUgcG9ydHMgbGlrZSBIRE1JICwgU3BlYWtlcnMgZXRjLiBvZiB0aGUgc2FtZSBkZXZpY2UgYXJlIGFsc28gZGlzcGxheWVkIGZvciBzZWxlY3Rpb24uIFYyMCsgbmVlZHMgcHl0aG9uIGFzIGRlcGVuZGVuY3kuIElmIHlvdSB3YW50IHRvIGNvbnRpbnVlIHdpdGggdGhlIG9sZCBtZXRob2Qgd2l0aG91dCBQeXRob24sIHVzZSBvcHRpb25zIHRvIHN3aXRjaCBvZmYgTmV3IFBvcnQgaWRlbnRpZmljYXRpb24uIEJ1dCBpdCB3b3JrcyB3aXRoIG9ubHkgRW5nbGlzaCIsCiAgIm5hbWUiOiAiU291bmQgSW5wdXQgJiBPdXRwdXQgRGV2aWNlIENob29zZXIiLAogICJvcmlnaW5hbC1hdXRob3IiOiAiR29wSSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9rZ3NoYW5rL2dzZS1zb3VuZC1vdXRwdXQtZGV2aWNlLWNob29zZXIiLAogICJ1dWlkIjogInNvdW5kLW91dHB1dC1kZXZpY2UtY2hvb3NlckBrZ3NoYW5rLm5ldCIsCiAgInZlcnNpb24iOiAzOAp9"}, "40": {"version": "38", "sha256": "1dxn1cag03y9kak9pipniwazqai3mxizmhjm5gp86ifgaaaps5sc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIGEgbGlzdCBvZiBzb3VuZCBvdXRwdXQgYW5kIGlucHV0IGRldmljZXMgKHNpbWlsYXIgdG8gZ25vbWUgc291bmQgc2V0dGluZ3MpIGluIHRoZSBzdGF0dXMgbWVudSBiZWxvdyB0aGUgdm9sdW1lIHNsaWRlci4gVmFyaW91cyBhY3RpdmUgcG9ydHMgbGlrZSBIRE1JICwgU3BlYWtlcnMgZXRjLiBvZiB0aGUgc2FtZSBkZXZpY2UgYXJlIGFsc28gZGlzcGxheWVkIGZvciBzZWxlY3Rpb24uIFYyMCsgbmVlZHMgcHl0aG9uIGFzIGRlcGVuZGVuY3kuIElmIHlvdSB3YW50IHRvIGNvbnRpbnVlIHdpdGggdGhlIG9sZCBtZXRob2Qgd2l0aG91dCBQeXRob24sIHVzZSBvcHRpb25zIHRvIHN3aXRjaCBvZmYgTmV3IFBvcnQgaWRlbnRpZmljYXRpb24uIEJ1dCBpdCB3b3JrcyB3aXRoIG9ubHkgRW5nbGlzaCIsCiAgIm5hbWUiOiAiU291bmQgSW5wdXQgJiBPdXRwdXQgRGV2aWNlIENob29zZXIiLAogICJvcmlnaW5hbC1hdXRob3IiOiAiR29wSSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9rZ3NoYW5rL2dzZS1zb3VuZC1vdXRwdXQtZGV2aWNlLWNob29zZXIiLAogICJ1dWlkIjogInNvdW5kLW91dHB1dC1kZXZpY2UtY2hvb3NlckBrZ3NoYW5rLm5ldCIsCiAgInZlcnNpb24iOiAzOAp9"}}}
@@ -82,7 +85,7 @@
, {"uuid": "transcode-appsearch@k.kubusha@gmail.com", "name": "Transcode App Search", "pname": "transcodeappsearch", "description": "Searching apps both direct and transcoded name (English, Russian, Ukrainian langs)", "link": "https://extensions.gnome.org/extension/928/transcodeappsearch/", "shell_version_map": {"38": {"version": "8", "sha256": "1v6yzp4s0a0i5l9f4la1l9yr83pcpwmrpb5970x48i75mlmlnmjd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNlYXJjaGluZyBhcHBzIGJvdGggZGlyZWN0IGFuZCB0cmFuc2NvZGVkIG5hbWUgKEVuZ2xpc2gsIFJ1c3NpYW4sIFVrcmFpbmlhbiBsYW5ncykiLAogICJuYW1lIjogIlRyYW5zY29kZSBBcHAgU2VhcmNoIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3N0YXR5YW4vZ25vbWUtZXh0ZW5zaW9uLXRyYW5zY29kZS1zZWFyY2hhcHAiLAogICJ1dWlkIjogInRyYW5zY29kZS1hcHBzZWFyY2hAay5rdWJ1c2hhQGdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiA4Cn0="}, "40": {"version": "8", "sha256": "1v6yzp4s0a0i5l9f4la1l9yr83pcpwmrpb5970x48i75mlmlnmjd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNlYXJjaGluZyBhcHBzIGJvdGggZGlyZWN0IGFuZCB0cmFuc2NvZGVkIG5hbWUgKEVuZ2xpc2gsIFJ1c3NpYW4sIFVrcmFpbmlhbiBsYW5ncykiLAogICJuYW1lIjogIlRyYW5zY29kZSBBcHAgU2VhcmNoIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3N0YXR5YW4vZ25vbWUtZXh0ZW5zaW9uLXRyYW5zY29kZS1zZWFyY2hhcHAiLAogICJ1dWlkIjogInRyYW5zY29kZS1hcHBzZWFyY2hAay5rdWJ1c2hhQGdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiA4Cn0="}}}
, {"uuid": "synaptic-button@fthx", "name": "Synaptic Button", "pname": "synaptic-button", "description": "Button that directly starts Synaptic package manager.\n\n For snap management without Snap Store, consider Snap Manager extension.", "link": "https://extensions.gnome.org/extension/938/synaptic-button/", "shell_version_map": {"38": {"version": "4", "sha256": "0wdi35qz5rxs4fvcxlrvlyslrspsgfkryvh0na9vakbvhpmv7skv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJ1dHRvbiB0aGF0IGRpcmVjdGx5IHN0YXJ0cyBTeW5hcHRpYyBwYWNrYWdlIG1hbmFnZXIuXG5cbiBGb3Igc25hcCBtYW5hZ2VtZW50IHdpdGhvdXQgU25hcCBTdG9yZSwgY29uc2lkZXIgU25hcCBNYW5hZ2VyIGV4dGVuc2lvbi4iLAogICJuYW1lIjogIlN5bmFwdGljIEJ1dHRvbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvc3luYXB0aWMtYnV0dG9uIiwKICAidXVpZCI6ICJzeW5hcHRpYy1idXR0b25AZnRoeCIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "cpupower@mko-sl.de", "name": "CPU Power Manager", "pname": "cpu-power-manager", "description": "Manage Intel_pstate CPU Frequency scaling driver", "link": "https://extensions.gnome.org/extension/945/cpu-power-manager/", "shell_version_map": {"38": {"version": "23", "sha256": "1iv23vr8zkarclll41h0h8hx7dhh3q84lsmpn8igib7x7d65mslx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hbmFnZSBJbnRlbF9wc3RhdGUgQ1BVIEZyZXF1ZW5jeSBzY2FsaW5nIGRyaXZlciIsCiAgImxvY2FsZWRpciI6ICIvdXNyL2xvY2FsL3NoYXJlL2xvY2FsZSIsCiAgIm5hbWUiOiAiQ1BVIFBvd2VyIE1hbmFnZXIiLAogICJzY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuY3B1cG93ZXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9tYXJ0aW4zMTgyMS9jcHVwb3dlciIsCiAgInV1aWQiOiAiY3B1cG93ZXJAbWtvLXNsLmRlIiwKICAidmVyc2lvbiI6IDIzCn0="}}}
-, {"uuid": "world_clock_lite@ailin.nemui", "name": "Panel World Clock (Lite)", "pname": "panel-world-clock-lite", "description": "A world clock for the panel\n\nInstall gnome-clocks to get started!\nHint: Eiðar has the same time as UTC\n\nGnome ≤3.14? https://extensions.gnome.org/extension/697/panel-world-clock/", "link": "https://extensions.gnome.org/extension/946/panel-world-clock-lite/", "shell_version_map": {"38": {"version": "11", "sha256": "0sg76mlvyy0m6yqv6qrmyizhjd54qp8knra3z0sna1xxg0i51d42", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd29ybGQgY2xvY2sgZm9yIHRoZSBwYW5lbFxuXG5JbnN0YWxsIGdub21lLWNsb2NrcyB0byBnZXQgc3RhcnRlZCFcbkhpbnQ6IEVpXHUwMGYwYXIgaGFzIHRoZSBzYW1lIHRpbWUgYXMgVVRDXG5cbkdub21lIFx1MjI2NDMuMTQ/IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzY5Ny9wYW5lbC13b3JsZC1jbG9jay8iLAogICJuYW1lIjogIlBhbmVsIFdvcmxkIENsb2NrIChMaXRlKSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3JsZC1jbG9jayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJ3b3JsZF9jbG9ja19saXRlQGFpbGluLm5lbXVpIiwKICAidmVyc2lvbiI6IDExCn0="}, "40": {"version": "13", "sha256": "1v0p6ia7x8gs2ld0mz78lhavwa32gx8r81j14kng626f91c965j3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd29ybGQgY2xvY2sgZm9yIHRoZSBwYW5lbFxuXG5JbnN0YWxsIGdub21lLWNsb2NrcyB0byBnZXQgc3RhcnRlZCFcbkhpbnQ6IEVpXHUwMGYwYXIgaGFzIHRoZSBzYW1lIHRpbWUgYXMgVVRDXG5cbkdub21lIFx1MjI2NDMuMTQ/IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzY5Ny9wYW5lbC13b3JsZC1jbG9jay8iLAogICJuYW1lIjogIlBhbmVsIFdvcmxkIENsb2NrIChMaXRlKSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3JsZC1jbG9jayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAid29ybGRfY2xvY2tfbGl0ZUBhaWxpbi5uZW11aSIsCiAgInZlcnNpb24iOiAxMwp9"}}}
+, {"uuid": "world_clock_lite@ailin.nemui", "name": "Panel World Clock (Lite)", "pname": "panel-world-clock-lite", "description": "A world clock for the panel\n\nInstall gnome-clocks to get started!\nHint: Eiðar has the same time as UTC\n\nGnome ≤3.14? https://extensions.gnome.org/extension/697/panel-world-clock/", "link": "https://extensions.gnome.org/extension/946/panel-world-clock-lite/", "shell_version_map": {"38": {"version": "11", "sha256": "0sg76mlvyy0m6yqv6qrmyizhjd54qp8knra3z0sna1xxg0i51d42", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd29ybGQgY2xvY2sgZm9yIHRoZSBwYW5lbFxuXG5JbnN0YWxsIGdub21lLWNsb2NrcyB0byBnZXQgc3RhcnRlZCFcbkhpbnQ6IEVpXHUwMGYwYXIgaGFzIHRoZSBzYW1lIHRpbWUgYXMgVVRDXG5cbkdub21lIFx1MjI2NDMuMTQ/IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzY5Ny9wYW5lbC13b3JsZC1jbG9jay8iLAogICJuYW1lIjogIlBhbmVsIFdvcmxkIENsb2NrIChMaXRlKSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3JsZC1jbG9jayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJ3b3JsZF9jbG9ja19saXRlQGFpbGluLm5lbXVpIiwKICAidmVyc2lvbiI6IDExCn0="}, "40": {"version": "14", "sha256": "0q4fz7n6k70wlbd314xpr5zfkv3l35z3hc5kz4fwg859q3yvrd55", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd29ybGQgY2xvY2sgZm9yIHRoZSBwYW5lbFxuXG5JbnN0YWxsIGdub21lLWNsb2NrcyB0byBnZXQgc3RhcnRlZCFcbkhpbnQ6IEVpXHUwMGYwYXIgaGFzIHRoZSBzYW1lIHRpbWUgYXMgVVRDXG5cbkdub21lIFx1MjI2NDMuMTQ/IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzY5Ny9wYW5lbC13b3JsZC1jbG9jay8iLAogICJuYW1lIjogIlBhbmVsIFdvcmxkIENsb2NrIChMaXRlKSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy53b3JsZC1jbG9jayIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogIndvcmxkX2Nsb2NrX2xpdGVAYWlsaW4ubmVtdWkiLAogICJ2ZXJzaW9uIjogMTQKfQ=="}}}
, {"uuid": "dim-on-battery@nailfarmer.nailfarmer.com", "name": "Dim On Battery Power", "pname": "dim-on-battery-power", "description": "Automatically dims the screen when the machine is running on battery power.", "link": "https://extensions.gnome.org/extension/947/dim-on-battery-power/", "shell_version_map": {"38": {"version": "25", "sha256": "0aqcw2lbcya5x9xx2y8srfjjar9jww9hzsxqx44h65jdw1zdl1vl", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF1dG9tYXRpY2FsbHkgZGltcyB0aGUgc2NyZWVuIHdoZW4gdGhlIG1hY2hpbmUgaXMgcnVubmluZyBvbiBiYXR0ZXJ5IHBvd2VyLiIsCiAgIm5hbWUiOiAiRGltIE9uIEJhdHRlcnkgUG93ZXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMTQiLAogICAgIjMuMTYiLAogICAgIjMuMTgiLAogICAgIjMuMjAiLAogICAgIjMuMjIiLAogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vbmFpbGZhcm1lci9nbm9tZS1zaGVsbC1kaW0tb24tYmF0dGVyeS1leHRlbnNpb24iLAogICJ1dWlkIjogImRpbS1vbi1iYXR0ZXJ5QG5haWxmYXJtZXIubmFpbGZhcm1lci5jb20iLAogICJ2ZXJzaW9uIjogMjUKfQ=="}, "40": {"version": "25", "sha256": "0aqcw2lbcya5x9xx2y8srfjjar9jww9hzsxqx44h65jdw1zdl1vl", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF1dG9tYXRpY2FsbHkgZGltcyB0aGUgc2NyZWVuIHdoZW4gdGhlIG1hY2hpbmUgaXMgcnVubmluZyBvbiBiYXR0ZXJ5IHBvd2VyLiIsCiAgIm5hbWUiOiAiRGltIE9uIEJhdHRlcnkgUG93ZXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMTQiLAogICAgIjMuMTYiLAogICAgIjMuMTgiLAogICAgIjMuMjAiLAogICAgIjMuMjIiLAogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vbmFpbGZhcm1lci9nbm9tZS1zaGVsbC1kaW0tb24tYmF0dGVyeS1leHRlbnNpb24iLAogICJ1dWlkIjogImRpbS1vbi1iYXR0ZXJ5QG5haWxmYXJtZXIubmFpbGZhcm1lci5jb20iLAogICJ2ZXJzaW9uIjogMjUKfQ=="}}}
, {"uuid": "bottompanel@tmoer93", "name": "BottomPanel", "pname": "bottompanel", "description": "Moves the GNOME panel to the bottom of the screen\n\nSource here: https://github.com/Thoma5/gnome-shell-extension-bottompanel", "link": "https://extensions.gnome.org/extension/949/bottompanel/", "shell_version_map": {"38": {"version": "11", "sha256": "0r4z1pww6w8q0f7gzsmc363hd2178r40ifsppyigj67mwwik3mkq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmVzIHRoZSBHTk9NRSBwYW5lbCB0byB0aGUgYm90dG9tIG9mIHRoZSBzY3JlZW5cblxuU291cmNlIGhlcmU6IGh0dHBzOi8vZ2l0aHViLmNvbS9UaG9tYTUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWJvdHRvbXBhbmVsIiwKICAibmFtZSI6ICJCb3R0b21QYW5lbCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJib3R0b21wYW5lbEB0bW9lcjkzIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "dejadup-backup@fthx", "name": "Déjà Dup Backup Button", "pname": "deja-dup-backup-button", "description": "Button that directly starts Déjà Dup backup, following Déjà Dup backup settings.\n\n It simply runs 'deja-dup --backup' and shows Déjà Dup window during backup.", "link": "https://extensions.gnome.org/extension/955/deja-dup-backup-button/", "shell_version_map": {"38": {"version": "7", "sha256": "1d5xl18297zlw6g6jqwvwf32yiiqbz7jqyb4pz691d8ngqvvlwpp", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJ1dHRvbiB0aGF0IGRpcmVjdGx5IHN0YXJ0cyBEXHUwMGU5alx1MDBlMCBEdXAgYmFja3VwLCBmb2xsb3dpbmcgRFx1MDBlOWpcdTAwZTAgRHVwIGJhY2t1cCBzZXR0aW5ncy5cblxuIEl0IHNpbXBseSBydW5zICdkZWphLWR1cCAtLWJhY2t1cCcgYW5kIHNob3dzIERcdTAwZTlqXHUwMGUwIER1cCB3aW5kb3cgZHVyaW5nIGJhY2t1cC4iLAogICJuYW1lIjogIkRcdTAwZTlqXHUwMGUwIER1cCBCYWNrdXAgQnV0dG9uIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvZGVqYWR1cC1iYWNrdXAiLAogICJ1dWlkIjogImRlamFkdXAtYmFja3VwQGZ0aHgiLAogICJ2ZXJzaW9uIjogNwp9"}, "40": {"version": "7", "sha256": "1d5xl18297zlw6g6jqwvwf32yiiqbz7jqyb4pz691d8ngqvvlwpp", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJ1dHRvbiB0aGF0IGRpcmVjdGx5IHN0YXJ0cyBEXHUwMGU5alx1MDBlMCBEdXAgYmFja3VwLCBmb2xsb3dpbmcgRFx1MDBlOWpcdTAwZTAgRHVwIGJhY2t1cCBzZXR0aW5ncy5cblxuIEl0IHNpbXBseSBydW5zICdkZWphLWR1cCAtLWJhY2t1cCcgYW5kIHNob3dzIERcdTAwZTlqXHUwMGUwIER1cCB3aW5kb3cgZHVyaW5nIGJhY2t1cC4iLAogICJuYW1lIjogIkRcdTAwZTlqXHUwMGUwIER1cCBCYWNrdXAgQnV0dG9uIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvZGVqYWR1cC1iYWNrdXAiLAogICJ1dWlkIjogImRlamFkdXAtYmFja3VwQGZ0aHgiLAogICJ2ZXJzaW9uIjogNwp9"}}}
@@ -146,7 +149,7 @@
, {"uuid": "fuzzy-clock@keepawayfromfire.co.uk", "name": "Fuzzy Clock", "pname": "fuzzy-clock", "description": "Make the top bar clock fuzzy", "link": "https://extensions.gnome.org/extension/1281/fuzzy-clock/", "shell_version_map": {"38": {"version": "3", "sha256": "0mgih6aq16z0q4dlbrvnlp8bamk6pmxydjnq6019agc5cjmqpr2l", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgdGhlIHRvcCBiYXIgY2xvY2sgZnV6enkiLAogICJuYW1lIjogIkZ1enp5IENsb2NrIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vQ2otTWFsb25lL0Z1enp5LUNsb2NrIiwKICAidXVpZCI6ICJmdXp6eS1jbG9ja0BrZWVwYXdheWZyb21maXJlLmNvLnVrIiwKICAidmVyc2lvbiI6IDMKfQ=="}, "40": {"version": "3", "sha256": "0mgih6aq16z0q4dlbrvnlp8bamk6pmxydjnq6019agc5cjmqpr2l", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgdGhlIHRvcCBiYXIgY2xvY2sgZnV6enkiLAogICJuYW1lIjogIkZ1enp5IENsb2NrIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vQ2otTWFsb25lL0Z1enp5LUNsb2NrIiwKICAidXVpZCI6ICJmdXp6eS1jbG9ja0BrZWVwYXdheWZyb21maXJlLmNvLnVrIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "ds4battery@slie.ru", "name": "Dual Shock 4 battery percentage", "pname": "dual-shock-4-battery-percentage", "description": "Show DS4/DS3 battery remaining power percentage at the top panel", "link": "https://extensions.gnome.org/extension/1283/dual-shock-4-battery-percentage/", "shell_version_map": {"38": {"version": "7", "sha256": "0yb1j3hlza96zbd82gjc7wyjqkj5vjzcaj8l5n8xhfrdi7icxf6j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgRFM0L0RTMyBiYXR0ZXJ5IHJlbWFpbmluZyBwb3dlciBwZXJjZW50YWdlIGF0IHRoZSB0b3AgcGFuZWwiLAogICJuYW1lIjogIkR1YWwgU2hvY2sgNCBiYXR0ZXJ5IHBlcmNlbnRhZ2UiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgIm1lQHNsaWUucnUiCiAgXSwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdGhhbmtqdXJhL2RzNGJhdHRlcnkiLAogICJ1dWlkIjogImRzNGJhdHRlcnlAc2xpZS5ydSIsCiAgInZlcnNpb24iOiA3Cn0="}, "40": {"version": "7", "sha256": "0yb1j3hlza96zbd82gjc7wyjqkj5vjzcaj8l5n8xhfrdi7icxf6j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgRFM0L0RTMyBiYXR0ZXJ5IHJlbWFpbmluZyBwb3dlciBwZXJjZW50YWdlIGF0IHRoZSB0b3AgcGFuZWwiLAogICJuYW1lIjogIkR1YWwgU2hvY2sgNCBiYXR0ZXJ5IHBlcmNlbnRhZ2UiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgIm1lQHNsaWUucnUiCiAgXSwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdGhhbmtqdXJhL2RzNGJhdHRlcnkiLAogICJ1dWlkIjogImRzNGJhdHRlcnlAc2xpZS5ydSIsCiAgInZlcnNpb24iOiA3Cn0="}}}
, {"uuid": "hotel-manager@hardpixel.eu", "name": "Hotel Manager", "pname": "hotel-manager", "description": "Hotel Manager allows to start and stop the Hotel daemon and your development servers via a menu in the status area.", "link": "https://extensions.gnome.org/extension/1285/hotel-manager/", "shell_version_map": {"38": {"version": "14", "sha256": "0ag9rbfcaw2naa1qg92dl0pclb0d3lx1bsra83cdcx6m853mff6k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhvdGVsIE1hbmFnZXIgYWxsb3dzIHRvIHN0YXJ0IGFuZCBzdG9wIHRoZSBIb3RlbCBkYWVtb24gYW5kIHlvdXIgZGV2ZWxvcG1lbnQgc2VydmVycyB2aWEgYSBtZW51IGluIHRoZSBzdGF0dXMgYXJlYS4iLAogICJuYW1lIjogIkhvdGVsIE1hbmFnZXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2hhcmRwaXhlbC9ob3RlbC1tYW5hZ2VyIiwKICAidXVpZCI6ICJob3RlbC1tYW5hZ2VyQGhhcmRwaXhlbC5ldSIsCiAgInZlcnNpb24iOiAxNAp9"}, "40": {"version": "14", "sha256": "0ag9rbfcaw2naa1qg92dl0pclb0d3lx1bsra83cdcx6m853mff6k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhvdGVsIE1hbmFnZXIgYWxsb3dzIHRvIHN0YXJ0IGFuZCBzdG9wIHRoZSBIb3RlbCBkYWVtb24gYW5kIHlvdXIgZGV2ZWxvcG1lbnQgc2VydmVycyB2aWEgYSBtZW51IGluIHRoZSBzdGF0dXMgYXJlYS4iLAogICJuYW1lIjogIkhvdGVsIE1hbmFnZXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2hhcmRwaXhlbC9ob3RlbC1tYW5hZ2VyIiwKICAidXVpZCI6ICJob3RlbC1tYW5hZ2VyQGhhcmRwaXhlbC5ldSIsCiAgInZlcnNpb24iOiAxNAp9"}}}
-, {"uuid": "unite@hardpixel.eu", "name": "Unite", "pname": "unite", "description": "Unite is a GNOME Shell extension which makes a few layout tweaks to the top panel and removes window decorations to make it look like Ubuntu Unity Shell.\n\n- Adds window buttons to the top panel for maximized windows.\n- Shows current window title in the app menu for maximized windows.\n- Removes titlebars on maximized windows.\n- Hides window controls on maximized windows with headerbars.\n- Moves the date to the right, reduces panel spacing and removes dropdown arrows.\n- Moves legacy tray icons to the top panel.\n- Moves notifications to the right.\n- Hides activities button.\n- Adds desktop name to the top panel.\n\nThis extension depends on some Xorg utilities. To install them:\n- Debian/Ubuntu: apt install x11-utils\n- Fedora/RHEL: dnf install xorg-x11-utils\n- Arch: pacman -S xorg-xprop\n\n*Settings are provided to enable/disable or customize the available tweaks.\n* Since version 2 applications on wayland with client side decorations are supported using CSS.", "link": "https://extensions.gnome.org/extension/1287/unite/", "shell_version_map": {"38": {"version": "56", "sha256": "1ic1s2g6rz16r63vkplifxl6h3ps9ymh9pyl04r96rvim1afmqxd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVuaXRlIGlzIGEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIHdoaWNoIG1ha2VzIGEgZmV3IGxheW91dCB0d2Vha3MgdG8gdGhlIHRvcCBwYW5lbCBhbmQgcmVtb3ZlcyB3aW5kb3cgZGVjb3JhdGlvbnMgdG8gbWFrZSBpdCBsb29rIGxpa2UgVWJ1bnR1IFVuaXR5IFNoZWxsLlxuXG4tIEFkZHMgd2luZG93IGJ1dHRvbnMgdG8gdGhlIHRvcCBwYW5lbCBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFNob3dzIGN1cnJlbnQgd2luZG93IHRpdGxlIGluIHRoZSBhcHAgbWVudSBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFJlbW92ZXMgdGl0bGViYXJzIG9uIG1heGltaXplZCB3aW5kb3dzLlxuLSBIaWRlcyB3aW5kb3cgY29udHJvbHMgb24gbWF4aW1pemVkIHdpbmRvd3Mgd2l0aCBoZWFkZXJiYXJzLlxuLSBNb3ZlcyB0aGUgZGF0ZSB0byB0aGUgcmlnaHQsIHJlZHVjZXMgcGFuZWwgc3BhY2luZyBhbmQgcmVtb3ZlcyBkcm9wZG93biBhcnJvd3MuXG4tIE1vdmVzIGxlZ2FjeSB0cmF5IGljb25zIHRvIHRoZSB0b3AgcGFuZWwuXG4tIE1vdmVzIG5vdGlmaWNhdGlvbnMgdG8gdGhlIHJpZ2h0LlxuLSBIaWRlcyBhY3Rpdml0aWVzIGJ1dHRvbi5cbi0gQWRkcyBkZXNrdG9wIG5hbWUgdG8gdGhlIHRvcCBwYW5lbC5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBzb21lIFhvcmcgdXRpbGl0aWVzLiBUbyBpbnN0YWxsIHRoZW06XG4tIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuLSBGZWRvcmEvUkhFTDogZG5mIGluc3RhbGwgeG9yZy14MTEtdXRpbHNcbi0gQXJjaDogcGFjbWFuIC1TIHhvcmcteHByb3BcblxuKlNldHRpbmdzIGFyZSBwcm92aWRlZCB0byBlbmFibGUvZGlzYWJsZSBvciBjdXN0b21pemUgdGhlIGF2YWlsYWJsZSB0d2Vha3MuXG4qIFNpbmNlIHZlcnNpb24gMiBhcHBsaWNhdGlvbnMgb24gd2F5bGFuZCB3aXRoIGNsaWVudCBzaWRlIGRlY29yYXRpb25zIGFyZSBzdXBwb3J0ZWQgdXNpbmcgQ1NTLiIsCiAgImdldHRleHQtZG9tYWluIjogInVuaXRlIiwKICAibmFtZSI6ICJVbml0ZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy51bml0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vaGFyZHBpeGVsL3VuaXRlLXNoZWxsIiwKICAidXVpZCI6ICJ1bml0ZUBoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogNTYKfQ=="}, "40": {"version": "56", "sha256": "1ic1s2g6rz16r63vkplifxl6h3ps9ymh9pyl04r96rvim1afmqxd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVuaXRlIGlzIGEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIHdoaWNoIG1ha2VzIGEgZmV3IGxheW91dCB0d2Vha3MgdG8gdGhlIHRvcCBwYW5lbCBhbmQgcmVtb3ZlcyB3aW5kb3cgZGVjb3JhdGlvbnMgdG8gbWFrZSBpdCBsb29rIGxpa2UgVWJ1bnR1IFVuaXR5IFNoZWxsLlxuXG4tIEFkZHMgd2luZG93IGJ1dHRvbnMgdG8gdGhlIHRvcCBwYW5lbCBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFNob3dzIGN1cnJlbnQgd2luZG93IHRpdGxlIGluIHRoZSBhcHAgbWVudSBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFJlbW92ZXMgdGl0bGViYXJzIG9uIG1heGltaXplZCB3aW5kb3dzLlxuLSBIaWRlcyB3aW5kb3cgY29udHJvbHMgb24gbWF4aW1pemVkIHdpbmRvd3Mgd2l0aCBoZWFkZXJiYXJzLlxuLSBNb3ZlcyB0aGUgZGF0ZSB0byB0aGUgcmlnaHQsIHJlZHVjZXMgcGFuZWwgc3BhY2luZyBhbmQgcmVtb3ZlcyBkcm9wZG93biBhcnJvd3MuXG4tIE1vdmVzIGxlZ2FjeSB0cmF5IGljb25zIHRvIHRoZSB0b3AgcGFuZWwuXG4tIE1vdmVzIG5vdGlmaWNhdGlvbnMgdG8gdGhlIHJpZ2h0LlxuLSBIaWRlcyBhY3Rpdml0aWVzIGJ1dHRvbi5cbi0gQWRkcyBkZXNrdG9wIG5hbWUgdG8gdGhlIHRvcCBwYW5lbC5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBzb21lIFhvcmcgdXRpbGl0aWVzLiBUbyBpbnN0YWxsIHRoZW06XG4tIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuLSBGZWRvcmEvUkhFTDogZG5mIGluc3RhbGwgeG9yZy14MTEtdXRpbHNcbi0gQXJjaDogcGFjbWFuIC1TIHhvcmcteHByb3BcblxuKlNldHRpbmdzIGFyZSBwcm92aWRlZCB0byBlbmFibGUvZGlzYWJsZSBvciBjdXN0b21pemUgdGhlIGF2YWlsYWJsZSB0d2Vha3MuXG4qIFNpbmNlIHZlcnNpb24gMiBhcHBsaWNhdGlvbnMgb24gd2F5bGFuZCB3aXRoIGNsaWVudCBzaWRlIGRlY29yYXRpb25zIGFyZSBzdXBwb3J0ZWQgdXNpbmcgQ1NTLiIsCiAgImdldHRleHQtZG9tYWluIjogInVuaXRlIiwKICAibmFtZSI6ICJVbml0ZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy51bml0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vaGFyZHBpeGVsL3VuaXRlLXNoZWxsIiwKICAidXVpZCI6ICJ1bml0ZUBoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogNTYKfQ=="}}}
+, {"uuid": "unite@hardpixel.eu", "name": "Unite", "pname": "unite", "description": "Unite is a GNOME Shell extension which makes a few layout tweaks to the top panel and removes window decorations to make it look like Ubuntu Unity Shell.\n\n- Adds window buttons to the top panel for maximized windows.\n- Shows current window title in the app menu for maximized windows.\n- Removes titlebars on maximized windows.\n- Hides window controls on maximized windows with headerbars.\n- Moves the date to the right, reduces panel spacing and removes dropdown arrows.\n- Moves legacy tray icons to the top panel.\n- Moves notifications to the right.\n- Hides activities button.\n- Adds desktop name to the top panel.\n\nThis extension depends on some Xorg utilities. To install them:\n- Debian/Ubuntu: apt install x11-utils\n- Fedora/RHEL: dnf install xorg-x11-utils\n- Arch: pacman -S xorg-xprop\n\n*Settings are provided to enable/disable or customize the available tweaks.\n* Since version 2 applications on wayland with client side decorations are supported using CSS.", "link": "https://extensions.gnome.org/extension/1287/unite/", "shell_version_map": {"38": {"version": "58", "sha256": "1w87mq3s4bpfg0k3s279yjl27nq7rl669a4k6kcdwbi9ii49iw93", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVuaXRlIGlzIGEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIHdoaWNoIG1ha2VzIGEgZmV3IGxheW91dCB0d2Vha3MgdG8gdGhlIHRvcCBwYW5lbCBhbmQgcmVtb3ZlcyB3aW5kb3cgZGVjb3JhdGlvbnMgdG8gbWFrZSBpdCBsb29rIGxpa2UgVWJ1bnR1IFVuaXR5IFNoZWxsLlxuXG4tIEFkZHMgd2luZG93IGJ1dHRvbnMgdG8gdGhlIHRvcCBwYW5lbCBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFNob3dzIGN1cnJlbnQgd2luZG93IHRpdGxlIGluIHRoZSBhcHAgbWVudSBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFJlbW92ZXMgdGl0bGViYXJzIG9uIG1heGltaXplZCB3aW5kb3dzLlxuLSBIaWRlcyB3aW5kb3cgY29udHJvbHMgb24gbWF4aW1pemVkIHdpbmRvd3Mgd2l0aCBoZWFkZXJiYXJzLlxuLSBNb3ZlcyB0aGUgZGF0ZSB0byB0aGUgcmlnaHQsIHJlZHVjZXMgcGFuZWwgc3BhY2luZyBhbmQgcmVtb3ZlcyBkcm9wZG93biBhcnJvd3MuXG4tIE1vdmVzIGxlZ2FjeSB0cmF5IGljb25zIHRvIHRoZSB0b3AgcGFuZWwuXG4tIE1vdmVzIG5vdGlmaWNhdGlvbnMgdG8gdGhlIHJpZ2h0LlxuLSBIaWRlcyBhY3Rpdml0aWVzIGJ1dHRvbi5cbi0gQWRkcyBkZXNrdG9wIG5hbWUgdG8gdGhlIHRvcCBwYW5lbC5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBzb21lIFhvcmcgdXRpbGl0aWVzLiBUbyBpbnN0YWxsIHRoZW06XG4tIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuLSBGZWRvcmEvUkhFTDogZG5mIGluc3RhbGwgeG9yZy14MTEtdXRpbHNcbi0gQXJjaDogcGFjbWFuIC1TIHhvcmcteHByb3BcblxuKlNldHRpbmdzIGFyZSBwcm92aWRlZCB0byBlbmFibGUvZGlzYWJsZSBvciBjdXN0b21pemUgdGhlIGF2YWlsYWJsZSB0d2Vha3MuXG4qIFNpbmNlIHZlcnNpb24gMiBhcHBsaWNhdGlvbnMgb24gd2F5bGFuZCB3aXRoIGNsaWVudCBzaWRlIGRlY29yYXRpb25zIGFyZSBzdXBwb3J0ZWQgdXNpbmcgQ1NTLiIsCiAgImdldHRleHQtZG9tYWluIjogInVuaXRlIiwKICAibmFtZSI6ICJVbml0ZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy51bml0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vaGFyZHBpeGVsL3VuaXRlLXNoZWxsIiwKICAidXVpZCI6ICJ1bml0ZUBoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogNTgKfQ=="}, "40": {"version": "58", "sha256": "1w87mq3s4bpfg0k3s279yjl27nq7rl669a4k6kcdwbi9ii49iw93", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVuaXRlIGlzIGEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIHdoaWNoIG1ha2VzIGEgZmV3IGxheW91dCB0d2Vha3MgdG8gdGhlIHRvcCBwYW5lbCBhbmQgcmVtb3ZlcyB3aW5kb3cgZGVjb3JhdGlvbnMgdG8gbWFrZSBpdCBsb29rIGxpa2UgVWJ1bnR1IFVuaXR5IFNoZWxsLlxuXG4tIEFkZHMgd2luZG93IGJ1dHRvbnMgdG8gdGhlIHRvcCBwYW5lbCBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFNob3dzIGN1cnJlbnQgd2luZG93IHRpdGxlIGluIHRoZSBhcHAgbWVudSBmb3IgbWF4aW1pemVkIHdpbmRvd3MuXG4tIFJlbW92ZXMgdGl0bGViYXJzIG9uIG1heGltaXplZCB3aW5kb3dzLlxuLSBIaWRlcyB3aW5kb3cgY29udHJvbHMgb24gbWF4aW1pemVkIHdpbmRvd3Mgd2l0aCBoZWFkZXJiYXJzLlxuLSBNb3ZlcyB0aGUgZGF0ZSB0byB0aGUgcmlnaHQsIHJlZHVjZXMgcGFuZWwgc3BhY2luZyBhbmQgcmVtb3ZlcyBkcm9wZG93biBhcnJvd3MuXG4tIE1vdmVzIGxlZ2FjeSB0cmF5IGljb25zIHRvIHRoZSB0b3AgcGFuZWwuXG4tIE1vdmVzIG5vdGlmaWNhdGlvbnMgdG8gdGhlIHJpZ2h0LlxuLSBIaWRlcyBhY3Rpdml0aWVzIGJ1dHRvbi5cbi0gQWRkcyBkZXNrdG9wIG5hbWUgdG8gdGhlIHRvcCBwYW5lbC5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBzb21lIFhvcmcgdXRpbGl0aWVzLiBUbyBpbnN0YWxsIHRoZW06XG4tIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuLSBGZWRvcmEvUkhFTDogZG5mIGluc3RhbGwgeG9yZy14MTEtdXRpbHNcbi0gQXJjaDogcGFjbWFuIC1TIHhvcmcteHByb3BcblxuKlNldHRpbmdzIGFyZSBwcm92aWRlZCB0byBlbmFibGUvZGlzYWJsZSBvciBjdXN0b21pemUgdGhlIGF2YWlsYWJsZSB0d2Vha3MuXG4qIFNpbmNlIHZlcnNpb24gMiBhcHBsaWNhdGlvbnMgb24gd2F5bGFuZCB3aXRoIGNsaWVudCBzaWRlIGRlY29yYXRpb25zIGFyZSBzdXBwb3J0ZWQgdXNpbmcgQ1NTLiIsCiAgImdldHRleHQtZG9tYWluIjogInVuaXRlIiwKICAibmFtZSI6ICJVbml0ZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy51bml0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vaGFyZHBpeGVsL3VuaXRlLXNoZWxsIiwKICAidXVpZCI6ICJ1bml0ZUBoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogNTgKfQ=="}}}
, {"uuid": "GoogleEarthWallpaper@neffo.github.com", "name": "Google Earth Wallpaper", "pname": "google-earth-wallpaper", "description": "Lightweight GNOME shell extension to set your wallpaper to a random photo from the curated Google Earth collection (1500 photos).\n\n*Disclaimer*: this extension is unofficial and not affiliated with Google in any way. Images are protected by copyright and are licensed only for use as wallpapers.\n\nSee also my other extension, Bing Wallpaper Changer (https://github.com/neffo/bing-wallpaper-gnome-extension) which was itself based on the NASA APOD extension by Elinvention (https://github.com/Elinvention).\n\nFeatures:\n* Fetches a random Google Earth wallpaper and sets as both lock screen and desktop wallpaper\n* User selectable refresh intervals (default is once per day)\n* Optional: keep images or clean up after (later is default)\n* View location on Google Maps, Bing Maps, Gnome Maps, OpenStreetMaps\n* In-extension map view\n* German, Dutch and Chinese translations\n\nPlease report any bugs or suggestions to extension GitHub page below.", "link": "https://extensions.gnome.org/extension/1295/google-earth-wallpaper/", "shell_version_map": {"38": {"version": "12", "sha256": "0h2fdx7n2wzmcxlj96lyyvmsa3mz72dxlqy5d7zw1p2zhiyn9zjx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpZ2h0d2VpZ2h0IEdOT01FIHNoZWxsIGV4dGVuc2lvbiB0byBzZXQgeW91ciB3YWxscGFwZXIgdG8gYSByYW5kb20gcGhvdG8gZnJvbSB0aGUgY3VyYXRlZCBHb29nbGUgRWFydGggY29sbGVjdGlvbiAoMTUwMCBwaG90b3MpLlxuXG4qRGlzY2xhaW1lcio6IHRoaXMgZXh0ZW5zaW9uIGlzIHVub2ZmaWNpYWwgYW5kIG5vdCBhZmZpbGlhdGVkIHdpdGggR29vZ2xlIGluIGFueSB3YXkuIEltYWdlcyBhcmUgcHJvdGVjdGVkIGJ5IGNvcHlyaWdodCBhbmQgYXJlIGxpY2Vuc2VkIG9ubHkgZm9yIHVzZSBhcyB3YWxscGFwZXJzLlxuXG5TZWUgYWxzbyBteSBvdGhlciBleHRlbnNpb24sIEJpbmcgV2FsbHBhcGVyIENoYW5nZXIgKGh0dHBzOi8vZ2l0aHViLmNvbS9uZWZmby9iaW5nLXdhbGxwYXBlci1nbm9tZS1leHRlbnNpb24pIHdoaWNoIHdhcyBpdHNlbGYgYmFzZWQgb24gdGhlIE5BU0EgQVBPRCBleHRlbnNpb24gYnkgRWxpbnZlbnRpb24gKGh0dHBzOi8vZ2l0aHViLmNvbS9FbGludmVudGlvbikuXG5cbkZlYXR1cmVzOlxuKiBGZXRjaGVzIGEgcmFuZG9tIEdvb2dsZSBFYXJ0aCB3YWxscGFwZXIgYW5kIHNldHMgYXMgYm90aCBsb2NrIHNjcmVlbiBhbmQgZGVza3RvcCB3YWxscGFwZXJcbiogVXNlciBzZWxlY3RhYmxlIHJlZnJlc2ggaW50ZXJ2YWxzIChkZWZhdWx0IGlzIG9uY2UgcGVyIGRheSlcbiogT3B0aW9uYWw6IGtlZXAgaW1hZ2VzIG9yIGNsZWFuIHVwIGFmdGVyIChsYXRlciBpcyBkZWZhdWx0KVxuKiBWaWV3IGxvY2F0aW9uIG9uIEdvb2dsZSBNYXBzLCBCaW5nIE1hcHMsIEdub21lIE1hcHMsIE9wZW5TdHJlZXRNYXBzXG4qIEluLWV4dGVuc2lvbiBtYXAgdmlld1xuKiAgR2VybWFuLCBEdXRjaCBhbmQgQ2hpbmVzZSB0cmFuc2xhdGlvbnNcblxuUGxlYXNlIHJlcG9ydCBhbnkgYnVncyBvciBzdWdnZXN0aW9ucyB0byBleHRlbnNpb24gR2l0SHViIHBhZ2UgYmVsb3cuIiwKICAibmFtZSI6ICJHb29nbGUgRWFydGggV2FsbHBhcGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmdvb2dsZWVhcnRod2FsbHBhcGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbmVmZm8vZWFydGgtdmlldy13YWxscGFwZXItZ25vbWUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJHb29nbGVFYXJ0aFdhbGxwYXBlckBuZWZmby5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEyCn0="}, "40": {"version": "12", "sha256": "0h2fdx7n2wzmcxlj96lyyvmsa3mz72dxlqy5d7zw1p2zhiyn9zjx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpZ2h0d2VpZ2h0IEdOT01FIHNoZWxsIGV4dGVuc2lvbiB0byBzZXQgeW91ciB3YWxscGFwZXIgdG8gYSByYW5kb20gcGhvdG8gZnJvbSB0aGUgY3VyYXRlZCBHb29nbGUgRWFydGggY29sbGVjdGlvbiAoMTUwMCBwaG90b3MpLlxuXG4qRGlzY2xhaW1lcio6IHRoaXMgZXh0ZW5zaW9uIGlzIHVub2ZmaWNpYWwgYW5kIG5vdCBhZmZpbGlhdGVkIHdpdGggR29vZ2xlIGluIGFueSB3YXkuIEltYWdlcyBhcmUgcHJvdGVjdGVkIGJ5IGNvcHlyaWdodCBhbmQgYXJlIGxpY2Vuc2VkIG9ubHkgZm9yIHVzZSBhcyB3YWxscGFwZXJzLlxuXG5TZWUgYWxzbyBteSBvdGhlciBleHRlbnNpb24sIEJpbmcgV2FsbHBhcGVyIENoYW5nZXIgKGh0dHBzOi8vZ2l0aHViLmNvbS9uZWZmby9iaW5nLXdhbGxwYXBlci1nbm9tZS1leHRlbnNpb24pIHdoaWNoIHdhcyBpdHNlbGYgYmFzZWQgb24gdGhlIE5BU0EgQVBPRCBleHRlbnNpb24gYnkgRWxpbnZlbnRpb24gKGh0dHBzOi8vZ2l0aHViLmNvbS9FbGludmVudGlvbikuXG5cbkZlYXR1cmVzOlxuKiBGZXRjaGVzIGEgcmFuZG9tIEdvb2dsZSBFYXJ0aCB3YWxscGFwZXIgYW5kIHNldHMgYXMgYm90aCBsb2NrIHNjcmVlbiBhbmQgZGVza3RvcCB3YWxscGFwZXJcbiogVXNlciBzZWxlY3RhYmxlIHJlZnJlc2ggaW50ZXJ2YWxzIChkZWZhdWx0IGlzIG9uY2UgcGVyIGRheSlcbiogT3B0aW9uYWw6IGtlZXAgaW1hZ2VzIG9yIGNsZWFuIHVwIGFmdGVyIChsYXRlciBpcyBkZWZhdWx0KVxuKiBWaWV3IGxvY2F0aW9uIG9uIEdvb2dsZSBNYXBzLCBCaW5nIE1hcHMsIEdub21lIE1hcHMsIE9wZW5TdHJlZXRNYXBzXG4qIEluLWV4dGVuc2lvbiBtYXAgdmlld1xuKiAgR2VybWFuLCBEdXRjaCBhbmQgQ2hpbmVzZSB0cmFuc2xhdGlvbnNcblxuUGxlYXNlIHJlcG9ydCBhbnkgYnVncyBvciBzdWdnZXN0aW9ucyB0byBleHRlbnNpb24gR2l0SHViIHBhZ2UgYmVsb3cuIiwKICAibmFtZSI6ICJHb29nbGUgRWFydGggV2FsbHBhcGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmdvb2dsZWVhcnRod2FsbHBhcGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbmVmZm8vZWFydGgtdmlldy13YWxscGFwZXItZ25vbWUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJHb29nbGVFYXJ0aFdhbGxwYXBlckBuZWZmby5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEyCn0="}}}
, {"uuid": "gsconnect@andyholmes.github.io", "name": "GSConnect", "pname": "gsconnect", "description": "GSConnect is a complete implementation of KDE Connect especially for GNOME Shell with Nautilus, Chrome and Firefox integration. It does not rely on the KDE Connect desktop application and will not work with it installed.\n\nKDE Connect allows devices to securely share content like notifications or files and other features like SMS messaging and remote control. The KDE Connect team has applications for Linux, BSD, Android, Sailfish and Windows.\n\nPlease report issues on Github!", "link": "https://extensions.gnome.org/extension/1319/gsconnect/", "shell_version_map": {"38": {"version": "45", "sha256": "11hpgh2bhizdrgl4xc5iszsi6jxb9j80lph74226rnw6pi2nc19f", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdTQ29ubmVjdCBpcyBhIGNvbXBsZXRlIGltcGxlbWVudGF0aW9uIG9mIEtERSBDb25uZWN0IGVzcGVjaWFsbHkgZm9yIEdOT01FIFNoZWxsIHdpdGggTmF1dGlsdXMsIENocm9tZSBhbmQgRmlyZWZveCBpbnRlZ3JhdGlvbi4gSXQgZG9lcyBub3QgcmVseSBvbiB0aGUgS0RFIENvbm5lY3QgZGVza3RvcCBhcHBsaWNhdGlvbiBhbmQgd2lsbCBub3Qgd29yayB3aXRoIGl0IGluc3RhbGxlZC5cblxuS0RFIENvbm5lY3QgYWxsb3dzIGRldmljZXMgdG8gc2VjdXJlbHkgc2hhcmUgY29udGVudCBsaWtlIG5vdGlmaWNhdGlvbnMgb3IgZmlsZXMgYW5kIG90aGVyIGZlYXR1cmVzIGxpa2UgU01TIG1lc3NhZ2luZyBhbmQgcmVtb3RlIGNvbnRyb2wuIFRoZSBLREUgQ29ubmVjdCB0ZWFtIGhhcyBhcHBsaWNhdGlvbnMgZm9yIExpbnV4LCBCU0QsIEFuZHJvaWQsIFNhaWxmaXNoIGFuZCBXaW5kb3dzLlxuXG5QbGVhc2UgcmVwb3J0IGlzc3VlcyBvbiBHaXRodWIhIiwKICAibmFtZSI6ICJHU0Nvbm5lY3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9hbmR5aG9sbWVzL2dub21lLXNoZWxsLWV4dGVuc2lvbi1nc2Nvbm5lY3Qvd2lraSIsCiAgInV1aWQiOiAiZ3Njb25uZWN0QGFuZHlob2xtZXMuZ2l0aHViLmlvIiwKICAidmVyc2lvbiI6IDQ1Cn0="}, "40": {"version": "47", "sha256": "0s6a762n4r0fcvsi2a27qaxs0b4z12grqrq7sqj4vb498xyx14qv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdTQ29ubmVjdCBpcyBhIGNvbXBsZXRlIGltcGxlbWVudGF0aW9uIG9mIEtERSBDb25uZWN0IGVzcGVjaWFsbHkgZm9yIEdOT01FIFNoZWxsIHdpdGggTmF1dGlsdXMsIENocm9tZSBhbmQgRmlyZWZveCBpbnRlZ3JhdGlvbi4gSXQgZG9lcyBub3QgcmVseSBvbiB0aGUgS0RFIENvbm5lY3QgZGVza3RvcCBhcHBsaWNhdGlvbiBhbmQgd2lsbCBub3Qgd29yayB3aXRoIGl0IGluc3RhbGxlZC5cblxuS0RFIENvbm5lY3QgYWxsb3dzIGRldmljZXMgdG8gc2VjdXJlbHkgc2hhcmUgY29udGVudCBsaWtlIG5vdGlmaWNhdGlvbnMgb3IgZmlsZXMgYW5kIG90aGVyIGZlYXR1cmVzIGxpa2UgU01TIG1lc3NhZ2luZyBhbmQgcmVtb3RlIGNvbnRyb2wuIFRoZSBLREUgQ29ubmVjdCB0ZWFtIGhhcyBhcHBsaWNhdGlvbnMgZm9yIExpbnV4LCBCU0QsIEFuZHJvaWQsIFNhaWxmaXNoIGFuZCBXaW5kb3dzLlxuXG5QbGVhc2UgcmVwb3J0IGlzc3VlcyBvbiBHaXRodWIhIiwKICAibmFtZSI6ICJHU0Nvbm5lY3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYW5keWhvbG1lcy9nbm9tZS1zaGVsbC1leHRlbnNpb24tZ3Njb25uZWN0L3dpa2kiLAogICJ1dWlkIjogImdzY29ubmVjdEBhbmR5aG9sbWVzLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA0Nwp9"}}}
, {"uuid": "nvidiautil@ethanwharris", "name": "NVIDIA GPU Stats Tool", "pname": "nvidia-gpu-stats-tool", "description": "Shows NVIDIA GPU stats in the toolbar. Requires nvidia-settings or nvidia-smi. Includes Bumblebee support.", "link": "https://extensions.gnome.org/extension/1320/nvidia-gpu-stats-tool/", "shell_version_map": {"38": {"version": "8", "sha256": "12yi2kcq2rm1ddb8djjlffvk6dhpfd996wjhwdf4jch1r85r8a30", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIE5WSURJQSBHUFUgc3RhdHMgaW4gdGhlIHRvb2xiYXIuIFJlcXVpcmVzIG52aWRpYS1zZXR0aW5ncyBvciBudmlkaWEtc21pLiBJbmNsdWRlcyBCdW1ibGViZWUgc3VwcG9ydC4iLAogICJuYW1lIjogIk5WSURJQSBHUFUgU3RhdHMgVG9vbCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5udmlkaWF1dGlsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZXRoYW53aGFycmlzL2dub21lLW52aWRpYS1leHRlbnNpb24iLAogICJ1dWlkIjogIm52aWRpYXV0aWxAZXRoYW53aGFycmlzIiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
@@ -179,16 +182,17 @@
, {"uuid": "transparent-window-moving@noobsai.github.com", "name": "Transparent Window Moving", "pname": "transparent-window-moving", "description": "Makes the window semi-transparent when moving or resizing", "link": "https://extensions.gnome.org/extension/1446/transparent-window-moving/", "shell_version_map": {"38": {"version": "6", "sha256": "0vllnrscjaqx77wb44803q6n3wk590dxacjfsw7ympbgqhikzc0p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2VzIHRoZSB3aW5kb3cgc2VtaS10cmFuc3BhcmVudCB3aGVuIG1vdmluZyBvciByZXNpemluZyIsCiAgImV4dGVuc2lvbi1pZCI6ICJ0cmFuc3BhcmVudC13aW5kb3ctbW92aW5nIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiVHJhbnNwYXJlbnQgV2luZG93IE1vdmluZyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy50cmFuc3BhcmVudC13aW5kb3ctbW92aW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTm9vYnNhaS90cmFuc3BhcmVudC13aW5kb3ctbW92aW5nIiwKICAidXVpZCI6ICJ0cmFuc3BhcmVudC13aW5kb3ctbW92aW5nQG5vb2JzYWkuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA2Cn0="}, "40": {"version": "8", "sha256": "11f1663is2hamja5xg6sgrn2rpb3s96mqwq6alvn2swbqafn0cbn", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2VzIHRoZSB3aW5kb3cgc2VtaS10cmFuc3BhcmVudCB3aGVuIG1vdmluZyBvciByZXNpemluZyIsCiAgImV4dGVuc2lvbi1pZCI6ICJ0cmFuc3BhcmVudC13aW5kb3ctbW92aW5nIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiVHJhbnNwYXJlbnQgV2luZG93IE1vdmluZyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy50cmFuc3BhcmVudC13aW5kb3ctbW92aW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL05vb2JzYWkvdHJhbnNwYXJlbnQtd2luZG93LW1vdmluZyIsCiAgInV1aWQiOiAidHJhbnNwYXJlbnQtd2luZG93LW1vdmluZ0Bub29ic2FpLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogOAp9"}}}
, {"uuid": "transparent-window@pbxqdown.github.com", "name": "Transparent Window", "pname": "transparent-window", "description": "Change the opacity of windows by compiz-style shortcut Alt+scroll.\nYou can customize hotkey in Preference page if Alt key doesn't work.", "link": "https://extensions.gnome.org/extension/1454/transparent-window/", "shell_version_map": {"38": {"version": "7", "sha256": "09nhn8f7d8c1kp8hgw49y0d9165ckvgn6my339k0pzga02d277a6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZSB0aGUgb3BhY2l0eSBvZiB3aW5kb3dzIGJ5IGNvbXBpei1zdHlsZSBzaG9ydGN1dCBBbHQrc2Nyb2xsLlxuWW91IGNhbiBjdXN0b21pemUgaG90a2V5IGluIFByZWZlcmVuY2UgcGFnZSBpZiBBbHQga2V5IGRvZXNuJ3Qgd29yay4iLAogICJuYW1lIjogIlRyYW5zcGFyZW50IFdpbmRvdyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5UcmFuc3BhcmVudFdpbmRvdyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOC4xIiwKICAgICIzLjM2LjEiLAogICAgIjMuMzguMSIsCiAgICAiMy4zOC40IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcGJ4cWRvd24vZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRyYW5zcGFyZW50LXdpbmRvdyIsCiAgInV1aWQiOiAidHJhbnNwYXJlbnQtd2luZG93QHBieHFkb3duLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNwp9"}}}
, {"uuid": "miniview@thesecretaryofwar.com", "name": "Miniview", "pname": "miniview", "description": "Show window previews\n- Left-mouse drag: move preview window\n- Right-mouse drag (or ctrl + left mouse drag): resize preview window\n- Scroll wheel (or shift + left/right click): change target window\n- Double click: raise target window\n- Shift + F12: toggle preview window (this can be changed or disabled in preferences)\n- Ctrl + scroll wheel: adjust opacity", "link": "https://extensions.gnome.org/extension/1459/miniview/", "shell_version_map": {"40": {"version": "9", "sha256": "1287ps5da2sy7sr7n9kh56jnrfz7iilv6lq6cwfzyc2jjsx35f04", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgd2luZG93IHByZXZpZXdzXG4tIExlZnQtbW91c2UgZHJhZzogbW92ZSBwcmV2aWV3IHdpbmRvd1xuLSBSaWdodC1tb3VzZSBkcmFnIChvciBjdHJsICsgbGVmdCBtb3VzZSBkcmFnKTogcmVzaXplIHByZXZpZXcgd2luZG93XG4tIFNjcm9sbCB3aGVlbCAob3Igc2hpZnQgKyBsZWZ0L3JpZ2h0IGNsaWNrKTogY2hhbmdlIHRhcmdldCB3aW5kb3dcbi0gRG91YmxlIGNsaWNrOiByYWlzZSB0YXJnZXQgd2luZG93XG4tIFNoaWZ0ICsgRjEyOiB0b2dnbGUgcHJldmlldyB3aW5kb3cgKHRoaXMgY2FuIGJlIGNoYW5nZWQgb3IgZGlzYWJsZWQgaW4gcHJlZmVyZW5jZXMpXG4tIEN0cmwgKyBzY3JvbGwgd2hlZWw6IGFkanVzdCBvcGFjaXR5IiwKICAiZXh0ZW5zaW9uLWlkIjogIm1pbml2aWV3IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiTWluaXZpZXciLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgInRoZXNlY3JldGFyeW9md2FyQGdtYWlsLmNvbSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubWluaXZpZXciLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vaWFtbGVtZWMvbWluaXZpZXciLAogICJ1dWlkIjogIm1pbml2aWV3QHRoZXNlY3JldGFyeW9md2FyLmNvbSIsCiAgInZlcnNpb24iOiA5Cn0="}}}
-, {"uuid": "Vitals@CoreCoding.com", "name": "Vitals", "pname": "vitals", "description": "A glimpse into your computer's temperature, voltage, fan speed, memory usage, processor load, system resources, network speed and storage stats. This is a one stop shop to monitor all of your vital sensors. Uses asynchronous polling to provide a smooth user experience. Feature requests or bugs? Please use GitHub.", "link": "https://extensions.gnome.org/extension/1460/vitals/", "shell_version_map": {"38": {"version": "43", "sha256": "1d5fdmgkg1xbfan8d4k1lm5a2pkplzfyy2j2wxkhmdxa1z9y3a29", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ2xpbXBzZSBpbnRvIHlvdXIgY29tcHV0ZXIncyB0ZW1wZXJhdHVyZSwgdm9sdGFnZSwgZmFuIHNwZWVkLCBtZW1vcnkgdXNhZ2UsIHByb2Nlc3NvciBsb2FkLCBzeXN0ZW0gcmVzb3VyY2VzLCBuZXR3b3JrIHNwZWVkIGFuZCBzdG9yYWdlIHN0YXRzLiBUaGlzIGlzIGEgb25lIHN0b3Agc2hvcCB0byBtb25pdG9yIGFsbCBvZiB5b3VyIHZpdGFsIHNlbnNvcnMuIFVzZXMgYXN5bmNocm9ub3VzIHBvbGxpbmcgdG8gcHJvdmlkZSBhIHNtb290aCB1c2VyIGV4cGVyaWVuY2UuIEZlYXR1cmUgcmVxdWVzdHMgb3IgYnVncz8gUGxlYXNlIHVzZSBHaXRIdWIuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAidml0YWxzIiwKICAibmFtZSI6ICJWaXRhbHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudml0YWxzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2NvcmVjb2RpbmcvVml0YWxzIiwKICAidXVpZCI6ICJWaXRhbHNAQ29yZUNvZGluZy5jb20iLAogICJ2ZXJzaW9uIjogNDMKfQ=="}, "40": {"version": "43", "sha256": "1d5fdmgkg1xbfan8d4k1lm5a2pkplzfyy2j2wxkhmdxa1z9y3a29", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ2xpbXBzZSBpbnRvIHlvdXIgY29tcHV0ZXIncyB0ZW1wZXJhdHVyZSwgdm9sdGFnZSwgZmFuIHNwZWVkLCBtZW1vcnkgdXNhZ2UsIHByb2Nlc3NvciBsb2FkLCBzeXN0ZW0gcmVzb3VyY2VzLCBuZXR3b3JrIHNwZWVkIGFuZCBzdG9yYWdlIHN0YXRzLiBUaGlzIGlzIGEgb25lIHN0b3Agc2hvcCB0byBtb25pdG9yIGFsbCBvZiB5b3VyIHZpdGFsIHNlbnNvcnMuIFVzZXMgYXN5bmNocm9ub3VzIHBvbGxpbmcgdG8gcHJvdmlkZSBhIHNtb290aCB1c2VyIGV4cGVyaWVuY2UuIEZlYXR1cmUgcmVxdWVzdHMgb3IgYnVncz8gUGxlYXNlIHVzZSBHaXRIdWIuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAidml0YWxzIiwKICAibmFtZSI6ICJWaXRhbHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudml0YWxzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2NvcmVjb2RpbmcvVml0YWxzIiwKICAidXVpZCI6ICJWaXRhbHNAQ29yZUNvZGluZy5jb20iLAogICJ2ZXJzaW9uIjogNDMKfQ=="}}}
-, {"uuid": "panel-date-format@keiii.github.com", "name": "Panel Date Format", "pname": "panel-date-format", "description": "Allows to customize the date format on the panel.", "link": "https://extensions.gnome.org/extension/1462/panel-date-format/", "shell_version_map": {"40": {"version": "3", "sha256": "0ams1s77v49wawda5iajngys39zs9v55nyirxh1j98n407bi6iaw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93cyB0byBjdXN0b21pemUgdGhlIGRhdGUgZm9ybWF0IG9uIHRoZSBwYW5lbC4iLAogICJuYW1lIjogIlBhbmVsIERhdGUgRm9ybWF0IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnBhbmVsLWRhdGUtZm9ybWF0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0tFSUlJL2dub21lLXNoZWxsLXBhbmVsLWRhdGUtZm9ybWF0IiwKICAidXVpZCI6ICJwYW5lbC1kYXRlLWZvcm1hdEBrZWlpaS5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
+, {"uuid": "Vitals@CoreCoding.com", "name": "Vitals", "pname": "vitals", "description": "A glimpse into your computer's temperature, voltage, fan speed, memory usage, processor load, system resources, network speed and storage stats. This is a one stop shop to monitor all of your vital sensors. Uses asynchronous polling to provide a smooth user experience. Feature requests or bugs? Please use GitHub.", "link": "https://extensions.gnome.org/extension/1460/vitals/", "shell_version_map": {"38": {"version": "45", "sha256": "16rq3dsjkj93lyx7zsim86k6zaa735604di3dcacvbzpaxf5rj96", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ2xpbXBzZSBpbnRvIHlvdXIgY29tcHV0ZXIncyB0ZW1wZXJhdHVyZSwgdm9sdGFnZSwgZmFuIHNwZWVkLCBtZW1vcnkgdXNhZ2UsIHByb2Nlc3NvciBsb2FkLCBzeXN0ZW0gcmVzb3VyY2VzLCBuZXR3b3JrIHNwZWVkIGFuZCBzdG9yYWdlIHN0YXRzLiBUaGlzIGlzIGEgb25lIHN0b3Agc2hvcCB0byBtb25pdG9yIGFsbCBvZiB5b3VyIHZpdGFsIHNlbnNvcnMuIFVzZXMgYXN5bmNocm9ub3VzIHBvbGxpbmcgdG8gcHJvdmlkZSBhIHNtb290aCB1c2VyIGV4cGVyaWVuY2UuIEZlYXR1cmUgcmVxdWVzdHMgb3IgYnVncz8gUGxlYXNlIHVzZSBHaXRIdWIuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAidml0YWxzIiwKICAibmFtZSI6ICJWaXRhbHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudml0YWxzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9jb3JlY29kaW5nL1ZpdGFscyIsCiAgInV1aWQiOiAiVml0YWxzQENvcmVDb2RpbmcuY29tIiwKICAidmVyc2lvbiI6IDQ1Cn0="}, "40": {"version": "45", "sha256": "16rq3dsjkj93lyx7zsim86k6zaa735604di3dcacvbzpaxf5rj96", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ2xpbXBzZSBpbnRvIHlvdXIgY29tcHV0ZXIncyB0ZW1wZXJhdHVyZSwgdm9sdGFnZSwgZmFuIHNwZWVkLCBtZW1vcnkgdXNhZ2UsIHByb2Nlc3NvciBsb2FkLCBzeXN0ZW0gcmVzb3VyY2VzLCBuZXR3b3JrIHNwZWVkIGFuZCBzdG9yYWdlIHN0YXRzLiBUaGlzIGlzIGEgb25lIHN0b3Agc2hvcCB0byBtb25pdG9yIGFsbCBvZiB5b3VyIHZpdGFsIHNlbnNvcnMuIFVzZXMgYXN5bmNocm9ub3VzIHBvbGxpbmcgdG8gcHJvdmlkZSBhIHNtb290aCB1c2VyIGV4cGVyaWVuY2UuIEZlYXR1cmUgcmVxdWVzdHMgb3IgYnVncz8gUGxlYXNlIHVzZSBHaXRIdWIuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAidml0YWxzIiwKICAibmFtZSI6ICJWaXRhbHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudml0YWxzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9jb3JlY29kaW5nL1ZpdGFscyIsCiAgInV1aWQiOiAiVml0YWxzQENvcmVDb2RpbmcuY29tIiwKICAidmVyc2lvbiI6IDQ1Cn0="}}}
+, {"uuid": "panel-date-format@keiii.github.com", "name": "Panel Date Format", "pname": "panel-date-format", "description": "Allows to customize the date format on the panel.\nNOTE: No GUI. Just use dconf to change format follow up: https://github.com/KEIII/gnome-shell-panel-date-format#changing-format", "link": "https://extensions.gnome.org/extension/1462/panel-date-format/", "shell_version_map": {"40": {"version": "3", "sha256": "0yi67ia4imyq758d3kmhxhsxyd9966vkzds4a648qsxid8ww96gb", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93cyB0byBjdXN0b21pemUgdGhlIGRhdGUgZm9ybWF0IG9uIHRoZSBwYW5lbC5cbk5PVEU6IE5vIEdVSS4gSnVzdCB1c2UgZGNvbmYgdG8gY2hhbmdlIGZvcm1hdCBmb2xsb3cgdXA6IGh0dHBzOi8vZ2l0aHViLmNvbS9LRUlJSS9nbm9tZS1zaGVsbC1wYW5lbC1kYXRlLWZvcm1hdCNjaGFuZ2luZy1mb3JtYXQiLAogICJuYW1lIjogIlBhbmVsIERhdGUgRm9ybWF0IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnBhbmVsLWRhdGUtZm9ybWF0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0tFSUlJL2dub21lLXNoZWxsLXBhbmVsLWRhdGUtZm9ybWF0IiwKICAidXVpZCI6ICJwYW5lbC1kYXRlLWZvcm1hdEBrZWlpaS5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "desktop-icons@csoriano", "name": "Desktop Icons", "pname": "desktop-icons", "description": "Add icons to the desktop", "link": "https://extensions.gnome.org/extension/1465/desktop-icons/", "shell_version_map": {"38": {"version": "19", "sha256": "01qdh1kigl3ck1mzgha1a9218lpam5b54ai72mpvr64gkaax2mcv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBpY29ucyB0byB0aGUgZGVza3RvcCIsCiAgIm5hbWUiOiAiRGVza3RvcCBJY29ucyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5nbm9tZS5vcmcvV29ybGQvU2hlbGxFeHRlbnNpb25zL2Rlc2t0b3AtaWNvbnMiLAogICJ1dWlkIjogImRlc2t0b3AtaWNvbnNAY3Nvcmlhbm8iLAogICJ2ZXJzaW9uIjogMTkKfQ=="}}}
, {"uuid": "fullbattery@categulario.tk", "name": "Full Battery indicator", "pname": "full-battery-indicator", "description": "Notifies when battery is full", "link": "https://extensions.gnome.org/extension/1466/full-battery-indicator/", "shell_version_map": {"38": {"version": "4", "sha256": "167d84phf68fi5bg9fvm4l7l8jq7k86a80adm0l56ngqygxqsyy8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vdGlmaWVzIHdoZW4gYmF0dGVyeSBpcyBmdWxsIiwKICAibmFtZSI6ICJGdWxsIEJhdHRlcnkgaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjMyIiwKICAgICIzLjI4LjMiLAogICAgIjMuMzQuNCIsCiAgICAiMy4zNi4wIiwKICAgICIzLjM4IiwKICAgICI0MC4zIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vY2F0ZWd1bGFyaW8vZnVsbC1iYXR0ZXJ5LWdub21lLXNoZWxsLWV4dGVuc2lvbiIsCiAgInV1aWQiOiAiZnVsbGJhdHRlcnlAY2F0ZWd1bGFyaW8udGsiLAogICJ2ZXJzaW9uIjogNAp9"}, "40": {"version": "4", "sha256": "167d84phf68fi5bg9fvm4l7l8jq7k86a80adm0l56ngqygxqsyy8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vdGlmaWVzIHdoZW4gYmF0dGVyeSBpcyBmdWxsIiwKICAibmFtZSI6ICJGdWxsIEJhdHRlcnkgaW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjMwIiwKICAgICIzLjMyIiwKICAgICIzLjI4LjMiLAogICAgIjMuMzQuNCIsCiAgICAiMy4zNi4wIiwKICAgICIzLjM4IiwKICAgICI0MC4zIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vY2F0ZWd1bGFyaW8vZnVsbC1iYXR0ZXJ5LWdub21lLXNoZWxsLWV4dGVuc2lvbiIsCiAgInV1aWQiOiAiZnVsbGJhdHRlcnlAY2F0ZWd1bGFyaW8udGsiLAogICJ2ZXJzaW9uIjogNAp9"}}}
, {"uuid": "rdesktop-menu@bastien.git.geekwu.org", "name": "Rdesktop launcher", "pname": "rdesktop-launcher", "description": "Add a servers status menu for quickly running rdesktop", "link": "https://extensions.gnome.org/extension/1467/rdesktop-launcher/", "shell_version_map": {"38": {"version": "11", "sha256": "16dj3yyma4nwn9vvf85i9ws4w9s7z2bz0gapgm1xb3g4q74vckjw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHNlcnZlcnMgc3RhdHVzIG1lbnUgZm9yIHF1aWNrbHkgcnVubmluZyByZGVza3RvcCIsCiAgImV4dGVuc2lvbi1pZCI6ICJyZGVza3RvcC1tZW51IiwKICAibmFtZSI6ICJSZGVza3RvcCBsYXVuY2hlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXQuZ2Vla3d1Lm9yZy9iYXN0aWVuL3JkZXNrdG9wLW1lbnUiLAogICJ1dWlkIjogInJkZXNrdG9wLW1lbnVAYmFzdGllbi5naXQuZ2Vla3d1Lm9yZyIsCiAgInZlcnNpb24iOiAxMQp9"}, "40": {"version": "11", "sha256": "16dj3yyma4nwn9vvf85i9ws4w9s7z2bz0gapgm1xb3g4q74vckjw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHNlcnZlcnMgc3RhdHVzIG1lbnUgZm9yIHF1aWNrbHkgcnVubmluZyByZGVza3RvcCIsCiAgImV4dGVuc2lvbi1pZCI6ICJyZGVza3RvcC1tZW51IiwKICAibmFtZSI6ICJSZGVza3RvcCBsYXVuY2hlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXQuZ2Vla3d1Lm9yZy9iYXN0aWVuL3JkZXNrdG9wLW1lbnUiLAogICJ1dWlkIjogInJkZXNrdG9wLW1lbnVAYmFzdGllbi5naXQuZ2Vla3d1Lm9yZyIsCiAgInZlcnNpb24iOiAxMQp9"}}}
+, {"uuid": "tint-all@amarovita.github.com", "name": "Tint All", "pname": "tint-all", "description": "Colorize the entire gnome workspace. Amber, green, cyan, sepia and grayscale - just keep clicking extension icon. Scroll over extension icon to change fx level.", "link": "https://extensions.gnome.org/extension/1471/tint-all/", "shell_version_map": {"38": {"version": "7", "sha256": "1lflpza6kbdh4ql338vidij9c2gh2r116gfgih7lk4inkj1hqmmz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbG9yaXplIHRoZSBlbnRpcmUgZ25vbWUgd29ya3NwYWNlLiBBbWJlciwgZ3JlZW4sIGN5YW4sIHNlcGlhIGFuZCBncmF5c2NhbGUgLSBqdXN0IGtlZXAgY2xpY2tpbmcgZXh0ZW5zaW9uIGljb24uIFNjcm9sbCBvdmVyIGV4dGVuc2lvbiBpY29uIHRvIGNoYW5nZSBmeCBsZXZlbC4iLAogICJuYW1lIjogIlRpbnQgQWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAidGludC1hbGxAYW1hcm92aXRhLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNwp9"}, "40": {"version": "7", "sha256": "1lflpza6kbdh4ql338vidij9c2gh2r116gfgih7lk4inkj1hqmmz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbG9yaXplIHRoZSBlbnRpcmUgZ25vbWUgd29ya3NwYWNlLiBBbWJlciwgZ3JlZW4sIGN5YW4sIHNlcGlhIGFuZCBncmF5c2NhbGUgLSBqdXN0IGtlZXAgY2xpY2tpbmcgZXh0ZW5zaW9uIGljb24uIFNjcm9sbCBvdmVyIGV4dGVuc2lvbiBpY29uIHRvIGNoYW5nZSBmeCBsZXZlbC4iLAogICJuYW1lIjogIlRpbnQgQWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAidGludC1hbGxAYW1hcm92aXRhLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNwp9"}}}
, {"uuid": "batime@martin.zurowietz.de", "name": "Battery Time", "pname": "battery-time", "description": "Show the remaining time until fully charged/discharged instead of the battery charge in percent in the panel.", "link": "https://extensions.gnome.org/extension/1475/battery-time/", "shell_version_map": {"40": {"version": "9", "sha256": "1xhh65f8h4k41f3vc90k4wwkjg9bgrihbzi0asjjaf10hvwzmfn4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgdGhlIHJlbWFpbmluZyB0aW1lIHVudGlsIGZ1bGx5IGNoYXJnZWQvZGlzY2hhcmdlZCBpbnN0ZWFkIG9mIHRoZSBiYXR0ZXJ5IGNoYXJnZSBpbiBwZXJjZW50IGluIHRoZSBwYW5lbC4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJiYXRpbWUiLAogICJuYW1lIjogIkJhdHRlcnkgVGltZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5iYXRpbWUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL216dXIvZ25vbWUtc2hlbGwtYmF0aW1lIiwKICAidXVpZCI6ICJiYXRpbWVAbWFydGluLnp1cm93aWV0ei5kZSIsCiAgInZlcnNpb24iOiA5Cn0="}}}
, {"uuid": "unlockDialogBackground@sun.wxg@gmail.com", "name": "Lock screen background", "pname": "unlock-dialog-background", "description": "Change lock screen background.\nIf you use Ubuntu, install package gir1.2-clutter-1.0 first.", "link": "https://extensions.gnome.org/extension/1476/unlock-dialog-background/", "shell_version_map": {"38": {"version": "18", "sha256": "1j9m4qkd0i6l4nxwpxjwvp3nh0zifpzvp0xwp4cqqlr2flb6lwps", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZSBsb2NrIHNjcmVlbiBiYWNrZ3JvdW5kLlxuSWYgeW91IHVzZSBVYnVudHUsIGluc3RhbGwgcGFja2FnZSBnaXIxLjItY2x1dHRlci0xLjAgZmlyc3QuIiwKICAibmFtZSI6ICJMb2NrIHNjcmVlbiBiYWNrZ3JvdW5kIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6ICJzdW4ud3hnQGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiMy4zNi40IiwKICAgICIzLjM2LjUiLAogICAgIjMuMzYuNiIsCiAgICAiMy4zNi43IiwKICAgICIzLjM2LjgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdW53eGcvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXVubG9ja0RpYWxvZ0JhY2tncm91bmQiLAogICJ1dWlkIjogInVubG9ja0RpYWxvZ0JhY2tncm91bmRAc3VuLnd4Z0BnbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTgKfQ=="}, "40": {"version": "20", "sha256": "1gin7mpafmx8h177alhhlrjqpq5354napc0jqaj4l4f7ynzn4843", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZSBsb2NrIHNjcmVlbiBiYWNrZ3JvdW5kLlxuSWYgeW91IHVzZSBVYnVudHUsIGluc3RhbGwgcGFja2FnZSBnaXIxLjItY2x1dHRlci0xLjAgZmlyc3QuIiwKICAibmFtZSI6ICJMb2NrIHNjcmVlbiBiYWNrZ3JvdW5kIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6ICJzdW4ud3hnQGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdW53eGcvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXVubG9ja0RpYWxvZ0JhY2tncm91bmQiLAogICJ1dWlkIjogInVubG9ja0RpYWxvZ0JhY2tncm91bmRAc3VuLnd4Z0BnbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMjAKfQ=="}}}
, {"uuid": "wsmatrix@martin.zurowietz.de", "name": "Workspace Matrix", "pname": "workspace-matrix", "description": "Arrange workspaces in a two dimensional grid with workspace thumbnails.", "link": "https://extensions.gnome.org/extension/1485/workspace-matrix/", "shell_version_map": {"38": {"version": "27", "sha256": "0b76x0li5a8x42l67ykbw34k4cfmbxqvz36zighhfw4qmxsc36cr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFycmFuZ2Ugd29ya3NwYWNlcyBpbiBhIHR3byBkaW1lbnNpb25hbCBncmlkIHdpdGggd29ya3NwYWNlIHRodW1ibmFpbHMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAid3NtYXRyaXgiLAogICJrZXliaW5kaW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud3NtYXRyaXgta2V5YmluZGluZ3MiLAogICJuYW1lIjogIldvcmtzcGFjZSBNYXRyaXgiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud3NtYXRyaXgtc2V0dGluZ3MiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9tenVyL2dub21lLXNoZWxsLXdzbWF0cml4IiwKICAidXVpZCI6ICJ3c21hdHJpeEBtYXJ0aW4uenVyb3dpZXR6LmRlIiwKICAidmVyc2lvbiI6IDI3Cn0="}, "40": {"version": "29", "sha256": "1vih9b4g2xxfasf9f51br4wf2fmdks7nyh6pfdi347i3xkx96zpy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFycmFuZ2Ugd29ya3NwYWNlcyBpbiBhIHR3byBkaW1lbnNpb25hbCBncmlkIHdpdGggd29ya3NwYWNlIHRodW1ibmFpbHMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAid3NtYXRyaXgiLAogICJrZXliaW5kaW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud3NtYXRyaXgta2V5YmluZGluZ3MiLAogICJuYW1lIjogIldvcmtzcGFjZSBNYXRyaXgiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud3NtYXRyaXgtc2V0dGluZ3MiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL216dXIvZ25vbWUtc2hlbGwtd3NtYXRyaXgiLAogICJ1dWlkIjogIndzbWF0cml4QG1hcnRpbi56dXJvd2lldHouZGUiLAogICJ2ZXJzaW9uIjogMjkKfQ=="}}}
, {"uuid": "extensions-sync@elhan.io", "name": "Extensions Sync", "pname": "extensions-sync", "description": "Sync all extensions and their configurations across all gnome instances", "link": "https://extensions.gnome.org/extension/1486/extensions-sync/", "shell_version_map": {"38": {"version": "12", "sha256": "0yb0brjnqvvlqpdyh841qwh3q2d02vi1an0s93gb2b6kagy1g7zd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlN5bmMgYWxsIGV4dGVuc2lvbnMgYW5kIHRoZWlyIGNvbmZpZ3VyYXRpb25zIGFjcm9zcyBhbGwgZ25vbWUgaW5zdGFuY2VzIiwKICAibmFtZSI6ICJFeHRlbnNpb25zIFN5bmMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZXh0ZW5zaW9ucy1zeW5jIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb2FlL2dub21lLXNoZWxsLWV4dGVuc2lvbnMtc3luYyIsCiAgInV1aWQiOiAiZXh0ZW5zaW9ucy1zeW5jQGVsaGFuLmlvIiwKICAidmVyc2lvbiI6IDEyCn0="}, "40": {"version": "14", "sha256": "0805li10x12jasjhpngp3p24xvxmbcvskvhxc11m5nv286s4gpx3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlN5bmMgYWxsIGV4dGVuc2lvbnMgYW5kIHRoZWlyIGNvbmZpZ3VyYXRpb25zIGFjcm9zcyBhbGwgZ25vbWUgaW5zdGFuY2VzIiwKICAibmFtZSI6ICJFeHRlbnNpb25zIFN5bmMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZXh0ZW5zaW9ucy1zeW5jIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL29hZS9nbm9tZS1zaGVsbC1leHRlbnNpb25zLXN5bmMiLAogICJ1dWlkIjogImV4dGVuc2lvbnMtc3luY0BlbGhhbi5pbyIsCiAgInZlcnNpb24iOiAxNAp9"}}}
-, {"uuid": "containers@royg", "name": "Containers", "pname": "containers", "description": "Manage podman containers through a gnome-shell menu", "link": "https://extensions.gnome.org/extension/1500/containers/", "shell_version_map": {"40": {"version": "17", "sha256": "1kgnmqjnw0zsqjypz3rvf98crqprd2djympd504qy7bz2xcdzgs5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hbmFnZSBwb2RtYW4gY29udGFpbmVycyB0aHJvdWdoIGEgZ25vbWUtc2hlbGwgbWVudSIsCiAgIm5hbWUiOiAiQ29udGFpbmVycyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcmdvbGFuZ2gvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWNvbnRhaW5lcnMiLAogICJ1dWlkIjogImNvbnRhaW5lcnNAcm95ZyIsCiAgInZlcnNpb24iOiAxNwp9"}}}
+, {"uuid": "containers@royg", "name": "Containers", "pname": "containers", "description": "Manage podman containers through a gnome-shell menu", "link": "https://extensions.gnome.org/extension/1500/containers/", "shell_version_map": {"40": {"version": "19", "sha256": "16z5978jwpf6cbasnfdi5w8s9dx929r8yh7a4dsrd5isnrnyi22x", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hbmFnZSBwb2RtYW4gY29udGFpbmVycyB0aHJvdWdoIGEgZ25vbWUtc2hlbGwgbWVudSIsCiAgIm5hbWUiOiAiQ29udGFpbmVycyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcmdvbGFuZ2gvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWNvbnRhaW5lcnMiLAogICJ1dWlkIjogImNvbnRhaW5lcnNAcm95ZyIsCiAgInZlcnNpb24iOiAxOQp9"}}}
, {"uuid": "fullscreenworkspace@satran.in", "name": "Fullscreen On New Workspace", "pname": "fullscreen-on-new-workspace", "description": "When you launch an application in fullscreen mode move it to a separate workspace.", "link": "https://extensions.gnome.org/extension/1502/fullscreen-on-new-workspace/", "shell_version_map": {"38": {"version": "2", "sha256": "0flpi1rwbzacibhf8j74v6vc5wa99d5149ydmwdfcij3r5qxh5br", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIldoZW4geW91IGxhdW5jaCBhbiBhcHBsaWNhdGlvbiBpbiBmdWxsc2NyZWVuIG1vZGUgbW92ZSBpdCB0byBhIHNlcGFyYXRlIHdvcmtzcGFjZS4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmdWxsc2NyZWVud29ya3NwYWNlIiwKICAibmFtZSI6ICJGdWxsc2NyZWVuIE9uIE5ldyBXb3Jrc3BhY2UiLAogICJzY2hlbWEtaWQiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZnVsbHNjcmVlbndvcmtzcGFjZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zYXRyYW4vZnVsbHNjcmVlbndvcmtzcGFjZS1zYXRyYW4uaW4iLAogICJ1dWlkIjogImZ1bGxzY3JlZW53b3Jrc3BhY2VAc2F0cmFuLmluIiwKICAidmVyc2lvbiI6IDIKfQ=="}, "40": {"version": "2", "sha256": "0flpi1rwbzacibhf8j74v6vc5wa99d5149ydmwdfcij3r5qxh5br", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIldoZW4geW91IGxhdW5jaCBhbiBhcHBsaWNhdGlvbiBpbiBmdWxsc2NyZWVuIG1vZGUgbW92ZSBpdCB0byBhIHNlcGFyYXRlIHdvcmtzcGFjZS4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmdWxsc2NyZWVud29ya3NwYWNlIiwKICAibmFtZSI6ICJGdWxsc2NyZWVuIE9uIE5ldyBXb3Jrc3BhY2UiLAogICJzY2hlbWEtaWQiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZnVsbHNjcmVlbndvcmtzcGFjZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zYXRyYW4vZnVsbHNjcmVlbndvcmtzcGFjZS1zYXRyYW4uaW4iLAogICJ1dWlkIjogImZ1bGxzY3JlZW53b3Jrc3BhY2VAc2F0cmFuLmluIiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
, {"uuid": "tray-icons@zhangkaizhao.com", "name": "Tray Icons", "pname": "tray-icons", "description": "Tray icons", "link": "https://extensions.gnome.org/extension/1503/tray-icons/", "shell_version_map": {"38": {"version": "6", "sha256": "0q5kk8yp7cg61d4hcimrxrghsq7v8qaxjbmzvkj5apbg4cmz3s7v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYXkgaWNvbnMiLAogICJuYW1lIjogIlRyYXkgSWNvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIuMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3poYW5na2Fpemhhby9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJheS1pY29ucyIsCiAgInV1aWQiOiAidHJheS1pY29uc0B6aGFuZ2thaXpoYW8uY29tIiwKICAidmVyc2lvbiI6IDYKfQ=="}, "40": {"version": "6", "sha256": "0q5kk8yp7cg61d4hcimrxrghsq7v8qaxjbmzvkj5apbg4cmz3s7v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYXkgaWNvbnMiLAogICJuYW1lIjogIlRyYXkgSWNvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIuMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3poYW5na2Fpemhhby9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJheS1pY29ucyIsCiAgInV1aWQiOiAidHJheS1pY29uc0B6aGFuZ2thaXpoYW8uY29tIiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
, {"uuid": "new-mail-indicator@fthx", "name": "New Mail Indicator", "pname": "new-mail-indicator", "description": "An icon beside the date in the topbar to show if there are unread emails when running your default email client.\n\n It checks the notifications in the message tray related to a new mail, no extra configuration needed, very light extension. Click on the icon does toggle your email client window.*** Do not disable the notifications of your default email client! *** It is not a standalone mail checker, you need your email client to be running. *** Please check that the xdg-utils package is installed.\n\n Email clients verified at the moment are: Thunderbird, Evolution, Geary, Mailspring. Please ask to add the client, including special packaging (snap/flatpak), that you need. If you report an error, please provide at least the distribution and the email client you use through the GitHub link.\n\n For persistent notifications only, see: https://extensions.gnome.org/extension/3951/persistent-email-notifications .", "link": "https://extensions.gnome.org/extension/1505/new-mail-indicator/", "shell_version_map": {"38": {"version": "32", "sha256": "1h4dxgpanvxs5y0k0zlghxrqp74igs3dhhmj9fkrzykqgm5qk99w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFuIGljb24gYmVzaWRlIHRoZSBkYXRlIGluIHRoZSB0b3BiYXIgdG8gc2hvdyBpZiB0aGVyZSBhcmUgdW5yZWFkIGVtYWlscyB3aGVuIHJ1bm5pbmcgeW91ciBkZWZhdWx0IGVtYWlsIGNsaWVudC5cblxuIEl0IGNoZWNrcyB0aGUgbm90aWZpY2F0aW9ucyBpbiB0aGUgbWVzc2FnZSB0cmF5IHJlbGF0ZWQgdG8gYSBuZXcgbWFpbCwgbm8gZXh0cmEgY29uZmlndXJhdGlvbiBuZWVkZWQsIHZlcnkgbGlnaHQgZXh0ZW5zaW9uLiBDbGljayBvbiB0aGUgaWNvbiBkb2VzIHRvZ2dsZSB5b3VyIGVtYWlsIGNsaWVudCB3aW5kb3cuKioqIERvIG5vdCBkaXNhYmxlIHRoZSBub3RpZmljYXRpb25zIG9mIHlvdXIgZGVmYXVsdCBlbWFpbCBjbGllbnQhICoqKiBJdCBpcyBub3QgYSBzdGFuZGFsb25lIG1haWwgY2hlY2tlciwgeW91IG5lZWQgeW91ciBlbWFpbCBjbGllbnQgdG8gYmUgcnVubmluZy4gKioqIFBsZWFzZSBjaGVjayB0aGF0IHRoZSB4ZGctdXRpbHMgcGFja2FnZSBpcyBpbnN0YWxsZWQuXG5cbiBFbWFpbCBjbGllbnRzIHZlcmlmaWVkIGF0IHRoZSBtb21lbnQgYXJlOiBUaHVuZGVyYmlyZCwgRXZvbHV0aW9uLCBHZWFyeSwgTWFpbHNwcmluZy4gUGxlYXNlIGFzayB0byBhZGQgdGhlIGNsaWVudCwgaW5jbHVkaW5nIHNwZWNpYWwgcGFja2FnaW5nIChzbmFwL2ZsYXRwYWspLCB0aGF0IHlvdSBuZWVkLiBJZiB5b3UgcmVwb3J0IGFuIGVycm9yLCBwbGVhc2UgcHJvdmlkZSBhdCBsZWFzdCB0aGUgZGlzdHJpYnV0aW9uIGFuZCB0aGUgZW1haWwgY2xpZW50IHlvdSB1c2UgdGhyb3VnaCB0aGUgR2l0SHViIGxpbmsuXG5cbiBGb3IgcGVyc2lzdGVudCBub3RpZmljYXRpb25zIG9ubHksIHNlZTogaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMzk1MS9wZXJzaXN0ZW50LWVtYWlsLW5vdGlmaWNhdGlvbnMgLiIsCiAgIm5hbWUiOiAiTmV3IE1haWwgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvbmV3LW1haWwtaW5kaWNhdG9yIiwKICAidXVpZCI6ICJuZXctbWFpbC1pbmRpY2F0b3JAZnRoeCIsCiAgInZlcnNpb24iOiAzMgp9"}, "40": {"version": "32", "sha256": "1h4dxgpanvxs5y0k0zlghxrqp74igs3dhhmj9fkrzykqgm5qk99w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFuIGljb24gYmVzaWRlIHRoZSBkYXRlIGluIHRoZSB0b3BiYXIgdG8gc2hvdyBpZiB0aGVyZSBhcmUgdW5yZWFkIGVtYWlscyB3aGVuIHJ1bm5pbmcgeW91ciBkZWZhdWx0IGVtYWlsIGNsaWVudC5cblxuIEl0IGNoZWNrcyB0aGUgbm90aWZpY2F0aW9ucyBpbiB0aGUgbWVzc2FnZSB0cmF5IHJlbGF0ZWQgdG8gYSBuZXcgbWFpbCwgbm8gZXh0cmEgY29uZmlndXJhdGlvbiBuZWVkZWQsIHZlcnkgbGlnaHQgZXh0ZW5zaW9uLiBDbGljayBvbiB0aGUgaWNvbiBkb2VzIHRvZ2dsZSB5b3VyIGVtYWlsIGNsaWVudCB3aW5kb3cuKioqIERvIG5vdCBkaXNhYmxlIHRoZSBub3RpZmljYXRpb25zIG9mIHlvdXIgZGVmYXVsdCBlbWFpbCBjbGllbnQhICoqKiBJdCBpcyBub3QgYSBzdGFuZGFsb25lIG1haWwgY2hlY2tlciwgeW91IG5lZWQgeW91ciBlbWFpbCBjbGllbnQgdG8gYmUgcnVubmluZy4gKioqIFBsZWFzZSBjaGVjayB0aGF0IHRoZSB4ZGctdXRpbHMgcGFja2FnZSBpcyBpbnN0YWxsZWQuXG5cbiBFbWFpbCBjbGllbnRzIHZlcmlmaWVkIGF0IHRoZSBtb21lbnQgYXJlOiBUaHVuZGVyYmlyZCwgRXZvbHV0aW9uLCBHZWFyeSwgTWFpbHNwcmluZy4gUGxlYXNlIGFzayB0byBhZGQgdGhlIGNsaWVudCwgaW5jbHVkaW5nIHNwZWNpYWwgcGFja2FnaW5nIChzbmFwL2ZsYXRwYWspLCB0aGF0IHlvdSBuZWVkLiBJZiB5b3UgcmVwb3J0IGFuIGVycm9yLCBwbGVhc2UgcHJvdmlkZSBhdCBsZWFzdCB0aGUgZGlzdHJpYnV0aW9uIGFuZCB0aGUgZW1haWwgY2xpZW50IHlvdSB1c2UgdGhyb3VnaCB0aGUgR2l0SHViIGxpbmsuXG5cbiBGb3IgcGVyc2lzdGVudCBub3RpZmljYXRpb25zIG9ubHksIHNlZTogaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMzk1MS9wZXJzaXN0ZW50LWVtYWlsLW5vdGlmaWNhdGlvbnMgLiIsCiAgIm5hbWUiOiAiTmV3IE1haWwgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvbmV3LW1haWwtaW5kaWNhdG9yIiwKICAidXVpZCI6ICJuZXctbWFpbC1pbmRpY2F0b3JAZnRoeCIsCiAgInZlcnNpb24iOiAzMgp9"}}}
@@ -211,7 +215,7 @@
, {"uuid": "drawOnYourScreen@abakkk.framagit.org", "name": "Draw On You Screen", "pname": "draw-on-you-screen", "description": "", "link": "https://extensions.gnome.org/extension/1683/draw-on-you-screen/", "shell_version_map": {"38": {"version": "11", "sha256": "0kbgngcb2n234snnavbm8giwi6zhvr48bs0qy4f511d52l2wyawy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRhdGEtZGlyIjogImRyYXdPbllvdXJTY3JlZW4iLAogICJkZXNjcmlwdGlvbiI6ICIiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJkcmF3LW9uLXlvdXItc2NyZWVuIiwKICAibmFtZSI6ICJEcmF3IE9uIFlvdSBTY3JlZW4iLAogICJwZXJzaXN0ZW50LWZpbGUtbmFtZSI6ICJwZXJzaXN0ZW50IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmRyYXctb24teW91ci1zY3JlZW4iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjQiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAic3ZnLWZpbGUtbmFtZSI6ICJEcmF3T25Zb3VyU2NyZWVuIiwKICAidXJsIjogIiIsCiAgInV1aWQiOiAiZHJhd09uWW91clNjcmVlbkBhYmFra2suZnJhbWFnaXQub3JnIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "Always-Show-Titles-In-Overview@gmail.com", "name": "Always Show Titles In Overview", "pname": "always-show-titles-in-overview", "description": "Show titles of all thumbnails in the Gnome 3 overview.", "link": "https://extensions.gnome.org/extension/1689/always-show-titles-in-overview/", "shell_version_map": {"38": {"version": "10", "sha256": "134xr99qsrz0z56nrgp5frjmzk3jk38sh6hix394a7mm8y5wx304", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgdGl0bGVzIG9mIGFsbCB0aHVtYm5haWxzIGluIHRoZSBHbm9tZSAzIG92ZXJ2aWV3LiIsCiAgIm5hbWUiOiAiQWx3YXlzIFNob3cgVGl0bGVzIEluIE92ZXJ2aWV3IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbmxwc3VnZS9BbHdheXMtU2hvdy1UaXRsZXMtSW4tT3ZlcnZpZXciLAogICJ1dWlkIjogIkFsd2F5cy1TaG93LVRpdGxlcy1Jbi1PdmVydmlld0BnbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTAKfQ=="}, "40": {"version": "9", "sha256": "0jan9fzfjkclm9m6ckngzp7j203vwbcn3m7njyl498zsqr81ar8g", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgdGl0bGVzIG9mIGFsbCB0aHVtYm5haWxzIGluIHRoZSBHbm9tZSAzIG92ZXJ2aWV3LiIsCiAgIm5hbWUiOiAiQWx3YXlzIFNob3cgVGl0bGVzIEluIE92ZXJ2aWV3IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL25scHN1Z2UvQWx3YXlzLVNob3ctVGl0bGVzLUluLU92ZXJ2aWV3IiwKICAidXVpZCI6ICJBbHdheXMtU2hvdy1UaXRsZXMtSW4tT3ZlcnZpZXdAZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
, {"uuid": "overview-navigation@nathanielsimard.github.com", "name": "Overview Navigation", "pname": "overview-navigation", "description": "This extension aims to make Gnome Shell easier to navigate using only the keyboard. It is inspired by the vim plugins of Firefox and Chrome.", "link": "https://extensions.gnome.org/extension/1702/overview-navigation/", "shell_version_map": {"38": {"version": "14", "sha256": "10i2j0klcyi22qakmw1f338ldc87w54a0jlg1bwq84ifflmnm8nq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGFpbXMgdG8gbWFrZSBHbm9tZSBTaGVsbCBlYXNpZXIgdG8gbmF2aWdhdGUgdXNpbmcgb25seSB0aGUga2V5Ym9hcmQuIEl0IGlzIGluc3BpcmVkIGJ5IHRoZSB2aW0gcGx1Z2lucyBvZiBGaXJlZm94IGFuZCBDaHJvbWUuIiwKICAibmFtZSI6ICJPdmVydmlldyBOYXZpZ2F0aW9uIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm92ZXJ2aWV3LW5hdmlnYXRpb24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9uYXRoYW5pZWxzaW1hcmQvb3ZlcnZpZXctbmF2aWdhdGlvbiIsCiAgInV1aWQiOiAib3ZlcnZpZXctbmF2aWdhdGlvbkBuYXRoYW5pZWxzaW1hcmQuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAxNAp9"}, "40": {"version": "15", "sha256": "03ah1cx6kjw7698b9wwhz7ag8pag15g8zkxzfrsrcmving9syynd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGFpbXMgdG8gbWFrZSBHbm9tZSBTaGVsbCBlYXNpZXIgdG8gbmF2aWdhdGUgdXNpbmcgb25seSB0aGUga2V5Ym9hcmQuIEl0IGlzIGluc3BpcmVkIGJ5IHRoZSB2aW0gcGx1Z2lucyBvZiBGaXJlZm94IGFuZCBDaHJvbWUuIiwKICAibmFtZSI6ICJPdmVydmlldyBOYXZpZ2F0aW9uIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm92ZXJ2aWV3LW5hdmlnYXRpb24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbmF0aGFuaWVsc2ltYXJkL292ZXJ2aWV3LW5hdmlnYXRpb24iLAogICJ1dWlkIjogIm92ZXJ2aWV3LW5hdmlnYXRpb25AbmF0aGFuaWVsc2ltYXJkLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMTUKfQ=="}}}
-, {"uuid": "transparent-top-bar@zhanghai.me", "name": "Transparent Top Bar", "pname": "transparent-top-bar", "description": "Bring back the transparent top bar when free-floating in GNOME Shell 3.32.\n\nThis basically comes from the feature implementation removed in GNOME Shell 3.32, and I modified the code a bit to make it an extension. Enjoy!", "link": "https://extensions.gnome.org/extension/1708/transparent-top-bar/", "shell_version_map": {"38": {"version": "9", "sha256": "0i34ns1rm2iis9mvbyjvckb0l1b0zzzczzan7591y8lqfjplsmzr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJyaW5nIGJhY2sgdGhlIHRyYW5zcGFyZW50IHRvcCBiYXIgd2hlbiBmcmVlLWZsb2F0aW5nIGluIEdOT01FIFNoZWxsIDMuMzIuXG5cblRoaXMgYmFzaWNhbGx5IGNvbWVzIGZyb20gdGhlIGZlYXR1cmUgaW1wbGVtZW50YXRpb24gcmVtb3ZlZCBpbiBHTk9NRSBTaGVsbCAzLjMyLCBhbmQgSSBtb2RpZmllZCB0aGUgY29kZSBhIGJpdCB0byBtYWtlIGl0IGFuIGV4dGVuc2lvbi4gRW5qb3khIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3poYW5naGFpL2dub21lLXNoZWxsLWV4dGVuc2lvbi10cmFuc3BhcmVudC10b3AtYmFyIiwKICAidXVpZCI6ICJ0cmFuc3BhcmVudC10b3AtYmFyQHpoYW5naGFpLm1lIiwKICAidmVyc2lvbiI6IDkKfQ=="}, "40": {"version": "12", "sha256": "0ir6apfpjihwdbxlpa30jgvqn47f14xs9aplz4rrya9h51zf55jl", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJyaW5nIGJhY2sgdGhlIHRyYW5zcGFyZW50IHRvcCBiYXIgd2hlbiBmcmVlLWZsb2F0aW5nIGluIEdOT01FIFNoZWxsIDMuMzIuXG5cblRoaXMgYmFzaWNhbGx5IGNvbWVzIGZyb20gdGhlIGZlYXR1cmUgaW1wbGVtZW50YXRpb24gcmVtb3ZlZCBpbiBHTk9NRSBTaGVsbCAzLjMyLCBhbmQgSSBtb2RpZmllZCB0aGUgY29kZSBhIGJpdCB0byBtYWtlIGl0IGFuIGV4dGVuc2lvbi4gRW5qb3khIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3poYW5naGFpL2dub21lLXNoZWxsLWV4dGVuc2lvbi10cmFuc3BhcmVudC10b3AtYmFyIiwKICAidXVpZCI6ICJ0cmFuc3BhcmVudC10b3AtYmFyQHpoYW5naGFpLm1lIiwKICAidmVyc2lvbiI6IDEyCn0="}}}
+, {"uuid": "transparent-top-bar@zhanghai.me", "name": "Transparent Top Bar", "pname": "transparent-top-bar", "description": "Bring back the transparent top bar when free-floating in GNOME Shell 3.32.\n\nThis basically comes from the feature implementation removed in GNOME Shell 3.32, and I modified the code a bit to make it an extension. Enjoy!", "link": "https://extensions.gnome.org/extension/1708/transparent-top-bar/", "shell_version_map": {"38": {"version": "9", "sha256": "0i34ns1rm2iis9mvbyjvckb0l1b0zzzczzan7591y8lqfjplsmzr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJyaW5nIGJhY2sgdGhlIHRyYW5zcGFyZW50IHRvcCBiYXIgd2hlbiBmcmVlLWZsb2F0aW5nIGluIEdOT01FIFNoZWxsIDMuMzIuXG5cblRoaXMgYmFzaWNhbGx5IGNvbWVzIGZyb20gdGhlIGZlYXR1cmUgaW1wbGVtZW50YXRpb24gcmVtb3ZlZCBpbiBHTk9NRSBTaGVsbCAzLjMyLCBhbmQgSSBtb2RpZmllZCB0aGUgY29kZSBhIGJpdCB0byBtYWtlIGl0IGFuIGV4dGVuc2lvbi4gRW5qb3khIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3poYW5naGFpL2dub21lLXNoZWxsLWV4dGVuc2lvbi10cmFuc3BhcmVudC10b3AtYmFyIiwKICAidXVpZCI6ICJ0cmFuc3BhcmVudC10b3AtYmFyQHpoYW5naGFpLm1lIiwKICAidmVyc2lvbiI6IDkKfQ=="}, "40": {"version": "13", "sha256": "1ppsii29lv4jaqdrjrav3j19ynv7kwl7mf7pn27lsgiga25n4wyh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJyaW5nIGJhY2sgdGhlIHRyYW5zcGFyZW50IHRvcCBiYXIgd2hlbiBmcmVlLWZsb2F0aW5nIGluIEdOT01FIFNoZWxsIDMuMzIuXG5cblRoaXMgYmFzaWNhbGx5IGNvbWVzIGZyb20gdGhlIGZlYXR1cmUgaW1wbGVtZW50YXRpb24gcmVtb3ZlZCBpbiBHTk9NRSBTaGVsbCAzLjMyLCBhbmQgSSBtb2RpZmllZCB0aGUgY29kZSBhIGJpdCB0byBtYWtlIGl0IGFuIGV4dGVuc2lvbi4gRW5qb3khIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS96aGFuZ2hhaS9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJhbnNwYXJlbnQtdG9wLWJhciIsCiAgInV1aWQiOiAidHJhbnNwYXJlbnQtdG9wLWJhckB6aGFuZ2hhaS5tZSIsCiAgInZlcnNpb24iOiAxMwp9"}}}
, {"uuid": "ssh-search-provider@extensions.gnome-shell.fifi.org", "name": "SSH Search Provider Reborn", "pname": "ssh-search-provider-reborn", "description": "Provide SSH search results in overview.\n\nThis is a fork of the original \"SSH Search Provider\", updated to work with newer Gnome-Shells.", "link": "https://extensions.gnome.org/extension/1714/ssh-search-provider-reborn/", "shell_version_map": {"38": {"version": "8", "sha256": "1i55s7mdrsgfb5lmxyvpfnbn4d822miqwb1n8s8hq7nsh4v9xrha", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlByb3ZpZGUgU1NIIHNlYXJjaCByZXN1bHRzIGluIG92ZXJ2aWV3LlxuXG5UaGlzIGlzIGEgZm9yayBvZiB0aGUgb3JpZ2luYWwgXCJTU0ggU2VhcmNoIFByb3ZpZGVyXCIsIHVwZGF0ZWQgdG8gd29yayB3aXRoIG5ld2VyIEdub21lLVNoZWxscy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJzc2gtc2VhcmNoLXByb3ZpZGVyIiwKICAibmFtZSI6ICJTU0ggU2VhcmNoIFByb3ZpZGVyIFJlYm9ybiIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zc2gtc2VhcmNoLXByb3ZpZGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjMzLjkwIiwKICAgICIzLjM2IiwKICAgICIzLjM1LjkyIiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vRi1pLWYvc3NoLXNlYXJjaC1wcm92aWRlciIsCiAgInV1aWQiOiAic3NoLXNlYXJjaC1wcm92aWRlckBleHRlbnNpb25zLmdub21lLXNoZWxsLmZpZmkub3JnIiwKICAidmNzX3JldmlzaW9uIjogInY4LTAtZzM0YjYyYTEiLAogICJ2ZXJzaW9uIjogOAp9"}, "40": {"version": "8", "sha256": "1i55s7mdrsgfb5lmxyvpfnbn4d822miqwb1n8s8hq7nsh4v9xrha", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlByb3ZpZGUgU1NIIHNlYXJjaCByZXN1bHRzIGluIG92ZXJ2aWV3LlxuXG5UaGlzIGlzIGEgZm9yayBvZiB0aGUgb3JpZ2luYWwgXCJTU0ggU2VhcmNoIFByb3ZpZGVyXCIsIHVwZGF0ZWQgdG8gd29yayB3aXRoIG5ld2VyIEdub21lLVNoZWxscy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJzc2gtc2VhcmNoLXByb3ZpZGVyIiwKICAibmFtZSI6ICJTU0ggU2VhcmNoIFByb3ZpZGVyIFJlYm9ybiIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zc2gtc2VhcmNoLXByb3ZpZGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjMzLjkwIiwKICAgICIzLjM2IiwKICAgICIzLjM1LjkyIiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vRi1pLWYvc3NoLXNlYXJjaC1wcm92aWRlciIsCiAgInV1aWQiOiAic3NoLXNlYXJjaC1wcm92aWRlckBleHRlbnNpb25zLmdub21lLXNoZWxsLmZpZmkub3JnIiwKICAidmNzX3JldmlzaW9uIjogInY4LTAtZzM0YjYyYTEiLAogICJ2ZXJzaW9uIjogOAp9"}}}
, {"uuid": "weeks-start-on-monday@extensions.gnome-shell.fifi.org", "name": "Weeks Start on Monday Again...", "pname": "weeks-start-on-monday-again", "description": "... or maybe not, and that's why the start day is configurable in the preferences.\n\nThis is an updated version of the \"Weeks Start on Monday\" extension for newer Gnome Shells.", "link": "https://extensions.gnome.org/extension/1720/weeks-start-on-monday-again/", "shell_version_map": {"38": {"version": "8", "sha256": "0d84v6rn0k1rpkin0fnj5halfhk0z7mh36s8n3g7y653r0fn76vv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIi4uLiBvciBtYXliZSBub3QsIGFuZCB0aGF0J3Mgd2h5IHRoZSBzdGFydCBkYXkgaXMgY29uZmlndXJhYmxlIGluIHRoZSBwcmVmZXJlbmNlcy5cblxuVGhpcyBpcyBhbiB1cGRhdGVkIHZlcnNpb24gb2YgdGhlIFwiV2Vla3MgU3RhcnQgb24gTW9uZGF5XCIgZXh0ZW5zaW9uIGZvciBuZXdlciBHbm9tZSBTaGVsbHMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAid2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAibmFtZSI6ICJXZWVrcyBTdGFydCBvbiBNb25kYXkgQWdhaW4uLi4iLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjMzLjkwIiwKICAgICIzLjM2IiwKICAgICIzLjM1LjkyIiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vRi1pLWYvd2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAidXVpZCI6ICJ3ZWVrcy1zdGFydC1vbi1tb25kYXlAZXh0ZW5zaW9ucy5nbm9tZS1zaGVsbC5maWZpLm9yZyIsCiAgInZjc19yZXZpc2lvbiI6ICJ2OC0wLWc4M2RlNGE0IiwKICAidmVyc2lvbiI6IDgKfQ=="}, "40": {"version": "8", "sha256": "0d84v6rn0k1rpkin0fnj5halfhk0z7mh36s8n3g7y653r0fn76vv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIi4uLiBvciBtYXliZSBub3QsIGFuZCB0aGF0J3Mgd2h5IHRoZSBzdGFydCBkYXkgaXMgY29uZmlndXJhYmxlIGluIHRoZSBwcmVmZXJlbmNlcy5cblxuVGhpcyBpcyBhbiB1cGRhdGVkIHZlcnNpb24gb2YgdGhlIFwiV2Vla3MgU3RhcnQgb24gTW9uZGF5XCIgZXh0ZW5zaW9uIGZvciBuZXdlciBHbm9tZSBTaGVsbHMuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAid2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAibmFtZSI6ICJXZWVrcyBTdGFydCBvbiBNb25kYXkgQWdhaW4uLi4iLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMud2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjMzLjkwIiwKICAgICIzLjM2IiwKICAgICIzLjM1LjkyIiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vRi1pLWYvd2Vla3Mtc3RhcnQtb24tbW9uZGF5IiwKICAidXVpZCI6ICJ3ZWVrcy1zdGFydC1vbi1tb25kYXlAZXh0ZW5zaW9ucy5nbm9tZS1zaGVsbC5maWZpLm9yZyIsCiAgInZjc19yZXZpc2lvbiI6ICJ2OC0wLWc4M2RlNGE0IiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
, {"uuid": "wintile@nowsci.com", "name": "WinTile: Windows 10 window tiling for GNOME", "pname": "wintile-windows-10-window-tiling-for-gnome", "description": "[NOTE] When upgrading to V7, you may get an ERROR. Log out and back in and V7 will begin to work.\n\nWinTile is a hotkey driven window tiling system for GNOME that imitates the standard Win-Arrow keys of Windows 10, allowing you to maximize, maximize to sides, or 1/4 sized to corner across a single or multiple monitors using just Super+Arrow.\n\nAs of v3, WinTile also supports:\n- 2, 3, or 4 columns for standard or ultrawide monitors\n- Top/bottom half support\n- Mouse preview and snapping for placing windows\n- Toggling of 'maximize' mode, which adds/removes GNOME animations\n\nAs of v6, supports installs in GNOME 3.38+\n\nAs of v7, supports installs in GNOME 40+", "link": "https://extensions.gnome.org/extension/1723/wintile-windows-10-window-tiling-for-gnome/", "shell_version_map": {"38": {"version": "7", "sha256": "1nx0psgaj33ipfsnxinvz2vjmdhhvms0bqdflhmkbh1003m6103x", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIltOT1RFXSBXaGVuIHVwZ3JhZGluZyB0byBWNywgeW91IG1heSBnZXQgYW4gRVJST1IuIExvZyBvdXQgYW5kIGJhY2sgaW4gYW5kIFY3IHdpbGwgYmVnaW4gdG8gd29yay5cblxuV2luVGlsZSBpcyBhIGhvdGtleSBkcml2ZW4gd2luZG93IHRpbGluZyBzeXN0ZW0gZm9yIEdOT01FIHRoYXQgaW1pdGF0ZXMgdGhlIHN0YW5kYXJkIFdpbi1BcnJvdyBrZXlzIG9mIFdpbmRvd3MgMTAsIGFsbG93aW5nIHlvdSB0byBtYXhpbWl6ZSwgbWF4aW1pemUgdG8gc2lkZXMsIG9yIDEvNCBzaXplZCB0byBjb3JuZXIgYWNyb3NzIGEgc2luZ2xlIG9yIG11bHRpcGxlIG1vbml0b3JzIHVzaW5nIGp1c3QgU3VwZXIrQXJyb3cuXG5cbkFzIG9mIHYzLCBXaW5UaWxlIGFsc28gc3VwcG9ydHM6XG4tIDIsIDMsIG9yIDQgY29sdW1ucyBmb3Igc3RhbmRhcmQgb3IgdWx0cmF3aWRlIG1vbml0b3JzXG4tIFRvcC9ib3R0b20gaGFsZiBzdXBwb3J0XG4tIE1vdXNlIHByZXZpZXcgYW5kIHNuYXBwaW5nIGZvciBwbGFjaW5nIHdpbmRvd3Ncbi0gVG9nZ2xpbmcgb2YgJ21heGltaXplJyBtb2RlLCB3aGljaCBhZGRzL3JlbW92ZXMgR05PTUUgYW5pbWF0aW9uc1xuXG5BcyBvZiB2Niwgc3VwcG9ydHMgaW5zdGFsbHMgaW4gR05PTUUgMy4zOCtcblxuQXMgb2YgdjcsIHN1cHBvcnRzIGluc3RhbGxzIGluIEdOT01FIDQwKyIsCiAgIm5hbWUiOiAiV2luVGlsZTogV2luZG93cyAxMCB3aW5kb3cgdGlsaW5nIGZvciBHTk9NRSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Ztc3RyYXQvd2ludGlsZSIsCiAgInV1aWQiOiAid2ludGlsZUBub3dzY2kuY29tIiwKICAidmVyc2lvbiI6IDcKfQ=="}, "40": {"version": "7", "sha256": "1nx0psgaj33ipfsnxinvz2vjmdhhvms0bqdflhmkbh1003m6103x", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIltOT1RFXSBXaGVuIHVwZ3JhZGluZyB0byBWNywgeW91IG1heSBnZXQgYW4gRVJST1IuIExvZyBvdXQgYW5kIGJhY2sgaW4gYW5kIFY3IHdpbGwgYmVnaW4gdG8gd29yay5cblxuV2luVGlsZSBpcyBhIGhvdGtleSBkcml2ZW4gd2luZG93IHRpbGluZyBzeXN0ZW0gZm9yIEdOT01FIHRoYXQgaW1pdGF0ZXMgdGhlIHN0YW5kYXJkIFdpbi1BcnJvdyBrZXlzIG9mIFdpbmRvd3MgMTAsIGFsbG93aW5nIHlvdSB0byBtYXhpbWl6ZSwgbWF4aW1pemUgdG8gc2lkZXMsIG9yIDEvNCBzaXplZCB0byBjb3JuZXIgYWNyb3NzIGEgc2luZ2xlIG9yIG11bHRpcGxlIG1vbml0b3JzIHVzaW5nIGp1c3QgU3VwZXIrQXJyb3cuXG5cbkFzIG9mIHYzLCBXaW5UaWxlIGFsc28gc3VwcG9ydHM6XG4tIDIsIDMsIG9yIDQgY29sdW1ucyBmb3Igc3RhbmRhcmQgb3IgdWx0cmF3aWRlIG1vbml0b3JzXG4tIFRvcC9ib3R0b20gaGFsZiBzdXBwb3J0XG4tIE1vdXNlIHByZXZpZXcgYW5kIHNuYXBwaW5nIGZvciBwbGFjaW5nIHdpbmRvd3Ncbi0gVG9nZ2xpbmcgb2YgJ21heGltaXplJyBtb2RlLCB3aGljaCBhZGRzL3JlbW92ZXMgR05PTUUgYW5pbWF0aW9uc1xuXG5BcyBvZiB2Niwgc3VwcG9ydHMgaW5zdGFsbHMgaW4gR05PTUUgMy4zOCtcblxuQXMgb2YgdjcsIHN1cHBvcnRzIGluc3RhbGxzIGluIEdOT01FIDQwKyIsCiAgIm5hbWUiOiAiV2luVGlsZTogV2luZG93cyAxMCB3aW5kb3cgdGlsaW5nIGZvciBHTk9NRSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Ztc3RyYXQvd2ludGlsZSIsCiAgInV1aWQiOiAid2ludGlsZUBub3dzY2kuY29tIiwKICAidmVyc2lvbiI6IDcKfQ=="}}}
@@ -227,16 +231,16 @@
, {"uuid": "krypto@sereneblue", "name": "krypto", "pname": "krypto", "description": "Cryptocurrency utility", "link": "https://extensions.gnome.org/extension/1913/krypto/", "shell_version_map": {"38": {"version": "5", "sha256": "0pmga4iqpm0i853lgqfhvnkxhji8m79pk9hgf24lvbpv8alkxzz3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNyeXB0b2N1cnJlbmN5IHV0aWxpdHkiLAogICJuYW1lIjogImtyeXB0byIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3NlcmVuZWJsdWUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWtyeXB0byIsCiAgInV1aWQiOiAia3J5cHRvQHNlcmVuZWJsdWUiLAogICJ2ZXJzaW9uIjogNQp9"}, "40": {"version": "9", "sha256": "08r7w1mq573hy6vqllydvsrmc91bqmy9ih8li689v225drd95wk4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNyeXB0b2N1cnJlbmN5IHV0aWxpdHkiLAogICJuYW1lIjogImtyeXB0byIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vc2VyZW5lYmx1ZS9nbm9tZS1zaGVsbC1leHRlbnNpb24ta3J5cHRvIiwKICAidXVpZCI6ICJrcnlwdG9Ac2VyZW5lYmx1ZSIsCiAgInZlcnNpb24iOiA5Cn0="}}}
, {"uuid": "cmus-status@yagreg7.gmail.com", "name": "cmus status", "pname": "cmus-status", "description": "Shows cmus status", "link": "https://extensions.gnome.org/extension/1934/cmus-status/", "shell_version_map": {"38": {"version": "8", "sha256": "1a6b10kirzbjlllcnffznjlljicah172kpvs0p8rmwhcpn88i8hx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIGNtdXMgc3RhdHVzIiwKICAibmFtZSI6ICJjbXVzIHN0YXR1cyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5jbXVzLXN0YXR1cy5nc2NoZW1hLnhtbCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0dyZWdUaGVNYWRNb25rL2dub21lLWNtdXMtc3RhdHVzIiwKICAidXVpZCI6ICJjbXVzLXN0YXR1c0B5YWdyZWc3LmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiA4Cn0="}}}
, {"uuid": "no-title-bar@jonaspoehler.de", "name": "No Title Bar - Forked", "pname": "no-title-bar-forked", "description": "No Title Bar removes the title bar from non-GTK applications and moves the window title and buttons to the top panel.\n\nTitlebars are also hidden for Wayland-native clients that don't use CSD. Some of the options may be incompatible with this. For issues on Wayland please visit github!\n\nThis is a fork of https://extensions.gnome.org/extension/1267/no-title-bar/ with added compatibility for Gnome 3.32+.\n\nThis extension depends on some Xorg utilities. To install them:\n\n⚫ Debian/Ubuntu: apt install x11-utils\n⚫ Fedora/RHEL: dnf install xorg-x11-utils\n⚫ Arch: pacman -S xorg-xprop", "link": "https://extensions.gnome.org/extension/2015/no-title-bar-forked/", "shell_version_map": {"38": {"version": "5", "sha256": "0kch8yra13813gg3wa90lm57skqshmj3j1147lrqwhl9va9rk4q6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIFRpdGxlIEJhciByZW1vdmVzIHRoZSB0aXRsZSBiYXIgZnJvbSBub24tR1RLIGFwcGxpY2F0aW9ucyBhbmQgbW92ZXMgdGhlIHdpbmRvdyB0aXRsZSBhbmQgYnV0dG9ucyB0byB0aGUgdG9wIHBhbmVsLlxuXG5UaXRsZWJhcnMgYXJlIGFsc28gaGlkZGVuIGZvciBXYXlsYW5kLW5hdGl2ZSBjbGllbnRzIHRoYXQgZG9uJ3QgdXNlIENTRC4gU29tZSBvZiB0aGUgb3B0aW9ucyBtYXkgYmUgaW5jb21wYXRpYmxlIHdpdGggdGhpcy4gRm9yIGlzc3VlcyBvbiBXYXlsYW5kIHBsZWFzZSB2aXNpdCBnaXRodWIhXG5cblRoaXMgaXMgYSBmb3JrIG9mIGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyNjcvbm8tdGl0bGUtYmFyLyB3aXRoIGFkZGVkIGNvbXBhdGliaWxpdHkgZm9yIEdub21lIDMuMzIrLlxuXG5UaGlzIGV4dGVuc2lvbiBkZXBlbmRzIG9uIHNvbWUgWG9yZyB1dGlsaXRpZXMuIFRvIGluc3RhbGwgdGhlbTpcblxuXHUyNmFiIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuXHUyNmFiIEZlZG9yYS9SSEVMOiBkbmYgaW5zdGFsbCB4b3JnLXgxMS11dGlsc1xuXHUyNmFiIEFyY2g6IHBhY21hbiAtUyB4b3JnLXhwcm9wIiwKICAibmFtZSI6ICJObyBUaXRsZSBCYXIgLSBGb3JrZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9wb2VobGVyai9uby10aXRsZS1iYXIiLAogICJ1dWlkIjogIm5vLXRpdGxlLWJhckBqb25hc3BvZWhsZXIuZGUiLAogICJ2ZXJzaW9uIjogNQp9"}, "40": {"version": "6", "sha256": "1plnj999qynsfvab6s01rfrdvw6m0s19b4zirhmlqrpax9vjl3zm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIFRpdGxlIEJhciByZW1vdmVzIHRoZSB0aXRsZSBiYXIgZnJvbSBub24tR1RLIGFwcGxpY2F0aW9ucyBhbmQgbW92ZXMgdGhlIHdpbmRvdyB0aXRsZSBhbmQgYnV0dG9ucyB0byB0aGUgdG9wIHBhbmVsLlxuXG5UaXRsZWJhcnMgYXJlIGFsc28gaGlkZGVuIGZvciBXYXlsYW5kLW5hdGl2ZSBjbGllbnRzIHRoYXQgZG9uJ3QgdXNlIENTRC4gU29tZSBvZiB0aGUgb3B0aW9ucyBtYXkgYmUgaW5jb21wYXRpYmxlIHdpdGggdGhpcy4gRm9yIGlzc3VlcyBvbiBXYXlsYW5kIHBsZWFzZSB2aXNpdCBnaXRodWIhXG5cblRoaXMgaXMgYSBmb3JrIG9mIGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyNjcvbm8tdGl0bGUtYmFyLyB3aXRoIGFkZGVkIGNvbXBhdGliaWxpdHkgZm9yIEdub21lIDMuMzIrLlxuXG5UaGlzIGV4dGVuc2lvbiBkZXBlbmRzIG9uIHNvbWUgWG9yZyB1dGlsaXRpZXMuIFRvIGluc3RhbGwgdGhlbTpcblxuXHUyNmFiIERlYmlhbi9VYnVudHU6IGFwdCBpbnN0YWxsIHgxMS11dGlsc1xuXHUyNmFiIEZlZG9yYS9SSEVMOiBkbmYgaW5zdGFsbCB4b3JnLXgxMS11dGlsc1xuXHUyNmFiIEFyY2g6IHBhY21hbiAtUyB4b3JnLXhwcm9wIiwKICAibmFtZSI6ICJObyBUaXRsZSBCYXIgLSBGb3JrZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcG9laGxlcmovbm8tdGl0bGUtYmFyIiwKICAidXVpZCI6ICJuby10aXRsZS1iYXJAam9uYXNwb2VobGVyLmRlIiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
-, {"uuid": "application_view_when_empty@fawtytoo", "name": "Show Application View When Workspace Empty", "pname": "show-application-view-when-workspace-empty", "description": "Shows the application view when the workspace is or becomes empty, such as switching to an empty workspace, when all windows on a workspace are closed, or after login. Starting applications or switching to a workspace with open windows will hide the overview if it's showing.", "link": "https://extensions.gnome.org/extension/2036/show-application-view-when-workspace-empty/", "shell_version_map": {"38": {"version": "16", "sha256": "11l8p1f62kf73jwq1idhqanjhmml6cwkffy1brqihczvg88pdzdy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIHRoZSBhcHBsaWNhdGlvbiB2aWV3IHdoZW4gdGhlIHdvcmtzcGFjZSBpcyBvciBiZWNvbWVzIGVtcHR5LCBzdWNoIGFzIHN3aXRjaGluZyB0byBhbiBlbXB0eSB3b3Jrc3BhY2UsIHdoZW4gYWxsIHdpbmRvd3Mgb24gYSB3b3Jrc3BhY2UgYXJlIGNsb3NlZCwgb3IgYWZ0ZXIgbG9naW4uIFN0YXJ0aW5nIGFwcGxpY2F0aW9ucyBvciBzd2l0Y2hpbmcgdG8gYSB3b3Jrc3BhY2Ugd2l0aCBvcGVuIHdpbmRvd3Mgd2lsbCBoaWRlIHRoZSBvdmVydmlldyBpZiBpdCdzIHNob3dpbmcuIiwKICAibmFtZSI6ICJTaG93IEFwcGxpY2F0aW9uIFZpZXcgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFwcGxpY2F0aW9uX3ZpZXdfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiAxNgp9"}, "40": {"version": "16", "sha256": "11l8p1f62kf73jwq1idhqanjhmml6cwkffy1brqihczvg88pdzdy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIHRoZSBhcHBsaWNhdGlvbiB2aWV3IHdoZW4gdGhlIHdvcmtzcGFjZSBpcyBvciBiZWNvbWVzIGVtcHR5LCBzdWNoIGFzIHN3aXRjaGluZyB0byBhbiBlbXB0eSB3b3Jrc3BhY2UsIHdoZW4gYWxsIHdpbmRvd3Mgb24gYSB3b3Jrc3BhY2UgYXJlIGNsb3NlZCwgb3IgYWZ0ZXIgbG9naW4uIFN0YXJ0aW5nIGFwcGxpY2F0aW9ucyBvciBzd2l0Y2hpbmcgdG8gYSB3b3Jrc3BhY2Ugd2l0aCBvcGVuIHdpbmRvd3Mgd2lsbCBoaWRlIHRoZSBvdmVydmlldyBpZiBpdCdzIHNob3dpbmcuIiwKICAibmFtZSI6ICJTaG93IEFwcGxpY2F0aW9uIFZpZXcgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFwcGxpY2F0aW9uX3ZpZXdfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiAxNgp9"}}}
+, {"uuid": "application_view_when_empty@fawtytoo", "name": "Show Application View When Workspace Empty", "pname": "show-application-view-when-workspace-empty", "description": "Shows the application view when the workspace is or becomes empty, such as switching to an empty workspace, when all windows on a workspace are closed, or after login. Starting applications or switching to a workspace with open windows will hide the overview if it's showing.", "link": "https://extensions.gnome.org/extension/2036/show-application-view-when-workspace-empty/", "shell_version_map": {"38": {"version": "18", "sha256": "1vz3d8gif8a7nimcn98cwv6lh4khn888c3mvn7pnn06pfpisl6g2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIHRoZSBhcHBsaWNhdGlvbiB2aWV3IHdoZW4gdGhlIHdvcmtzcGFjZSBpcyBvciBiZWNvbWVzIGVtcHR5LCBzdWNoIGFzIHN3aXRjaGluZyB0byBhbiBlbXB0eSB3b3Jrc3BhY2UsIHdoZW4gYWxsIHdpbmRvd3Mgb24gYSB3b3Jrc3BhY2UgYXJlIGNsb3NlZCwgb3IgYWZ0ZXIgbG9naW4uIFN0YXJ0aW5nIGFwcGxpY2F0aW9ucyBvciBzd2l0Y2hpbmcgdG8gYSB3b3Jrc3BhY2Ugd2l0aCBvcGVuIHdpbmRvd3Mgd2lsbCBoaWRlIHRoZSBvdmVydmlldyBpZiBpdCdzIHNob3dpbmcuIiwKICAibmFtZSI6ICJTaG93IEFwcGxpY2F0aW9uIFZpZXcgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFwcGxpY2F0aW9uX3ZpZXdfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiAxOAp9"}, "40": {"version": "18", "sha256": "1vz3d8gif8a7nimcn98cwv6lh4khn888c3mvn7pnn06pfpisl6g2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIHRoZSBhcHBsaWNhdGlvbiB2aWV3IHdoZW4gdGhlIHdvcmtzcGFjZSBpcyBvciBiZWNvbWVzIGVtcHR5LCBzdWNoIGFzIHN3aXRjaGluZyB0byBhbiBlbXB0eSB3b3Jrc3BhY2UsIHdoZW4gYWxsIHdpbmRvd3Mgb24gYSB3b3Jrc3BhY2UgYXJlIGNsb3NlZCwgb3IgYWZ0ZXIgbG9naW4uIFN0YXJ0aW5nIGFwcGxpY2F0aW9ucyBvciBzd2l0Y2hpbmcgdG8gYSB3b3Jrc3BhY2Ugd2l0aCBvcGVuIHdpbmRvd3Mgd2lsbCBoaWRlIHRoZSBvdmVydmlldyBpZiBpdCdzIHNob3dpbmcuIiwKICAibmFtZSI6ICJTaG93IEFwcGxpY2F0aW9uIFZpZXcgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFwcGxpY2F0aW9uX3ZpZXdfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiAxOAp9"}}}
, {"uuid": "activities_icon_menu@fawtytoo", "name": "Activities Icon Menu", "pname": "activities-menu-for-apps-and-windows", "description": "This extension turns the Activities button into a popup menu with icons for selecting either Applications or Workspaces in the Overview. Selecting the same view again will hide the overview.\n\nThis is particularly useful for tablet users that find the Activities button difficult to click on, whereas a menu can be more easily invoked.", "link": "https://extensions.gnome.org/extension/2048/activities-menu-for-apps-and-windows/", "shell_version_map": {"38": {"version": "9", "sha256": "1m10b1azwvj2b8s12xiwly21if27pcl1x4my411rgy5a5z3qm4j5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIHR1cm5zIHRoZSBBY3Rpdml0aWVzIGJ1dHRvbiBpbnRvIGEgcG9wdXAgbWVudSB3aXRoIGljb25zIGZvciBzZWxlY3RpbmcgZWl0aGVyIEFwcGxpY2F0aW9ucyBvciBXb3Jrc3BhY2VzIGluIHRoZSBPdmVydmlldy4gU2VsZWN0aW5nIHRoZSBzYW1lIHZpZXcgYWdhaW4gd2lsbCBoaWRlIHRoZSBvdmVydmlldy5cblxuVGhpcyBpcyBwYXJ0aWN1bGFybHkgdXNlZnVsIGZvciB0YWJsZXQgdXNlcnMgdGhhdCBmaW5kIHRoZSBBY3Rpdml0aWVzIGJ1dHRvbiBkaWZmaWN1bHQgdG8gY2xpY2sgb24sIHdoZXJlYXMgYSBtZW51IGNhbiBiZSBtb3JlIGVhc2lseSBpbnZva2VkLiIsCiAgIm5hbWUiOiAiQWN0aXZpdGllcyBJY29uIE1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFjdGl2aXRpZXNfaWNvbl9tZW51QGZhd3R5dG9vIiwKICAidmVyc2lvbiI6IDkKfQ=="}, "40": {"version": "9", "sha256": "1m10b1azwvj2b8s12xiwly21if27pcl1x4my411rgy5a5z3qm4j5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIHR1cm5zIHRoZSBBY3Rpdml0aWVzIGJ1dHRvbiBpbnRvIGEgcG9wdXAgbWVudSB3aXRoIGljb25zIGZvciBzZWxlY3RpbmcgZWl0aGVyIEFwcGxpY2F0aW9ucyBvciBXb3Jrc3BhY2VzIGluIHRoZSBPdmVydmlldy4gU2VsZWN0aW5nIHRoZSBzYW1lIHZpZXcgYWdhaW4gd2lsbCBoaWRlIHRoZSBvdmVydmlldy5cblxuVGhpcyBpcyBwYXJ0aWN1bGFybHkgdXNlZnVsIGZvciB0YWJsZXQgdXNlcnMgdGhhdCBmaW5kIHRoZSBBY3Rpdml0aWVzIGJ1dHRvbiBkaWZmaWN1bHQgdG8gY2xpY2sgb24sIHdoZXJlYXMgYSBtZW51IGNhbiBiZSBtb3JlIGVhc2lseSBpbnZva2VkLiIsCiAgIm5hbWUiOiAiQWN0aXZpdGllcyBJY29uIE1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImFjdGl2aXRpZXNfaWNvbl9tZW51QGZhd3R5dG9vIiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
, {"uuid": "Gold_Price_Monitor@wotmshuaisi_github", "name": "Gold Price Monitor", "pname": "gold-price-monitor", "description": "simple gnome extension helps you tracking gold price in realtime", "link": "https://extensions.gnome.org/extension/2075/gold-price-monitor/", "shell_version_map": {"40": {"version": "21", "sha256": "10554hlfv3nlf49av54wwckg2ld4p8pc7vk8s14085shdplwi95n", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRhbmdlcm91cyI6IGZhbHNlLAogICJkZXNjcmlwdGlvbiI6ICJzaW1wbGUgZ25vbWUgZXh0ZW5zaW9uIGhlbHBzIHlvdSB0cmFja2luZyBnb2xkIHByaWNlIGluIHJlYWx0aW1lIiwKICAibmFtZSI6ICJHb2xkIFByaWNlIE1vbml0b3IiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZ29sZC1wcmljZS1tb25pdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3dvdG1zaHVhaXNpL2dvbGRwcmljZW1vbml0b3IiLAogICJ1dWlkIjogIkdvbGRfUHJpY2VfTW9uaXRvckB3b3Rtc2h1YWlzaV9naXRodWIiLAogICJ2ZXJzaW9uIjogMjEKfQ=="}}}
-, {"uuid": "ding@rastersoft.com", "name": "Desktop Icons NG (DING)", "pname": "desktop-icons-ng-ding", "description": "Adds icons to the desktop. Fork of the original Desktop Icons extension, with several enhancements .", "link": "https://extensions.gnome.org/extension/2087/desktop-icons-ng-ding/", "shell_version_map": {"38": {"version": "30", "sha256": "1hkfvngaql74vyz199ldyzv6hqgzpgn8iav7lk022ihjgr7zfkpv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgaWNvbnMgdG8gdGhlIGRlc2t0b3AuIEZvcmsgb2YgdGhlIG9yaWdpbmFsIERlc2t0b3AgSWNvbnMgZXh0ZW5zaW9uLCB3aXRoIHNldmVyYWwgZW5oYW5jZW1lbnRzIC4iLAogICJuYW1lIjogIkRlc2t0b3AgSWNvbnMgTkcgKERJTkcpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9yYXN0ZXJzb2Z0L2Rlc2t0b3AtaWNvbnMtbmciLAogICJ1dWlkIjogImRpbmdAcmFzdGVyc29mdC5jb20iLAogICJ2ZXJzaW9uIjogMzAKfQ=="}, "40": {"version": "30", "sha256": "1hkfvngaql74vyz199ldyzv6hqgzpgn8iav7lk022ihjgr7zfkpv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgaWNvbnMgdG8gdGhlIGRlc2t0b3AuIEZvcmsgb2YgdGhlIG9yaWdpbmFsIERlc2t0b3AgSWNvbnMgZXh0ZW5zaW9uLCB3aXRoIHNldmVyYWwgZW5oYW5jZW1lbnRzIC4iLAogICJuYW1lIjogIkRlc2t0b3AgSWNvbnMgTkcgKERJTkcpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9yYXN0ZXJzb2Z0L2Rlc2t0b3AtaWNvbnMtbmciLAogICJ1dWlkIjogImRpbmdAcmFzdGVyc29mdC5jb20iLAogICJ2ZXJzaW9uIjogMzAKfQ=="}}}
+, {"uuid": "ding@rastersoft.com", "name": "Desktop Icons NG (DING)", "pname": "desktop-icons-ng-ding", "description": "Adds icons to the desktop. Fork of the original Desktop Icons extension, with several enhancements .", "link": "https://extensions.gnome.org/extension/2087/desktop-icons-ng-ding/", "shell_version_map": {"38": {"version": "32", "sha256": "0005k0i9012jcq782zhxdpk9iki5s32cafm1zsf57bdmvvwpr1fd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgaWNvbnMgdG8gdGhlIGRlc2t0b3AuIEZvcmsgb2YgdGhlIG9yaWdpbmFsIERlc2t0b3AgSWNvbnMgZXh0ZW5zaW9uLCB3aXRoIHNldmVyYWwgZW5oYW5jZW1lbnRzIC4iLAogICJuYW1lIjogIkRlc2t0b3AgSWNvbnMgTkcgKERJTkcpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9yYXN0ZXJzb2Z0L2Rlc2t0b3AtaWNvbnMtbmciLAogICJ1dWlkIjogImRpbmdAcmFzdGVyc29mdC5jb20iLAogICJ2ZXJzaW9uIjogMzIKfQ=="}, "40": {"version": "32", "sha256": "0005k0i9012jcq782zhxdpk9iki5s32cafm1zsf57bdmvvwpr1fd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgaWNvbnMgdG8gdGhlIGRlc2t0b3AuIEZvcmsgb2YgdGhlIG9yaWdpbmFsIERlc2t0b3AgSWNvbnMgZXh0ZW5zaW9uLCB3aXRoIHNldmVyYWwgZW5oYW5jZW1lbnRzIC4iLAogICJuYW1lIjogIkRlc2t0b3AgSWNvbnMgTkcgKERJTkcpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9yYXN0ZXJzb2Z0L2Rlc2t0b3AtaWNvbnMtbmciLAogICJ1dWlkIjogImRpbmdAcmFzdGVyc29mdC5jb20iLAogICJ2ZXJzaW9uIjogMzIKfQ=="}}}
, {"uuid": "order-extensions@wa4557.github.com", "name": "Order Gnome Shell extensions", "pname": "order-gnome-shell-extensions", "description": "Fixes order of gnome-shell extensions", "link": "https://extensions.gnome.org/extension/2114/order-gnome-shell-extensions/", "shell_version_map": {"38": {"version": "6", "sha256": "0hcbjrhrg11f5p23bhss75nhc9sqlh6p1bmfq7p7m7d276ckdmkk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvciI6ICJBbmRyZWFzIEFuZ2VyZXIiLAogICJkZXNjcmlwdGlvbiI6ICJGaXhlcyBvcmRlciBvZiBnbm9tZS1zaGVsbCBleHRlbnNpb25zIiwKICAiZXh0ZW5zaW9uLWlkIjogIm9yZGVyLWV4dGVuc2lvbnMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJvcmRlciBleHRlbnNpb25zIiwKICAibmFtZSI6ICJPcmRlciBHbm9tZSBTaGVsbCBleHRlbnNpb25zIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICIzLjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogIm9yZGVyLWV4dGVuc2lvbnNAd2E0NTU3LmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "horizontal-workspaces@gnome-shell-extensions.gcampax.github.com", "name": "Horizontal workspaces", "pname": "horizontal-workspaces", "description": "Use a horizontal workspace layout", "link": "https://extensions.gnome.org/extension/2141/horizontal-workspaces/", "shell_version_map": {"38": {"version": "5", "sha256": "0kbqcrs96v72yk0rf8jghy1a31651fyvgpi97yp46n4wmvc41vk7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVzZSBhIGhvcml6b250YWwgd29ya3NwYWNlIGxheW91dCIsCiAgImV4dGVuc2lvbi1pZCI6ICJob3Jpem9udGFsLXdvcmtzcGFjZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb25zIiwKICAibmFtZSI6ICJIb3Jpem9udGFsIHdvcmtzcGFjZXMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuaG9yaXpvbnRhbC13b3Jrc3BhY2VzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5nbm9tZS5vcmcvR05PTUUvZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgInV1aWQiOiAiaG9yaXpvbnRhbC13b3Jrc3BhY2VzQGdub21lLXNoZWxsLWV4dGVuc2lvbnMuZ2NhbXBheC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDUKfQ=="}}}
, {"uuid": "threefingerwindowmove@do.sch.dev.gmail.com", "name": "Three Finger Window Move", "pname": "three-finger-window-move", "description": "Allows moving windows around with a three finger trackpad gesture (Wayland only)", "link": "https://extensions.gnome.org/extension/2164/three-finger-window-move/", "shell_version_map": {"38": {"version": "7", "sha256": "1m7vwr6s6w297b0x0bmnj8fs2hl73pbys6m93lnb9inh5pmgiv1p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93cyBtb3Zpbmcgd2luZG93cyBhcm91bmQgd2l0aCBhIHRocmVlIGZpbmdlciB0cmFja3BhZCBnZXN0dXJlIChXYXlsYW5kIG9ubHkpIiwKICAibmFtZSI6ICJUaHJlZSBGaW5nZXIgV2luZG93IE1vdmUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9kby1zY2gvZ25vbWUtc2hlbGwtdG91Y2hwYWQtd2luZG93LW1vdmUiLAogICJ1dWlkIjogInRocmVlZmluZ2Vyd2luZG93bW92ZUBkby5zY2guZGV2LmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiA3Cn0="}}}
, {"uuid": "spotify-ad-block@danigm.net", "name": "Mute spotify ads", "pname": "mute-spotify-ads", "description": "Mute spotify ads", "link": "https://extensions.gnome.org/extension/2176/mute-spotify-ads/", "shell_version_map": {"38": {"version": "9", "sha256": "15nmnf2i3icfk0lc8yb20jxj0irivgw73sh9d94p09v5jv0p9hvm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk11dGUgc3BvdGlmeSBhZHMiLAogICJuYW1lIjogIk11dGUgc3BvdGlmeSBhZHMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZGFuaWdtL3Nwb3RpZnktYWQtYmxvY2tlciIsCiAgInV1aWQiOiAic3BvdGlmeS1hZC1ibG9ja0BkYW5pZ20ubmV0IiwKICAidmVyc2lvbiI6IDkKfQ=="}, "40": {"version": "9", "sha256": "15nmnf2i3icfk0lc8yb20jxj0irivgw73sh9d94p09v5jv0p9hvm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk11dGUgc3BvdGlmeSBhZHMiLAogICJuYW1lIjogIk11dGUgc3BvdGlmeSBhZHMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZGFuaWdtL3Nwb3RpZnktYWQtYmxvY2tlciIsCiAgInV1aWQiOiAic3BvdGlmeS1hZC1ibG9ja0BkYW5pZ20ubmV0IiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
, {"uuid": "noannoyance@daase.net", "name": "NoAnnoyance v2", "pname": "noannoyance", "description": "Another extension, that removes the 'Window is ready' notification and puts the window into focus. In contrast to all the other extensions, this uses ES6 syntax and is actively maintained.", "link": "https://extensions.gnome.org/extension/2182/noannoyance/", "shell_version_map": {"38": {"version": "10", "sha256": "1ij5307mcm3shhs23lpl8l968xgzc1qr0wvzkb419ihdk4kjmf9m", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFub3RoZXIgZXh0ZW5zaW9uLCB0aGF0IHJlbW92ZXMgdGhlICdXaW5kb3cgaXMgcmVhZHknIG5vdGlmaWNhdGlvbiBhbmQgcHV0cyB0aGUgd2luZG93IGludG8gZm9jdXMuIEluIGNvbnRyYXN0IHRvIGFsbCB0aGUgb3RoZXIgZXh0ZW5zaW9ucywgdGhpcyB1c2VzIEVTNiBzeW50YXggYW5kIGlzIGFjdGl2ZWx5IG1haW50YWluZWQuIiwKICAibmFtZSI6ICJOb0Fubm95YW5jZSB2MiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9Cam9lcm5EYWFzZS9ub2Fubm95YW5jZSIsCiAgInV1aWQiOiAibm9hbm5veWFuY2VAZGFhc2UubmV0IiwKICAidmVyc2lvbiI6IDEwCn0="}, "40": {"version": "10", "sha256": "1ij5307mcm3shhs23lpl8l968xgzc1qr0wvzkb419ihdk4kjmf9m", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFub3RoZXIgZXh0ZW5zaW9uLCB0aGF0IHJlbW92ZXMgdGhlICdXaW5kb3cgaXMgcmVhZHknIG5vdGlmaWNhdGlvbiBhbmQgcHV0cyB0aGUgd2luZG93IGludG8gZm9jdXMuIEluIGNvbnRyYXN0IHRvIGFsbCB0aGUgb3RoZXIgZXh0ZW5zaW9ucywgdGhpcyB1c2VzIEVTNiBzeW50YXggYW5kIGlzIGFjdGl2ZWx5IG1haW50YWluZWQuIiwKICAibmFtZSI6ICJOb0Fubm95YW5jZSB2MiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9Cam9lcm5EYWFzZS9ub2Fubm95YW5jZSIsCiAgInV1aWQiOiAibm9hbm5veWFuY2VAZGFhc2UubmV0IiwKICAidmVyc2lvbiI6IDEwCn0="}}}
-, {"uuid": "easy_docker_containers@red.software.systems", "name": "Easy Docker Containers", "pname": "easy-docker-containers", "description": "A GNOME Shell extension (GNOME Panel applet) to be able to generally control your available Docker containers.", "link": "https://extensions.gnome.org/extension/2224/easy-docker-containers/", "shell_version_map": {"38": {"version": "9", "sha256": "0bzwl271j3j41nrx6fzcp2ahypl23ivfhp5zrg2xvh3r69hg61br", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIChHTk9NRSBQYW5lbCBhcHBsZXQpIHRvIGJlIGFibGUgdG8gZ2VuZXJhbGx5IGNvbnRyb2wgeW91ciBhdmFpbGFibGUgRG9ja2VyIGNvbnRhaW5lcnMuIiwKICAibmFtZSI6ICJFYXN5IERvY2tlciBDb250YWluZXJzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1JlZFNvZnR3YXJlU3lzdGVtcy9lYXN5X2RvY2tlcl9jb250YWluZXJzIiwKICAidXVpZCI6ICJlYXN5X2RvY2tlcl9jb250YWluZXJzQHJlZC5zb2Z0d2FyZS5zeXN0ZW1zIiwKICAidmVyc2lvbiI6IDkKfQ=="}, "40": {"version": "9", "sha256": "0bzwl271j3j41nrx6fzcp2ahypl23ivfhp5zrg2xvh3r69hg61br", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIChHTk9NRSBQYW5lbCBhcHBsZXQpIHRvIGJlIGFibGUgdG8gZ2VuZXJhbGx5IGNvbnRyb2wgeW91ciBhdmFpbGFibGUgRG9ja2VyIGNvbnRhaW5lcnMuIiwKICAibmFtZSI6ICJFYXN5IERvY2tlciBDb250YWluZXJzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1JlZFNvZnR3YXJlU3lzdGVtcy9lYXN5X2RvY2tlcl9jb250YWluZXJzIiwKICAidXVpZCI6ICJlYXN5X2RvY2tlcl9jb250YWluZXJzQHJlZC5zb2Z0d2FyZS5zeXN0ZW1zIiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
+, {"uuid": "easy_docker_containers@red.software.systems", "name": "Easy Docker Containers", "pname": "easy-docker-containers", "description": "A GNOME Shell extension (GNOME Panel applet) to be able to generally control your available Docker containers.", "link": "https://extensions.gnome.org/extension/2224/easy-docker-containers/", "shell_version_map": {"38": {"version": "11", "sha256": "1bffsbzq4114f4l83sknzsmig4sm7p8qsgyfmxvqg0xdl7hmsd6y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIChHTk9NRSBQYW5lbCBhcHBsZXQpIHRvIGJlIGFibGUgdG8gZ2VuZXJhbGx5IGNvbnRyb2wgeW91ciBhdmFpbGFibGUgRG9ja2VyIGNvbnRhaW5lcnMuIiwKICAibmFtZSI6ICJFYXN5IERvY2tlciBDb250YWluZXJzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1JlZFNvZnR3YXJlU3lzdGVtcy9lYXN5X2RvY2tlcl9jb250YWluZXJzIiwKICAidXVpZCI6ICJlYXN5X2RvY2tlcl9jb250YWluZXJzQHJlZC5zb2Z0d2FyZS5zeXN0ZW1zIiwKICAidmVyc2lvbiI6IDExCn0="}, "40": {"version": "11", "sha256": "1bffsbzq4114f4l83sknzsmig4sm7p8qsgyfmxvqg0xdl7hmsd6y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgR05PTUUgU2hlbGwgZXh0ZW5zaW9uIChHTk9NRSBQYW5lbCBhcHBsZXQpIHRvIGJlIGFibGUgdG8gZ2VuZXJhbGx5IGNvbnRyb2wgeW91ciBhdmFpbGFibGUgRG9ja2VyIGNvbnRhaW5lcnMuIiwKICAibmFtZSI6ICJFYXN5IERvY2tlciBDb250YWluZXJzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1JlZFNvZnR3YXJlU3lzdGVtcy9lYXN5X2RvY2tlcl9jb250YWluZXJzIiwKICAidXVpZCI6ICJlYXN5X2RvY2tlcl9jb250YWluZXJzQHJlZC5zb2Z0d2FyZS5zeXN0ZW1zIiwKICAidmVyc2lvbiI6IDExCn0="}}}
, {"uuid": "nightthemeswitcher@romainvigier.fr", "name": "Night Theme Switcher", "pname": "night-theme-switcher", "description": "Make your desktop easy on the eye, day and night.\n\nAutomatically toggle your light and dark GTK, GNOME Shell, icon and cursor themes variants, switch backgrounds and run custom commands at sunset and sunrise.\n\nSupports Night Light, Location Services, manual schedule and on-demand switch modes.\n", "link": "https://extensions.gnome.org/extension/2236/night-theme-switcher/", "shell_version_map": {"38": {"version": "46", "sha256": "1lw7gdcba82hhfcpihbfkcbigggna3r8kk20zd32ladr5djybcjs", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgeW91ciBkZXNrdG9wIGVhc3kgb24gdGhlIGV5ZSwgZGF5IGFuZCBuaWdodC5cblxuQXV0b21hdGljYWxseSB0b2dnbGUgeW91ciBsaWdodCBhbmQgZGFyayBHVEssIEdOT01FIFNoZWxsLCBpY29uIGFuZCBjdXJzb3IgdGhlbWVzIHZhcmlhbnRzLCBzd2l0Y2ggYmFja2dyb3VuZHMgYW5kIHJ1biBjdXN0b20gY29tbWFuZHMgYXQgc3Vuc2V0IGFuZCBzdW5yaXNlLlxuXG5TdXBwb3J0cyBOaWdodCBMaWdodCwgTG9jYXRpb24gU2VydmljZXMsIG1hbnVhbCBzY2hlZHVsZSBhbmQgb24tZGVtYW5kIHN3aXRjaCBtb2Rlcy5cbiIsCiAgImdldHRleHQtZG9tYWluIjogIm5pZ2h0dGhlbWVzd2l0Y2hlckByb21haW52aWdpZXIuZnIiLAogICJuYW1lIjogIk5pZ2h0IFRoZW1lIFN3aXRjaGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm5pZ2h0dGhlbWVzd2l0Y2hlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9uaWdodHRoZW1lc3dpdGNoZXIucm9tYWludmlnaWVyLmZyIiwKICAidXVpZCI6ICJuaWdodHRoZW1lc3dpdGNoZXJAcm9tYWludmlnaWVyLmZyIiwKICAidmVyc2lvbiI6IDQ2Cn0="}, "40": {"version": "51", "sha256": "0j3h8zajsqgy6df5hbdiijs8zwg4lmi7vcas4gfp2jsqhjmrnfb4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgeW91ciBkZXNrdG9wIGVhc3kgb24gdGhlIGV5ZSwgZGF5IGFuZCBuaWdodC5cblxuQXV0b21hdGljYWxseSB0b2dnbGUgeW91ciBsaWdodCBhbmQgZGFyayBHVEssIEdOT01FIFNoZWxsLCBpY29uIGFuZCBjdXJzb3IgdGhlbWVzIHZhcmlhbnRzLCBzd2l0Y2ggYmFja2dyb3VuZHMgYW5kIHJ1biBjdXN0b20gY29tbWFuZHMgYXQgc3Vuc2V0IGFuZCBzdW5yaXNlLlxuXG5TdXBwb3J0cyBOaWdodCBMaWdodCwgTG9jYXRpb24gU2VydmljZXMsIG1hbnVhbCBzY2hlZHVsZSBhbmQgb24tZGVtYW5kIHN3aXRjaCBtb2Rlcy5cbiIsCiAgImdldHRleHQtZG9tYWluIjogIm5pZ2h0dGhlbWVzd2l0Y2hlckByb21haW52aWdpZXIuZnIiLAogICJuYW1lIjogIk5pZ2h0IFRoZW1lIFN3aXRjaGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm5pZ2h0dGhlbWVzd2l0Y2hlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vbmlnaHR0aGVtZXN3aXRjaGVyLnJvbWFpbnZpZ2llci5mciIsCiAgInV1aWQiOiAibmlnaHR0aGVtZXN3aXRjaGVyQHJvbWFpbnZpZ2llci5mciIsCiAgInZlcnNpb24iOiA1MQp9"}}}
, {"uuid": "binaryclock@vancha.march", "name": "binaryclock", "pname": "binaryclock", "description": "adds a binary clock to the gnome bar", "link": "https://extensions.gnome.org/extension/2284/binaryclock/", "shell_version_map": {"38": {"version": "6", "sha256": "1bvzlqfhwlk1sh9q3538yipjwzgndd4wnn2l8wc3sshb93ggvpg6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImFkZHMgYSBiaW5hcnkgY2xvY2sgdG8gdGhlIGdub21lIGJhciIsCiAgIm5hbWUiOiAiYmluYXJ5Y2xvY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjgiLAogICAgIjMuMzQiLAogICAgIjMuMzIuMiIsCiAgICAiMy4zOCIsCiAgICAiMy4zNi43IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3ZhbmNoYS9nbm9tZVNoZWxsQmluYXJ5Q2xvY2svIiwKICAidXVpZCI6ICJiaW5hcnljbG9ja0B2YW5jaGEubWFyY2giLAogICJ2ZXJzaW9uIjogNgp9"}, "40": {"version": "6", "sha256": "1bvzlqfhwlk1sh9q3538yipjwzgndd4wnn2l8wc3sshb93ggvpg6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImFkZHMgYSBiaW5hcnkgY2xvY2sgdG8gdGhlIGdub21lIGJhciIsCiAgIm5hbWUiOiAiYmluYXJ5Y2xvY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjgiLAogICAgIjMuMzQiLAogICAgIjMuMzIuMiIsCiAgICAiMy4zOCIsCiAgICAiMy4zNi43IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3ZhbmNoYS9nbm9tZVNoZWxsQmluYXJ5Q2xvY2svIiwKICAidXVpZCI6ICJiaW5hcnljbG9ja0B2YW5jaGEubWFyY2giLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "lgbutton@glerro.gnome.gitlab.io", "name": "Looking Glass Button", "pname": "looking-glass-button", "description": "Toggle the Looking Glass visibility by clicking on a panel icon.", "link": "https://extensions.gnome.org/extension/2296/looking-glass-button/", "shell_version_map": {"38": {"version": "7", "sha256": "01sbrsfvxwvzgxd5cdvrzb6gl573hw30hy50ihqy43hari95jk8c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRvZ2dsZSB0aGUgTG9va2luZyBHbGFzcyB2aXNpYmlsaXR5IGJ5IGNsaWNraW5nIG9uIGEgcGFuZWwgaWNvbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb24tbGdidXR0b24iLAogICJuYW1lIjogIkxvb2tpbmcgR2xhc3MgQnV0dG9uIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9nbGVycm8vZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWxnYnV0dG9uIiwKICAidXVpZCI6ICJsZ2J1dHRvbkBnbGVycm8uZ25vbWUuZ2l0bGFiLmlvIiwKICAidmVyc2lvbiI6IDcKfQ=="}, "40": {"version": "7", "sha256": "01sbrsfvxwvzgxd5cdvrzb6gl573hw30hy50ihqy43hari95jk8c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRvZ2dsZSB0aGUgTG9va2luZyBHbGFzcyB2aXNpYmlsaXR5IGJ5IGNsaWNraW5nIG9uIGEgcGFuZWwgaWNvbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb24tbGdidXR0b24iLAogICJuYW1lIjogIkxvb2tpbmcgR2xhc3MgQnV0dG9uIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9nbGVycm8vZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWxnYnV0dG9uIiwKICAidXVpZCI6ICJsZ2J1dHRvbkBnbGVycm8uZ25vbWUuZ2l0bGFiLmlvIiwKICAidmVyc2lvbiI6IDcKfQ=="}}}
@@ -247,7 +251,7 @@
, {"uuid": "bubblemail@razer.framagit.org", "name": "Bubblemail", "pname": "bubblemail", "description": "New and unread mail indicator (Local, Imap, Pop3, Gmail, Yahoo mail...)\nIndicator for new mails from local mail boxes (MBOX, MAILDIR), POP3 or IMAP server.\n\nBE AWARE THAT THIS EXTENSION REQUIRES BUBBLEMAIL SERVICE INSTALLATION\nCheck your distribution packaging system for availability. Besides, packages for distributions and source tarballs can be found here :\nhttp://bubblemail.free.fr\n\nBubblemail is a complete rewrite of the mailnag project, with a lot of new features including :\n* Gnome online accounts are automaticaly synced\n* Avatars provided by the server, with default colorized icons for senders without specific avatar\n* Reports for connection errors.\n\n Please report any issue on the gitlab pages of the project :\nhttps://framagit.org/razer/bubblemail/issues\nhttps://framagit.org/razer/bubblemail-gnome-shell/issues", "link": "https://extensions.gnome.org/extension/2458/bubblemail/", "shell_version_map": {"38": {"version": "14", "sha256": "12w53h0bglk1zyr6r9sxgrd223r628jaibbh7m5qyvc50i7m57f2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5ldyBhbmQgdW5yZWFkIG1haWwgaW5kaWNhdG9yIChMb2NhbCwgSW1hcCwgUG9wMywgR21haWwsIFlhaG9vIG1haWwuLi4pXG5JbmRpY2F0b3IgZm9yIG5ldyBtYWlscyBmcm9tIGxvY2FsIG1haWwgYm94ZXMgKE1CT1gsIE1BSUxESVIpLCBQT1AzIG9yIElNQVAgc2VydmVyLlxuXG5CRSBBV0FSRSBUSEFUIFRISVMgRVhURU5TSU9OIFJFUVVJUkVTIEJVQkJMRU1BSUwgU0VSVklDRSBJTlNUQUxMQVRJT05cbkNoZWNrIHlvdXIgZGlzdHJpYnV0aW9uIHBhY2thZ2luZyBzeXN0ZW0gZm9yIGF2YWlsYWJpbGl0eS4gQmVzaWRlcywgcGFja2FnZXMgZm9yIGRpc3RyaWJ1dGlvbnMgYW5kIHNvdXJjZSB0YXJiYWxscyBjYW4gYmUgZm91bmQgaGVyZSA6XG5odHRwOi8vYnViYmxlbWFpbC5mcmVlLmZyXG5cbkJ1YmJsZW1haWwgaXMgYSBjb21wbGV0ZSByZXdyaXRlIG9mIHRoZSBtYWlsbmFnIHByb2plY3QsIHdpdGggYSBsb3Qgb2YgbmV3IGZlYXR1cmVzIGluY2x1ZGluZyA6XG4qIEdub21lIG9ubGluZSBhY2NvdW50cyBhcmUgYXV0b21hdGljYWx5IHN5bmNlZFxuKiBBdmF0YXJzIHByb3ZpZGVkIGJ5IHRoZSBzZXJ2ZXIsIHdpdGggZGVmYXVsdCBjb2xvcml6ZWQgaWNvbnMgZm9yIHNlbmRlcnMgd2l0aG91dCBzcGVjaWZpYyBhdmF0YXJcbiogUmVwb3J0cyBmb3IgY29ubmVjdGlvbiBlcnJvcnMuXG5cbiBQbGVhc2UgcmVwb3J0IGFueSBpc3N1ZSBvbiB0aGUgZ2l0bGFiIHBhZ2VzIG9mIHRoZSBwcm9qZWN0IDpcbmh0dHBzOi8vZnJhbWFnaXQub3JnL3JhemVyL2J1YmJsZW1haWwvaXNzdWVzXG5odHRwczovL2ZyYW1hZ2l0Lm9yZy9yYXplci9idWJibGVtYWlsLWdub21lLXNoZWxsL2lzc3VlcyIsCiAgImdldHRleHQtZG9tYWluIjogImJ1YmJsZW1haWwtZ25vbWUtc2hlbGwiLAogICJuYW1lIjogIkJ1YmJsZW1haWwiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgInJhemVycmF6QGZyZWUuZnIiLAogICAgInp1bHU5OUBnbXgubmV0IgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5idWJibGVtYWlsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cDovL2J1YmJsZW1haWwuZnJlZS5mciIsCiAgInV1aWQiOiAiYnViYmxlbWFpbEByYXplci5mcmFtYWdpdC5vcmciLAogICJ2ZXJzaW9uIjogMTQKfQ=="}, "40": {"version": "14", "sha256": "12w53h0bglk1zyr6r9sxgrd223r628jaibbh7m5qyvc50i7m57f2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5ldyBhbmQgdW5yZWFkIG1haWwgaW5kaWNhdG9yIChMb2NhbCwgSW1hcCwgUG9wMywgR21haWwsIFlhaG9vIG1haWwuLi4pXG5JbmRpY2F0b3IgZm9yIG5ldyBtYWlscyBmcm9tIGxvY2FsIG1haWwgYm94ZXMgKE1CT1gsIE1BSUxESVIpLCBQT1AzIG9yIElNQVAgc2VydmVyLlxuXG5CRSBBV0FSRSBUSEFUIFRISVMgRVhURU5TSU9OIFJFUVVJUkVTIEJVQkJMRU1BSUwgU0VSVklDRSBJTlNUQUxMQVRJT05cbkNoZWNrIHlvdXIgZGlzdHJpYnV0aW9uIHBhY2thZ2luZyBzeXN0ZW0gZm9yIGF2YWlsYWJpbGl0eS4gQmVzaWRlcywgcGFja2FnZXMgZm9yIGRpc3RyaWJ1dGlvbnMgYW5kIHNvdXJjZSB0YXJiYWxscyBjYW4gYmUgZm91bmQgaGVyZSA6XG5odHRwOi8vYnViYmxlbWFpbC5mcmVlLmZyXG5cbkJ1YmJsZW1haWwgaXMgYSBjb21wbGV0ZSByZXdyaXRlIG9mIHRoZSBtYWlsbmFnIHByb2plY3QsIHdpdGggYSBsb3Qgb2YgbmV3IGZlYXR1cmVzIGluY2x1ZGluZyA6XG4qIEdub21lIG9ubGluZSBhY2NvdW50cyBhcmUgYXV0b21hdGljYWx5IHN5bmNlZFxuKiBBdmF0YXJzIHByb3ZpZGVkIGJ5IHRoZSBzZXJ2ZXIsIHdpdGggZGVmYXVsdCBjb2xvcml6ZWQgaWNvbnMgZm9yIHNlbmRlcnMgd2l0aG91dCBzcGVjaWZpYyBhdmF0YXJcbiogUmVwb3J0cyBmb3IgY29ubmVjdGlvbiBlcnJvcnMuXG5cbiBQbGVhc2UgcmVwb3J0IGFueSBpc3N1ZSBvbiB0aGUgZ2l0bGFiIHBhZ2VzIG9mIHRoZSBwcm9qZWN0IDpcbmh0dHBzOi8vZnJhbWFnaXQub3JnL3JhemVyL2J1YmJsZW1haWwvaXNzdWVzXG5odHRwczovL2ZyYW1hZ2l0Lm9yZy9yYXplci9idWJibGVtYWlsLWdub21lLXNoZWxsL2lzc3VlcyIsCiAgImdldHRleHQtZG9tYWluIjogImJ1YmJsZW1haWwtZ25vbWUtc2hlbGwiLAogICJuYW1lIjogIkJ1YmJsZW1haWwiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgInJhemVycmF6QGZyZWUuZnIiLAogICAgInp1bHU5OUBnbXgubmV0IgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5idWJibGVtYWlsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cDovL2J1YmJsZW1haWwuZnJlZS5mciIsCiAgInV1aWQiOiAiYnViYmxlbWFpbEByYXplci5mcmFtYWdpdC5vcmciLAogICJ2ZXJzaW9uIjogMTQKfQ=="}}}
, {"uuid": "keypadTiling@abakkk.framagit.org", "name": "Keypad Tiling", "pname": "keypad-tiling", "description": "", "link": "https://extensions.gnome.org/extension/2473/keypad-tiling/", "shell_version_map": {"38": {"version": "4", "sha256": "1v0hxg96l482wngrszh0xabgj95q7rmyimd2rxnbkddd2gascnya", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiIsCiAgImdldHRleHQtZG9tYWluIjogImtleXBhZC10aWxpbmciLAogICJuYW1lIjogIktleXBhZCBUaWxpbmciLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMua2V5cGFkLXRpbGluZyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJrZXlwYWRUaWxpbmdAYWJha2trLmZyYW1hZ2l0Lm9yZyIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "reminder_alarm_clock@trifonovkv.gmail.com", "name": "Reminder Alarm Clock", "pname": "reminder-alarm-clock", "description": "The reminder alarm clock will remind you of an important event at the appointed time.", "link": "https://extensions.gnome.org/extension/2482/reminder-alarm-clock/", "shell_version_map": {"38": {"version": "40", "sha256": "0yljdig44gly3fky4ls42shbpvf2387kgnn1dfla9zmxxzjdkryq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoZSByZW1pbmRlciBhbGFybSBjbG9jayB3aWxsIHJlbWluZCB5b3Ugb2YgYW4gaW1wb3J0YW50IGV2ZW50IGF0IHRoZSBhcHBvaW50ZWQgdGltZS4iLAogICJuYW1lIjogIlJlbWluZGVyIEFsYXJtIENsb2NrIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4LjEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90cmlmb25vdmt2L1JlbWluZGVyQWxhcm1DbG9jayIsCiAgInV1aWQiOiAicmVtaW5kZXJfYWxhcm1fY2xvY2tAdHJpZm9ub3Zrdi5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogNDAKfQ=="}}}
-, {"uuid": "TaskBar@c0ldplasma", "name": "TaskBar 2020", "pname": "taskbar-updated", "description": "!!! Development stopped !!!!\n\nTaskBar 2020 displays icons of running applications and favorites on the top panel or alternatively on a new bottom panel. Activate, minimize or close tasks with a simple click. \n\nTaskBar 2020 is a dock-like windows list on the top/bottom bar. \n\nFork of zpydr/gnome-shell-extension-taskbar to support newer versions of GNOME", "link": "https://extensions.gnome.org/extension/2506/taskbar-updated/", "shell_version_map": {"38": {"version": "5", "sha256": "1wn3040z6znmk2nwh9n0l6q09sp7y3rx0nnm0274n1xsiw7pbwy3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiEhISBEZXZlbG9wbWVudCBzdG9wcGVkICEhISFcblxuVGFza0JhciAyMDIwIGRpc3BsYXlzIGljb25zIG9mIHJ1bm5pbmcgYXBwbGljYXRpb25zIGFuZCBmYXZvcml0ZXMgb24gdGhlIHRvcCBwYW5lbCBvciBhbHRlcm5hdGl2ZWx5IG9uIGEgbmV3IGJvdHRvbSBwYW5lbC4gQWN0aXZhdGUsIG1pbmltaXplIG9yIGNsb3NlIHRhc2tzIHdpdGggYSBzaW1wbGUgY2xpY2suIFxuXG5UYXNrQmFyIDIwMjAgaXMgYSBkb2NrLWxpa2Ugd2luZG93cyBsaXN0IG9uIHRoZSB0b3AvYm90dG9tIGJhci4gXG5cbkZvcmsgb2YgenB5ZHIvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2tiYXIgdG8gc3VwcG9ydCBuZXdlciB2ZXJzaW9ucyBvZiBHTk9NRSIsCiAgIm5hbWUiOiAiVGFza0JhciAyMDIwIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYzBsZHBsYXNtYS9nbm9tZS1zaGVsbC1leHRlbnNpb24tdGFza2JhciIsCiAgInV1aWQiOiAiVGFza0JhckBjMGxkcGxhc21hIiwKICAidmVyc2lvbiI6IDUKfQ=="}, "40": {"version": "8", "sha256": "0czby48izk0yjpkgjh6bl6b922qg0ycc53gq7n733dgchnn76g2p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiEhISBEZXZlbG9wbWVudCBzdG9wcGVkICEhISFcblxuVGFza0JhciAyMDIwIGRpc3BsYXlzIGljb25zIG9mIHJ1bm5pbmcgYXBwbGljYXRpb25zIGFuZCBmYXZvcml0ZXMgb24gdGhlIHRvcCBwYW5lbCBvciBhbHRlcm5hdGl2ZWx5IG9uIGEgbmV3IGJvdHRvbSBwYW5lbC4gQWN0aXZhdGUsIG1pbmltaXplIG9yIGNsb3NlIHRhc2tzIHdpdGggYSBzaW1wbGUgY2xpY2suIFxuXG5UYXNrQmFyIDIwMjAgaXMgYSBkb2NrLWxpa2Ugd2luZG93cyBsaXN0IG9uIHRoZSB0b3AvYm90dG9tIGJhci4gXG5cbkZvcmsgb2YgenB5ZHIvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2tiYXIgdG8gc3VwcG9ydCBuZXdlciB2ZXJzaW9ucyBvZiBHTk9NRSIsCiAgIm5hbWUiOiAiVGFza0JhciAyMDIwIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2MwbGRwbGFzbWEvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2tiYXIiLAogICJ1dWlkIjogIlRhc2tCYXJAYzBsZHBsYXNtYSIsCiAgInZlcnNpb24iOiA4Cn0="}}}
+, {"uuid": "TaskBar@c0ldplasma", "name": "TaskBar 2020", "pname": "taskbar-updated", "description": "!!! Development stopped !!!! Look at Dash to Panel as an alternative: https://extensions.gnome.org/extension/1160/dash-to-panel/\n\n----------------------------------------------------------------------\n\nTaskBar 2020 displays icons of running applications and favorites on the top panel or alternatively on a new bottom panel. Activate, minimize or close tasks with a simple click. \n\nTaskBar 2020 is a dock-like windows list on the top/bottom bar. \n\nFork of zpydr/gnome-shell-extension-taskbar to support newer versions of GNOME", "link": "https://extensions.gnome.org/extension/2506/taskbar-updated/", "shell_version_map": {"38": {"version": "5", "sha256": "09yn1p0vmq70ll7vi3jdjvj479cm38r4am0mw08nca8hl4zdiamj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiEhISBEZXZlbG9wbWVudCBzdG9wcGVkICEhISEgIExvb2sgYXQgRGFzaCB0byBQYW5lbCBhcyBhbiBhbHRlcm5hdGl2ZTogaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMTE2MC9kYXNoLXRvLXBhbmVsL1xuXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cblRhc2tCYXIgMjAyMCBkaXNwbGF5cyBpY29ucyBvZiBydW5uaW5nIGFwcGxpY2F0aW9ucyBhbmQgZmF2b3JpdGVzIG9uIHRoZSB0b3AgcGFuZWwgb3IgYWx0ZXJuYXRpdmVseSBvbiBhIG5ldyBib3R0b20gcGFuZWwuIEFjdGl2YXRlLCBtaW5pbWl6ZSBvciBjbG9zZSB0YXNrcyB3aXRoIGEgc2ltcGxlIGNsaWNrLiBcblxuVGFza0JhciAyMDIwIGlzIGEgZG9jay1saWtlIHdpbmRvd3MgbGlzdCBvbiB0aGUgdG9wL2JvdHRvbSBiYXIuIFxuXG5Gb3JrIG9mIHpweWRyL2dub21lLXNoZWxsLWV4dGVuc2lvbi10YXNrYmFyIHRvIHN1cHBvcnQgbmV3ZXIgdmVyc2lvbnMgb2YgR05PTUUiLAogICJuYW1lIjogIlRhc2tCYXIgMjAyMCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2MwbGRwbGFzbWEvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2tiYXIiLAogICJ1dWlkIjogIlRhc2tCYXJAYzBsZHBsYXNtYSIsCiAgInZlcnNpb24iOiA1Cn0="}, "40": {"version": "8", "sha256": "0a2fwmm1n5n2ifryb6yfzh4nj4h11qkphpxvp876fyll03y9p2m5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiEhISBEZXZlbG9wbWVudCBzdG9wcGVkICEhISEgIExvb2sgYXQgRGFzaCB0byBQYW5lbCBhcyBhbiBhbHRlcm5hdGl2ZTogaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMTE2MC9kYXNoLXRvLXBhbmVsL1xuXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cblRhc2tCYXIgMjAyMCBkaXNwbGF5cyBpY29ucyBvZiBydW5uaW5nIGFwcGxpY2F0aW9ucyBhbmQgZmF2b3JpdGVzIG9uIHRoZSB0b3AgcGFuZWwgb3IgYWx0ZXJuYXRpdmVseSBvbiBhIG5ldyBib3R0b20gcGFuZWwuIEFjdGl2YXRlLCBtaW5pbWl6ZSBvciBjbG9zZSB0YXNrcyB3aXRoIGEgc2ltcGxlIGNsaWNrLiBcblxuVGFza0JhciAyMDIwIGlzIGEgZG9jay1saWtlIHdpbmRvd3MgbGlzdCBvbiB0aGUgdG9wL2JvdHRvbSBiYXIuIFxuXG5Gb3JrIG9mIHpweWRyL2dub21lLXNoZWxsLWV4dGVuc2lvbi10YXNrYmFyIHRvIHN1cHBvcnQgbmV3ZXIgdmVyc2lvbnMgb2YgR05PTUUiLAogICJuYW1lIjogIlRhc2tCYXIgMjAyMCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9jMGxkcGxhc21hL2dub21lLXNoZWxsLWV4dGVuc2lvbi10YXNrYmFyIiwKICAidXVpZCI6ICJUYXNrQmFyQGMwbGRwbGFzbWEiLAogICJ2ZXJzaW9uIjogOAp9"}}}
, {"uuid": "kernel-indicator@elboulangero.gitlab.com", "name": "Kernel Indicator", "pname": "kernel-indicator", "description": "Display the kernel version in the top bar", "link": "https://extensions.gnome.org/extension/2512/kernel-indicator/", "shell_version_map": {"40": {"version": "3", "sha256": "1ysfagpfysrvhvx16212828sw85sv0zkp28qb0wj7v3qzchjj5dm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgdGhlIGtlcm5lbCB2ZXJzaW9uIGluIHRoZSB0b3AgYmFyIiwKICAibmFtZSI6ICJLZXJuZWwgSW5kaWNhdG9yIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2VsYm91bGFuZ2Vyby9nbm9tZS1zaGVsbC1leHRlbnNpb24ta2VybmVsLWluZGljYXRvciIsCiAgInV1aWQiOiAia2VybmVsLWluZGljYXRvckBlbGJvdWxhbmdlcm8uZ2l0bGFiLmNvbSIsCiAgInZlcnNpb24iOiAzCn0="}}}
, {"uuid": "floatingDock@sun.wxg@gmail.com", "name": "Floating Dock", "pname": "floating-dock", "description": "Move dock anywhere on the desktop\n\nPress Ctrl+Alt+k to vi mode\nPress lowercase alphabet, open new window or active the window\nPress uppercase alphabet, force to open new window\n\nPoint on the main button, change workspace by mouse scroll\nRight click the main button, show some selections", "link": "https://extensions.gnome.org/extension/2542/floating-dock/", "shell_version_map": {"38": {"version": "12", "sha256": "1844hhr0z4wd0wvh29q0sxh6xmwq7chg3kr3sa3c46q8n97i78x2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmUgZG9jayBhbnl3aGVyZSBvbiB0aGUgZGVza3RvcFxuXG5QcmVzcyBDdHJsK0FsdCtrIHRvIHZpIG1vZGVcblByZXNzIGxvd2VyY2FzZSBhbHBoYWJldCwgb3BlbiBuZXcgd2luZG93IG9yIGFjdGl2ZSB0aGUgd2luZG93XG5QcmVzcyB1cHBlcmNhc2UgYWxwaGFiZXQsIGZvcmNlIHRvIG9wZW4gbmV3IHdpbmRvd1xuXG5Qb2ludCBvbiB0aGUgbWFpbiBidXR0b24sIGNoYW5nZSB3b3Jrc3BhY2UgYnkgbW91c2Ugc2Nyb2xsXG5SaWdodCBjbGljayB0aGUgbWFpbiBidXR0b24sIHNob3cgc29tZSBzZWxlY3Rpb25zIiwKICAibmFtZSI6ICJGbG9hdGluZyBEb2NrIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6ICJzdW4ud3hnQGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3N1bnd4Zy9nbm9tZS1zaGVsbC1leHRlbnNpb24tZmxvYXRpbmdEb2NrIiwKICAidXVpZCI6ICJmbG9hdGluZ0RvY2tAc3VuLnd4Z0BnbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMTIKfQ=="}, "40": {"version": "21", "sha256": "0qj1vqd44clpr72j5lccvva48kzaz76zd48k6nxzvnkgh2n5dh29", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmUgZG9jayBhbnl3aGVyZSBvbiB0aGUgZGVza3RvcFxuXG5QcmVzcyBDdHJsK0FsdCtrIHRvIHZpIG1vZGVcblByZXNzIGxvd2VyY2FzZSBhbHBoYWJldCwgb3BlbiBuZXcgd2luZG93IG9yIGFjdGl2ZSB0aGUgd2luZG93XG5QcmVzcyB1cHBlcmNhc2UgYWxwaGFiZXQsIGZvcmNlIHRvIG9wZW4gbmV3IHdpbmRvd1xuXG5Qb2ludCBvbiB0aGUgbWFpbiBidXR0b24sIGNoYW5nZSB3b3Jrc3BhY2UgYnkgbW91c2Ugc2Nyb2xsXG5SaWdodCBjbGljayB0aGUgbWFpbiBidXR0b24sIHNob3cgc29tZSBzZWxlY3Rpb25zIiwKICAibmFtZSI6ICJGbG9hdGluZyBEb2NrIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6ICJzdW4ud3hnQGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdW53eGcvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWZsb2F0aW5nRG9jayIsCiAgInV1aWQiOiAiZmxvYXRpbmdEb2NrQHN1bi53eGdAZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDIxCn0="}}}
, {"uuid": "maxi@darkretailer.github.com", "name": "Maxi", "pname": "maxi", "description": "Maximize your windows vertical and/or horizontal (based on https://github.com/aXe1/gnome-shell-extension-maximized-by-default)", "link": "https://extensions.gnome.org/extension/2554/maxi/", "shell_version_map": {"40": {"version": "5", "sha256": "121nd6ggr9id3yfsrkiza7rjq19638p156ym83i3j57ikz6r3ky5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1heGltaXplIHlvdXIgd2luZG93cyB2ZXJ0aWNhbCBhbmQvb3IgaG9yaXpvbnRhbCAoYmFzZWQgb24gaHR0cHM6Ly9naXRodWIuY29tL2FYZTEvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLW1heGltaXplZC1ieS1kZWZhdWx0KSIsCiAgImV4dGVuc2lvbi1pZCI6ICJtYXhpIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgIm5hbWUiOiAiTWF4aSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5tYXhpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2RhcmtyZXRhaWxlci9nbm9tZS1zaGVsbC1leHRlbnNpb25fbWF4aSIsCiAgInV1aWQiOiAibWF4aUBkYXJrcmV0YWlsZXIuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA1Cn0="}}}
@@ -268,6 +272,7 @@
, {"uuid": "customgestures@raushankumar27.github.com", "name": "Custom 3 Finger Gestures", "pname": "custom-3-finger-gestures", "description": "3 Finger touchpad gestures into gnome-shell", "link": "https://extensions.gnome.org/extension/2781/custom-3-finger-gestures/", "shell_version_map": {"38": {"version": "7", "sha256": "1a51rlf5fjlzlm2y3cv1ncf4glqa48rkpi0z1b8hd5m1fzgdx6m9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIjMgRmluZ2VyIHRvdWNocGFkIGdlc3R1cmVzIGludG8gZ25vbWUtc2hlbGwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJjdXN0b21nZXN0dXJlcyIsCiAgIm5hbWUiOiAiQ3VzdG9tIDMgRmluZ2VyIEdlc3R1cmVzIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmN1c3RvbWdlc3R1cmVzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcmF1c2hhbmt1bWFyMjcvY3VzdG9tZ2VzdHVyZSIsCiAgInV1aWQiOiAiY3VzdG9tZ2VzdHVyZXNAcmF1c2hhbmt1bWFyMjcuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA3Cn0="}}}
, {"uuid": "overview-improved@human.experience", "name": "Overview Improved", "pname": "overview-improved", "description": "Improved, more Unity like overview\n\n* Dash-To-Dock or Ubuntu Dock integration creates Unity-like experience showing windows of specific type\n* Windows search in overview\nConfigurable keybinding (Super+w) to trigger current window overlay\n* Clicking empty space in overview closes\n* Do not show overview when showing application on multiple monitors\n* Multi Monitors Add-On Overview integration\n\nCaveat: may clash with other extensions that modify overview experience", "link": "https://extensions.gnome.org/extension/2802/overview-improved/", "shell_version_map": {"38": {"version": "8", "sha256": "0pzk6kzhbm15rmd540gv2sc0yqbiv31lil4ra3k5k7cpnr9ipsy6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkltcHJvdmVkLCBtb3JlIFVuaXR5IGxpa2Ugb3ZlcnZpZXdcblxuKiBEYXNoLVRvLURvY2sgb3IgVWJ1bnR1IERvY2sgaW50ZWdyYXRpb24gY3JlYXRlcyBVbml0eS1saWtlIGV4cGVyaWVuY2Ugc2hvd2luZyB3aW5kb3dzIG9mIHNwZWNpZmljIHR5cGVcbiogV2luZG93cyBzZWFyY2ggaW4gb3ZlcnZpZXdcbkNvbmZpZ3VyYWJsZSBrZXliaW5kaW5nIChTdXBlcit3KSB0byB0cmlnZ2VyIGN1cnJlbnQgd2luZG93IG92ZXJsYXlcbiogQ2xpY2tpbmcgZW1wdHkgc3BhY2UgaW4gb3ZlcnZpZXcgY2xvc2VzXG4qIERvIG5vdCBzaG93IG92ZXJ2aWV3IHdoZW4gc2hvd2luZyBhcHBsaWNhdGlvbiBvbiBtdWx0aXBsZSBtb25pdG9yc1xuKiBNdWx0aSBNb25pdG9ycyBBZGQtT24gT3ZlcnZpZXcgaW50ZWdyYXRpb25cblxuQ2F2ZWF0OiBtYXkgY2xhc2ggd2l0aCBvdGhlciBleHRlbnNpb25zIHRoYXQgbW9kaWZ5IG92ZXJ2aWV3IGV4cGVyaWVuY2UiLAogICJuYW1lIjogIk92ZXJ2aWV3IEltcHJvdmVkIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm92ZXJ2aWV3LWltcHJvdmVkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2NvZGViZXJnLm9yZy9odW1hbi5leHBlcmllbmNlL2dub21lLXNoZWxsLW92ZXJ2aWV3LWltcHJvdmVkIiwKICAidXVpZCI6ICJvdmVydmlldy1pbXByb3ZlZEBodW1hbi5leHBlcmllbmNlIiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
, {"uuid": "brightnesspanelmenuindicator@do.sch.dev.gmail.com", "name": "Brightness Panel Menu Indicator", "pname": "brightness-panel-menu-indicator", "description": "If a backlight device is available, this extension shows a brightness indicator on panel menu, that allows changing brightness through scrolling on it. Useful, when using ddcci-driver-linux on a desktop PC without native keyboard buttons to change brightness.", "link": "https://extensions.gnome.org/extension/2808/brightness-panel-menu-indicator/", "shell_version_map": {"38": {"version": "3", "sha256": "0nbxk6k42iglj51injq3drabfg9iv2288is36m263dwddyf9mk6d", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklmIGEgYmFja2xpZ2h0IGRldmljZSBpcyBhdmFpbGFibGUsIHRoaXMgZXh0ZW5zaW9uIHNob3dzIGEgYnJpZ2h0bmVzcyBpbmRpY2F0b3Igb24gcGFuZWwgbWVudSwgdGhhdCBhbGxvd3MgY2hhbmdpbmcgYnJpZ2h0bmVzcyB0aHJvdWdoIHNjcm9sbGluZyBvbiBpdC4gVXNlZnVsLCB3aGVuIHVzaW5nIGRkY2NpLWRyaXZlci1saW51eCBvbiBhIGRlc2t0b3AgUEMgd2l0aG91dCBuYXRpdmUga2V5Ym9hcmQgYnV0dG9ucyB0byBjaGFuZ2UgYnJpZ2h0bmVzcy4iLAogICJuYW1lIjogIkJyaWdodG5lc3MgUGFuZWwgTWVudSBJbmRpY2F0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZG8tc2NoL2dub21lLXNoZWxsLWJyaWdodG5lc3MtcGFuZWwtbWVudS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImJyaWdodG5lc3NwYW5lbG1lbnVpbmRpY2F0b3JAZG8uc2NoLmRldi5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMwp9"}, "40": {"version": "3", "sha256": "0nbxk6k42iglj51injq3drabfg9iv2288is36m263dwddyf9mk6d", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIklmIGEgYmFja2xpZ2h0IGRldmljZSBpcyBhdmFpbGFibGUsIHRoaXMgZXh0ZW5zaW9uIHNob3dzIGEgYnJpZ2h0bmVzcyBpbmRpY2F0b3Igb24gcGFuZWwgbWVudSwgdGhhdCBhbGxvd3MgY2hhbmdpbmcgYnJpZ2h0bmVzcyB0aHJvdWdoIHNjcm9sbGluZyBvbiBpdC4gVXNlZnVsLCB3aGVuIHVzaW5nIGRkY2NpLWRyaXZlci1saW51eCBvbiBhIGRlc2t0b3AgUEMgd2l0aG91dCBuYXRpdmUga2V5Ym9hcmQgYnV0dG9ucyB0byBjaGFuZ2UgYnJpZ2h0bmVzcy4iLAogICJuYW1lIjogIkJyaWdodG5lc3MgUGFuZWwgTWVudSBJbmRpY2F0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZG8tc2NoL2dub21lLXNoZWxsLWJyaWdodG5lc3MtcGFuZWwtbWVudS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImJyaWdodG5lc3NwYW5lbG1lbnVpbmRpY2F0b3JAZG8uc2NoLmRldi5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMwp9"}}}
+, {"uuid": "crypto@alipirpiran.github", "name": "Crypto Price Tracker", "pname": "crypto-price-tracker", "description": "Simple extension to track price of Crypto Currencies\n\nadd coins by Binance symbols, for example: \"BTCUSDT\"\ncomplete list on binance: https://www.binance.com/indexSpa.html", "link": "https://extensions.gnome.org/extension/2817/crypto-price-tracker/", "shell_version_map": {"40": {"version": "12", "sha256": "1sjld6h3glhhhfdcv4r5v17xc7jbvqc099m5a851vdw2587gnwkc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBleHRlbnNpb24gdG8gdHJhY2sgcHJpY2Ugb2YgQ3J5cHRvIEN1cnJlbmNpZXNcblxuYWRkIGNvaW5zIGJ5IEJpbmFuY2Ugc3ltYm9scywgZm9yIGV4YW1wbGU6IFwiQlRDVVNEVFwiXG5jb21wbGV0ZSBsaXN0IG9uIGJpbmFuY2U6IGh0dHBzOi8vd3d3LmJpbmFuY2UuY29tL2luZGV4U3BhLmh0bWwiLAogICJuYW1lIjogIkNyeXB0byBQcmljZSBUcmFja2VyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNyeXB0by10cmFja2VyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2FsaXBpcnBpcmFuL0NyeXB0by1QcmljZS1UcmFja2VyLWZvci1Hbm9tZS1TaGVsbCIsCiAgInV1aWQiOiAiY3J5cHRvQGFsaXBpcnBpcmFuLmdpdGh1YiIsCiAgInZlcnNpb24iOiAxMgp9"}}}
, {"uuid": "ibus-tweaker@tuberry.github.com", "name": "IBus Tweaker", "pname": "ibus-tweaker", "description": "Tweaker of IBus for orientation, theme, font and ascii mode auto-switch\n\nFor support, please report any issues via the homepage link below.", "link": "https://extensions.gnome.org/extension/2820/ibus-tweaker/", "shell_version_map": {"38": {"version": "28", "sha256": "0dqf56hcgfsrlshbjzf3x19yhzz2v4dj1rlm4kj834vadn5816k7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlR3ZWFrZXIgb2YgSUJ1cyBmb3Igb3JpZW50YXRpb24sIHRoZW1lLCBmb250IGFuZCBhc2NpaSBtb2RlIGF1dG8tc3dpdGNoXG5cbkZvciBzdXBwb3J0LCBwbGVhc2UgcmVwb3J0IGFueSBpc3N1ZXMgdmlhIHRoZSBob21lcGFnZSBsaW5rIGJlbG93LiIsCiAgImdldHRleHQtZG9tYWluIjogImlidXMtdHdlYWtlciIsCiAgIm5hbWUiOiAiSUJ1cyBUd2Vha2VyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmlidXMtdHdlYWtlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3R1YmVycnkvaWJ1cy10d2Vha2VyIiwKICAidXVpZCI6ICJpYnVzLXR3ZWFrZXJAdHViZXJyeS5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDI4Cn0="}, "40": {"version": "34", "sha256": "0s1z0p4bm6kpn5qj7hyynv8xknzly9jq1zk4rh8if0qqrg48n9g1", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlR3ZWFrZXIgb2YgSUJ1cyBmb3Igb3JpZW50YXRpb24sIHRoZW1lLCBmb250IGFuZCBhc2NpaSBtb2RlIGF1dG8tc3dpdGNoXG5cbkZvciBzdXBwb3J0LCBwbGVhc2UgcmVwb3J0IGFueSBpc3N1ZXMgdmlhIHRoZSBob21lcGFnZSBsaW5rIGJlbG93LiIsCiAgImdldHRleHQtZG9tYWluIjogImlidXMtdHdlYWtlciIsCiAgIm5hbWUiOiAiSUJ1cyBUd2Vha2VyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmlidXMtdHdlYWtlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90dWJlcnJ5L2lidXMtdHdlYWtlciIsCiAgInV1aWQiOiAiaWJ1cy10d2Vha2VyQHR1YmVycnkuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAzNAp9"}}}
, {"uuid": "generic-monitor@gnome-shell-extensions", "name": "Generic Monitor", "pname": "generic-monitor", "description": "Display text & icon on systray using DBUS", "link": "https://extensions.gnome.org/extension/2826/generic-monitor/", "shell_version_map": {"38": {"version": "6", "sha256": "0j0mlhcpv0s2dwmkjcczxvczkpmy9cijbacmi2k106v8bfydqib6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgdGV4dCAmIGljb24gb24gc3lzdHJheSB1c2luZyBEQlVTIiwKICAibmFtZSI6ICJHZW5lcmljIE1vbml0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwOi8vaW5kZWZlcm8uc291dGFkZS5mci9wL2dlbmVyaWNtb25pdG9yIiwKICAidXVpZCI6ICJnZW5lcmljLW1vbml0b3JAZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgInZlcnNpb24iOiA2Cn0="}, "40": {"version": "6", "sha256": "0j0mlhcpv0s2dwmkjcczxvczkpmy9cijbacmi2k106v8bfydqib6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgdGV4dCAmIGljb24gb24gc3lzdHJheSB1c2luZyBEQlVTIiwKICAibmFtZSI6ICJHZW5lcmljIE1vbml0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwOi8vaW5kZWZlcm8uc291dGFkZS5mci9wL2dlbmVyaWNtb25pdG9yIiwKICAidXVpZCI6ICJnZW5lcmljLW1vbml0b3JAZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucyIsCiAgInZlcnNpb24iOiA2Cn0="}}}
, {"uuid": "hide-keyboard-layout@sitnik.ru", "name": "Hide Keyboard Layout", "pname": "hide-keyboard-layout", "description": "Hide keyboard layout indicator in status bar", "link": "https://extensions.gnome.org/extension/2848/hide-keyboard-layout/", "shell_version_map": {"38": {"version": "2", "sha256": "1nylkw0v97w4x610bd2gkz0h1xprhkrnx03qzhm4vhqjw1j2bdg2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUga2V5Ym9hcmQgbGF5b3V0IGluZGljYXRvciBpbiBzdGF0dXMgYmFyIiwKICAibmFtZSI6ICJIaWRlIEtleWJvYXJkIExheW91dCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9haS9oaWRlLWtleWJvYXJkLWxheW91dCIsCiAgInV1aWQiOiAiaGlkZS1rZXlib2FyZC1sYXlvdXRAc2l0bmlrLnJ1IiwKICAidmVyc2lvbiI6IDIKfQ=="}, "40": {"version": "2", "sha256": "1nylkw0v97w4x610bd2gkz0h1xprhkrnx03qzhm4vhqjw1j2bdg2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUga2V5Ym9hcmQgbGF5b3V0IGluZGljYXRvciBpbiBzdGF0dXMgYmFyIiwKICAibmFtZSI6ICJIaWRlIEtleWJvYXJkIExheW91dCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9haS9oaWRlLWtleWJvYXJkLWxheW91dCIsCiAgInV1aWQiOiAiaGlkZS1rZXlib2FyZC1sYXlvdXRAc2l0bmlrLnJ1IiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
@@ -288,7 +293,7 @@
, {"uuid": "light-dict@tuberry.github.io", "name": "Light Dict", "pname": "light-dict", "description": "Lightweight extension for instant action to primary selection, especially optimized for Dictionary lookup\n\nFor support, please report any issues via the homepage link below.", "link": "https://extensions.gnome.org/extension/2959/light-dict/", "shell_version_map": {"38": {"version": "47", "sha256": "0afn26f234zsk4w1766yf5pr2rrb9d375f9qgqmxibaq34qbn4rx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpZ2h0d2VpZ2h0IGV4dGVuc2lvbiBmb3IgaW5zdGFudCBhY3Rpb24gdG8gcHJpbWFyeSBzZWxlY3Rpb24sIGVzcGVjaWFsbHkgb3B0aW1pemVkIGZvciBEaWN0aW9uYXJ5IGxvb2t1cFxuXG5Gb3Igc3VwcG9ydCwgcGxlYXNlIHJlcG9ydCBhbnkgaXNzdWVzIHZpYSB0aGUgaG9tZXBhZ2UgbGluayBiZWxvdy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJsaWdodC1kaWN0IiwKICAibmFtZSI6ICJMaWdodCBEaWN0IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmxpZ2h0LWRpY3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90dWJlcnJ5L2xpZ2h0LWRpY3QiLAogICJ1dWlkIjogImxpZ2h0LWRpY3RAdHViZXJyeS5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogNDcKfQ=="}, "40": {"version": "58", "sha256": "1zzhf4awjqxr8pjkaw3bc968zf58k90isjar4rl69i9injbgcx11", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxpZ2h0d2VpZ2h0IGV4dGVuc2lvbiBmb3IgaW5zdGFudCBhY3Rpb24gdG8gcHJpbWFyeSBzZWxlY3Rpb24sIGVzcGVjaWFsbHkgb3B0aW1pemVkIGZvciBEaWN0aW9uYXJ5IGxvb2t1cFxuXG5Gb3Igc3VwcG9ydCwgcGxlYXNlIHJlcG9ydCBhbnkgaXNzdWVzIHZpYSB0aGUgaG9tZXBhZ2UgbGluayBiZWxvdy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1zaGVsbC1leHRlbnNpb24tbGlnaHQtZGljdCIsCiAgIm5hbWUiOiAiTGlnaHQgRGljdCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5saWdodC1kaWN0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3R1YmVycnkvbGlnaHQtZGljdCIsCiAgInV1aWQiOiAibGlnaHQtZGljdEB0dWJlcnJ5LmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA1OAp9"}}}
, {"uuid": "InternetSpeedMeter@alshakib.dev", "name": "Internet Speed Meter", "pname": "internet-speed-meter", "description": "Simple and minimal internet speed meter extension for gnome shell", "link": "https://extensions.gnome.org/extension/2980/internet-speed-meter/", "shell_version_map": {"38": {"version": "6", "sha256": "0qjqf5wdwvav5333k44qbgzkgwbhhm42370862ba8p3anih5d72w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBhbmQgbWluaW1hbCBpbnRlcm5ldCBzcGVlZCBtZXRlciBleHRlbnNpb24gZm9yIGdub21lIHNoZWxsIiwKICAibmFtZSI6ICJJbnRlcm5ldCBTcGVlZCBNZXRlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9BbFNoYWtpYi9JbnRlcm5ldFNwZWVkTWV0ZXIiLAogICJ1dWlkIjogIkludGVybmV0U3BlZWRNZXRlckBhbHNoYWtpYi5kZXYiLAogICJ2ZXJzaW9uIjogNgp9"}, "40": {"version": "6", "sha256": "0qjqf5wdwvav5333k44qbgzkgwbhhm42370862ba8p3anih5d72w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBhbmQgbWluaW1hbCBpbnRlcm5ldCBzcGVlZCBtZXRlciBleHRlbnNpb24gZm9yIGdub21lIHNoZWxsIiwKICAibmFtZSI6ICJJbnRlcm5ldCBTcGVlZCBNZXRlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9BbFNoYWtpYi9JbnRlcm5ldFNwZWVkTWV0ZXIiLAogICJ1dWlkIjogIkludGVybmV0U3BlZWRNZXRlckBhbHNoYWtpYi5kZXYiLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "IP-Finder@linxgem33.com", "name": "IP Finder", "pname": "ip-finder", "description": "Displays useful information about your public IP Address\n\nIP Finder displays information about your public IP address, hostname, country, AS Block, as well as a map tile of your Geolocation and country flag, this extension is Also Useful for informational purposes to monitor VPN changes and public network IP Addresses.\n\n=====================\nIP Finder can monitor in real time\n=====================\n*Wireguard connections\n*OpenVPN connections\n*IPV4/6 connections\n*Proxy connections\n*VPN vendor applications\n*Manual static IP changes\n\n====================\nIP Finder has added security\n====================\nNewly developed revised code base using open technologies and using API's for Public IP and Map Tile image locations using GET requests over HTTPS for a added layer of encrypted Security, Please see source code for more details.\n\n====================\nCompatible GNOME shell - 3.36 and newer.", "link": "https://extensions.gnome.org/extension/2983/ip-finder/", "shell_version_map": {"38": {"version": "7", "sha256": "0qnmmg8q6xdv0rg90rzimqzsnggnsq2x8nmz998x59q2ik67kqgq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIHVzZWZ1bCBpbmZvcm1hdGlvbiBhYm91dCB5b3VyIHB1YmxpYyBJUCBBZGRyZXNzXG5cbklQIEZpbmRlciBkaXNwbGF5cyBpbmZvcm1hdGlvbiBhYm91dCB5b3VyIHB1YmxpYyBJUCBhZGRyZXNzLCBob3N0bmFtZSwgY291bnRyeSwgQVMgQmxvY2ssIGFzIHdlbGwgYXMgIGEgbWFwIHRpbGUgb2YgeW91ciBHZW9sb2NhdGlvbiBhbmQgY291bnRyeSBmbGFnLCAgdGhpcyBleHRlbnNpb24gaXMgQWxzbyBVc2VmdWwgZm9yIGluZm9ybWF0aW9uYWwgcHVycG9zZXMgdG8gbW9uaXRvciBWUE4gY2hhbmdlcyBhbmQgcHVibGljIG5ldHdvcmsgSVAgQWRkcmVzc2VzLlxuXG49PT09PT09PT09PT09PT09PT09PT1cbklQIEZpbmRlciBjYW4gbW9uaXRvciBpbiByZWFsIHRpbWVcbj09PT09PT09PT09PT09PT09PT09PVxuKldpcmVndWFyZCBjb25uZWN0aW9uc1xuKk9wZW5WUE4gY29ubmVjdGlvbnNcbipJUFY0LzYgY29ubmVjdGlvbnNcbipQcm94eSBjb25uZWN0aW9uc1xuKlZQTiB2ZW5kb3IgYXBwbGljYXRpb25zXG4qTWFudWFsIHN0YXRpYyBJUCBjaGFuZ2VzXG5cbj09PT09PT09PT09PT09PT09PT09XG5JUCBGaW5kZXIgaGFzIGFkZGVkIHNlY3VyaXR5XG49PT09PT09PT09PT09PT09PT09PVxuTmV3bHkgZGV2ZWxvcGVkIHJldmlzZWQgY29kZSBiYXNlIHVzaW5nIG9wZW4gdGVjaG5vbG9naWVzIGFuZCB1c2luZyBBUEkncyBmb3IgUHVibGljIElQIGFuZCBNYXAgVGlsZSBpbWFnZSBsb2NhdGlvbnMgdXNpbmcgR0VUIHJlcXVlc3RzIG92ZXIgSFRUUFMgZm9yIGEgYWRkZWQgbGF5ZXIgb2YgZW5jcnlwdGVkICBTZWN1cml0eSwgUGxlYXNlIHNlZSBzb3VyY2UgY29kZSBmb3IgbW9yZSBkZXRhaWxzLlxuXG49PT09PT09PT09PT09PT09PT09PVxuQ29tcGF0aWJsZSBHTk9NRSBzaGVsbCAtIDMuMzYgYW5kIG5ld2VyLiIsCiAgImV4dGVuc2lvbi1pZCI6ICJpcC1maW5kZXIiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJpcC1maW5kZXIiLAogICJuYW1lIjogIklQIEZpbmRlciIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5wdWJsaWMtaXAtYWRkcmVzcyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL0xpbnhHZW0zMy9JUC1GaW5kZXIiLAogICJ1dWlkIjogIklQLUZpbmRlckBsaW54Z2VtMzMuY29tIiwKICAidmVyc2lvbiI6IDcKfQ=="}}}
-, {"uuid": "runcat@kolesnikov.se", "name": "RunCat", "pname": "runcat", "description": "The cat tells you the CPU usage by running speed", "link": "https://extensions.gnome.org/extension/2986/runcat/", "shell_version_map": {"38": {"version": "13", "sha256": "1y11vsqgvy6yvy8b6w4b4xa5spags86hq1ma6pp448ljdgwh40xa", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoZSBjYXQgdGVsbHMgeW91IHRoZSBDUFUgdXNhZ2UgYnkgcnVubmluZyBzcGVlZCIsCiAgIm5hbWUiOiAiUnVuQ2F0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3dpbjBlcnIvZ25vbWUtcnVuY2F0IiwKICAidXVpZCI6ICJydW5jYXRAa29sZXNuaWtvdi5zZSIsCiAgInZlcnNpb24iOiAxMwp9"}, "40": {"version": "13", "sha256": "1y11vsqgvy6yvy8b6w4b4xa5spags86hq1ma6pp448ljdgwh40xa", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoZSBjYXQgdGVsbHMgeW91IHRoZSBDUFUgdXNhZ2UgYnkgcnVubmluZyBzcGVlZCIsCiAgIm5hbWUiOiAiUnVuQ2F0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3dpbjBlcnIvZ25vbWUtcnVuY2F0IiwKICAidXVpZCI6ICJydW5jYXRAa29sZXNuaWtvdi5zZSIsCiAgInZlcnNpb24iOiAxMwp9"}}}
+, {"uuid": "runcat@kolesnikov.se", "name": "RunCat", "pname": "runcat", "description": "The cat tells you the CPU usage by running speed", "link": "https://extensions.gnome.org/extension/2986/runcat/", "shell_version_map": {"38": {"version": "15", "sha256": "0crmi0n4vp7rhc6pnml0b1d4pszyhnp30cvj1r80agslvr8x7hgf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoZSBjYXQgdGVsbHMgeW91IHRoZSBDUFUgdXNhZ2UgYnkgcnVubmluZyBzcGVlZCIsCiAgIm5hbWUiOiAiUnVuQ2F0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS93aW4wZXJyL2dub21lLXJ1bmNhdCIsCiAgInV1aWQiOiAicnVuY2F0QGtvbGVzbmlrb3Yuc2UiLAogICJ2ZXJzaW9uIjogMTUKfQ=="}, "40": {"version": "15", "sha256": "0crmi0n4vp7rhc6pnml0b1d4pszyhnp30cvj1r80agslvr8x7hgf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoZSBjYXQgdGVsbHMgeW91IHRoZSBDUFUgdXNhZ2UgYnkgcnVubmluZyBzcGVlZCIsCiAgIm5hbWUiOiAiUnVuQ2F0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS93aW4wZXJyL2dub21lLXJ1bmNhdCIsCiAgInV1aWQiOiAicnVuY2F0QGtvbGVzbmlrb3Yuc2UiLAogICJ2ZXJzaW9uIjogMTUKfQ=="}}}
, {"uuid": "bowser-gnome@kronosoul.xyz", "name": "Bowser Gnome Extension", "pname": "bowser-gnome-extension", "description": "Create rules to open specific websites in specific web browsers for links clicked in any application on your computer. (emails, chat etc)", "link": "https://extensions.gnome.org/extension/2989/bowser-gnome-extension/", "shell_version_map": {"38": {"version": "10", "sha256": "0y41xz4j24lc50ai8dcvl1l773ral59ixcpvkjq1l82x7baq60pk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImFwcGxpY2F0aW9uLWlkIjogIm9yZy5rcm9ub3NvdWwuQm93c2VyIiwKICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlIHJ1bGVzIHRvIG9wZW4gc3BlY2lmaWMgd2Vic2l0ZXMgaW4gc3BlY2lmaWMgd2ViIGJyb3dzZXJzIGZvciBsaW5rcyBjbGlja2VkIGluIGFueSBhcHBsaWNhdGlvbiBvbiB5b3VyIGNvbXB1dGVyLiAoZW1haWxzLCBjaGF0IGV0YykiLAogICJleHRlbnNpb24taWQiOiAiYm93c2VyLWdub21lIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiYm93c2VyLWdub21lIiwKICAibmFtZSI6ICJCb3dzZXIgR25vbWUgRXh0ZW5zaW9uIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImFkbWluQGtyb25vc291bC54eXoiLAogICJyZXNvdXJjZS1wYXRoIjogIi9vcmcva3Jvbm9zb3VsL0Jvd3Nlci8iLAogICJzZXR0aW5ncy1wYXRoIjogIi9vcmcvZ25vbWUvc2hlbGwvZXh0ZW5zaW9ucy9Cb3dzZXIvIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLkJvd3NlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2JsaXBrL2Jvd3Nlci1nbm9tZSIsCiAgInV1aWQiOiAiYm93c2VyLWdub21lQGtyb25vc291bC54eXoiLAogICJ2ZXJzaW9uIjogMTAKfQ=="}}}
, {"uuid": "ideapad@laurento.frittella", "name": "IdeaPad", "pname": "ideapad", "description": "Lenovo IdeaPad goodies for Gnome Shell", "link": "https://extensions.gnome.org/extension/2992/ideapad/", "shell_version_map": {"38": {"version": "4", "sha256": "0pnk7avnkp847vhdsgdyyp780aikly1bh56lvp6497q5ym14jfna", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxlbm92byBJZGVhUGFkIGdvb2RpZXMgZm9yIEdub21lIFNoZWxsIiwKICAibmFtZSI6ICJJZGVhUGFkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2xhdXJlbnRvL2dub21lLXNoZWxsLWV4dGVuc2lvbi1pZGVhcGFkIiwKICAidXVpZCI6ICJpZGVhcGFkQGxhdXJlbnRvLmZyaXR0ZWxsYSIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "0pnk7avnkp847vhdsgdyyp780aikly1bh56lvp6497q5ym14jfna", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxlbm92byBJZGVhUGFkIGdvb2RpZXMgZm9yIEdub21lIFNoZWxsIiwKICAibmFtZSI6ICJJZGVhUGFkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2xhdXJlbnRvL2dub21lLXNoZWxsLWV4dGVuc2lvbi1pZGVhcGFkIiwKICAidXVpZCI6ICJpZGVhcGFkQGxhdXJlbnRvLmZyaXR0ZWxsYSIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "system-monitor-next@paradoxxx.zero.gmail.com", "name": "system-monitor-next", "pname": "system-monitor-next", "description": "Display system information in GNOME Shell status bar, such as memory, CPU, disk and battery usages, network rates…\n\nThis fork of paradoxxxzero/gnome-shell-system-monitor-applet is for packaging purposes only. This extension is built and updated continuously with the upstream master branch.\n\nThis is preferable for users on bleeding edge distributions that prefer not to wait for a stable release from the main repo. Of course, since we're releasing directly from master some instability is inevitable.\n\nIf you get an error after updating, try restarting Gnome Shell with Alt-F2 then 'r'.", "link": "https://extensions.gnome.org/extension/3010/system-monitor-next/", "shell_version_map": {"40": {"version": "36", "sha256": "144aasy5fr4la36jyzp2m7qd3wwh5pzfyyjjp5lgsm8lza5026q4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgc3lzdGVtIGluZm9ybWF0aW9uIGluIEdOT01FIFNoZWxsIHN0YXR1cyBiYXIsIHN1Y2ggYXMgbWVtb3J5LCBDUFUsIGRpc2sgYW5kIGJhdHRlcnkgdXNhZ2VzLCBuZXR3b3JrIHJhdGVzXHUyMDI2XG5cblRoaXMgZm9yayBvZiBwYXJhZG94eHh6ZXJvL2dub21lLXNoZWxsLXN5c3RlbS1tb25pdG9yLWFwcGxldCBpcyBmb3IgcGFja2FnaW5nIHB1cnBvc2VzIG9ubHkuIFRoaXMgZXh0ZW5zaW9uIGlzIGJ1aWx0IGFuZCB1cGRhdGVkIGNvbnRpbnVvdXNseSB3aXRoIHRoZSB1cHN0cmVhbSBtYXN0ZXIgYnJhbmNoLlxuXG5UaGlzIGlzIHByZWZlcmFibGUgZm9yIHVzZXJzIG9uIGJsZWVkaW5nIGVkZ2UgZGlzdHJpYnV0aW9ucyB0aGF0IHByZWZlciBub3QgdG8gd2FpdCBmb3IgYSBzdGFibGUgcmVsZWFzZSBmcm9tIHRoZSBtYWluIHJlcG8uIE9mIGNvdXJzZSwgc2luY2Ugd2UncmUgcmVsZWFzaW5nIGRpcmVjdGx5IGZyb20gbWFzdGVyIHNvbWUgaW5zdGFiaWxpdHkgaXMgaW5ldml0YWJsZS5cblxuSWYgeW91IGdldCBhbiBlcnJvciBhZnRlciB1cGRhdGluZywgdHJ5IHJlc3RhcnRpbmcgR25vbWUgU2hlbGwgd2l0aCBBbHQtRjIgdGhlbiAncicuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAic3lzdGVtLW1vbml0b3IiLAogICJuYW1lIjogInN5c3RlbS1tb25pdG9yLW5leHQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuc3lzdGVtLW1vbml0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbWdhbGdzL2dub21lLXNoZWxsLXN5c3RlbS1tb25pdG9yLWFwcGxldCIsCiAgInV1aWQiOiAic3lzdGVtLW1vbml0b3ItbmV4dEBwYXJhZG94eHguemVyby5nbWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMzYKfQ=="}}}
@@ -312,6 +317,7 @@
, {"uuid": "gnome-shell-duckduckgo-search-provider@keithcirkel.co.uk", "name": "DuckDuckGo Search Provider", "pname": "duckduckgo-search-provider", "description": "Add DuckDuckGo search suggestions to Gnome Shell Search", "link": "https://extensions.gnome.org/extension/3306/duckduckgo-search-provider/", "shell_version_map": {"38": {"version": "3", "sha256": "1id10vxz5dfq53wbiz8spqkr6d9qvs9dsykxpff29an96lzybj1w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBEdWNrRHVja0dvIHNlYXJjaCBzdWdnZXN0aW9ucyB0byBHbm9tZSBTaGVsbCBTZWFyY2giLAogICJuYW1lIjogIkR1Y2tEdWNrR28gU2VhcmNoIFByb3ZpZGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmR1Y2tkdWNrZ28tc2VhcmNoLXByb3ZpZGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2VpdGhhbXVzL2dub21lLXNoZWxsLWR1Y2tkdWNrZ28tc2VhcmNoLXByb3ZpZGVyIiwKICAidXVpZCI6ICJnbm9tZS1zaGVsbC1kdWNrZHVja2dvLXNlYXJjaC1wcm92aWRlckBrZWl0aGNpcmtlbC5jby51ayIsCiAgInZlcnNpb24iOiAzCn0="}, "40": {"version": "3", "sha256": "1id10vxz5dfq53wbiz8spqkr6d9qvs9dsykxpff29an96lzybj1w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBEdWNrRHVja0dvIHNlYXJjaCBzdWdnZXN0aW9ucyB0byBHbm9tZSBTaGVsbCBTZWFyY2giLAogICJuYW1lIjogIkR1Y2tEdWNrR28gU2VhcmNoIFByb3ZpZGVyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmR1Y2tkdWNrZ28tc2VhcmNoLXByb3ZpZGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2VpdGhhbXVzL2dub21lLXNoZWxsLWR1Y2tkdWNrZ28tc2VhcmNoLXByb3ZpZGVyIiwKICAidXVpZCI6ICJnbm9tZS1zaGVsbC1kdWNrZHVja2dvLXNlYXJjaC1wcm92aWRlckBrZWl0aGNpcmtlbC5jby51ayIsCiAgInZlcnNpb24iOiAzCn0="}}}
, {"uuid": "translate-indicator@athenstaedt.net", "name": "Translate Indicator", "pname": "translate-indicator", "description": "Translate extension for Gnome-Shell - based on translate-shell, inspired by Tudmotu's clipboard-indicator and gufoe's text-translator", "link": "https://extensions.gnome.org/extension/3318/translate-indicator/", "shell_version_map": {"38": {"version": "3", "sha256": "04c3hjbcbn8y9d94swmc3qiv63sjynn71jnwp08sgqa79nrn4cyg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYW5zbGF0ZSBleHRlbnNpb24gZm9yIEdub21lLVNoZWxsIC0gYmFzZWQgb24gdHJhbnNsYXRlLXNoZWxsLCBpbnNwaXJlZCBieSBUdWRtb3R1J3MgY2xpcGJvYXJkLWluZGljYXRvciBhbmQgZ3Vmb2UncyB0ZXh0LXRyYW5zbGF0b3IiLAogICJuYW1lIjogIlRyYW5zbGF0ZSBJbmRpY2F0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zZXZlbnV6L2dub21lLXRyYW5zbGF0ZS1pbmRpY2F0b3IiLAogICJ1dWlkIjogInRyYW5zbGF0ZS1pbmRpY2F0b3JAYXRoZW5zdGFlZHQubmV0IiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "material-shell@papyelgringo", "name": "Material Shell", "pname": "material-shell", "description": "A modern desktop interface for Linux - packaged as an extension for GNOME Shell. Improve your user experience and get rid of the anarchy of traditional desktop workflows. Designed to simplify navigation and reduce the need to manipulate windows in order to improve productivity. It's meant to be 100% predictable and bring the benefits of tools coveted by professionals to everyone.", "link": "https://extensions.gnome.org/extension/3357/material-shell/", "shell_version_map": {"38": {"version": "12", "sha256": "1rjybqlgbjmflg21cm7js2gjzvdhw14lpzncpzwf18rh4mp2adnr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImJpbmRpbmdzIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1hdGVyaWFsc2hlbGwuYmluZGluZ3MiLAogICJkZXNjcmlwdGlvbiI6ICJBIG1vZGVybiBkZXNrdG9wIGludGVyZmFjZSBmb3IgTGludXggLSBwYWNrYWdlZCBhcyBhbiBleHRlbnNpb24gZm9yIEdOT01FIFNoZWxsLiBJbXByb3ZlIHlvdXIgdXNlciBleHBlcmllbmNlIGFuZCBnZXQgcmlkIG9mIHRoZSBhbmFyY2h5IG9mIHRyYWRpdGlvbmFsIGRlc2t0b3Agd29ya2Zsb3dzLiBEZXNpZ25lZCB0byBzaW1wbGlmeSBuYXZpZ2F0aW9uIGFuZCByZWR1Y2UgdGhlIG5lZWQgdG8gbWFuaXB1bGF0ZSB3aW5kb3dzIGluIG9yZGVyIHRvIGltcHJvdmUgcHJvZHVjdGl2aXR5LiBJdCdzIG1lYW50IHRvIGJlIDEwMCUgcHJlZGljdGFibGUgYW5kIGJyaW5nIHRoZSBiZW5lZml0cyBvZiB0b29scyBjb3ZldGVkIGJ5IHByb2Zlc3Npb25hbHMgdG8gZXZlcnlvbmUuIiwKICAibGF5b3V0cyI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5tYXRlcmlhbHNoZWxsLmxheW91dHMiLAogICJuYW1lIjogIk1hdGVyaWFsIFNoZWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInRoZW1lIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1hdGVyaWFsc2hlbGwudGhlbWUiLAogICJ0d2Vha3MiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubWF0ZXJpYWxzaGVsbC50d2Vha3MiLAogICJ1cmwiOiAiaHR0cHM6Ly9tYXRlcmlhbC1zaGVsbC5jb20iLAogICJ1dWlkIjogIm1hdGVyaWFsLXNoZWxsQHBhcHllbGdyaW5nbyIsCiAgInZlcnNpb24iOiAxMgp9"}, "40": {"version": "15", "sha256": "0q8lrp9s31n3bvdzyq5vrl0zibszmrvl3c0hndx17lwzqs5rxwa2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImJpbmRpbmdzIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1hdGVyaWFsc2hlbGwuYmluZGluZ3MiLAogICJkZXNjcmlwdGlvbiI6ICJBIG1vZGVybiBkZXNrdG9wIGludGVyZmFjZSBmb3IgTGludXggLSBwYWNrYWdlZCBhcyBhbiBleHRlbnNpb24gZm9yIEdOT01FIFNoZWxsLiBJbXByb3ZlIHlvdXIgdXNlciBleHBlcmllbmNlIGFuZCBnZXQgcmlkIG9mIHRoZSBhbmFyY2h5IG9mIHRyYWRpdGlvbmFsIGRlc2t0b3Agd29ya2Zsb3dzLiBEZXNpZ25lZCB0byBzaW1wbGlmeSBuYXZpZ2F0aW9uIGFuZCByZWR1Y2UgdGhlIG5lZWQgdG8gbWFuaXB1bGF0ZSB3aW5kb3dzIGluIG9yZGVyIHRvIGltcHJvdmUgcHJvZHVjdGl2aXR5LiBJdCdzIG1lYW50IHRvIGJlIDEwMCUgcHJlZGljdGFibGUgYW5kIGJyaW5nIHRoZSBiZW5lZml0cyBvZiB0b29scyBjb3ZldGVkIGJ5IHByb2Zlc3Npb25hbHMgdG8gZXZlcnlvbmUuIiwKICAibGF5b3V0cyI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5tYXRlcmlhbHNoZWxsLmxheW91dHMiLAogICJuYW1lIjogIk1hdGVyaWFsIFNoZWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ0aGVtZSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5tYXRlcmlhbHNoZWxsLnRoZW1lIiwKICAidHdlYWtzIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm1hdGVyaWFsc2hlbGwudHdlYWtzIiwKICAidXJsIjogImh0dHBzOi8vbWF0ZXJpYWwtc2hlbGwuY29tIiwKICAidXVpZCI6ICJtYXRlcmlhbC1zaGVsbEBwYXB5ZWxncmluZ28iLAogICJ2ZXJzaW9uIjogMTUKfQ=="}}}
+, {"uuid": "galaxy-buds-battery@pemmoura", "name": "Galaxy Buds Battery", "pname": "galaxy-buds-battery", "description": "Galaxy Buds battery indicator.", "link": "https://extensions.gnome.org/extension/3383/galaxy-buds-battery/", "shell_version_map": {"38": {"version": "6", "sha256": "1f25mc5idqaw3v9b2xffiij9y0pcrl8msz85p8cz2x5l2r3sc7wm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdhbGF4eSBCdWRzIGJhdHRlcnkgaW5kaWNhdG9yLiIsCiAgIm5hbWUiOiAiR2FsYXh5IEJ1ZHMgQmF0dGVyeSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3BlbW1vdXJhL2dhbGF4eWJ1ZHMtZ25vbWUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJnYWxheHktYnVkcy1iYXR0ZXJ5QHBlbW1vdXJhIiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
, {"uuid": "color-picker@tuberry", "name": "Color Picker", "pname": "color-picker", "description": "Simple color picker for gnome shell\n\nFor support, please report any issues via the homepage link below.", "link": "https://extensions.gnome.org/extension/3396/color-picker/", "shell_version_map": {"38": {"version": "20", "sha256": "1ss4r8dpa7smxbyz41rw3wl1gy20bvy89xdvwfz6zfhv3db5vl86", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBjb2xvciBwaWNrZXIgZm9yIGdub21lIHNoZWxsXG5cbkZvciBzdXBwb3J0LCBwbGVhc2UgcmVwb3J0IGFueSBpc3N1ZXMgdmlhIHRoZSBob21lcGFnZSBsaW5rIGJlbG93LiIsCiAgImdldHRleHQtZG9tYWluIjogImNvbG9yLXBpY2tlciIsCiAgIm5hbWUiOiAiQ29sb3IgUGlja2VyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNvbG9yLXBpY2tlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3R1YmVycnkvY29sb3ItcGlja2VyIiwKICAidXVpZCI6ICJjb2xvci1waWNrZXJAdHViZXJyeSIsCiAgInZlcnNpb24iOiAyMAp9"}, "40": {"version": "25", "sha256": "0lx4bs7yfqkphb5cwmakl6xjf14q89m0yn70a882drakfhzgnagw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBjb2xvciBwaWNrZXIgZm9yIGdub21lIHNoZWxsXG5cbkZvciBzdXBwb3J0LCBwbGVhc2UgcmVwb3J0IGFueSBpc3N1ZXMgdmlhIHRoZSBob21lcGFnZSBsaW5rIGJlbG93LiIsCiAgImdldHRleHQtZG9tYWluIjogImNvbG9yLXBpY2tlciIsCiAgIm5hbWUiOiAiQ29sb3IgUGlja2VyIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNvbG9yLXBpY2tlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90dWJlcnJ5L2NvbG9yLXBpY2tlciIsCiAgInV1aWQiOiAiY29sb3ItcGlja2VyQHR1YmVycnkiLAogICJ2ZXJzaW9uIjogMjUKfQ=="}}}
, {"uuid": "yaru-remix-theme-toggle@muqtxdir.me", "name": "Yaru remix theme toggle", "pname": "yaru-remix-theme-toggle", "description": "Switches GTK3, Gnome-shell, cursor and icon themes to Yaru-remix variants", "link": "https://extensions.gnome.org/extension/3402/yaru-remix-theme-toggle/", "shell_version_map": {"38": {"version": "2", "sha256": "04dh163dshjnq3fa1y5kbkgl94q4cifvffq6i2pr4zd1v7d4zrf6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvcnMiOiBbCiAgICAibXVxdGFkaXI1NTU1QGdtYWlsLmNvbSIKICBdLAogICJkZXNjcmlwdGlvbiI6ICJTd2l0Y2hlcyBHVEszLCBHbm9tZS1zaGVsbCwgY3Vyc29yIGFuZCBpY29uIHRoZW1lcyB0byBZYXJ1LXJlbWl4IHZhcmlhbnRzIiwKICAibmFtZSI6ICJZYXJ1IHJlbWl4IHRoZW1lIHRvZ2dsZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL011cXR4ZGlyL3lhcnUtcmVtaXgtdGhlbWUtdG9nZ2xlIiwKICAidXVpZCI6ICJ5YXJ1LXJlbWl4LXRoZW1lLXRvZ2dsZUBtdXF0eGRpci5tZSIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "ascii_emoji_buckets@HarshKhandeparkar", "name": "ASCII Emoji Buckets", "pname": "ascii-emoji-buckets", "description": "Buckets of ASCII emojis for your messaging pleasure. A fork of Emoji Buckets.", "link": "https://extensions.gnome.org/extension/3408/ascii-emoji-buckets/", "shell_version_map": {"38": {"version": "9", "sha256": "1srqsjzcywywlhapaca41v4pc99w503m5532g6cc6qwz9f2r4w5h", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJ1Y2tldHMgb2YgQVNDSUkgZW1vamlzIGZvciB5b3VyIG1lc3NhZ2luZyBwbGVhc3VyZS4gQSBmb3JrIG9mIEVtb2ppIEJ1Y2tldHMuIiwKICAibmFtZSI6ICJBU0NJSSBFbW9qaSBCdWNrZXRzIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmFzY2lpLWVtb2ppLWJ1Y2tldHMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjMuMzguMSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0hhcnNoS2hhbmRlcGFya2FyL2dub21lLWFzY2lpLWVtb2ppLWJ1Y2tldHMiLAogICJ1dWlkIjogImFzY2lpX2Vtb2ppX2J1Y2tldHNASGFyc2hLaGFuZGVwYXJrYXIiLAogICJ2ZXJzaW9uIjogOQp9"}}}
@@ -331,7 +337,8 @@
, {"uuid": "true-color-invert@jackkenney", "name": "True Color Invert", "pname": "true-color-invert", "description": "Inverts the color of individual windows so they are hue-preserved.\nDefault shortcut is Super+I\n\nI've tested it with both XOrg and Wayland on Gnome 3.38 and 40.\nWayland users will have to log out and log back in for the installation to complete.\n\nVersion 6 has higher contrast than version 4, which I think makes it more readable.\nLet me know what you think in the comments!", "link": "https://extensions.gnome.org/extension/3530/true-color-invert/", "shell_version_map": {"38": {"version": "6", "sha256": "1kiqlafs5zszbim44y93jvilajp3nmcjvwds1pfy5hmnrnz0khga", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkludmVydHMgdGhlIGNvbG9yIG9mIGluZGl2aWR1YWwgd2luZG93cyBzbyB0aGV5IGFyZSBodWUtcHJlc2VydmVkLlxuRGVmYXVsdCBzaG9ydGN1dCBpcyBTdXBlcitJXG5cbkkndmUgdGVzdGVkIGl0IHdpdGggYm90aCBYT3JnIGFuZCBXYXlsYW5kIG9uIEdub21lIDMuMzggYW5kIDQwLlxuV2F5bGFuZCB1c2VycyB3aWxsIGhhdmUgdG8gbG9nIG91dCBhbmQgbG9nIGJhY2sgaW4gZm9yIHRoZSBpbnN0YWxsYXRpb24gdG8gY29tcGxldGUuXG5cblZlcnNpb24gNiBoYXMgaGlnaGVyIGNvbnRyYXN0IHRoYW4gdmVyc2lvbiA0LCB3aGljaCBJIHRoaW5rIG1ha2VzIGl0IG1vcmUgcmVhZGFibGUuXG5MZXQgbWUga25vdyB3aGF0IHlvdSB0aGluayBpbiB0aGUgY29tbWVudHMhIiwKICAibmFtZSI6ICJUcnVlIENvbG9yIEludmVydCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy50cnVlLWNvbG9yLWludmVydCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9qYWNra2VubmV5L2dub21lLXRydWUtY29sb3ItaW52ZXJ0IiwKICAidXVpZCI6ICJ0cnVlLWNvbG9yLWludmVydEBqYWNra2VubmV5IiwKICAidmVyc2lvbiI6IDYKfQ=="}, "40": {"version": "6", "sha256": "1kiqlafs5zszbim44y93jvilajp3nmcjvwds1pfy5hmnrnz0khga", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkludmVydHMgdGhlIGNvbG9yIG9mIGluZGl2aWR1YWwgd2luZG93cyBzbyB0aGV5IGFyZSBodWUtcHJlc2VydmVkLlxuRGVmYXVsdCBzaG9ydGN1dCBpcyBTdXBlcitJXG5cbkkndmUgdGVzdGVkIGl0IHdpdGggYm90aCBYT3JnIGFuZCBXYXlsYW5kIG9uIEdub21lIDMuMzggYW5kIDQwLlxuV2F5bGFuZCB1c2VycyB3aWxsIGhhdmUgdG8gbG9nIG91dCBhbmQgbG9nIGJhY2sgaW4gZm9yIHRoZSBpbnN0YWxsYXRpb24gdG8gY29tcGxldGUuXG5cblZlcnNpb24gNiBoYXMgaGlnaGVyIGNvbnRyYXN0IHRoYW4gdmVyc2lvbiA0LCB3aGljaCBJIHRoaW5rIG1ha2VzIGl0IG1vcmUgcmVhZGFibGUuXG5MZXQgbWUga25vdyB3aGF0IHlvdSB0aGluayBpbiB0aGUgY29tbWVudHMhIiwKICAibmFtZSI6ICJUcnVlIENvbG9yIEludmVydCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy50cnVlLWNvbG9yLWludmVydCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9qYWNra2VubmV5L2dub21lLXRydWUtY29sb3ItaW52ZXJ0IiwKICAidXVpZCI6ICJ0cnVlLWNvbG9yLWludmVydEBqYWNra2VubmV5IiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
, {"uuid": "gitlab-extension@infinicode.de", "name": "GitLab Extension", "pname": "gitlab-extension", "description": "GitLab extension utilizes the official GitLab API to provide a comfortable overview about your projects, commits & pipelines.\n", "link": "https://extensions.gnome.org/extension/3535/gitlab-extension/", "shell_version_map": {"38": {"version": "4", "sha256": "04hclkbj95alqv9lq5qa5dnf7wb8ssd08q0lzd9wxzw95hiqcvwd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdpdExhYiBleHRlbnNpb24gdXRpbGl6ZXMgdGhlIG9mZmljaWFsIEdpdExhYiBBUEkgdG8gcHJvdmlkZSBhIGNvbWZvcnRhYmxlIG92ZXJ2aWV3IGFib3V0IHlvdXIgcHJvamVjdHMsIGNvbW1pdHMgJiBwaXBlbGluZXMuXG4iLAogICJsb2NhbGVkaXIiOiAiL3Vzci9sb2NhbC9zaGFyZS9sb2NhbGUiLAogICJuYW1lIjogIkdpdExhYiBFeHRlbnNpb24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vY2luYXRpYy9naXRsYWItZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJnaXRsYWItZXh0ZW5zaW9uQGluZmluaWNvZGUuZGUiLAogICJ2ZXJzaW9uIjogNAp9"}, "40": {"version": "4", "sha256": "04hclkbj95alqv9lq5qa5dnf7wb8ssd08q0lzd9wxzw95hiqcvwd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdpdExhYiBleHRlbnNpb24gdXRpbGl6ZXMgdGhlIG9mZmljaWFsIEdpdExhYiBBUEkgdG8gcHJvdmlkZSBhIGNvbWZvcnRhYmxlIG92ZXJ2aWV3IGFib3V0IHlvdXIgcHJvamVjdHMsIGNvbW1pdHMgJiBwaXBlbGluZXMuXG4iLAogICJsb2NhbGVkaXIiOiAiL3Vzci9sb2NhbC9zaGFyZS9sb2NhbGUiLAogICJuYW1lIjogIkdpdExhYiBFeHRlbnNpb24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vY2luYXRpYy9naXRsYWItZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJnaXRsYWItZXh0ZW5zaW9uQGluZmluaWNvZGUuZGUiLAogICJ2ZXJzaW9uIjogNAp9"}}}
, {"uuid": "downfall@torculus.github.com", "name": "DownFall", "pname": "downfall", "description": "Moves text of your choice across the screen. Can simulate leaves, snow, fireworks, ufos, and more! Note: currently experiencing high CPU usage. Developers welcome to contribute on github!", "link": "https://extensions.gnome.org/extension/3539/downfall/", "shell_version_map": {"38": {"version": "12", "sha256": "11bq9ak6qyfaf610qi5fdniwcxryjds4m6r09pgkhydaam9am2lh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmVzIHRleHQgb2YgeW91ciBjaG9pY2UgYWNyb3NzIHRoZSBzY3JlZW4uIENhbiBzaW11bGF0ZSBsZWF2ZXMsIHNub3csIGZpcmV3b3JrcywgdWZvcywgYW5kIG1vcmUhIE5vdGU6IGN1cnJlbnRseSBleHBlcmllbmNpbmcgaGlnaCBDUFUgdXNhZ2UuIERldmVsb3BlcnMgd2VsY29tZSB0byBjb250cmlidXRlIG9uIGdpdGh1YiEiLAogICJuYW1lIjogIkRvd25GYWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90b3JjdWx1cy9Eb3duRmFsbCIsCiAgInV1aWQiOiAiZG93bmZhbGxAdG9yY3VsdXMuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAxMgp9"}, "40": {"version": "12", "sha256": "11bq9ak6qyfaf610qi5fdniwcxryjds4m6r09pgkhydaam9am2lh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmVzIHRleHQgb2YgeW91ciBjaG9pY2UgYWNyb3NzIHRoZSBzY3JlZW4uIENhbiBzaW11bGF0ZSBsZWF2ZXMsIHNub3csIGZpcmV3b3JrcywgdWZvcywgYW5kIG1vcmUhIE5vdGU6IGN1cnJlbnRseSBleHBlcmllbmNpbmcgaGlnaCBDUFUgdXNhZ2UuIERldmVsb3BlcnMgd2VsY29tZSB0byBjb250cmlidXRlIG9uIGdpdGh1YiEiLAogICJuYW1lIjogIkRvd25GYWxsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90b3JjdWx1cy9Eb3duRmFsbCIsCiAgInV1aWQiOiAiZG93bmZhbGxAdG9yY3VsdXMuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAxMgp9"}}}
-, {"uuid": "time-awareness@gnome-extensions.kapranoff.ru", "name": "Time Awareness", "pname": "time-awareness", "description": "Tracks the time you have been actively using your computer", "link": "https://extensions.gnome.org/extension/3556/time-awareness/", "shell_version_map": {"38": {"version": "4", "sha256": "0pybsc0f7nqd4f0y8a26v5yr1k9b0kj77wkvv5mxilbhhh67yv36", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYWNrcyB0aGUgdGltZSB5b3UgaGF2ZSBiZWVuIGFjdGl2ZWx5IHVzaW5nIHlvdXIgY29tcHV0ZXIiLAogICJuYW1lIjogIlRpbWUgQXdhcmVuZXNzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9zci5odC9+a2FwcGEvZ25vbWUtc2hlbGwtdGltZS1hd2FyZW5lc3MvIiwKICAidXVpZCI6ICJ0aW1lLWF3YXJlbmVzc0Bnbm9tZS1leHRlbnNpb25zLmthcHJhbm9mZi5ydSIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "0pybsc0f7nqd4f0y8a26v5yr1k9b0kj77wkvv5mxilbhhh67yv36", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYWNrcyB0aGUgdGltZSB5b3UgaGF2ZSBiZWVuIGFjdGl2ZWx5IHVzaW5nIHlvdXIgY29tcHV0ZXIiLAogICJuYW1lIjogIlRpbWUgQXdhcmVuZXNzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9zci5odC9+a2FwcGEvZ25vbWUtc2hlbGwtdGltZS1hd2FyZW5lc3MvIiwKICAidXVpZCI6ICJ0aW1lLWF3YXJlbmVzc0Bnbm9tZS1leHRlbnNpb25zLmthcHJhbm9mZi5ydSIsCiAgInZlcnNpb24iOiA0Cn0="}}}
+, {"uuid": "time-awareness@gnome-extensions.kapranoff.ru", "name": "Time Awareness", "pname": "time-awareness", "description": "Tracks the time you have been actively using your computer", "link": "https://extensions.gnome.org/extension/3556/time-awareness/", "shell_version_map": {"38": {"version": "6", "sha256": "0kfw4s2y0r51plmchzga7fkd69ynksccz881xh683k4as6af4mcg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYWNrcyB0aGUgdGltZSB5b3UgaGF2ZSBiZWVuIGFjdGl2ZWx5IHVzaW5nIHlvdXIgY29tcHV0ZXIiLAogICJuYW1lIjogIlRpbWUgQXdhcmVuZXNzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vc3IuaHQvfmthcHBhL2dub21lLXNoZWxsLXRpbWUtYXdhcmVuZXNzLyIsCiAgInV1aWQiOiAidGltZS1hd2FyZW5lc3NAZ25vbWUtZXh0ZW5zaW9ucy5rYXByYW5vZmYucnUiLAogICJ2ZXJzaW9uIjogNgp9"}, "40": {"version": "6", "sha256": "0kfw4s2y0r51plmchzga7fkd69ynksccz881xh683k4as6af4mcg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRyYWNrcyB0aGUgdGltZSB5b3UgaGF2ZSBiZWVuIGFjdGl2ZWx5IHVzaW5nIHlvdXIgY29tcHV0ZXIiLAogICJuYW1lIjogIlRpbWUgQXdhcmVuZXNzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vc3IuaHQvfmthcHBhL2dub21lLXNoZWxsLXRpbWUtYXdhcmVuZXNzLyIsCiAgInV1aWQiOiAidGltZS1hd2FyZW5lc3NAZ25vbWUtZXh0ZW5zaW9ucy5rYXByYW5vZmYucnUiLAogICJ2ZXJzaW9uIjogNgp9"}}}
+, {"uuid": "mullvadindicator@pobega.github.com", "name": "Mullvad Indicator", "pname": "mullvad-indicator", "description": "Mullvad connection status indicator", "link": "https://extensions.gnome.org/extension/3560/mullvad-indicator/", "shell_version_map": {"38": {"version": "4", "sha256": "05vcb7g51byvnk7bzajb1i7knj4zwjiksia97wabk41a2bagc4jc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk11bGx2YWQgY29ubmVjdGlvbiBzdGF0dXMgaW5kaWNhdG9yIiwKICAibmFtZSI6ICJNdWxsdmFkIEluZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vUG9iZWdhL2dub21lLXNoZWxsLWV4dGVuc2lvbi1tdWxsdmFkLWluZGljYXRvciIsCiAgInV1aWQiOiAibXVsbHZhZGluZGljYXRvckBwb2JlZ2EuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "05vcb7g51byvnk7bzajb1i7knj4zwjiksia97wabk41a2bagc4jc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk11bGx2YWQgY29ubmVjdGlvbiBzdGF0dXMgaW5kaWNhdG9yIiwKICAibmFtZSI6ICJNdWxsdmFkIEluZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vUG9iZWdhL2dub21lLXNoZWxsLWV4dGVuc2lvbi1tdWxsdmFkLWluZGljYXRvciIsCiAgInV1aWQiOiAibXVsbHZhZGluZGljYXRvckBwb2JlZ2EuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "task-widget@juozasmiskinis.gitlab.io", "name": "Task Widget", "pname": "task-widget", "description": "Display tasks next to the calendar widget.\n\nVisit our Wiki page for more information and troubleshooting.\n\nRemember to restart the Shell after updating the extension.", "link": "https://extensions.gnome.org/extension/3569/task-widget/", "shell_version_map": {"38": {"version": "8", "sha256": "1g6p243jmfsqls6zbpsr8y7psnskz6ha05dxx5zrqd6x781371pi", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImJhc2UiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudGFzay13aWRnZXQiLAogICJjb2ZmZWUiOiAiaHR0cHM6Ly93d3cuYnV5bWVhY29mZmVlLmNvbS9uYnh3ZnBtIiwKICAiZGVwZW5kZW5jaWVzIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9qbWlza2luaXMvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2std2lkZ2V0L3dpa2lzL0luc3RhbGxhdGlvbiIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgdGFza3MgbmV4dCB0byB0aGUgY2FsZW5kYXIgd2lkZ2V0LlxuXG5WaXNpdCBvdXIgV2lraSBwYWdlIGZvciBtb3JlIGluZm9ybWF0aW9uIGFuZCB0cm91Ymxlc2hvb3RpbmcuXG5cblJlbWVtYmVyIHRvIHJlc3RhcnQgdGhlIFNoZWxsIGFmdGVyIHVwZGF0aW5nIHRoZSBleHRlbnNpb24uIiwKICAiZXBhdGgiOiAiL29yZy9nbm9tZS9zaGVsbC9leHRlbnNpb25zL3Rhc2std2lkZ2V0IiwKICAiZ3Jlc291cmNlIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRhc2std2lkZ2V0LmdyZXNvdXJjZSIsCiAgImxpYmVyYXBheSI6ICJodHRwczovL2xpYmVyYXBheS5jb20vam9hc2lzLyIsCiAgImxvY2FsZSI6ICJ1c2VyLXNwZWNpZmljIiwKICAibmFtZSI6ICJUYXNrIFdpZGdldCIsCiAgInBheXBhbCI6ICJodHRwczovL3BheXBhbC5tZS9qbWlza2luaXMiLAogICJzY2hlbWFzIjogInVzZXItc3BlY2lmaWMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2ptaXNraW5pcy9nbm9tZS1zaGVsbC1leHRlbnNpb24tdGFzay13aWRnZXQiLAogICJ1dWlkIjogInRhc2std2lkZ2V0QGp1b3phc21pc2tpbmlzLmdpdGxhYi5pbyIsCiAgInZlcnNpb24iOiA4LAogICJ3aWtpIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9qbWlza2luaXMvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2std2lkZ2V0L3dpa2lzIgp9"}, "40": {"version": "8", "sha256": "1g6p243jmfsqls6zbpsr8y7psnskz6ha05dxx5zrqd6x781371pi", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImJhc2UiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudGFzay13aWRnZXQiLAogICJjb2ZmZWUiOiAiaHR0cHM6Ly93d3cuYnV5bWVhY29mZmVlLmNvbS9uYnh3ZnBtIiwKICAiZGVwZW5kZW5jaWVzIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9qbWlza2luaXMvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2std2lkZ2V0L3dpa2lzL0luc3RhbGxhdGlvbiIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgdGFza3MgbmV4dCB0byB0aGUgY2FsZW5kYXIgd2lkZ2V0LlxuXG5WaXNpdCBvdXIgV2lraSBwYWdlIGZvciBtb3JlIGluZm9ybWF0aW9uIGFuZCB0cm91Ymxlc2hvb3RpbmcuXG5cblJlbWVtYmVyIHRvIHJlc3RhcnQgdGhlIFNoZWxsIGFmdGVyIHVwZGF0aW5nIHRoZSBleHRlbnNpb24uIiwKICAiZXBhdGgiOiAiL29yZy9nbm9tZS9zaGVsbC9leHRlbnNpb25zL3Rhc2std2lkZ2V0IiwKICAiZ3Jlc291cmNlIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRhc2std2lkZ2V0LmdyZXNvdXJjZSIsCiAgImxpYmVyYXBheSI6ICJodHRwczovL2xpYmVyYXBheS5jb20vam9hc2lzLyIsCiAgImxvY2FsZSI6ICJ1c2VyLXNwZWNpZmljIiwKICAibmFtZSI6ICJUYXNrIFdpZGdldCIsCiAgInBheXBhbCI6ICJodHRwczovL3BheXBhbC5tZS9qbWlza2luaXMiLAogICJzY2hlbWFzIjogInVzZXItc3BlY2lmaWMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2ptaXNraW5pcy9nbm9tZS1zaGVsbC1leHRlbnNpb24tdGFzay13aWRnZXQiLAogICJ1dWlkIjogInRhc2std2lkZ2V0QGp1b3phc21pc2tpbmlzLmdpdGxhYi5pbyIsCiAgInZlcnNpb24iOiA4LAogICJ3aWtpIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9qbWlza2luaXMvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRhc2std2lkZ2V0L3dpa2lzIgp9"}}}
, {"uuid": "air-quality@mcardillo55", "name": "Air Quality", "pname": "air-quality", "description": "View local air quality from PurpleAir in the top bar", "link": "https://extensions.gnome.org/extension/3574/air-quality/", "shell_version_map": {"40": {"version": "2", "sha256": "037hbbb6z3gj818hqxqq96yszd1hka57pn4gj9f5kps7ak5hca4l", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlZpZXcgbG9jYWwgYWlyIHF1YWxpdHkgZnJvbSBQdXJwbGVBaXIgaW4gdGhlIHRvcCBiYXIiLAogICJuYW1lIjogIkFpciBRdWFsaXR5IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL21jYXJkaWxsbzU1L2dub21lLXNoZWxsLWV4dGVuc2lvbi1haXItcXVhbGl0eSIsCiAgInV1aWQiOiAiYWlyLXF1YWxpdHlAbWNhcmRpbGxvNTUiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "azan@hatem.masmoudi.org", "name": "Azan Islamic Prayer Times", "pname": "azan-islamic-prayer-times", "description": "Azan is an Islamic prayer times extension for Gnome Shell based on the extension by Fahrinh.\n\nFeatures\n- List compulsory prayer times\n Optionally display Imsak, Sunrise, Sunset and Midnight\n- Show remaining time for the upcoming prayer.\n- Show current date in Hijri calendar.\n- Display a notification when it's time for prayer.\n- Automatic Geoclue2 location detection\n- Show times in 24 hour and 12 hour formats\n- Hijri date adjusment\n- Moon status icon", "link": "https://extensions.gnome.org/extension/3602/azan-islamic-prayer-times/", "shell_version_map": {"38": {"version": "2", "sha256": "1z58m1w04mdddq9p3102jv852zks41f2l7xbx7j8jcljy4ahiqll", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF6YW4gaXMgYW4gSXNsYW1pYyBwcmF5ZXIgdGltZXMgZXh0ZW5zaW9uIGZvciBHbm9tZSBTaGVsbCBiYXNlZCBvbiB0aGUgZXh0ZW5zaW9uIGJ5IEZhaHJpbmguXG5cbkZlYXR1cmVzXG4tIExpc3QgY29tcHVsc29yeSBwcmF5ZXIgdGltZXNcbiBPcHRpb25hbGx5IGRpc3BsYXkgSW1zYWssIFN1bnJpc2UsIFN1bnNldCBhbmQgTWlkbmlnaHRcbi0gU2hvdyByZW1haW5pbmcgdGltZSBmb3IgdGhlIHVwY29taW5nIHByYXllci5cbi0gU2hvdyBjdXJyZW50IGRhdGUgaW4gSGlqcmkgY2FsZW5kYXIuXG4tIERpc3BsYXkgYSBub3RpZmljYXRpb24gd2hlbiBpdCdzIHRpbWUgZm9yIHByYXllci5cbi0gQXV0b21hdGljIEdlb2NsdWUyIGxvY2F0aW9uIGRldGVjdGlvblxuLSBTaG93IHRpbWVzIGluIDI0IGhvdXIgYW5kIDEyIGhvdXIgZm9ybWF0c1xuLSBIaWpyaSBkYXRlIGFkanVzbWVudFxuLSBNb29uIHN0YXR1cyBpY29uIiwKICAibmFtZSI6ICJBemFuIElzbGFtaWMgUHJheWVyIFRpbWVzIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmF6YW4iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYuMSIsCiAgICAiMy4zOC4wIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vaG1hc21vdWRpL2F6YW4tZ25vbWUtc2hlbGwtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJhemFuQGhhdGVtLm1hc21vdWRpLm9yZyIsCiAgInZlcnNpb24iOiAyCn0="}}}
@@ -339,7 +346,7 @@
, {"uuid": "wireguard-indicator@atareao.es", "name": "WireGuard Indicator", "pname": "wireguard-indicator", "description": "Manage WireGuard VPN from Desktop", "link": "https://extensions.gnome.org/extension/3612/wireguard-indicator/", "shell_version_map": {"40": {"version": "6", "sha256": "0qddl83x30y6jqm4nyjk6faklmv7cii2czmgmagcyllgkh0simav", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hbmFnZSBXaXJlR3VhcmQgVlBOIGZyb20gRGVza3RvcCIsCiAgImV4dGVuc2lvbi1pZCI6ICJ3aXJlZ3VhcmQtaW5kaWNhdG9yQGF0YXJlYW8uZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJ3aXJlZ3VhcmQtaW5kaWNhdG9yQGF0YXJlYW8uZXMiLAogICJpY29uIjogIndpcmVndWFyZC1pY29uIiwKICAibmFtZSI6ICJXaXJlR3VhcmQgSW5kaWNhdG9yIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogImVzLmF0YXJlYW8ud2lyZWd1YXJkLWluZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9hdGFyZWFvL3dpcmVndWFyZC1pbmRpY2F0b3IiLAogICJ1dWlkIjogIndpcmVndWFyZC1pbmRpY2F0b3JAYXRhcmVhby5lcyIsCiAgInZlcnNpb24iOiA2Cn0="}}}
, {"uuid": "shamsi-calendar@gnome.scr.ir", "name": "Iranian Persian Calendar", "pname": "shamsi-calendar", "description": "تقویم هجری شمسی،قمری و میلادی در میزکار گنوم لینوکس\nقابلیت نمایش اوقات شرعی و پخش اذان\nدرج تعطیلیها و مناسبتهای رسمی تقویم\nزبان کاملاً فارسی\nتاریخ قمری هلالی ایران\nسازگار با اکثر نسخههای گنوم\nدر حال توسعه...\n\nShows Persian + Islamic + Gregorian date in the panel of gnome.\n\nIt shows:\n1- Persian calendar\n2- It can show, today is holiday or not!\n3- Show notification onDayChanged!\n4- Date converter between Persian, Gregorian and Lunar Hijri(Islamic)\n5- Show calendar Events.\n6- Show PrayTimes and play sound (Azan).\n\nPlease \"rate\" here and \"star\" project in GitHub.\nPlease open an issue in GitHub if you found something or have an idea!\nگزارش مشکلات:\nhttps://github.com/SCR-IR/gnome-shamsi-calendar/issues", "link": "https://extensions.gnome.org/extension/3618/shamsi-calendar/", "shell_version_map": {"38": {"version": "14", "sha256": "16jz1vrl992nlgnlxdnqp7w89bl7ryi5l77vvydi1jn3n042jr2y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlx1MDYyYVx1MDY0Mlx1MDY0OFx1MDZjY1x1MDY0NSBcdTA2NDdcdTA2MmNcdTA2MzFcdTA2Y2MgXHUwNjM0XHUwNjQ1XHUwNjMzXHUwNmNjXHUwNjBjXHUwNjQyXHUwNjQ1XHUwNjMxXHUwNmNjIFx1MDY0OCBcdTA2NDVcdTA2Y2NcdTA2NDRcdTA2MjdcdTA2MmZcdTA2Y2MgXHUwNjJmXHUwNjMxIFx1MDY0NVx1MDZjY1x1MDYzMlx1MjAwY1x1MDZhOVx1MDYyN1x1MDYzMSBcdTA2YWZcdTA2NDZcdTA2NDhcdTA2NDUgXHUwNjQ0XHUwNmNjXHUwNjQ2XHUwNjQ4XHUwNmE5XHUwNjMzXG5cdTA2NDJcdTA2MjdcdTA2MjhcdTA2NDRcdTA2Y2NcdTA2MmEgXHUwNjQ2XHUwNjQ1XHUwNjI3XHUwNmNjXHUwNjM0IFx1MDYyN1x1MDY0OFx1MDY0Mlx1MDYyN1x1MDYyYSBcdTA2MzRcdTA2MzFcdTA2MzlcdTA2Y2MgXHUwNjQ4IFx1MDY3ZVx1MDYyZVx1MDYzNCBcdTA2MjdcdTA2MzBcdTA2MjdcdTA2NDZcblx1MDYyZlx1MDYzMVx1MDYyYyBcdTA2MmFcdTA2MzlcdTA2MzdcdTA2Y2NcdTA2NDRcdTA2Y2NcdTIwMGNcdTA2NDdcdTA2MjcgXHUwNjQ4IFx1MDY0NVx1MDY0Nlx1MDYyN1x1MDYzM1x1MDYyOFx1MDYyYVx1MjAwY1x1MDY0N1x1MDYyN1x1MDZjYyBcdTA2MzFcdTA2MzNcdTA2NDVcdTA2Y2MgXHUwNjJhXHUwNjQyXHUwNjQ4XHUwNmNjXHUwNjQ1XG5cdTA2MzJcdTA2MjhcdTA2MjdcdTA2NDYgXHUwNmE5XHUwNjI3XHUwNjQ1XHUwNjQ0XHUwNjI3XHUwNjRiIFx1MDY0MVx1MDYyN1x1MDYzMVx1MDYzM1x1MDZjY1xuXHUwNjJhXHUwNjI3XHUwNjMxXHUwNmNjXHUwNjJlIFx1MDY0Mlx1MDY0NVx1MDYzMVx1MDZjYyBcdTA2NDdcdTA2NDRcdTA2MjdcdTA2NDRcdTA2Y2MgXHUwNjI3XHUwNmNjXHUwNjMxXHUwNjI3XHUwNjQ2XG5cdTA2MzNcdTA2MjdcdTA2MzJcdTA2YWZcdTA2MjdcdTA2MzEgXHUwNjI4XHUwNjI3IFx1MDYyN1x1MDZhOVx1MDYyYlx1MDYzMSBcdTA2NDZcdTA2MzNcdTA2MmVcdTA2NDdcdTIwMGNcdTA2NDdcdTA2MjdcdTA2Y2MgXHUwNmFmXHUwNjQ2XHUwNjQ4XHUwNjQ1XG5cdTA2MmZcdTA2MzEgXHUwNjJkXHUwNjI3XHUwNjQ0IFx1MDYyYVx1MDY0OFx1MDYzM1x1MDYzOVx1MDY0Ny4uLlxuXG5TaG93cyBQZXJzaWFuICsgSXNsYW1pYyArIEdyZWdvcmlhbiBkYXRlIGluIHRoZSBwYW5lbCBvZiBnbm9tZS5cblxuSXQgc2hvd3M6XG4xLSBQZXJzaWFuIGNhbGVuZGFyXG4yLSBJdCBjYW4gc2hvdywgdG9kYXkgaXMgaG9saWRheSBvciBub3QhXG4zLSBTaG93IG5vdGlmaWNhdGlvbiBvbkRheUNoYW5nZWQhXG40LSBEYXRlIGNvbnZlcnRlciBiZXR3ZWVuIFBlcnNpYW4sIEdyZWdvcmlhbiBhbmQgTHVuYXIgSGlqcmkoSXNsYW1pYylcbjUtIFNob3cgY2FsZW5kYXIgRXZlbnRzLlxuNi0gU2hvdyBQcmF5VGltZXMgYW5kIHBsYXkgc291bmQgKEF6YW4pLlxuXG5QbGVhc2UgXCJyYXRlXCIgaGVyZSBhbmQgXCJzdGFyXCIgcHJvamVjdCBpbiBHaXRIdWIuXG5QbGVhc2Ugb3BlbiBhbiBpc3N1ZSBpbiBHaXRIdWIgaWYgeW91IGZvdW5kIHNvbWV0aGluZyBvciBoYXZlIGFuIGlkZWEhXG5cdTA2YWZcdTA2MzJcdTA2MjdcdTA2MzFcdTA2MzQgXHUwNjQ1XHUwNjM0XHUwNmE5XHUwNjQ0XHUwNjI3XHUwNjJhOlxuaHR0cHM6Ly9naXRodWIuY29tL1NDUi1JUi9nbm9tZS1zaGFtc2ktY2FsZW5kYXIvaXNzdWVzIiwKICAibmFtZSI6ICJJcmFuaWFuIFBlcnNpYW4gQ2FsZW5kYXIiLAogICJvcmlnaW5hbC1hdXRob3JzIjogImpkZi5zY3IuaXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vc2NyLWlyL2dub21lLXNoYW1zaS1jYWxlbmRhciIsCiAgInV1aWQiOiAic2hhbXNpLWNhbGVuZGFyQGdub21lLnNjci5pciIsCiAgInZlcnNpb24iOiAxNAp9"}, "40": {"version": "14", "sha256": "16jz1vrl992nlgnlxdnqp7w89bl7ryi5l77vvydi1jn3n042jr2y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlx1MDYyYVx1MDY0Mlx1MDY0OFx1MDZjY1x1MDY0NSBcdTA2NDdcdTA2MmNcdTA2MzFcdTA2Y2MgXHUwNjM0XHUwNjQ1XHUwNjMzXHUwNmNjXHUwNjBjXHUwNjQyXHUwNjQ1XHUwNjMxXHUwNmNjIFx1MDY0OCBcdTA2NDVcdTA2Y2NcdTA2NDRcdTA2MjdcdTA2MmZcdTA2Y2MgXHUwNjJmXHUwNjMxIFx1MDY0NVx1MDZjY1x1MDYzMlx1MjAwY1x1MDZhOVx1MDYyN1x1MDYzMSBcdTA2YWZcdTA2NDZcdTA2NDhcdTA2NDUgXHUwNjQ0XHUwNmNjXHUwNjQ2XHUwNjQ4XHUwNmE5XHUwNjMzXG5cdTA2NDJcdTA2MjdcdTA2MjhcdTA2NDRcdTA2Y2NcdTA2MmEgXHUwNjQ2XHUwNjQ1XHUwNjI3XHUwNmNjXHUwNjM0IFx1MDYyN1x1MDY0OFx1MDY0Mlx1MDYyN1x1MDYyYSBcdTA2MzRcdTA2MzFcdTA2MzlcdTA2Y2MgXHUwNjQ4IFx1MDY3ZVx1MDYyZVx1MDYzNCBcdTA2MjdcdTA2MzBcdTA2MjdcdTA2NDZcblx1MDYyZlx1MDYzMVx1MDYyYyBcdTA2MmFcdTA2MzlcdTA2MzdcdTA2Y2NcdTA2NDRcdTA2Y2NcdTIwMGNcdTA2NDdcdTA2MjcgXHUwNjQ4IFx1MDY0NVx1MDY0Nlx1MDYyN1x1MDYzM1x1MDYyOFx1MDYyYVx1MjAwY1x1MDY0N1x1MDYyN1x1MDZjYyBcdTA2MzFcdTA2MzNcdTA2NDVcdTA2Y2MgXHUwNjJhXHUwNjQyXHUwNjQ4XHUwNmNjXHUwNjQ1XG5cdTA2MzJcdTA2MjhcdTA2MjdcdTA2NDYgXHUwNmE5XHUwNjI3XHUwNjQ1XHUwNjQ0XHUwNjI3XHUwNjRiIFx1MDY0MVx1MDYyN1x1MDYzMVx1MDYzM1x1MDZjY1xuXHUwNjJhXHUwNjI3XHUwNjMxXHUwNmNjXHUwNjJlIFx1MDY0Mlx1MDY0NVx1MDYzMVx1MDZjYyBcdTA2NDdcdTA2NDRcdTA2MjdcdTA2NDRcdTA2Y2MgXHUwNjI3XHUwNmNjXHUwNjMxXHUwNjI3XHUwNjQ2XG5cdTA2MzNcdTA2MjdcdTA2MzJcdTA2YWZcdTA2MjdcdTA2MzEgXHUwNjI4XHUwNjI3IFx1MDYyN1x1MDZhOVx1MDYyYlx1MDYzMSBcdTA2NDZcdTA2MzNcdTA2MmVcdTA2NDdcdTIwMGNcdTA2NDdcdTA2MjdcdTA2Y2MgXHUwNmFmXHUwNjQ2XHUwNjQ4XHUwNjQ1XG5cdTA2MmZcdTA2MzEgXHUwNjJkXHUwNjI3XHUwNjQ0IFx1MDYyYVx1MDY0OFx1MDYzM1x1MDYzOVx1MDY0Ny4uLlxuXG5TaG93cyBQZXJzaWFuICsgSXNsYW1pYyArIEdyZWdvcmlhbiBkYXRlIGluIHRoZSBwYW5lbCBvZiBnbm9tZS5cblxuSXQgc2hvd3M6XG4xLSBQZXJzaWFuIGNhbGVuZGFyXG4yLSBJdCBjYW4gc2hvdywgdG9kYXkgaXMgaG9saWRheSBvciBub3QhXG4zLSBTaG93IG5vdGlmaWNhdGlvbiBvbkRheUNoYW5nZWQhXG40LSBEYXRlIGNvbnZlcnRlciBiZXR3ZWVuIFBlcnNpYW4sIEdyZWdvcmlhbiBhbmQgTHVuYXIgSGlqcmkoSXNsYW1pYylcbjUtIFNob3cgY2FsZW5kYXIgRXZlbnRzLlxuNi0gU2hvdyBQcmF5VGltZXMgYW5kIHBsYXkgc291bmQgKEF6YW4pLlxuXG5QbGVhc2UgXCJyYXRlXCIgaGVyZSBhbmQgXCJzdGFyXCIgcHJvamVjdCBpbiBHaXRIdWIuXG5QbGVhc2Ugb3BlbiBhbiBpc3N1ZSBpbiBHaXRIdWIgaWYgeW91IGZvdW5kIHNvbWV0aGluZyBvciBoYXZlIGFuIGlkZWEhXG5cdTA2YWZcdTA2MzJcdTA2MjdcdTA2MzFcdTA2MzQgXHUwNjQ1XHUwNjM0XHUwNmE5XHUwNjQ0XHUwNjI3XHUwNjJhOlxuaHR0cHM6Ly9naXRodWIuY29tL1NDUi1JUi9nbm9tZS1zaGFtc2ktY2FsZW5kYXIvaXNzdWVzIiwKICAibmFtZSI6ICJJcmFuaWFuIFBlcnNpYW4gQ2FsZW5kYXIiLAogICJvcmlnaW5hbC1hdXRob3JzIjogImpkZi5zY3IuaXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vc2NyLWlyL2dub21lLXNoYW1zaS1jYWxlbmRhciIsCiAgInV1aWQiOiAic2hhbXNpLWNhbGVuZGFyQGdub21lLnNjci5pciIsCiAgInZlcnNpb24iOiAxNAp9"}}}
, {"uuid": "tunnel-indicator@atareao.es", "name": "Tunnel Indicator", "pname": "tunnel-indicator", "description": "Manage SSH Tunnels from Desktop", "link": "https://extensions.gnome.org/extension/3622/tunnel-indicator/", "shell_version_map": {"40": {"version": "2", "sha256": "0ma4a711mgjxyhy4d21p2m7wvbnmmwlfdsf6xk9i36ranjcqs9as", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hbmFnZSBTU0ggVHVubmVscyBmcm9tIERlc2t0b3AiLAogICJleHRlbnNpb24taWQiOiAidHVubmVsLWluZGljYXRvckBhdGFyZWFvLmVzIiwKICAiZ2V0dGV4dC1kb21haW4iOiAidHVubmVsLWluZGljYXRvckBhdGFyZWFvLmVzIiwKICAiaWNvbiI6ICJ0dW5uZWwtaWNvbiIsCiAgIm5hbWUiOiAiVHVubmVsIEluZGljYXRvciIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJlcy5hdGFyZWFvLnR1bm5lbC1pbmRpY2F0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYXRhcmVhby90dW5uZWwtaW5kaWNhdG9yIiwKICAidXVpZCI6ICJ0dW5uZWwtaW5kaWNhdG9yQGF0YXJlYW8uZXMiLAogICJ2ZXJzaW9uIjogMgp9"}}}
-, {"uuid": "arcmenu@arcmenu.com", "name": "ArcMenu", "pname": "arcmenu", "description": "Application Menu for GNOME, with various layouts to choose from!\n\nSupports GNOME shell 3.36, 3.38, and 40.\n\nFor GNOME shell versions 3.14-3.34 visit https://extensions.gnome.org/extension/1228/arc-menu/\n\nCommon solutions for ERROR message:\n-Restart your GNOME session after updating ArcMenu.\n-Install one of the following packages: 'gir1.2-gmenu-3.0' or 'gnome-menus'\n\nGeneral Help:\n-Visit https://gitlab.com/arcmenu/ArcMenu/-/wikis/home\n\nPlease report any other issues or concerns on the ArcMenu GitLab page.", "link": "https://extensions.gnome.org/extension/3628/arcmenu/", "shell_version_map": {"38": {"version": "15", "sha256": "15ay60yanrmpifc9i0cbp3b1d1yhmrkimsw51baw2w9mkdcazx6s", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxpY2F0aW9uIE1lbnUgZm9yIEdOT01FLCB3aXRoIHZhcmlvdXMgbGF5b3V0cyB0byBjaG9vc2UgZnJvbSFcblxuU3VwcG9ydHMgR05PTUUgc2hlbGwgMy4zNiwgMy4zOCwgYW5kIDQwLlxuXG5Gb3IgR05PTUUgc2hlbGwgdmVyc2lvbnMgMy4xNC0zLjM0IHZpc2l0IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyMjgvYXJjLW1lbnUvXG5cbkNvbW1vbiBzb2x1dGlvbnMgZm9yIEVSUk9SIG1lc3NhZ2U6XG4tUmVzdGFydCB5b3VyIEdOT01FIHNlc3Npb24gYWZ0ZXIgdXBkYXRpbmcgQXJjTWVudS5cbi1JbnN0YWxsIG9uZSBvZiB0aGUgZm9sbG93aW5nIHBhY2thZ2VzOiAnZ2lyMS4yLWdtZW51LTMuMCcgb3IgJ2dub21lLW1lbnVzJ1xuXG5HZW5lcmFsIEhlbHA6XG4tVmlzaXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudS8tL3dpa2lzL2hvbWVcblxuUGxlYXNlIHJlcG9ydCBhbnkgb3RoZXIgaXNzdWVzIG9yIGNvbmNlcm5zIG9uIHRoZSBBcmNNZW51IEdpdExhYiBwYWdlLiIsCiAgImV4dGVuc2lvbi1pZCI6ICJhcmNtZW51IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiYXJjbWVudSIsCiAgIm5hbWUiOiAiQXJjTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5hcmNtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vYXJjbWVudS9BcmNNZW51IiwKICAidXVpZCI6ICJhcmNtZW51QGFyY21lbnUuY29tIiwKICAidmVyc2lvbiI6IDE1Cn0="}, "40": {"version": "16", "sha256": "0whc0cbqc9mzfdmpxmvy2ayrh92mckj5f04h19i19b4cdscxf146", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxpY2F0aW9uIE1lbnUgZm9yIEdOT01FLCB3aXRoIHZhcmlvdXMgbGF5b3V0cyB0byBjaG9vc2UgZnJvbSFcblxuU3VwcG9ydHMgR05PTUUgc2hlbGwgMy4zNiwgMy4zOCwgYW5kIDQwLlxuXG5Gb3IgR05PTUUgc2hlbGwgdmVyc2lvbnMgMy4xNC0zLjM0IHZpc2l0IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyMjgvYXJjLW1lbnUvXG5cbkNvbW1vbiBzb2x1dGlvbnMgZm9yIEVSUk9SIG1lc3NhZ2U6XG4tUmVzdGFydCB5b3VyIEdOT01FIHNlc3Npb24gYWZ0ZXIgdXBkYXRpbmcgQXJjTWVudS5cbi1JbnN0YWxsIG9uZSBvZiB0aGUgZm9sbG93aW5nIHBhY2thZ2VzOiAnZ2lyMS4yLWdtZW51LTMuMCcgb3IgJ2dub21lLW1lbnVzJ1xuXG5HZW5lcmFsIEhlbHA6XG4tVmlzaXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudS8tL3dpa2lzL2hvbWVcblxuUGxlYXNlIHJlcG9ydCBhbnkgb3RoZXIgaXNzdWVzIG9yIGNvbmNlcm5zIG9uIHRoZSBBcmNNZW51IEdpdExhYiBwYWdlLiIsCiAgImV4dGVuc2lvbi1pZCI6ICJhcmNtZW51IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiYXJjbWVudSIsCiAgIm5hbWUiOiAiQXJjTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5hcmNtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudSIsCiAgInV1aWQiOiAiYXJjbWVudUBhcmNtZW51LmNvbSIsCiAgInZlcnNpb24iOiAxNgp9"}}}
+, {"uuid": "arcmenu@arcmenu.com", "name": "ArcMenu", "pname": "arcmenu", "description": "Application Menu for GNOME, with various layouts to choose from!\n\nSupports GNOME shell 3.36, 3.38, 40, and 41.\n\nFor older GNOME shell versions visit https://extensions.gnome.org/extension/1228/arc-menu/\n\nCommon solutions for ERROR message:\n-Restart your GNOME session after updating ArcMenu.\n-Install one of the following packages: 'gir1.2-gmenu-3.0' or 'gnome-menus'\n\nGeneral Help:\n-Visit https://gitlab.com/arcmenu/ArcMenu/-/wikis/home\n\nPlease report all bugs or issues at https://gitlab.com/arcmenu/ArcMenu", "link": "https://extensions.gnome.org/extension/3628/arcmenu/", "shell_version_map": {"38": {"version": "17", "sha256": "0llq0zkvgxarr30s304n1ilidbwc0kx4l2impby5y2sdsvr7zafv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxpY2F0aW9uIE1lbnUgZm9yIEdOT01FLCB3aXRoIHZhcmlvdXMgbGF5b3V0cyB0byBjaG9vc2UgZnJvbSFcblxuU3VwcG9ydHMgR05PTUUgc2hlbGwgMy4zNiwgMy4zOCwgNDAsIGFuZCA0MS5cblxuRm9yIG9sZGVyIEdOT01FIHNoZWxsIHZlcnNpb25zIHZpc2l0IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyMjgvYXJjLW1lbnUvXG5cbkNvbW1vbiBzb2x1dGlvbnMgZm9yIEVSUk9SIG1lc3NhZ2U6XG4tUmVzdGFydCB5b3VyIEdOT01FIHNlc3Npb24gYWZ0ZXIgdXBkYXRpbmcgQXJjTWVudS5cbi1JbnN0YWxsIG9uZSBvZiB0aGUgZm9sbG93aW5nIHBhY2thZ2VzOiAnZ2lyMS4yLWdtZW51LTMuMCcgb3IgJ2dub21lLW1lbnVzJ1xuXG5HZW5lcmFsIEhlbHA6XG4tVmlzaXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudS8tL3dpa2lzL2hvbWVcblxuUGxlYXNlIHJlcG9ydCBhbGwgYnVncyBvciBpc3N1ZXMgYXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudSIsCiAgImV4dGVuc2lvbi1pZCI6ICJhcmNtZW51IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiYXJjbWVudSIsCiAgIm5hbWUiOiAiQXJjTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5hcmNtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vYXJjbWVudS9BcmNNZW51IiwKICAidXVpZCI6ICJhcmNtZW51QGFyY21lbnUuY29tIiwKICAidmVyc2lvbiI6IDE3Cn0="}, "40": {"version": "18", "sha256": "1vapj6lywga48j58764hpc2j3qapiz7k905bmla89im55vcip0sv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxpY2F0aW9uIE1lbnUgZm9yIEdOT01FLCB3aXRoIHZhcmlvdXMgbGF5b3V0cyB0byBjaG9vc2UgZnJvbSFcblxuU3VwcG9ydHMgR05PTUUgc2hlbGwgMy4zNiwgMy4zOCwgNDAsIGFuZCA0MS5cblxuRm9yIG9sZGVyIEdOT01FIHNoZWxsIHZlcnNpb25zIHZpc2l0IGh0dHBzOi8vZXh0ZW5zaW9ucy5nbm9tZS5vcmcvZXh0ZW5zaW9uLzEyMjgvYXJjLW1lbnUvXG5cbkNvbW1vbiBzb2x1dGlvbnMgZm9yIEVSUk9SIG1lc3NhZ2U6XG4tUmVzdGFydCB5b3VyIEdOT01FIHNlc3Npb24gYWZ0ZXIgdXBkYXRpbmcgQXJjTWVudS5cbi1JbnN0YWxsIG9uZSBvZiB0aGUgZm9sbG93aW5nIHBhY2thZ2VzOiAnZ2lyMS4yLWdtZW51LTMuMCcgb3IgJ2dub21lLW1lbnVzJ1xuXG5HZW5lcmFsIEhlbHA6XG4tVmlzaXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudS8tL3dpa2lzL2hvbWVcblxuUGxlYXNlIHJlcG9ydCBhbGwgYnVncyBvciBpc3N1ZXMgYXQgaHR0cHM6Ly9naXRsYWIuY29tL2FyY21lbnUvQXJjTWVudSIsCiAgImV4dGVuc2lvbi1pZCI6ICJhcmNtZW51IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiYXJjbWVudSIsCiAgIm5hbWUiOiAiQXJjTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5hcmNtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS9hcmNtZW51L0FyY01lbnUiLAogICJ1dWlkIjogImFyY21lbnVAYXJjbWVudS5jb20iLAogICJ2ZXJzaW9uIjogMTgKfQ=="}}}
, {"uuid": "fixedimelist@alynx.one", "name": "Fixed IME List", "pname": "fixed-ime-list", "description": "Make the IME list in fixed sequence instead of MRU.", "link": "https://extensions.gnome.org/extension/3663/fixed-ime-list/", "shell_version_map": {"38": {"version": "6", "sha256": "0v99flnb23cjv32wr7r077q29jvgs7j5fjx6dc6qm2n04f1qiibz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgdGhlIElNRSBsaXN0IGluIGZpeGVkIHNlcXVlbmNlIGluc3RlYWQgb2YgTVJVLiIsCiAgIm5hbWUiOiAiRml4ZWQgSU1FIExpc3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vQWx5bnhaaG91L2dub21lLXNoZWxsLWV4dGVuc2lvbi1maXhlZC1pbWUtbGlzdC8iLAogICJ1dWlkIjogImZpeGVkaW1lbGlzdEBhbHlueC5vbmUiLAogICJ2ZXJzaW9uIjogNgp9"}, "40": {"version": "6", "sha256": "0v99flnb23cjv32wr7r077q29jvgs7j5fjx6dc6qm2n04f1qiibz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2UgdGhlIElNRSBsaXN0IGluIGZpeGVkIHNlcXVlbmNlIGluc3RlYWQgb2YgTVJVLiIsCiAgIm5hbWUiOiAiRml4ZWQgSU1FIExpc3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vQWx5bnhaaG91L2dub21lLXNoZWxsLWV4dGVuc2lvbi1maXhlZC1pbWUtbGlzdC8iLAogICJ1dWlkIjogImZpeGVkaW1lbGlzdEBhbHlueC5vbmUiLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "topindicatorapp@quiro9.com", "name": "Top Indicator App", "pname": "top-indicator-app", "description": "This extension is 'appindicators' from ubuntu, renamed 'top indicator app' under the terms of the GPL v2 +. it is the extension itself that Ubuntu offers as a native experience on your system, but so you can install it in other distros since the current one in gnome-extensions is empty.I will offer stable updates when possible.", "link": "https://extensions.gnome.org/extension/3681/top-indicator-app/", "shell_version_map": {"38": {"version": "2", "sha256": "12r4fxgsgd7jn001vlzqrsd86ci62zxk0b9p3bkdqh6g5hj3la35", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGlzICdhcHBpbmRpY2F0b3JzJyBmcm9tIHVidW50dSwgcmVuYW1lZCAndG9wIGluZGljYXRvciBhcHAnIHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR1BMIHYyICsuIGl0IGlzIHRoZSBleHRlbnNpb24gaXRzZWxmIHRoYXQgVWJ1bnR1IG9mZmVycyBhcyBhIG5hdGl2ZSBleHBlcmllbmNlIG9uIHlvdXIgc3lzdGVtLCBidXQgc28geW91IGNhbiBpbnN0YWxsIGl0IGluIG90aGVyIGRpc3Ryb3Mgc2luY2UgdGhlIGN1cnJlbnQgb25lIGluIGdub21lLWV4dGVuc2lvbnMgaXMgZW1wdHkuSSB3aWxsIG9mZmVyIHN0YWJsZSB1cGRhdGVzIHdoZW4gcG9zc2libGUuIiwKICAibmFtZSI6ICJUb3AgSW5kaWNhdG9yIEFwcCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3VidW50dS9nbm9tZS1zaGVsbC1leHRlbnNpb24tYXBwaW5kaWNhdG9yIiwKICAidXVpZCI6ICJ0b3BpbmRpY2F0b3JhcHBAcXVpcm85LmNvbSIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "reorder-workspaces@jer.dev", "name": "Reorder Workspaces", "pname": "reorder-workspaces", "description": "Move workspaces up or down in the overview with Alt+Up/Alt+Down", "link": "https://extensions.gnome.org/extension/3685/reorder-workspaces/", "shell_version_map": {"38": {"version": "6", "sha256": "1f0hl2dzl75dwcv8jzx3rk1laqd9y9m32g219nvbhsmk8rjxfc31", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmUgd29ya3NwYWNlcyB1cCBvciBkb3duIGluIHRoZSBvdmVydmlldyB3aXRoIEFsdCtVcC9BbHQrRG93biIsCiAgIm5hbWUiOiAiUmVvcmRlciBXb3Jrc3BhY2VzIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnJlb3JkZXItd29ya3NwYWNlcyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2plcmVtaWFobWVnZWwvZ25vbWUtcmVvcmRlci13b3Jrc3BhY2VzIiwKICAidXVpZCI6ICJyZW9yZGVyLXdvcmtzcGFjZXNAamVyLmRldiIsCiAgInZlcnNpb24iOiA2Cn0="}}}
@@ -350,10 +357,10 @@
, {"uuid": "hide-dash-forked@farnasirim.com", "name": "Hide Dash Forked", "pname": "hide-dash-forked", "description": "Hide dash menu from gnome overview", "link": "https://extensions.gnome.org/extension/3718/hide-dash-forked/", "shell_version_map": {"38": {"version": "3", "sha256": "1j0ca2nwj8bhnn2vv3fgjhglg8af9iqa992i7d2mvxx4zisj8rdq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUgZGFzaCBtZW51IGZyb20gZ25vbWUgb3ZlcnZpZXciLAogICJuYW1lIjogIkhpZGUgRGFzaCBGb3JrZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mYXJuYXNpcmltL2dub21lLXNoZWxsLWV4dGVuc2lvbi1oaWRlLWRhc2gtZm9ya2VkIiwKICAidXVpZCI6ICJoaWRlLWRhc2gtZm9ya2VkQGZhcm5hc2lyaW0uY29tIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "netspeedsimplified@prateekmedia.extension", "name": "Net speed Simplified", "pname": "net-speed-simplified", "description": "A Net Speed extension With Loads of Customization. Fork of simplenetspeed \n \nWhat's new\n☞ Add Use System Color Scheme option \n☞ Update Preferences logic \n☞ Filter more devices for net speed indicator \n\nFull CHANGELOG can be found on github releases page \n\nFeatures \n1. Clean UI \n2. Adjustable Refresh rate \n3. Preferences to manage extension \n4. Vertical Alignment Support \n5. Two Icon sets for Indicators \n\nFeature Highlights for Preferences \n1. Lock Mouse Actions option \n2. Advance Position options to pinpoint where to place the indicator on the Panel. \n3. Refresh time option by which you can change refresh rate value between 1.0 sec to 10.0 sec. \n4. Show Upload First option to show upload speed first \n5. Color Customizations for speed indicators \n6. Hide when Disconnected option \n7. Use Shorten Units option \n8. Limit Unit option and more... \n\nModes \n- Total net speed in b/s, kb/s, ... \n- Total net speed in B/s, KB/s, ... \n- Up & down speed in b/s, kb/s, ... \n- Up & down speed in B/s, KB/s, ... \n- Total downloads in B, KB, ... (Right click to reset counter) \n\nMouse Events \n- Left click to change modes \n- Right click(in 1-4 modes): Toggle the visibility of total loaded. \n- Right click(in 5th mode): Reset total downloaded. \n- Right Click(Four consecutive times): Toggle through horizontal/vertical alignment. \n- Middle click: Cycle through the font sizes.", "link": "https://extensions.gnome.org/extension/3724/net-speed-simplified/", "shell_version_map": {"38": {"version": "33", "sha256": "146p9vbwdp1d9h36jsvi6gkyklig06ic6gswln5cn5rck3w6m7bd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgTmV0IFNwZWVkIGV4dGVuc2lvbiBXaXRoIExvYWRzIG9mIEN1c3RvbWl6YXRpb24uIEZvcmsgb2Ygc2ltcGxlbmV0c3BlZWQgXG4gXG5XaGF0J3MgbmV3XG5cdTI2MWUgQWRkIFVzZSBTeXN0ZW0gQ29sb3IgU2NoZW1lIG9wdGlvbiBcblx1MjYxZSBVcGRhdGUgUHJlZmVyZW5jZXMgbG9naWMgXG5cdTI2MWUgRmlsdGVyIG1vcmUgZGV2aWNlcyBmb3IgbmV0IHNwZWVkIGluZGljYXRvciBcblxuRnVsbCBDSEFOR0VMT0cgY2FuIGJlIGZvdW5kIG9uIGdpdGh1YiByZWxlYXNlcyBwYWdlIFxuXG5GZWF0dXJlcyBcbjEuIENsZWFuIFVJIFxuMi4gQWRqdXN0YWJsZSBSZWZyZXNoIHJhdGUgXG4zLiBQcmVmZXJlbmNlcyB0byBtYW5hZ2UgZXh0ZW5zaW9uIFxuNC4gVmVydGljYWwgQWxpZ25tZW50IFN1cHBvcnQgXG41LiBUd28gSWNvbiBzZXRzIGZvciBJbmRpY2F0b3JzIFxuXG5GZWF0dXJlIEhpZ2hsaWdodHMgZm9yIFByZWZlcmVuY2VzIFxuMS4gTG9jayBNb3VzZSBBY3Rpb25zIG9wdGlvbiBcbjIuIEFkdmFuY2UgUG9zaXRpb24gb3B0aW9ucyB0byBwaW5wb2ludCB3aGVyZSB0byBwbGFjZSB0aGUgaW5kaWNhdG9yIG9uIHRoZSBQYW5lbC4gXG4zLiBSZWZyZXNoIHRpbWUgb3B0aW9uIGJ5IHdoaWNoIHlvdSBjYW4gY2hhbmdlIHJlZnJlc2ggcmF0ZSB2YWx1ZSBiZXR3ZWVuIDEuMCBzZWMgdG8gMTAuMCBzZWMuIFxuNC4gU2hvdyBVcGxvYWQgRmlyc3Qgb3B0aW9uIHRvIHNob3cgdXBsb2FkIHNwZWVkIGZpcnN0IFxuNS4gQ29sb3IgQ3VzdG9taXphdGlvbnMgZm9yIHNwZWVkIGluZGljYXRvcnMgXG42LiBIaWRlIHdoZW4gRGlzY29ubmVjdGVkIG9wdGlvbiBcbjcuIFVzZSBTaG9ydGVuIFVuaXRzIG9wdGlvbiBcbjguIExpbWl0IFVuaXQgb3B0aW9uIGFuZCBtb3JlLi4uIFxuXG5Nb2RlcyBcbi0gVG90YWwgbmV0IHNwZWVkIGluIGIvcywga2IvcywgLi4uIFxuLSBUb3RhbCBuZXQgc3BlZWQgaW4gQi9zLCBLQi9zLCAuLi4gXG4tIFVwICYgZG93biBzcGVlZCBpbiBiL3MsIGtiL3MsIC4uLiBcbi0gVXAgJiBkb3duIHNwZWVkIGluIEIvcywgS0IvcywgLi4uIFxuLSBUb3RhbCBkb3dubG9hZHMgaW4gQiwgS0IsIC4uLiAoUmlnaHQgY2xpY2sgdG8gcmVzZXQgY291bnRlcikgXG5cbk1vdXNlIEV2ZW50cyBcbi0gTGVmdCBjbGljayB0byBjaGFuZ2UgbW9kZXMgXG4tIFJpZ2h0IGNsaWNrKGluIDEtNCBtb2Rlcyk6IFRvZ2dsZSB0aGUgdmlzaWJpbGl0eSBvZiB0b3RhbCBsb2FkZWQuIFxuLSBSaWdodCBjbGljayhpbiA1dGggbW9kZSk6IFJlc2V0IHRvdGFsIGRvd25sb2FkZWQuIFxuLSBSaWdodCBDbGljayhGb3VyIGNvbnNlY3V0aXZlIHRpbWVzKTogVG9nZ2xlIHRocm91Z2ggaG9yaXpvbnRhbC92ZXJ0aWNhbCBhbGlnbm1lbnQuIFxuLSBNaWRkbGUgY2xpY2s6IEN5Y2xlIHRocm91Z2ggdGhlIGZvbnQgc2l6ZXMuIiwKICAibmFtZSI6ICJOZXQgc3BlZWQgU2ltcGxpZmllZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xNCIsCiAgICAiMy4xNiIsCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcHJhdGVla21lZGlhL25ldHNwZWVkc2ltcGxpZmllZCIsCiAgInV1aWQiOiAibmV0c3BlZWRzaW1wbGlmaWVkQHByYXRlZWttZWRpYS5leHRlbnNpb24iLAogICJ2ZXJzaW9uIjogMzMKfQ=="}, "40": {"version": "33", "sha256": "146p9vbwdp1d9h36jsvi6gkyklig06ic6gswln5cn5rck3w6m7bd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgTmV0IFNwZWVkIGV4dGVuc2lvbiBXaXRoIExvYWRzIG9mIEN1c3RvbWl6YXRpb24uIEZvcmsgb2Ygc2ltcGxlbmV0c3BlZWQgXG4gXG5XaGF0J3MgbmV3XG5cdTI2MWUgQWRkIFVzZSBTeXN0ZW0gQ29sb3IgU2NoZW1lIG9wdGlvbiBcblx1MjYxZSBVcGRhdGUgUHJlZmVyZW5jZXMgbG9naWMgXG5cdTI2MWUgRmlsdGVyIG1vcmUgZGV2aWNlcyBmb3IgbmV0IHNwZWVkIGluZGljYXRvciBcblxuRnVsbCBDSEFOR0VMT0cgY2FuIGJlIGZvdW5kIG9uIGdpdGh1YiByZWxlYXNlcyBwYWdlIFxuXG5GZWF0dXJlcyBcbjEuIENsZWFuIFVJIFxuMi4gQWRqdXN0YWJsZSBSZWZyZXNoIHJhdGUgXG4zLiBQcmVmZXJlbmNlcyB0byBtYW5hZ2UgZXh0ZW5zaW9uIFxuNC4gVmVydGljYWwgQWxpZ25tZW50IFN1cHBvcnQgXG41LiBUd28gSWNvbiBzZXRzIGZvciBJbmRpY2F0b3JzIFxuXG5GZWF0dXJlIEhpZ2hsaWdodHMgZm9yIFByZWZlcmVuY2VzIFxuMS4gTG9jayBNb3VzZSBBY3Rpb25zIG9wdGlvbiBcbjIuIEFkdmFuY2UgUG9zaXRpb24gb3B0aW9ucyB0byBwaW5wb2ludCB3aGVyZSB0byBwbGFjZSB0aGUgaW5kaWNhdG9yIG9uIHRoZSBQYW5lbC4gXG4zLiBSZWZyZXNoIHRpbWUgb3B0aW9uIGJ5IHdoaWNoIHlvdSBjYW4gY2hhbmdlIHJlZnJlc2ggcmF0ZSB2YWx1ZSBiZXR3ZWVuIDEuMCBzZWMgdG8gMTAuMCBzZWMuIFxuNC4gU2hvdyBVcGxvYWQgRmlyc3Qgb3B0aW9uIHRvIHNob3cgdXBsb2FkIHNwZWVkIGZpcnN0IFxuNS4gQ29sb3IgQ3VzdG9taXphdGlvbnMgZm9yIHNwZWVkIGluZGljYXRvcnMgXG42LiBIaWRlIHdoZW4gRGlzY29ubmVjdGVkIG9wdGlvbiBcbjcuIFVzZSBTaG9ydGVuIFVuaXRzIG9wdGlvbiBcbjguIExpbWl0IFVuaXQgb3B0aW9uIGFuZCBtb3JlLi4uIFxuXG5Nb2RlcyBcbi0gVG90YWwgbmV0IHNwZWVkIGluIGIvcywga2IvcywgLi4uIFxuLSBUb3RhbCBuZXQgc3BlZWQgaW4gQi9zLCBLQi9zLCAuLi4gXG4tIFVwICYgZG93biBzcGVlZCBpbiBiL3MsIGtiL3MsIC4uLiBcbi0gVXAgJiBkb3duIHNwZWVkIGluIEIvcywgS0IvcywgLi4uIFxuLSBUb3RhbCBkb3dubG9hZHMgaW4gQiwgS0IsIC4uLiAoUmlnaHQgY2xpY2sgdG8gcmVzZXQgY291bnRlcikgXG5cbk1vdXNlIEV2ZW50cyBcbi0gTGVmdCBjbGljayB0byBjaGFuZ2UgbW9kZXMgXG4tIFJpZ2h0IGNsaWNrKGluIDEtNCBtb2Rlcyk6IFRvZ2dsZSB0aGUgdmlzaWJpbGl0eSBvZiB0b3RhbCBsb2FkZWQuIFxuLSBSaWdodCBjbGljayhpbiA1dGggbW9kZSk6IFJlc2V0IHRvdGFsIGRvd25sb2FkZWQuIFxuLSBSaWdodCBDbGljayhGb3VyIGNvbnNlY3V0aXZlIHRpbWVzKTogVG9nZ2xlIHRocm91Z2ggaG9yaXpvbnRhbC92ZXJ0aWNhbCBhbGlnbm1lbnQuIFxuLSBNaWRkbGUgY2xpY2s6IEN5Y2xlIHRocm91Z2ggdGhlIGZvbnQgc2l6ZXMuIiwKICAibmFtZSI6ICJOZXQgc3BlZWQgU2ltcGxpZmllZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4xNCIsCiAgICAiMy4xNiIsCiAgICAiMy4xOCIsCiAgICAiMy4yMCIsCiAgICAiMy4yMiIsCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcHJhdGVla21lZGlhL25ldHNwZWVkc2ltcGxpZmllZCIsCiAgInV1aWQiOiAibmV0c3BlZWRzaW1wbGlmaWVkQHByYXRlZWttZWRpYS5leHRlbnNpb24iLAogICJ2ZXJzaW9uIjogMzMKfQ=="}}}
, {"uuid": "cpupower-governors@icar.github.com", "name": "CPU Power Governor", "pname": "cpu-power-governor", "description": "Enables the ability to swap between kernel governors for the CPU useful for laptops.\n\nRequires: polkit, cpupower\nGithub: https://github.com/juxuanu/cpupower-governors", "link": "https://extensions.gnome.org/extension/3727/cpu-power-governor/", "shell_version_map": {"38": {"version": "2", "sha256": "1hb239w4cpz6yzs3pzd3hhrwswh6w5c5xw6dqn57m26cazh843qk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkVuYWJsZXMgdGhlIGFiaWxpdHkgdG8gc3dhcCBiZXR3ZWVuIGtlcm5lbCBnb3Zlcm5vcnMgZm9yIHRoZSBDUFUgdXNlZnVsIGZvciBsYXB0b3BzLlxuXG5SZXF1aXJlczogcG9sa2l0LCBjcHVwb3dlclxuR2l0aHViOiBodHRwczovL2dpdGh1Yi5jb20vanV4dWFudS9jcHVwb3dlci1nb3Zlcm5vcnMiLAogICJuYW1lIjogIkNQVSBQb3dlciBHb3Zlcm5vciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJjcHVwb3dlci1nb3Zlcm5vcnNAaWNhci5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
-, {"uuid": "floating-dock@nandoferreira_prof@hotmail.com", "name": "Floating Dock", "pname": "floating-dock", "description": "A Custom dash to dock fork, now you can change the margin and border radius of the dock.", "link": "https://extensions.gnome.org/extension/3730/floating-dock/", "shell_version_map": {"38": {"version": "1", "sha256": "1fsbj9v1j483x1dl40bbrfl88d2m00mryrl05s67cjd4mak5dm8z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgQ3VzdG9tIGRhc2ggdG8gZG9jayBmb3JrLCBub3cgeW91IGNhbiBjaGFuZ2UgdGhlIG1hcmdpbiBhbmQgYm9yZGVyIHJhZGl1cyBvZiB0aGUgZG9jay4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmbG9hdGluZ2RvY2siLAogICJuYW1lIjogIkZsb2F0aW5nIERvY2siLAogICJvcmlnaW5hbC1hdXRob3IiOiAibmFuZG9mZXJyZWlyYV9wcm9mQGhvdG1haWwuY29tIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZmVyLW1vcmVpcmEvZmxvYXRpbmctZG9jayIsCiAgInV1aWQiOiAiZmxvYXRpbmctZG9ja0BuYW5kb2ZlcnJlaXJhX3Byb2ZAaG90bWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMQp9"}}}
-, {"uuid": "tiling-assistant@leleat-on-github", "name": "Tiling Assistant", "pname": "tiling-assistant", "description": "An extension which adds a Windows-like snap assist to GNOME. It also expands GNOME's 2 column tiling design and adds more features. Check out the settings on how use this extension or on how to get help.", "link": "https://extensions.gnome.org/extension/3733/tiling-assistant/", "shell_version_map": {"38": {"version": "25", "sha256": "08kff0ksx2bybflzqjn45y8dwq4xxxicjns5kk22irxmj5x4pd17", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFuIGV4dGVuc2lvbiB3aGljaCBhZGRzIGEgV2luZG93cy1saWtlIHNuYXAgYXNzaXN0IHRvIEdOT01FLiBJdCBhbHNvIGV4cGFuZHMgR05PTUUncyAyIGNvbHVtbiB0aWxpbmcgZGVzaWduIGFuZCBhZGRzIG1vcmUgZmVhdHVyZXMuIENoZWNrIG91dCB0aGUgc2V0dGluZ3Mgb24gaG93IHVzZSB0aGlzIGV4dGVuc2lvbiBvciBvbiBob3cgdG8gZ2V0IGhlbHAuIiwKICAibmFtZSI6ICJUaWxpbmcgQXNzaXN0YW50IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9MZWxlYXQvVGlsaW5nLUFzc2lzdGFudCIsCiAgInV1aWQiOiAidGlsaW5nLWFzc2lzdGFudEBsZWxlYXQtb24tZ2l0aHViIiwKICAidmVyc2lvbiI6IDI1Cn0="}, "40": {"version": "25", "sha256": "08kff0ksx2bybflzqjn45y8dwq4xxxicjns5kk22irxmj5x4pd17", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFuIGV4dGVuc2lvbiB3aGljaCBhZGRzIGEgV2luZG93cy1saWtlIHNuYXAgYXNzaXN0IHRvIEdOT01FLiBJdCBhbHNvIGV4cGFuZHMgR05PTUUncyAyIGNvbHVtbiB0aWxpbmcgZGVzaWduIGFuZCBhZGRzIG1vcmUgZmVhdHVyZXMuIENoZWNrIG91dCB0aGUgc2V0dGluZ3Mgb24gaG93IHVzZSB0aGlzIGV4dGVuc2lvbiBvciBvbiBob3cgdG8gZ2V0IGhlbHAuIiwKICAibmFtZSI6ICJUaWxpbmcgQXNzaXN0YW50IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9MZWxlYXQvVGlsaW5nLUFzc2lzdGFudCIsCiAgInV1aWQiOiAidGlsaW5nLWFzc2lzdGFudEBsZWxlYXQtb24tZ2l0aHViIiwKICAidmVyc2lvbiI6IDI1Cn0="}}}
+, {"uuid": "floating-dock@nandoferreira_prof@hotmail.com", "name": "Floating Dock", "pname": "floating-dock", "description": "A Custom dash to dock fork, now you can change the margin and border radius of the dock. Now fully working in GNOME 40", "link": "https://extensions.gnome.org/extension/3730/floating-dock/", "shell_version_map": {"38": {"version": "1", "sha256": "14qb8avkdlllwq2hk827a91j94qrr2q0mf0m09hqds3na81ay2k2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgQ3VzdG9tIGRhc2ggdG8gZG9jayBmb3JrLCBub3cgeW91IGNhbiBjaGFuZ2UgdGhlIG1hcmdpbiBhbmQgYm9yZGVyIHJhZGl1cyBvZiB0aGUgZG9jay4gTm93IGZ1bGx5IHdvcmtpbmcgaW4gR05PTUUgNDAiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmbG9hdGluZ2RvY2siLAogICJuYW1lIjogIkZsb2F0aW5nIERvY2siLAogICJvcmlnaW5hbC1hdXRob3IiOiAibmFuZG9mZXJyZWlyYV9wcm9mQGhvdG1haWwuY29tIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZmVyLW1vcmVpcmEvZmxvYXRpbmctZG9jayIsCiAgInV1aWQiOiAiZmxvYXRpbmctZG9ja0BuYW5kb2ZlcnJlaXJhX3Byb2ZAaG90bWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMQp9"}, "40": {"version": "2", "sha256": "05i6l52y7svprkjpg84w8f15xhcys8g1bhyiz0f28x846bvp1kss", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgQ3VzdG9tIGRhc2ggdG8gZG9jayBmb3JrLCBub3cgeW91IGNhbiBjaGFuZ2UgdGhlIG1hcmdpbiBhbmQgYm9yZGVyIHJhZGl1cyBvZiB0aGUgZG9jay4gTm93IGZ1bGx5IHdvcmtpbmcgaW4gR05PTUUgNDAiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmbG9hdGluZ2RvY2siLAogICJuYW1lIjogIkZsb2F0aW5nIERvY2siLAogICJvcmlnaW5hbC1hdXRob3IiOiAibWljeGd4QGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZmVyLW1vcmVpcmEvZmxvYXRpbmctZG9jayIsCiAgInV1aWQiOiAiZmxvYXRpbmctZG9ja0BuYW5kb2ZlcnJlaXJhX3Byb2ZAaG90bWFpbC5jb20iLAogICJ2ZXJzaW9uIjogMgp9"}}}
+, {"uuid": "tiling-assistant@leleat-on-github", "name": "Tiling Assistant", "pname": "tiling-assistant", "description": "Expand GNOME's 2 column tiling and add a Windows-snap-assist-inspired popup...", "link": "https://extensions.gnome.org/extension/3733/tiling-assistant/", "shell_version_map": {"38": {"version": "23", "sha256": "1b9hpll26ggwhw4f52wgflzjfqksmyfy5wyg1rpz41lr1dmva8vk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkV4cGFuZCBHTk9NRSdzIDIgY29sdW1uIHRpbGluZyBhbmQgYWRkIGEgV2luZG93cy1zbmFwLWFzc2lzdC1pbnNwaXJlZCBwb3B1cC4uLiIsCiAgIm5hbWUiOiAiVGlsaW5nIEFzc2lzdGFudCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTGVsZWF0L1RpbGluZy1Bc3Npc3RhbnQiLAogICJ1dWlkIjogInRpbGluZy1hc3Npc3RhbnRAbGVsZWF0LW9uLWdpdGh1YiIsCiAgInZlcnNpb24iOiAyMwp9"}, "40": {"version": "26", "sha256": "1a7blmsljvqnabig1bzb00w04bpmszk9jynx97477df1fv65y850", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkV4cGFuZCBHTk9NRSdzIDIgY29sdW1uIHRpbGluZyBhbmQgYWRkIGEgV2luZG93cy1zbmFwLWFzc2lzdC1pbnNwaXJlZCBwb3B1cC4uLiIsCiAgIm5hbWUiOiAiVGlsaW5nIEFzc2lzdGFudCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy50aWxpbmctYXNzaXN0YW50IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9MZWxlYXQvVGlsaW5nLUFzc2lzdGFudCIsCiAgInV1aWQiOiAidGlsaW5nLWFzc2lzdGFudEBsZWxlYXQtb24tZ2l0aHViIiwKICAidmVyc2lvbiI6IDI2Cn0="}}}
, {"uuid": "airpods-battery-status@ju.wtf", "name": "Airpods Battery status", "pname": "airpods-battery-status", "description": "Show Airpods battery level in top bar\n\n/!\\ See requirements on repository page", "link": "https://extensions.gnome.org/extension/3736/airpods-battery-status/", "shell_version_map": {"38": {"version": "5", "sha256": "0m68va2yh1cs91wb9c1yzdxj9pr3abj5jsx9q05cyiibd2zmbl92", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgQWlycG9kcyBiYXR0ZXJ5IGxldmVsIGluIHRvcCBiYXJcblxuLyFcXCBTZWUgcmVxdWlyZW1lbnRzIG9uIHJlcG9zaXRvcnkgcGFnZSIsCiAgIm5hbWUiOiAiQWlycG9kcyBCYXR0ZXJ5IHN0YXR1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2RlbHBoaWtpL2dub21lLWFpcnBvZHMtYmF0dGVyeS1zdGF0dXMiLAogICJ1dWlkIjogImFpcnBvZHMtYmF0dGVyeS1zdGF0dXNAanUud3RmIiwKICAidmVyc2lvbiI6IDUKfQ=="}, "40": {"version": "5", "sha256": "0m68va2yh1cs91wb9c1yzdxj9pr3abj5jsx9q05cyiibd2zmbl92", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgQWlycG9kcyBiYXR0ZXJ5IGxldmVsIGluIHRvcCBiYXJcblxuLyFcXCBTZWUgcmVxdWlyZW1lbnRzIG9uIHJlcG9zaXRvcnkgcGFnZSIsCiAgIm5hbWUiOiAiQWlycG9kcyBCYXR0ZXJ5IHN0YXR1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2RlbHBoaWtpL2dub21lLWFpcnBvZHMtYmF0dGVyeS1zdGF0dXMiLAogICJ1dWlkIjogImFpcnBvZHMtYmF0dGVyeS1zdGF0dXNAanUud3RmIiwKICAidmVyc2lvbiI6IDUKfQ=="}}}
-, {"uuid": "hue-lights@chlumskyvaclav.gmail.com", "name": "Hue Lights", "pname": "hue-lights", "description": "This extension controls Philips Hue compatible lights using Philips Hue Bridge on your local network, it also allows controlling Philips Hue Sync Box. If you are experiencing an error on the upgrade, please log out and log in again.", "link": "https://extensions.gnome.org/extension/3737/hue-lights/", "shell_version_map": {"38": {"version": "15", "sha256": "0ga913n11rdnl5cnbbxf8q234jlyw053w9zzylgc5srcklz9g0yv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGNvbnRyb2xzIFBoaWxpcHMgSHVlIGNvbXBhdGlibGUgbGlnaHRzIHVzaW5nIFBoaWxpcHMgSHVlIEJyaWRnZSBvbiB5b3VyIGxvY2FsIG5ldHdvcmssIGl0IGFsc28gYWxsb3dzIGNvbnRyb2xsaW5nIFBoaWxpcHMgSHVlIFN5bmMgQm94LiBJZiB5b3UgYXJlIGV4cGVyaWVuY2luZyBhbiBlcnJvciBvbiB0aGUgdXBncmFkZSwgcGxlYXNlIGxvZyBvdXQgYW5kIGxvZyBpbiBhZ2Fpbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJodWUtbGlnaHRzIiwKICAibmFtZSI6ICJIdWUgTGlnaHRzIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImNobHVtc2t5dmFjbGF2QGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdmNobHVtL2h1ZS1saWdodHMiLAogICJ1dWlkIjogImh1ZS1saWdodHNAY2hsdW1za3l2YWNsYXYuZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE1Cn0="}, "40": {"version": "15", "sha256": "0ga913n11rdnl5cnbbxf8q234jlyw053w9zzylgc5srcklz9g0yv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGNvbnRyb2xzIFBoaWxpcHMgSHVlIGNvbXBhdGlibGUgbGlnaHRzIHVzaW5nIFBoaWxpcHMgSHVlIEJyaWRnZSBvbiB5b3VyIGxvY2FsIG5ldHdvcmssIGl0IGFsc28gYWxsb3dzIGNvbnRyb2xsaW5nIFBoaWxpcHMgSHVlIFN5bmMgQm94LiBJZiB5b3UgYXJlIGV4cGVyaWVuY2luZyBhbiBlcnJvciBvbiB0aGUgdXBncmFkZSwgcGxlYXNlIGxvZyBvdXQgYW5kIGxvZyBpbiBhZ2Fpbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJodWUtbGlnaHRzIiwKICAibmFtZSI6ICJIdWUgTGlnaHRzIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImNobHVtc2t5dmFjbGF2QGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdmNobHVtL2h1ZS1saWdodHMiLAogICJ1dWlkIjogImh1ZS1saWdodHNAY2hsdW1za3l2YWNsYXYuZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE1Cn0="}}}
+, {"uuid": "hue-lights@chlumskyvaclav.gmail.com", "name": "Hue Lights", "pname": "hue-lights", "description": "This extension controls Philips Hue compatible lights using Philips Hue Bridge on your local network, it also allows controlling Philips Hue Sync Box. If you are experiencing an error on the upgrade, please log out and log in again.", "link": "https://extensions.gnome.org/extension/3737/hue-lights/", "shell_version_map": {"38": {"version": "16", "sha256": "01z0ddq6f1ab6wzw25x6i3150gdfgiqc47srj1kdk8gapi3kzb2y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGNvbnRyb2xzIFBoaWxpcHMgSHVlIGNvbXBhdGlibGUgbGlnaHRzIHVzaW5nIFBoaWxpcHMgSHVlIEJyaWRnZSBvbiB5b3VyIGxvY2FsIG5ldHdvcmssIGl0IGFsc28gYWxsb3dzIGNvbnRyb2xsaW5nIFBoaWxpcHMgSHVlIFN5bmMgQm94LiBJZiB5b3UgYXJlIGV4cGVyaWVuY2luZyBhbiBlcnJvciBvbiB0aGUgdXBncmFkZSwgcGxlYXNlIGxvZyBvdXQgYW5kIGxvZyBpbiBhZ2Fpbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJodWUtbGlnaHRzIiwKICAibmFtZSI6ICJIdWUgTGlnaHRzIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImNobHVtc2t5dmFjbGF2QGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdmNobHVtL2h1ZS1saWdodHMiLAogICJ1dWlkIjogImh1ZS1saWdodHNAY2hsdW1za3l2YWNsYXYuZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE2Cn0="}, "40": {"version": "16", "sha256": "01z0ddq6f1ab6wzw25x6i3150gdfgiqc47srj1kdk8gapi3kzb2y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGNvbnRyb2xzIFBoaWxpcHMgSHVlIGNvbXBhdGlibGUgbGlnaHRzIHVzaW5nIFBoaWxpcHMgSHVlIEJyaWRnZSBvbiB5b3VyIGxvY2FsIG5ldHdvcmssIGl0IGFsc28gYWxsb3dzIGNvbnRyb2xsaW5nIFBoaWxpcHMgSHVlIFN5bmMgQm94LiBJZiB5b3UgYXJlIGV4cGVyaWVuY2luZyBhbiBlcnJvciBvbiB0aGUgdXBncmFkZSwgcGxlYXNlIGxvZyBvdXQgYW5kIGxvZyBpbiBhZ2Fpbi4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJodWUtbGlnaHRzIiwKICAibmFtZSI6ICJIdWUgTGlnaHRzIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImNobHVtc2t5dmFjbGF2QGdtYWlsLmNvbSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdmNobHVtL2h1ZS1saWdodHMiLAogICJ1dWlkIjogImh1ZS1saWdodHNAY2hsdW1za3l2YWNsYXYuZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDE2Cn0="}}}
, {"uuid": "compiz-alike-magic-lamp-effect@hermes83.github.com", "name": "Compiz alike magic lamp effect", "pname": "compiz-alike-magic-lamp-effect", "description": "Magic lamp effect inspired by the Compiz ones\n\nNB:\nIn case of update error please restart Gnome Shell (on Xorg press ALT+F2 then write r and press enter, on Wayland end the session and log in again)", "link": "https://extensions.gnome.org/extension/3740/compiz-alike-magic-lamp-effect/", "shell_version_map": {"38": {"version": "10", "sha256": "1mkykm2ql888bksgw94wgvwfqlqnzr19rn629a4k6hph4b5rw5sf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hZ2ljIGxhbXAgZWZmZWN0IGluc3BpcmVkIGJ5IHRoZSBDb21waXogb25lc1xuXG5OQjpcbkluIGNhc2Ugb2YgdXBkYXRlIGVycm9yIHBsZWFzZSByZXN0YXJ0IEdub21lIFNoZWxsIChvbiBYb3JnIHByZXNzIEFMVCtGMiB0aGVuIHdyaXRlIHIgYW5kIHByZXNzIGVudGVyLCBvbiBXYXlsYW5kIGVuZCB0aGUgc2Vzc2lvbiBhbmQgbG9nIGluIGFnYWluKSIsCiAgIm5hbWUiOiAiQ29tcGl6IGFsaWtlIG1hZ2ljIGxhbXAgZWZmZWN0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oZXJtZXM4My9jb21waXotYWxpa2UtbWFnaWMtbGFtcC1lZmZlY3QiLAogICJ1dWlkIjogImNvbXBpei1hbGlrZS1tYWdpYy1sYW1wLWVmZmVjdEBoZXJtZXM4My5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEwCn0="}, "40": {"version": "10", "sha256": "1mkykm2ql888bksgw94wgvwfqlqnzr19rn629a4k6hph4b5rw5sf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1hZ2ljIGxhbXAgZWZmZWN0IGluc3BpcmVkIGJ5IHRoZSBDb21waXogb25lc1xuXG5OQjpcbkluIGNhc2Ugb2YgdXBkYXRlIGVycm9yIHBsZWFzZSByZXN0YXJ0IEdub21lIFNoZWxsIChvbiBYb3JnIHByZXNzIEFMVCtGMiB0aGVuIHdyaXRlIHIgYW5kIHByZXNzIGVudGVyLCBvbiBXYXlsYW5kIGVuZCB0aGUgc2Vzc2lvbiBhbmQgbG9nIGluIGFnYWluKSIsCiAgIm5hbWUiOiAiQ29tcGl6IGFsaWtlIG1hZ2ljIGxhbXAgZWZmZWN0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oZXJtZXM4My9jb21waXotYWxpa2UtbWFnaWMtbGFtcC1lZmZlY3QiLAogICJ1dWlkIjogImNvbXBpei1hbGlrZS1tYWdpYy1sYW1wLWVmZmVjdEBoZXJtZXM4My5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEwCn0="}}}
, {"uuid": "latency-monitor@gitlab.labsatho.me", "name": "Latency Monitor", "pname": "latency-monitor", "description": "A simple extension for displaying latency information using pings in GNOME Shell.", "link": "https://extensions.gnome.org/extension/3746/latency-monitor/", "shell_version_map": {"38": {"version": "6", "sha256": "0k2y1qrq7irkn2c72pk4c5x4fwzaxkfp3jj7qvhzih6zmkifdzcd", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgc2ltcGxlIGV4dGVuc2lvbiBmb3IgZGlzcGxheWluZyBsYXRlbmN5IGluZm9ybWF0aW9uIHVzaW5nIHBpbmdzIGluIEdOT01FIFNoZWxsLiIsCiAgIm5hbWUiOiAiTGF0ZW5jeSBNb25pdG9yIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmxhdGVuY3ktbW9uaXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL3dhbGthZndhbGthL2dub21lLXNoZWxsLWV4dGVuc2lvbi1sYXRlbmN5LW1vbml0b3IiLAogICJ1dWlkIjogImxhdGVuY3ktbW9uaXRvckBnaXRsYWIubGFic2F0aG8ubWUiLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "the-circles-widget@xenlism.github.io", "name": "The Circles - Desktop Widget", "pname": "the-circles-desktop-widget", "description": "Show System Infomations on Desktop as Circles Desktop Widget\n\nmore info \nhttps://www.linuxuprising.com/2020/11/display-clock-ram-and-cpu-usage-as.html", "link": "https://extensions.gnome.org/extension/3748/the-circles-desktop-widget/", "shell_version_map": {"38": {"version": "6", "sha256": "0kxync9gdjgcfq3vfhf5z0065n30jw5y5jl00hdgarsh4pkbji04", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgU3lzdGVtIEluZm9tYXRpb25zIG9uIERlc2t0b3AgYXMgQ2lyY2xlcyBEZXNrdG9wIFdpZGdldFxuXG5tb3JlIGluZm8gXG5odHRwczovL3d3dy5saW51eHVwcmlzaW5nLmNvbS8yMDIwLzExL2Rpc3BsYXktY2xvY2stcmFtLWFuZC1jcHUtdXNhZ2UtYXMuaHRtbCIsCiAgImV4dGVuc2lvbi1pZCI6ICJ0aGUtY2lyY2xlcy13aWRnZXQiLAogICJuYW1lIjogIlRoZSBDaXJjbGVzIC0gRGVza3RvcCBXaWRnZXQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudGhlLWNpcmNsZXMtd2lkZ2V0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20veGVubGlzbS9zaG93dGltZSIsCiAgInV1aWQiOiAidGhlLWNpcmNsZXMtd2lkZ2V0QHhlbmxpc20uZ2l0aHViLmlvIiwKICAidmVyc2lvbiI6IDYKfQ=="}, "40": {"version": "12", "sha256": "0ngn00y97dqv667z47xahfv53dlb2asm0jbk9harlv4516jdrg0s", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgU3lzdGVtIEluZm9tYXRpb25zIG9uIERlc2t0b3AgYXMgQ2lyY2xlcyBEZXNrdG9wIFdpZGdldFxuXG5tb3JlIGluZm8gXG5odHRwczovL3d3dy5saW51eHVwcmlzaW5nLmNvbS8yMDIwLzExL2Rpc3BsYXktY2xvY2stcmFtLWFuZC1jcHUtdXNhZ2UtYXMuaHRtbCIsCiAgImV4dGVuc2lvbi1pZCI6ICJ0aGUtY2lyY2xlcy13aWRnZXQiLAogICJuYW1lIjogIlRoZSBDaXJjbGVzIC0gRGVza3RvcCBXaWRnZXQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMudGhlLWNpcmNsZXMtd2lkZ2V0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3hlbmxpc20vc2hvd3RpbWUiLAogICJ1dWlkIjogInRoZS1jaXJjbGVzLXdpZGdldEB4ZW5saXNtLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiAxMgp9"}}}
@@ -394,15 +401,14 @@
, {"uuid": "gnome-fuzzy-app-search@gnome-shell-extensions.Czarlie.gitlab.com", "name": "GNOME Fuzzy App Search", "pname": "gnome-fuzzy-app-search", "description": "Fuzzy application search results for Gnome Search", "link": "https://extensions.gnome.org/extension/3956/gnome-fuzzy-app-search/", "shell_version_map": {"38": {"version": "3", "sha256": "0jxh2wcckwnijgabg9k7b7mi785j63pjkbjya4pbvnmiw4n4qbn0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvciI6ICJDemFybGllIDxsZWVlNDlAZ21haWwuY29tPiIsCiAgImF1dGhvci1odG1sIjogIkN6YXJsaWUgJmx0OzxhIGhyZWY9XCJtYWlsdG86bGVlZTQ5Ljd4N0BnbWFpbC5jb21cIj5sZWVlNDkuN3g3QGdtYWlsLmNvbTwvYT4mZ3Q7IiwKICAiZGVzY3JpcHRpb24iOiAiRnV6enkgYXBwbGljYXRpb24gc2VhcmNoIHJlc3VsdHMgZm9yIEdub21lIFNlYXJjaCIsCiAgImRlc2NyaXB0aW9uLWh0bWwiOiAiPGEgaHJlZj1cImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0FwcHJveGltYXRlX3N0cmluZ19tYXRjaGluZ1wiPkZ1enp5PC9hPiBhcHBsaWNhdGlvbiBzZWFyY2ggcmVzdWx0cyBmb3IgPGEgaHJlZj1cImh0dHBzOi8vZGV2ZWxvcGVyLmdub21lLm9yZy9TZWFyY2hQcm92aWRlci9cIj5Hbm9tZSBTZWFyY2g8L2E+LiIsCiAgImVtYWlsIjogImxlZWU0OS43eDdAZ21haWwuY29tIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtZnV6enktYXBwLXNlYXJjaCIsCiAgImxpY2Vuc2UiOiAiR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgdjMuMCIsCiAgImxpY2Vuc2UtaHRtbCI6ICJUaGlzIHByb2dyYW0gY29tZXMgd2l0aCBBQlNPTFVURUxZIE5PIFdBUlJBTlRZLlxuU2VlIHRoZSA8YSBocmVmPVwiaHR0cHM6Ly93d3cuZ251Lm9yZy9saWNlbnNlcy9ncGwtMy4wLmh0bWxcIj5HTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZSB2My4wPC9hPiBmb3IgZGV0YWlscy4iLAogICJuYW1lIjogIkdOT01FIEZ1enp5IEFwcCBTZWFyY2giLAogICJvcmlnaW5hbC1hdXRob3IiOiAiRnJhbmpvIEZpbG8gPGZmZmlsbzY2NkBnbWFpbC5jb20+IiwKICAib3JpZ2luYWwtYXV0aG9yLWh0bWwiOiAiRnJhbmpvIEZpbG8gJmx0OzxhIGhyZWY9XCJtYWlsdG86ZmZmaWxvNjY2QGdtYWlsLmNvbVwiPmZmZmlsbzY2NkBnbWFpbC5jb208L2E+Jmd0OyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5nbm9tZS1mdXp6eS1hcHAtc2VhcmNoIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjIxLjIiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL0N6YXJsaWUvZ25vbWUtZnV6enktYXBwLXNlYXJjaCIsCiAgInV1aWQiOiAiZ25vbWUtZnV6enktYXBwLXNlYXJjaEBnbm9tZS1zaGVsbC1leHRlbnNpb25zLkN6YXJsaWUuZ2l0bGFiLmNvbSIsCiAgInZlcnNpb24iOiAzCn0="}, "40": {"version": "3", "sha256": "0jxh2wcckwnijgabg9k7b7mi785j63pjkbjya4pbvnmiw4n4qbn0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvciI6ICJDemFybGllIDxsZWVlNDlAZ21haWwuY29tPiIsCiAgImF1dGhvci1odG1sIjogIkN6YXJsaWUgJmx0OzxhIGhyZWY9XCJtYWlsdG86bGVlZTQ5Ljd4N0BnbWFpbC5jb21cIj5sZWVlNDkuN3g3QGdtYWlsLmNvbTwvYT4mZ3Q7IiwKICAiZGVzY3JpcHRpb24iOiAiRnV6enkgYXBwbGljYXRpb24gc2VhcmNoIHJlc3VsdHMgZm9yIEdub21lIFNlYXJjaCIsCiAgImRlc2NyaXB0aW9uLWh0bWwiOiAiPGEgaHJlZj1cImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0FwcHJveGltYXRlX3N0cmluZ19tYXRjaGluZ1wiPkZ1enp5PC9hPiBhcHBsaWNhdGlvbiBzZWFyY2ggcmVzdWx0cyBmb3IgPGEgaHJlZj1cImh0dHBzOi8vZGV2ZWxvcGVyLmdub21lLm9yZy9TZWFyY2hQcm92aWRlci9cIj5Hbm9tZSBTZWFyY2g8L2E+LiIsCiAgImVtYWlsIjogImxlZWU0OS43eDdAZ21haWwuY29tIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtZnV6enktYXBwLXNlYXJjaCIsCiAgImxpY2Vuc2UiOiAiR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgdjMuMCIsCiAgImxpY2Vuc2UtaHRtbCI6ICJUaGlzIHByb2dyYW0gY29tZXMgd2l0aCBBQlNPTFVURUxZIE5PIFdBUlJBTlRZLlxuU2VlIHRoZSA8YSBocmVmPVwiaHR0cHM6Ly93d3cuZ251Lm9yZy9saWNlbnNlcy9ncGwtMy4wLmh0bWxcIj5HTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZSB2My4wPC9hPiBmb3IgZGV0YWlscy4iLAogICJuYW1lIjogIkdOT01FIEZ1enp5IEFwcCBTZWFyY2giLAogICJvcmlnaW5hbC1hdXRob3IiOiAiRnJhbmpvIEZpbG8gPGZmZmlsbzY2NkBnbWFpbC5jb20+IiwKICAib3JpZ2luYWwtYXV0aG9yLWh0bWwiOiAiRnJhbmpvIEZpbG8gJmx0OzxhIGhyZWY9XCJtYWlsdG86ZmZmaWxvNjY2QGdtYWlsLmNvbVwiPmZmZmlsbzY2NkBnbWFpbC5jb208L2E+Jmd0OyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5nbm9tZS1mdXp6eS1hcHAtc2VhcmNoIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjIxLjIiLAogICAgIjMuMjYiLAogICAgIjMuMjgiLAogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL0N6YXJsaWUvZ25vbWUtZnV6enktYXBwLXNlYXJjaCIsCiAgInV1aWQiOiAiZ25vbWUtZnV6enktYXBwLXNlYXJjaEBnbm9tZS1zaGVsbC1leHRlbnNpb25zLkN6YXJsaWUuZ2l0bGFiLmNvbSIsCiAgInZlcnNpb24iOiAzCn0="}}}
, {"uuid": "e-ink-mode@fujimo-t.github.io", "name": "E Ink Mode", "pname": "e-ink-mode", "description": "# GNOME Shell Extension: E Ink Mode\nMake desktop suitable for E Ink monitors.\n\n## Features\n* Switch Shell, GTK and icon theme to light high contrast one\n* Disable animations\n* Change background to white color\n\n## Dependencies\n* `High Constrast` theme for GTK and icon", "link": "https://extensions.gnome.org/extension/3957/e-ink-mode/", "shell_version_map": {"40": {"version": "3", "sha256": "1bzcv10c9wd2qga4z3swlyf0v0bv1s0j90vjxlmvylfr1nnbsjc9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIiMgR05PTUUgU2hlbGwgRXh0ZW5zaW9uOiBFIEluayBNb2RlXG5NYWtlIGRlc2t0b3Agc3VpdGFibGUgZm9yIEUgSW5rIG1vbml0b3JzLlxuXG4jIyBGZWF0dXJlc1xuKiBTd2l0Y2ggU2hlbGwsIEdUSyBhbmQgaWNvbiB0aGVtZSB0byBsaWdodCBoaWdoIGNvbnRyYXN0IG9uZVxuKiBEaXNhYmxlIGFuaW1hdGlvbnNcbiogQ2hhbmdlIGJhY2tncm91bmQgdG8gd2hpdGUgY29sb3JcblxuIyMgRGVwZW5kZW5jaWVzXG4qIGBIaWdoIENvbnN0cmFzdGAgdGhlbWUgZm9yIEdUSyBhbmQgaWNvbiIsCiAgIm5hbWUiOiAiRSBJbmsgTW9kZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mdWppbW8tdC9nbm9tZS1zaGVsbC1leHRlbnNpb24tZS1pbmstbW9kZSIsCiAgInV1aWQiOiAiZS1pbmstbW9kZUBmdWppbW8tdC5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogMwp9"}}}
, {"uuid": "transparent-top-bar@ftpix.com", "name": "Transparent Top Bar (Adjustable transparency)", "pname": "transparent-top-bar-adjustable-transparency", "description": "Fork of: https://github.com/zhanghai/gnome-shell-extension-transparent-top-bar\n\nBring back the transparent top bar in GNOME Shell with adjustable transparency.\n\nDoes not work well with custom shell themes.", "link": "https://extensions.gnome.org/extension/3960/transparent-top-bar-adjustable-transparency/", "shell_version_map": {"38": {"version": "5", "sha256": "09mym8h6lpb53b18c72vzl2y7myl1xg1lyg9jryf3nijna9adnr9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZvcmsgb2Y6IGh0dHBzOi8vZ2l0aHViLmNvbS96aGFuZ2hhaS9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJhbnNwYXJlbnQtdG9wLWJhclxuXG5CcmluZyBiYWNrIHRoZSB0cmFuc3BhcmVudCB0b3AgYmFyIGluIEdOT01FIFNoZWxsIHdpdGggYWRqdXN0YWJsZSB0cmFuc3BhcmVuY3kuXG5cbkRvZXMgbm90IHdvcmsgd2VsbCB3aXRoIGN1c3RvbSBzaGVsbCB0aGVtZXMuIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIChBZGp1c3RhYmxlIHRyYW5zcGFyZW5jeSkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbGFtYXJpb3MvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRyYW5zcGFyZW50LXRvcC1iYXIiLAogICJ1dWlkIjogInRyYW5zcGFyZW50LXRvcC1iYXJAZnRwaXguY29tIiwKICAidmVyc2lvbiI6IDUKfQ=="}, "40": {"version": "5", "sha256": "09mym8h6lpb53b18c72vzl2y7myl1xg1lyg9jryf3nijna9adnr9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZvcmsgb2Y6IGh0dHBzOi8vZ2l0aHViLmNvbS96aGFuZ2hhaS9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJhbnNwYXJlbnQtdG9wLWJhclxuXG5CcmluZyBiYWNrIHRoZSB0cmFuc3BhcmVudCB0b3AgYmFyIGluIEdOT01FIFNoZWxsIHdpdGggYWRqdXN0YWJsZSB0cmFuc3BhcmVuY3kuXG5cbkRvZXMgbm90IHdvcmsgd2VsbCB3aXRoIGN1c3RvbSBzaGVsbCB0aGVtZXMuIiwKICAibmFtZSI6ICJUcmFuc3BhcmVudCBUb3AgQmFyIChBZGp1c3RhYmxlIHRyYW5zcGFyZW5jeSkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbGFtYXJpb3MvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXRyYW5zcGFyZW50LXRvcC1iYXIiLAogICJ1dWlkIjogInRyYW5zcGFyZW50LXRvcC1iYXJAZnRwaXguY29tIiwKICAidmVyc2lvbiI6IDUKfQ=="}}}
-, {"uuid": "improved-workspace-indicator@michaelaquilina.github.io", "name": "Improved Workspace Indicator", "pname": "improved-workspace-indicator", "description": "Slightly improved workspace indicator that shows both current and in use workspaces similar to i3/sway", "link": "https://extensions.gnome.org/extension/3968/improved-workspace-indicator/", "shell_version_map": {"38": {"version": "4", "sha256": "1893wqag3xz0jajg50cdbmmk0g7m3i34nbc4l33w69h2j2hdx57q", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNsaWdodGx5IGltcHJvdmVkIHdvcmtzcGFjZSBpbmRpY2F0b3IgdGhhdCBzaG93cyBib3RoIGN1cnJlbnQgYW5kIGluIHVzZSB3b3Jrc3BhY2VzIHNpbWlsYXIgdG8gaTMvc3dheSIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgV29ya3NwYWNlIEluZGljYXRvciIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAibWljaGFlbGFxdWlsaW5hQGdtYWlsLmNvbSIKICBdLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTWljaGFlbEFxdWlsaW5hL2ltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3JAbWljaGFlbGFxdWlsaW5hLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "1893wqag3xz0jajg50cdbmmk0g7m3i34nbc4l33w69h2j2hdx57q", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNsaWdodGx5IGltcHJvdmVkIHdvcmtzcGFjZSBpbmRpY2F0b3IgdGhhdCBzaG93cyBib3RoIGN1cnJlbnQgYW5kIGluIHVzZSB3b3Jrc3BhY2VzIHNpbWlsYXIgdG8gaTMvc3dheSIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgV29ya3NwYWNlIEluZGljYXRvciIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAibWljaGFlbGFxdWlsaW5hQGdtYWlsLmNvbSIKICBdLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTWljaGFlbEFxdWlsaW5hL2ltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3JAbWljaGFlbGFxdWlsaW5hLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA0Cn0="}}}
+, {"uuid": "improved-workspace-indicator@michaelaquilina.github.io", "name": "Improved Workspace Indicator", "pname": "improved-workspace-indicator", "description": "Slightly improved workspace indicator that shows both current and in use workspaces similar to i3/sway", "link": "https://extensions.gnome.org/extension/3968/improved-workspace-indicator/", "shell_version_map": {"38": {"version": "8", "sha256": "0jgs5hl6qh56j6zash5n1gbgn93qwcf75fi7mrr80bdkyay0wv5j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNsaWdodGx5IGltcHJvdmVkIHdvcmtzcGFjZSBpbmRpY2F0b3IgdGhhdCBzaG93cyBib3RoIGN1cnJlbnQgYW5kIGluIHVzZSB3b3Jrc3BhY2VzIHNpbWlsYXIgdG8gaTMvc3dheSIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgV29ya3NwYWNlIEluZGljYXRvciIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAibWljaGFlbGFxdWlsaW5hQGdtYWlsLmNvbSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuaW1wcm92ZWQtd29ya3NwYWNlLWluZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTWljaGFlbEFxdWlsaW5hL2ltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3JAbWljaGFlbGFxdWlsaW5hLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA4Cn0="}, "40": {"version": "8", "sha256": "0jgs5hl6qh56j6zash5n1gbgn93qwcf75fi7mrr80bdkyay0wv5j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNsaWdodGx5IGltcHJvdmVkIHdvcmtzcGFjZSBpbmRpY2F0b3IgdGhhdCBzaG93cyBib3RoIGN1cnJlbnQgYW5kIGluIHVzZSB3b3Jrc3BhY2VzIHNpbWlsYXIgdG8gaTMvc3dheSIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgV29ya3NwYWNlIEluZGljYXRvciIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiBbCiAgICAibWljaGFlbGFxdWlsaW5hQGdtYWlsLmNvbSIKICBdLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuaW1wcm92ZWQtd29ya3NwYWNlLWluZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTWljaGFlbEFxdWlsaW5hL2ltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3IiLAogICJ1dWlkIjogImltcHJvdmVkLXdvcmtzcGFjZS1pbmRpY2F0b3JAbWljaGFlbGFxdWlsaW5hLmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA4Cn0="}}}
, {"uuid": "guillotine@fopdoodle.net", "name": "Guillotine", "pname": "guillotine", "description": "Guillotine is a gnome extension designed for efficiently carrying out executions of commands from a customizable menu. Simply speaking: it is a highly customizable menu that enables you to launch commands and toggle services.", "link": "https://extensions.gnome.org/extension/3981/guillotine/", "shell_version_map": {"38": {"version": "3", "sha256": "0jpm8q47naxv5ld9yx6jjsnlm5snlqybilkmr8kvxq1an6pj36yw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkd1aWxsb3RpbmUgaXMgYSBnbm9tZSBleHRlbnNpb24gZGVzaWduZWQgZm9yIGVmZmljaWVudGx5IGNhcnJ5aW5nIG91dCBleGVjdXRpb25zIG9mIGNvbW1hbmRzIGZyb20gYSBjdXN0b21pemFibGUgbWVudS4gU2ltcGx5IHNwZWFraW5nOiBpdCBpcyBhIGhpZ2hseSBjdXN0b21pemFibGUgbWVudSB0aGF0IGVuYWJsZXMgeW91IHRvIGxhdW5jaCBjb21tYW5kcyBhbmQgdG9nZ2xlIHNlcnZpY2VzLiIsCiAgIm5hbWUiOiAiR3VpbGxvdGluZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5ndWlsbG90aW5lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZW50ZTc2L2d1aWxsb3RpbmUvIiwKICAidXVpZCI6ICJndWlsbG90aW5lQGZvcGRvb2RsZS5uZXQiLAogICJ2ZXJzaW9uIjogMwp9"}, "40": {"version": "6", "sha256": "06f3k0g96a29s5nrh5h1qk6inai65sf44i12bfsgdh33hrdfpayj", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkd1aWxsb3RpbmUgaXMgYSBnbm9tZSBleHRlbnNpb24gZGVzaWduZWQgZm9yIGVmZmljaWVudGx5IGNhcnJ5aW5nIG91dCBleGVjdXRpb25zIG9mIGNvbW1hbmRzIGZyb20gYSBjdXN0b21pemFibGUgbWVudS4gU2ltcGx5IHNwZWFraW5nOiBpdCBpcyBhIGhpZ2hseSBjdXN0b21pemFibGUgbWVudSB0aGF0IGVuYWJsZXMgeW91IHRvIGxhdW5jaCBjb21tYW5kcyBhbmQgdG9nZ2xlIHNlcnZpY2VzLiIsCiAgIm5hbWUiOiAiR3VpbGxvdGluZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5ndWlsbG90aW5lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2VudGU3Ni9ndWlsbG90aW5lLyIsCiAgInV1aWQiOiAiZ3VpbGxvdGluZUBmb3Bkb29kbGUubmV0IiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
-, {"uuid": "extensions-in-system-menu@leleat-on-github", "name": "Extensions & Tweaks in system menu", "pname": "extensions-in-system-menu", "description": "No longer maintained. Starting with GNOME 40 'Tweaks-in-system-menu' also supports the extensions app. Please use that https://extensions.gnome.org/extension/1653/tweaks-in-system-menu/\n\n--------------------\n\nPut the Extensions and/or the Tweaks app into the system menu.", "link": "https://extensions.gnome.org/extension/3984/extensions-in-system-menu/", "shell_version_map": {"38": {"version": "6", "sha256": "0hdjgf4ancpj6lsqd6gf2lp7jf3zan16yrfap5g4hnbb72ihbpvc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIGxvbmdlciBtYWludGFpbmVkLiBTdGFydGluZyB3aXRoIEdOT01FIDQwICdUd2Vha3MtaW4tc3lzdGVtLW1lbnUnIGFsc28gc3VwcG9ydHMgdGhlIGV4dGVuc2lvbnMgYXBwLiBQbGVhc2UgdXNlIHRoYXQgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMTY1My90d2Vha3MtaW4tc3lzdGVtLW1lbnUvXG5cbi0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cblB1dCB0aGUgRXh0ZW5zaW9ucyBhbmQvb3IgdGhlIFR3ZWFrcyBhcHAgaW50byB0aGUgc3lzdGVtIG1lbnUuIiwKICAibmFtZSI6ICJFeHRlbnNpb25zICYgVHdlYWtzIGluIHN5c3RlbSBtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIiwKICAgICI0MC5iZXRhIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTGVsZWF0L2V4dGVuc2lvbnMtaW4tc3lzdGVtLW1lbnUiLAogICJ1dWlkIjogImV4dGVuc2lvbnMtaW4tc3lzdGVtLW1lbnVAbGVsZWF0LW9uLWdpdGh1YiIsCiAgInZlcnNpb24iOiA2Cn0="}, "40": {"version": "6", "sha256": "0hdjgf4ancpj6lsqd6gf2lp7jf3zan16yrfap5g4hnbb72ihbpvc", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIGxvbmdlciBtYWludGFpbmVkLiBTdGFydGluZyB3aXRoIEdOT01FIDQwICdUd2Vha3MtaW4tc3lzdGVtLW1lbnUnIGFsc28gc3VwcG9ydHMgdGhlIGV4dGVuc2lvbnMgYXBwLiBQbGVhc2UgdXNlIHRoYXQgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMTY1My90d2Vha3MtaW4tc3lzdGVtLW1lbnUvXG5cbi0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cblB1dCB0aGUgRXh0ZW5zaW9ucyBhbmQvb3IgdGhlIFR3ZWFrcyBhcHAgaW50byB0aGUgc3lzdGVtIG1lbnUuIiwKICAibmFtZSI6ICJFeHRlbnNpb25zICYgVHdlYWtzIGluIHN5c3RlbSBtZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4wIiwKICAgICI0MC5iZXRhIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTGVsZWF0L2V4dGVuc2lvbnMtaW4tc3lzdGVtLW1lbnUiLAogICJ1dWlkIjogImV4dGVuc2lvbnMtaW4tc3lzdGVtLW1lbnVAbGVsZWF0LW9uLWdpdGh1YiIsCiAgInZlcnNpb24iOiA2Cn0="}}}
, {"uuid": "shuzhi@tuberry", "name": "Shu Zhi", "pname": "shu-zhi", "description": "A wallpaper generation extension for gnome shell, inspired by Jizhi\n\nFor support, please report any issues via the homepage link below.", "link": "https://extensions.gnome.org/extension/3985/shu-zhi/", "shell_version_map": {"38": {"version": "7", "sha256": "0fwncbkg7xpijydpwp3p8qx6czgvrxh7krasgjcsj4g35nh65i7k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd2FsbHBhcGVyIGdlbmVyYXRpb24gZXh0ZW5zaW9uIGZvciBnbm9tZSBzaGVsbCwgaW5zcGlyZWQgYnkgSml6aGlcblxuRm9yIHN1cHBvcnQsIHBsZWFzZSByZXBvcnQgYW55IGlzc3VlcyB2aWEgdGhlIGhvbWVwYWdlIGxpbmsgYmVsb3cuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAic2h1emhpIiwKICAibmFtZSI6ICJTaHUgWmhpIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnNodXpoaSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3R1YmVycnkvc2h1emhpIiwKICAidXVpZCI6ICJzaHV6aGlAdHViZXJyeSIsCiAgInZlcnNpb24iOiA3Cn0="}, "40": {"version": "17", "sha256": "13b1lsig8rbaydv0d799w9as6r53j29zxx7hgpshyw7svjshwrrb", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgd2FsbHBhcGVyIGdlbmVyYXRpb24gZXh0ZW5zaW9uIGZvciBnbm9tZSBzaGVsbCwgaW5zcGlyZWQgYnkgSml6aGlcblxuRm9yIHN1cHBvcnQsIHBsZWFzZSByZXBvcnQgYW55IGlzc3VlcyB2aWEgdGhlIGhvbWVwYWdlIGxpbmsgYmVsb3cuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXNodXpoaSIsCiAgIm5hbWUiOiAiU2h1IFpoaSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zaHV6aGkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdHViZXJyeS9zaHV6aGkiLAogICJ1dWlkIjogInNodXpoaUB0dWJlcnJ5IiwKICAidmVyc2lvbiI6IDE3Cn0="}}}
, {"uuid": "zilence@apankowski.github.com", "name": "Zilence", "pname": "zilence", "description": "Turns off notifications while sharing screen during a Zoom call", "link": "https://extensions.gnome.org/extension/3988/zilence/", "shell_version_map": {"38": {"version": "1", "sha256": "09j017cpiimqi97rk2zp1bidrvf026dv469w80wiikbq67r22c9w", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNvbW1pdCI6ICIzNzBiODIzYmQ5NTM4MDY4MThmMmYwNzhiNGNmZWYyODIzMmVjOTMwIiwKICAiZGVzY3JpcHRpb24iOiAiVHVybnMgb2ZmIG5vdGlmaWNhdGlvbnMgd2hpbGUgc2hhcmluZyBzY3JlZW4gZHVyaW5nIGEgWm9vbSBjYWxsIiwKICAibmFtZSI6ICJaaWxlbmNlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYXBhbmtvd3NraS96aWxlbmNlIiwKICAidXVpZCI6ICJ6aWxlbmNlQGFwYW5rb3dza2kuZ2l0aHViLmNvbSIsCiAgInZlcnNpb24iOiAxCn0="}}}
, {"uuid": "bluetooth-battery@michalw.github.com", "name": "Bluetooth battery indicator", "pname": "bluetooth-battery", "description": "Bluetooth battery indicator", "link": "https://extensions.gnome.org/extension/3991/bluetooth-battery/", "shell_version_map": {"38": {"version": "16", "sha256": "1galmr8r1417rx42rdp6qhhswqn540rggf8hrkh02vg79h9iclv7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJsdWV0b290aCBiYXR0ZXJ5IGluZGljYXRvciIsCiAgImdldHRleHQtZG9tYWluIjogImJsdWV0b290aF9iYXR0ZXJ5X2luZGljYXRvciIsCiAgIm5hbWUiOiAiQmx1ZXRvb3RoIGJhdHRlcnkgaW5kaWNhdG9yIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmJsdWV0b290aF9iYXR0ZXJ5X2luZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9NaWNoYWxXL2dub21lLWJsdWV0b290aC1iYXR0ZXJ5LWluZGljYXRvciIsCiAgInV1aWQiOiAiYmx1ZXRvb3RoLWJhdHRlcnlAbWljaGFsdy5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDE2Cn0="}, "40": {"version": "16", "sha256": "1galmr8r1417rx42rdp6qhhswqn540rggf8hrkh02vg79h9iclv7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkJsdWV0b290aCBiYXR0ZXJ5IGluZGljYXRvciIsCiAgImdldHRleHQtZG9tYWluIjogImJsdWV0b290aF9iYXR0ZXJ5X2luZGljYXRvciIsCiAgIm5hbWUiOiAiQmx1ZXRvb3RoIGJhdHRlcnkgaW5kaWNhdG9yIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmJsdWV0b290aF9iYXR0ZXJ5X2luZGljYXRvciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9NaWNoYWxXL2dub21lLWJsdWV0b290aC1iYXR0ZXJ5LWluZGljYXRvciIsCiAgInV1aWQiOiAiYmx1ZXRvb3RoLWJhdHRlcnlAbWljaGFsdy5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDE2Cn0="}}}
, {"uuid": "gnome-extension-all-ip-addresses@havekes.eu", "name": "All IP Addresses", "pname": "all-ip-addresses", "description": "Show IP addresses for LAN, WAN IPv6 and VPN in the GNOME panel. Click on the address to cycle trough different interfaces.", "link": "https://extensions.gnome.org/extension/3994/all-ip-addresses/", "shell_version_map": {"38": {"version": "2", "sha256": "1vas3mvgmi28dc3lzghbwgp66p0daa1kc4m8ayr6dmc618ry2nj0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgSVAgYWRkcmVzc2VzIGZvciBMQU4sIFdBTiBJUHY2IGFuZCBWUE4gaW4gdGhlIEdOT01FIHBhbmVsLiBDbGljayBvbiB0aGUgYWRkcmVzcyB0byBjeWNsZSB0cm91Z2ggZGlmZmVyZW50IGludGVyZmFjZXMuIiwKICAibmFtZSI6ICJBbGwgSVAgQWRkcmVzc2VzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcGhhdmVrZXMvZ25vbWUtZXh0ZW5zaW9uLWFsbC1pcC1hZGRyZXNzZXMiLAogICJ1dWlkIjogImdub21lLWV4dGVuc2lvbi1hbGwtaXAtYWRkcmVzc2VzQGhhdmVrZXMuZXUiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "app-grid-tweaks@Selenium-H", "name": "App Grid Tweaks", "pname": "app-grid-tweaks", "description": "Customize the application grid view.\n\nSet the rows, columns and the app icon size for a particular configuration to work.\nIf the screen space is out numbered, reduce the icon size to fit all the rows and columns.\nOr reduce the number of rows and columns.\n\nPress the Refresh button on the left of header bar to apply changes\n\nIn case of any errors due to update, Please try resetting the extension. Reset button is present in Extension Preferences window in Top Right Application Menu > Preferences > Reset App Grid Tweaks Extension. ", "link": "https://extensions.gnome.org/extension/3997/app-grid-tweaks/", "shell_version_map": {"38": {"version": "3", "sha256": "1zszxj4d4vdahc369jsk1544f6zrjnilpxa4ihdfx6ci3rgc16p6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNvbW1lbnQiOiAiQ3VzdG9taXplIHRoZSBhcHBsaWNhdGlvbiBncmlkIHZpZXcuIiwKICAiZGVzY3JpcHRpb24iOiAiQ3VzdG9taXplIHRoZSBhcHBsaWNhdGlvbiBncmlkIHZpZXcuXG5cblNldCB0aGUgcm93cywgY29sdW1ucyBhbmQgdGhlIGFwcCBpY29uIHNpemUgZm9yIGEgcGFydGljdWxhciBjb25maWd1cmF0aW9uIHRvIHdvcmsuXG5JZiB0aGUgc2NyZWVuIHNwYWNlIGlzIG91dCBudW1iZXJlZCwgcmVkdWNlIHRoZSBpY29uIHNpemUgdG8gZml0IGFsbCB0aGUgcm93cyBhbmQgY29sdW1ucy5cbk9yIHJlZHVjZSB0aGUgbnVtYmVyIG9mIHJvd3MgYW5kIGNvbHVtbnMuXG5cblByZXNzIHRoZSBSZWZyZXNoIGJ1dHRvbiBvbiB0aGUgbGVmdCBvZiBoZWFkZXIgYmFyIHRvIGFwcGx5IGNoYW5nZXNcblxuSW4gY2FzZSBvZiBhbnkgZXJyb3JzIGR1ZSB0byB1cGRhdGUsIFBsZWFzZSB0cnkgcmVzZXR0aW5nIHRoZSBleHRlbnNpb24uICBSZXNldCBidXR0b24gaXMgcHJlc2VudCBpbiBFeHRlbnNpb24gUHJlZmVyZW5jZXMgd2luZG93IGluIFRvcCBSaWdodCBBcHBsaWNhdGlvbiBNZW51ID4gUHJlZmVyZW5jZXMgPiBSZXNldCBBcHAgR3JpZCBUd2Vha3MgRXh0ZW5zaW9uLiAgIiwKICAibmFtZSI6ICJBcHAgR3JpZCBUd2Vha3MiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYXBwLWdyaWQtdHdlYWtzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJzdGF0dXMiOiAiIiwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9TZWxlbml1bS1IL0FwcC1HcmlkLVR3ZWFrcyIsCiAgInV1aWQiOiAiYXBwLWdyaWQtdHdlYWtzQFNlbGVuaXVtLUgiLAogICJ2ZXJzaW9uIjogMwp9"}, "40": {"version": "3", "sha256": "1zszxj4d4vdahc369jsk1544f6zrjnilpxa4ihdfx6ci3rgc16p6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImNvbW1lbnQiOiAiQ3VzdG9taXplIHRoZSBhcHBsaWNhdGlvbiBncmlkIHZpZXcuIiwKICAiZGVzY3JpcHRpb24iOiAiQ3VzdG9taXplIHRoZSBhcHBsaWNhdGlvbiBncmlkIHZpZXcuXG5cblNldCB0aGUgcm93cywgY29sdW1ucyBhbmQgdGhlIGFwcCBpY29uIHNpemUgZm9yIGEgcGFydGljdWxhciBjb25maWd1cmF0aW9uIHRvIHdvcmsuXG5JZiB0aGUgc2NyZWVuIHNwYWNlIGlzIG91dCBudW1iZXJlZCwgcmVkdWNlIHRoZSBpY29uIHNpemUgdG8gZml0IGFsbCB0aGUgcm93cyBhbmQgY29sdW1ucy5cbk9yIHJlZHVjZSB0aGUgbnVtYmVyIG9mIHJvd3MgYW5kIGNvbHVtbnMuXG5cblByZXNzIHRoZSBSZWZyZXNoIGJ1dHRvbiBvbiB0aGUgbGVmdCBvZiBoZWFkZXIgYmFyIHRvIGFwcGx5IGNoYW5nZXNcblxuSW4gY2FzZSBvZiBhbnkgZXJyb3JzIGR1ZSB0byB1cGRhdGUsIFBsZWFzZSB0cnkgcmVzZXR0aW5nIHRoZSBleHRlbnNpb24uICBSZXNldCBidXR0b24gaXMgcHJlc2VudCBpbiBFeHRlbnNpb24gUHJlZmVyZW5jZXMgd2luZG93IGluIFRvcCBSaWdodCBBcHBsaWNhdGlvbiBNZW51ID4gUHJlZmVyZW5jZXMgPiBSZXNldCBBcHAgR3JpZCBUd2Vha3MgRXh0ZW5zaW9uLiAgIiwKICAibmFtZSI6ICJBcHAgR3JpZCBUd2Vha3MiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYXBwLWdyaWQtdHdlYWtzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJzdGF0dXMiOiAiIiwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9TZWxlbml1bS1IL0FwcC1HcmlkLVR3ZWFrcyIsCiAgInV1aWQiOiAiYXBwLWdyaWQtdHdlYWtzQFNlbGVuaXVtLUgiLAogICJ2ZXJzaW9uIjogMwp9"}}}
-, {"uuid": "babar@fthx", "name": "BaBar Task Bar", "pname": "babar", "description": "Task bar. App grid, favorites, workspaces and tasks in panel. Light extension.\n\n Replace 'Activities' button by all current workspaces and apps buttons. Switch workspace/app or toggle overview by clicking on these buttons. Drag and drop favorite, task, dash item or app grid item to any workspace (you cannot reorder tasks inside a workspace). Persistent window preview with right-click (right-click again or click on preview to close it). You can move this preview anywhere. Change 'Places' label to an icon. Settings in preferences UI.\n\n You can use names for workspaces: there are two ways for that. 1) Edit the string array 'org.gnome.desktop.wm.preferences.workspace-names' gsettings key (through dconf editor, e.g.). 2) Use official GNOME extension Workspaces Indicator's settings. You don't have to write a long enough list: numbers are displayed if no workspace name is defined.\n\n Changelog: https://github.com/fthx/babar/issues/2", "link": "https://extensions.gnome.org/extension/4000/babar/", "shell_version_map": {"38": {"version": "55", "sha256": "069zl8sx9fma5na49hpn2904lrmcykiavk4dnm519n73bzz597mh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRhc2sgYmFyLiBBcHAgZ3JpZCwgZmF2b3JpdGVzLCB3b3Jrc3BhY2VzIGFuZCB0YXNrcyBpbiBwYW5lbC4gTGlnaHQgZXh0ZW5zaW9uLlxuXG4gUmVwbGFjZSAnQWN0aXZpdGllcycgYnV0dG9uIGJ5IGFsbCBjdXJyZW50IHdvcmtzcGFjZXMgYW5kIGFwcHMgYnV0dG9ucy4gU3dpdGNoIHdvcmtzcGFjZS9hcHAgb3IgdG9nZ2xlIG92ZXJ2aWV3IGJ5IGNsaWNraW5nIG9uIHRoZXNlIGJ1dHRvbnMuIERyYWcgYW5kIGRyb3AgZmF2b3JpdGUsIHRhc2ssIGRhc2ggaXRlbSBvciBhcHAgZ3JpZCBpdGVtIHRvIGFueSB3b3Jrc3BhY2UgKHlvdSBjYW5ub3QgcmVvcmRlciB0YXNrcyBpbnNpZGUgYSB3b3Jrc3BhY2UpLiBQZXJzaXN0ZW50IHdpbmRvdyBwcmV2aWV3IHdpdGggcmlnaHQtY2xpY2sgKHJpZ2h0LWNsaWNrIGFnYWluIG9yIGNsaWNrIG9uIHByZXZpZXcgdG8gY2xvc2UgaXQpLiBZb3UgY2FuIG1vdmUgdGhpcyBwcmV2aWV3IGFueXdoZXJlLiBDaGFuZ2UgJ1BsYWNlcycgbGFiZWwgdG8gYW4gaWNvbi4gU2V0dGluZ3MgaW4gcHJlZmVyZW5jZXMgVUkuXG5cbiBZb3UgY2FuIHVzZSBuYW1lcyBmb3Igd29ya3NwYWNlczogdGhlcmUgYXJlIHR3byB3YXlzIGZvciB0aGF0LiAxKSBFZGl0IHRoZSBzdHJpbmcgYXJyYXkgJ29yZy5nbm9tZS5kZXNrdG9wLndtLnByZWZlcmVuY2VzLndvcmtzcGFjZS1uYW1lcycgZ3NldHRpbmdzIGtleSAodGhyb3VnaCBkY29uZiBlZGl0b3IsIGUuZy4pLiAyKSBVc2Ugb2ZmaWNpYWwgR05PTUUgZXh0ZW5zaW9uIFdvcmtzcGFjZXMgSW5kaWNhdG9yJ3Mgc2V0dGluZ3MuIFlvdSBkb24ndCBoYXZlIHRvIHdyaXRlIGEgbG9uZyBlbm91Z2ggbGlzdDogbnVtYmVycyBhcmUgZGlzcGxheWVkIGlmIG5vIHdvcmtzcGFjZSBuYW1lIGlzIGRlZmluZWQuXG5cbiBDaGFuZ2Vsb2c6IGh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyL2lzc3Vlcy8yIiwKICAibmFtZSI6ICJCYUJhciBUYXNrIEJhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyIiwKICAidXVpZCI6ICJiYWJhckBmdGh4IiwKICAidmVyc2lvbiI6IDU1Cn0="}, "40": {"version": "55", "sha256": "069zl8sx9fma5na49hpn2904lrmcykiavk4dnm519n73bzz597mh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRhc2sgYmFyLiBBcHAgZ3JpZCwgZmF2b3JpdGVzLCB3b3Jrc3BhY2VzIGFuZCB0YXNrcyBpbiBwYW5lbC4gTGlnaHQgZXh0ZW5zaW9uLlxuXG4gUmVwbGFjZSAnQWN0aXZpdGllcycgYnV0dG9uIGJ5IGFsbCBjdXJyZW50IHdvcmtzcGFjZXMgYW5kIGFwcHMgYnV0dG9ucy4gU3dpdGNoIHdvcmtzcGFjZS9hcHAgb3IgdG9nZ2xlIG92ZXJ2aWV3IGJ5IGNsaWNraW5nIG9uIHRoZXNlIGJ1dHRvbnMuIERyYWcgYW5kIGRyb3AgZmF2b3JpdGUsIHRhc2ssIGRhc2ggaXRlbSBvciBhcHAgZ3JpZCBpdGVtIHRvIGFueSB3b3Jrc3BhY2UgKHlvdSBjYW5ub3QgcmVvcmRlciB0YXNrcyBpbnNpZGUgYSB3b3Jrc3BhY2UpLiBQZXJzaXN0ZW50IHdpbmRvdyBwcmV2aWV3IHdpdGggcmlnaHQtY2xpY2sgKHJpZ2h0LWNsaWNrIGFnYWluIG9yIGNsaWNrIG9uIHByZXZpZXcgdG8gY2xvc2UgaXQpLiBZb3UgY2FuIG1vdmUgdGhpcyBwcmV2aWV3IGFueXdoZXJlLiBDaGFuZ2UgJ1BsYWNlcycgbGFiZWwgdG8gYW4gaWNvbi4gU2V0dGluZ3MgaW4gcHJlZmVyZW5jZXMgVUkuXG5cbiBZb3UgY2FuIHVzZSBuYW1lcyBmb3Igd29ya3NwYWNlczogdGhlcmUgYXJlIHR3byB3YXlzIGZvciB0aGF0LiAxKSBFZGl0IHRoZSBzdHJpbmcgYXJyYXkgJ29yZy5nbm9tZS5kZXNrdG9wLndtLnByZWZlcmVuY2VzLndvcmtzcGFjZS1uYW1lcycgZ3NldHRpbmdzIGtleSAodGhyb3VnaCBkY29uZiBlZGl0b3IsIGUuZy4pLiAyKSBVc2Ugb2ZmaWNpYWwgR05PTUUgZXh0ZW5zaW9uIFdvcmtzcGFjZXMgSW5kaWNhdG9yJ3Mgc2V0dGluZ3MuIFlvdSBkb24ndCBoYXZlIHRvIHdyaXRlIGEgbG9uZyBlbm91Z2ggbGlzdDogbnVtYmVycyBhcmUgZGlzcGxheWVkIGlmIG5vIHdvcmtzcGFjZSBuYW1lIGlzIGRlZmluZWQuXG5cbiBDaGFuZ2Vsb2c6IGh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyL2lzc3Vlcy8yIiwKICAibmFtZSI6ICJCYUJhciBUYXNrIEJhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyIiwKICAidXVpZCI6ICJiYWJhckBmdGh4IiwKICAidmVyc2lvbiI6IDU1Cn0="}}}
+, {"uuid": "babar@fthx", "name": "BaBar Task Bar", "pname": "babar", "description": "Task bar. App grid, favorites, workspaces and tasks in panel. Light extension.\n\n Replace 'Activities' button by all current workspaces and apps buttons. Switch workspace/app or toggle overview by clicking on these buttons. Drag and drop favorite, task, dash item or app grid item to any workspace (you cannot reorder tasks inside a workspace). Persistent window preview with right-click (right-click again or click on preview to close it). You can move this preview anywhere. Change 'Places' label to an icon. Settings in preferences UI.\n\n You can use names for workspaces: there are two ways for that. 1) Edit the string array 'org.gnome.desktop.wm.preferences.workspace-names' gsettings key (through dconf editor, e.g.). 2) Use official GNOME extension Workspaces Indicator's settings. You don't have to write a long enough list: numbers are displayed if no workspace name is defined.\n\n Changelog: https://github.com/fthx/babar/issues/2", "link": "https://extensions.gnome.org/extension/4000/babar/", "shell_version_map": {"38": {"version": "56", "sha256": "1iwk1fi2kslpnjfy2xmq9baryrvijm9rh8m9zk15mbka4jmmkqnk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRhc2sgYmFyLiBBcHAgZ3JpZCwgZmF2b3JpdGVzLCB3b3Jrc3BhY2VzIGFuZCB0YXNrcyBpbiBwYW5lbC4gTGlnaHQgZXh0ZW5zaW9uLlxuXG4gUmVwbGFjZSAnQWN0aXZpdGllcycgYnV0dG9uIGJ5IGFsbCBjdXJyZW50IHdvcmtzcGFjZXMgYW5kIGFwcHMgYnV0dG9ucy4gU3dpdGNoIHdvcmtzcGFjZS9hcHAgb3IgdG9nZ2xlIG92ZXJ2aWV3IGJ5IGNsaWNraW5nIG9uIHRoZXNlIGJ1dHRvbnMuIERyYWcgYW5kIGRyb3AgZmF2b3JpdGUsIHRhc2ssIGRhc2ggaXRlbSBvciBhcHAgZ3JpZCBpdGVtIHRvIGFueSB3b3Jrc3BhY2UgKHlvdSBjYW5ub3QgcmVvcmRlciB0YXNrcyBpbnNpZGUgYSB3b3Jrc3BhY2UpLiBQZXJzaXN0ZW50IHdpbmRvdyBwcmV2aWV3IHdpdGggcmlnaHQtY2xpY2sgKHJpZ2h0LWNsaWNrIGFnYWluIG9yIGNsaWNrIG9uIHByZXZpZXcgdG8gY2xvc2UgaXQpLiBZb3UgY2FuIG1vdmUgdGhpcyBwcmV2aWV3IGFueXdoZXJlLiBDaGFuZ2UgJ1BsYWNlcycgbGFiZWwgdG8gYW4gaWNvbi4gU2V0dGluZ3MgaW4gcHJlZmVyZW5jZXMgVUkuXG5cbiBZb3UgY2FuIHVzZSBuYW1lcyBmb3Igd29ya3NwYWNlczogdGhlcmUgYXJlIHR3byB3YXlzIGZvciB0aGF0LiAxKSBFZGl0IHRoZSBzdHJpbmcgYXJyYXkgJ29yZy5nbm9tZS5kZXNrdG9wLndtLnByZWZlcmVuY2VzLndvcmtzcGFjZS1uYW1lcycgZ3NldHRpbmdzIGtleSAodGhyb3VnaCBkY29uZiBlZGl0b3IsIGUuZy4pLiAyKSBVc2Ugb2ZmaWNpYWwgR05PTUUgZXh0ZW5zaW9uIFdvcmtzcGFjZXMgSW5kaWNhdG9yJ3Mgc2V0dGluZ3MuIFlvdSBkb24ndCBoYXZlIHRvIHdyaXRlIGEgbG9uZyBlbm91Z2ggbGlzdDogbnVtYmVycyBhcmUgZGlzcGxheWVkIGlmIG5vIHdvcmtzcGFjZSBuYW1lIGlzIGRlZmluZWQuXG5cbiBDaGFuZ2Vsb2c6IGh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyL2lzc3Vlcy8yIiwKICAibmFtZSI6ICJCYUJhciBUYXNrIEJhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIiwKICAgICI0MiIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvYmFiYXIiLAogICJ1dWlkIjogImJhYmFyQGZ0aHgiLAogICJ2ZXJzaW9uIjogNTYKfQ=="}, "40": {"version": "56", "sha256": "1iwk1fi2kslpnjfy2xmq9baryrvijm9rh8m9zk15mbka4jmmkqnk", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRhc2sgYmFyLiBBcHAgZ3JpZCwgZmF2b3JpdGVzLCB3b3Jrc3BhY2VzIGFuZCB0YXNrcyBpbiBwYW5lbC4gTGlnaHQgZXh0ZW5zaW9uLlxuXG4gUmVwbGFjZSAnQWN0aXZpdGllcycgYnV0dG9uIGJ5IGFsbCBjdXJyZW50IHdvcmtzcGFjZXMgYW5kIGFwcHMgYnV0dG9ucy4gU3dpdGNoIHdvcmtzcGFjZS9hcHAgb3IgdG9nZ2xlIG92ZXJ2aWV3IGJ5IGNsaWNraW5nIG9uIHRoZXNlIGJ1dHRvbnMuIERyYWcgYW5kIGRyb3AgZmF2b3JpdGUsIHRhc2ssIGRhc2ggaXRlbSBvciBhcHAgZ3JpZCBpdGVtIHRvIGFueSB3b3Jrc3BhY2UgKHlvdSBjYW5ub3QgcmVvcmRlciB0YXNrcyBpbnNpZGUgYSB3b3Jrc3BhY2UpLiBQZXJzaXN0ZW50IHdpbmRvdyBwcmV2aWV3IHdpdGggcmlnaHQtY2xpY2sgKHJpZ2h0LWNsaWNrIGFnYWluIG9yIGNsaWNrIG9uIHByZXZpZXcgdG8gY2xvc2UgaXQpLiBZb3UgY2FuIG1vdmUgdGhpcyBwcmV2aWV3IGFueXdoZXJlLiBDaGFuZ2UgJ1BsYWNlcycgbGFiZWwgdG8gYW4gaWNvbi4gU2V0dGluZ3MgaW4gcHJlZmVyZW5jZXMgVUkuXG5cbiBZb3UgY2FuIHVzZSBuYW1lcyBmb3Igd29ya3NwYWNlczogdGhlcmUgYXJlIHR3byB3YXlzIGZvciB0aGF0LiAxKSBFZGl0IHRoZSBzdHJpbmcgYXJyYXkgJ29yZy5nbm9tZS5kZXNrdG9wLndtLnByZWZlcmVuY2VzLndvcmtzcGFjZS1uYW1lcycgZ3NldHRpbmdzIGtleSAodGhyb3VnaCBkY29uZiBlZGl0b3IsIGUuZy4pLiAyKSBVc2Ugb2ZmaWNpYWwgR05PTUUgZXh0ZW5zaW9uIFdvcmtzcGFjZXMgSW5kaWNhdG9yJ3Mgc2V0dGluZ3MuIFlvdSBkb24ndCBoYXZlIHRvIHdyaXRlIGEgbG9uZyBlbm91Z2ggbGlzdDogbnVtYmVycyBhcmUgZGlzcGxheWVkIGlmIG5vIHdvcmtzcGFjZSBuYW1lIGlzIGRlZmluZWQuXG5cbiBDaGFuZ2Vsb2c6IGh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2JhYmFyL2lzc3Vlcy8yIiwKICAibmFtZSI6ICJCYUJhciBUYXNrIEJhciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIiwKICAgICI0MiIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvYmFiYXIiLAogICJ1dWlkIjogImJhYmFyQGZ0aHgiLAogICJ2ZXJzaW9uIjogNTYKfQ=="}}}
, {"uuid": "kitsch@fopdoodle.net", "name": "Kitsch", "pname": "kitsch", "description": "Kitsch is a collection of cheap, popular, and marketable improvements to Gnome. One could consider it applying a cosmetic surgery to Gnome.\n\nKitsch can easily be configured and offers the following features:\n- remove application menu from the top bar\n- remove the activity button from the top bar\n- periodically change the background picture\n\nThis extension does not come with any button on the panel. Visit the website for a documentation.", "link": "https://extensions.gnome.org/extension/4001/kitsch/", "shell_version_map": {"38": {"version": "2", "sha256": "16zwz0p4f8zizr14k4jmdixgnjd0a67d0i3w6clrqgfl49cpdcdv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIktpdHNjaCBpcyBhIGNvbGxlY3Rpb24gb2YgY2hlYXAsIHBvcHVsYXIsIGFuZCBtYXJrZXRhYmxlIGltcHJvdmVtZW50cyB0byBHbm9tZS4gT25lIGNvdWxkIGNvbnNpZGVyIGl0IGFwcGx5aW5nIGEgY29zbWV0aWMgc3VyZ2VyeSB0byBHbm9tZS5cblxuS2l0c2NoIGNhbiBlYXNpbHkgYmUgY29uZmlndXJlZCBhbmQgb2ZmZXJzIHRoZSBmb2xsb3dpbmcgZmVhdHVyZXM6XG4tIHJlbW92ZSBhcHBsaWNhdGlvbiBtZW51IGZyb20gdGhlIHRvcCBiYXJcbi0gcmVtb3ZlIHRoZSBhY3Rpdml0eSBidXR0b24gZnJvbSB0aGUgdG9wIGJhclxuLSBwZXJpb2RpY2FsbHkgY2hhbmdlIHRoZSBiYWNrZ3JvdW5kIHBpY3R1cmVcblxuVGhpcyBleHRlbnNpb24gZG9lcyBub3QgY29tZSB3aXRoIGFueSBidXR0b24gb24gdGhlIHBhbmVsLiBWaXNpdCB0aGUgd2Vic2l0ZSBmb3IgYSBkb2N1bWVudGF0aW9uLiIsCiAgIm5hbWUiOiAiS2l0c2NoIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmtpdHNjaCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2VudGU3Ni9raXRzY2gvIiwKICAidXVpZCI6ICJraXRzY2hAZm9wZG9vZGxlLm5ldCIsCiAgInZlcnNpb24iOiAyCn0="}, "40": {"version": "5", "sha256": "1bbbdhf73sv240bid4s604g6r8axd40ph2yyf23z5fpj3679g2xr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIktpdHNjaCBpcyBhIGNvbGxlY3Rpb24gb2YgY2hlYXAsIHBvcHVsYXIsIGFuZCBtYXJrZXRhYmxlIGltcHJvdmVtZW50cyB0byBHbm9tZS4gT25lIGNvdWxkIGNvbnNpZGVyIGl0IGFwcGx5aW5nIGEgY29zbWV0aWMgc3VyZ2VyeSB0byBHbm9tZS5cblxuS2l0c2NoIGNhbiBlYXNpbHkgYmUgY29uZmlndXJlZCBhbmQgb2ZmZXJzIHRoZSBmb2xsb3dpbmcgZmVhdHVyZXM6XG4tIHJlbW92ZSBhcHBsaWNhdGlvbiBtZW51IGZyb20gdGhlIHRvcCBiYXJcbi0gcmVtb3ZlIHRoZSBhY3Rpdml0eSBidXR0b24gZnJvbSB0aGUgdG9wIGJhclxuLSBwZXJpb2RpY2FsbHkgY2hhbmdlIHRoZSBiYWNrZ3JvdW5kIHBpY3R1cmVcblxuVGhpcyBleHRlbnNpb24gZG9lcyBub3QgY29tZSB3aXRoIGFueSBidXR0b24gb24gdGhlIHBhbmVsLiBWaXNpdCB0aGUgd2Vic2l0ZSBmb3IgYSBkb2N1bWVudGF0aW9uLiIsCiAgIm5hbWUiOiAiS2l0c2NoIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmtpdHNjaCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9lbnRlNzYva2l0c2NoLyIsCiAgInV1aWQiOiAia2l0c2NoQGZvcGRvb2RsZS5uZXQiLAogICJ2ZXJzaW9uIjogNQp9"}}}
, {"uuid": "gnome-visuals-top-bar@evendanan.net", "name": "Top Bar Visuals - transparent and blur", "pname": "top-bar-visuals-transparent-and-blur", "description": "Fork of: https://github.com/lamarios/gnome-shell-extension-transparent-top-bar\n\nBring back the adjustable transparency top bar (panel) in GNOME Shell and add blur while at it.\n\nDoes not work well with custom shell themes.", "link": "https://extensions.gnome.org/extension/4003/top-bar-visuals-transparent-and-blur/", "shell_version_map": {"38": {"version": "2", "sha256": "0h1qx7bh4gb3xkc8g8byynfa3imxkx332kh88pm4g9zaa20fxzwr", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZvcmsgb2Y6IGh0dHBzOi8vZ2l0aHViLmNvbS9sYW1hcmlvcy9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJhbnNwYXJlbnQtdG9wLWJhclxuXG5CcmluZyBiYWNrIHRoZSBhZGp1c3RhYmxlIHRyYW5zcGFyZW5jeSB0b3AgYmFyIChwYW5lbCkgaW4gR05PTUUgU2hlbGwgYW5kIGFkZCBibHVyIHdoaWxlIGF0IGl0LlxuXG5Eb2VzIG5vdCB3b3JrIHdlbGwgd2l0aCBjdXN0b20gc2hlbGwgdGhlbWVzLiIsCiAgIm5hbWUiOiAiVG9wIEJhciBWaXN1YWxzIC0gdHJhbnNwYXJlbnQgYW5kIGJsdXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9tZW5ueS9nbm9tZS1zaGVsbC1leHRlbnNpb24tdHJhbnNwYXJlbnQtdG9wLWJhciIsCiAgInV1aWQiOiAiZ25vbWUtdmlzdWFscy10b3AtYmFyQGV2ZW5kYW5hbi5uZXQiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "desktop-lyric@tuberry", "name": "Desktop Lyric", "pname": "desktop-lyric", "description": "Show lyric of the playing song on the desktop\n\nFor support, please report any issues via the homepage link below.", "link": "https://extensions.gnome.org/extension/4006/desktop-lyric/", "shell_version_map": {"38": {"version": "3", "sha256": "015w7abqa8zqh7vc2hln61i859mfac7lcjp8lvccm9jbakdxqpvn", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgbHlyaWMgb2YgdGhlIHBsYXlpbmcgc29uZyBvbiB0aGUgZGVza3RvcFxuXG5Gb3Igc3VwcG9ydCwgcGxlYXNlIHJlcG9ydCBhbnkgaXNzdWVzIHZpYSB0aGUgaG9tZXBhZ2UgbGluayBiZWxvdy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJkZXNrdG9wLWx5cmljIiwKICAibmFtZSI6ICJEZXNrdG9wIEx5cmljIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmRlc2t0b3AtbHlyaWMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS90dWJlcnJ5L2Rlc2t0b3AtbHlyaWMiLAogICJ1dWlkIjogImRlc2t0b3AtbHlyaWNAdHViZXJyeSIsCiAgInZlcnNpb24iOiAzCn0="}, "40": {"version": "7", "sha256": "13vhzga43d4byrp98nj2v6vf8lll1c6gzkrrna32g8amp0vhkly8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgbHlyaWMgb2YgdGhlIHBsYXlpbmcgc29uZyBvbiB0aGUgZGVza3RvcFxuXG5Gb3Igc3VwcG9ydCwgcGxlYXNlIHJlcG9ydCBhbnkgaXNzdWVzIHZpYSB0aGUgaG9tZXBhZ2UgbGluayBiZWxvdy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJkZXNrdG9wLWx5cmljIiwKICAibmFtZSI6ICJEZXNrdG9wIEx5cmljIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmRlc2t0b3AtbHlyaWMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdHViZXJyeS9kZXNrdG9wLWx5cmljIiwKICAidXVpZCI6ICJkZXNrdG9wLWx5cmljQHR1YmVycnkiLAogICJ2ZXJzaW9uIjogNwp9"}}}
@@ -429,12 +435,12 @@
, {"uuid": "right_click_for_apps@briansayre", "name": "Right Click for Apps", "pname": "right-click-for-apps", "description": "Allows you to right-click the Activities button to reveal the application menu.", "link": "https://extensions.gnome.org/extension/4090/right-click-for-apps/", "shell_version_map": {"38": {"version": "1", "sha256": "1rzx8ksl48badrwyqxwbgvfgf48z642mdwl57aq280ng61nrndaf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93cyB5b3UgdG8gcmlnaHQtY2xpY2sgdGhlIEFjdGl2aXRpZXMgYnV0dG9uIHRvIHJldmVhbCB0aGUgYXBwbGljYXRpb24gbWVudS4iLAogICJuYW1lIjogIlJpZ2h0IENsaWNrIGZvciBBcHBzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYnJpYW5zYXlyZS9SaWdodC1DbGljay1Gb3ItQXBwcyIsCiAgInV1aWQiOiAicmlnaHRfY2xpY2tfZm9yX2FwcHNAYnJpYW5zYXlyZSIsCiAgInZlcnNpb24iOiAxCn0="}}}
, {"uuid": "devbar@ludvigbostrom", "name": "DevBar", "pname": "devbar", "description": "This extension helps you keep track of your development workflow.", "link": "https://extensions.gnome.org/extension/4091/devbar/", "shell_version_map": {"38": {"version": "7", "sha256": "0gpmrsd5dva2d6aisr9fazipfxr2qw8p8bsn9avq8rijkya67c0v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGhlbHBzIHlvdSBrZWVwIHRyYWNrIG9mIHlvdXIgZGV2ZWxvcG1lbnQgd29ya2Zsb3cuIiwKICAibmFtZSI6ICJEZXZCYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2x1ZHZpZ2Jvc3Ryb20vRGV2QmFyR25vbWUiLAogICJ1dWlkIjogImRldmJhckBsdWR2aWdib3N0cm9tIiwKICAidmVyc2lvbiI6IDcKfQ=="}, "40": {"version": "7", "sha256": "0gpmrsd5dva2d6aisr9fazipfxr2qw8p8bsn9avq8rijkya67c0v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGhlbHBzIHlvdSBrZWVwIHRyYWNrIG9mIHlvdXIgZGV2ZWxvcG1lbnQgd29ya2Zsb3cuIiwKICAibmFtZSI6ICJEZXZCYXIiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2x1ZHZpZ2Jvc3Ryb20vRGV2QmFyR25vbWUiLAogICJ1dWlkIjogImRldmJhckBsdWR2aWdib3N0cm9tIiwKICAidmVyc2lvbiI6IDcKfQ=="}}}
, {"uuid": "notifications_to_file@fawtytoo", "name": "Notifications To File", "pname": "notifications-to-file", "description": "Notifications are appended to a file in $HOME/.notifications/ with one file created per day.\nEntries show the following information:\nTimestamp\nWhether the banner was shown\nThe urgency\nThe title\nBanner text", "link": "https://extensions.gnome.org/extension/4093/notifications-to-file/", "shell_version_map": {"38": {"version": "2", "sha256": "0rn0c6ma6k129pkjk39dk05j6civxkm32zacv919zd3vvifckr1k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vdGlmaWNhdGlvbnMgYXJlIGFwcGVuZGVkIHRvIGEgZmlsZSBpbiAkSE9NRS8ubm90aWZpY2F0aW9ucy8gd2l0aCBvbmUgZmlsZSBjcmVhdGVkIHBlciBkYXkuXG5FbnRyaWVzIHNob3cgdGhlIGZvbGxvd2luZyBpbmZvcm1hdGlvbjpcblRpbWVzdGFtcFxuV2hldGhlciB0aGUgYmFubmVyIHdhcyBzaG93blxuVGhlIHVyZ2VuY3lcblRoZSB0aXRsZVxuQmFubmVyIHRleHQiLAogICJuYW1lIjogIk5vdGlmaWNhdGlvbnMgVG8gRmlsZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAibm90aWZpY2F0aW9uc190b19maWxlQGZhd3R5dG9vIiwKICAidmVyc2lvbiI6IDIKfQ=="}, "40": {"version": "2", "sha256": "0rn0c6ma6k129pkjk39dk05j6civxkm32zacv919zd3vvifckr1k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vdGlmaWNhdGlvbnMgYXJlIGFwcGVuZGVkIHRvIGEgZmlsZSBpbiAkSE9NRS8ubm90aWZpY2F0aW9ucy8gd2l0aCBvbmUgZmlsZSBjcmVhdGVkIHBlciBkYXkuXG5FbnRyaWVzIHNob3cgdGhlIGZvbGxvd2luZyBpbmZvcm1hdGlvbjpcblRpbWVzdGFtcFxuV2hldGhlciB0aGUgYmFubmVyIHdhcyBzaG93blxuVGhlIHVyZ2VuY3lcblRoZSB0aXRsZVxuQmFubmVyIHRleHQiLAogICJuYW1lIjogIk5vdGlmaWNhdGlvbnMgVG8gRmlsZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAibm90aWZpY2F0aW9uc190b19maWxlQGZhd3R5dG9vIiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
-, {"uuid": "change_desktop_background_when_empty@fawtytoo", "name": "Change Desktop Background When Workspace Empty", "pname": "change-desktop-background-when-workspace-empty", "description": "Changes the desktop background when the workspace is or becomes empty, such as switching to an empty workspace, when all windows on a workspace are closed, or after login.\nNo folder needs to be set explicitly, as it will use the folder that the current background is in.", "link": "https://extensions.gnome.org/extension/4096/change-desktop-background-when-workspace-empty/", "shell_version_map": {"38": {"version": "6", "sha256": "1bp1nrwdg42z6p2kan47lz0wwmp08f5j3av09k5rqplwb33cy43c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgdGhlIGRlc2t0b3AgYmFja2dyb3VuZCB3aGVuIHRoZSB3b3Jrc3BhY2UgaXMgb3IgYmVjb21lcyBlbXB0eSwgc3VjaCBhcyBzd2l0Y2hpbmcgdG8gYW4gZW1wdHkgd29ya3NwYWNlLCB3aGVuIGFsbCB3aW5kb3dzIG9uIGEgd29ya3NwYWNlIGFyZSBjbG9zZWQsIG9yIGFmdGVyIGxvZ2luLlxuTm8gZm9sZGVyIG5lZWRzIHRvIGJlIHNldCBleHBsaWNpdGx5LCBhcyBpdCB3aWxsIHVzZSB0aGUgZm9sZGVyIHRoYXQgdGhlIGN1cnJlbnQgYmFja2dyb3VuZCBpcyBpbi4iLAogICJuYW1lIjogIkNoYW5nZSBEZXNrdG9wIEJhY2tncm91bmQgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNoYW5nZV9kZXNrdG9wX2JhY2tncm91bmRfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiA2Cn0="}, "40": {"version": "6", "sha256": "1bp1nrwdg42z6p2kan47lz0wwmp08f5j3av09k5rqplwb33cy43c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgdGhlIGRlc2t0b3AgYmFja2dyb3VuZCB3aGVuIHRoZSB3b3Jrc3BhY2UgaXMgb3IgYmVjb21lcyBlbXB0eSwgc3VjaCBhcyBzd2l0Y2hpbmcgdG8gYW4gZW1wdHkgd29ya3NwYWNlLCB3aGVuIGFsbCB3aW5kb3dzIG9uIGEgd29ya3NwYWNlIGFyZSBjbG9zZWQsIG9yIGFmdGVyIGxvZ2luLlxuTm8gZm9sZGVyIG5lZWRzIHRvIGJlIHNldCBleHBsaWNpdGx5LCBhcyBpdCB3aWxsIHVzZSB0aGUgZm9sZGVyIHRoYXQgdGhlIGN1cnJlbnQgYmFja2dyb3VuZCBpcyBpbi4iLAogICJuYW1lIjogIkNoYW5nZSBEZXNrdG9wIEJhY2tncm91bmQgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNoYW5nZV9kZXNrdG9wX2JhY2tncm91bmRfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiA2Cn0="}}}
+, {"uuid": "change_desktop_background_when_empty@fawtytoo", "name": "Change Desktop Background When Workspace Empty", "pname": "change-desktop-background-when-workspace-empty", "description": "Changes the desktop background when the workspace is or becomes empty, such as switching to an empty workspace, when all windows on a workspace are closed, or after login.\nNo folder needs to be set explicitly, as it will use the folder that the current background is in.", "link": "https://extensions.gnome.org/extension/4096/change-desktop-background-when-workspace-empty/", "shell_version_map": {"38": {"version": "7", "sha256": "1jlr37qcj1gqnaivjrc5qq7hr62r7nfj6v8rh3mj6946a70sy6gw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgdGhlIGRlc2t0b3AgYmFja2dyb3VuZCB3aGVuIHRoZSB3b3Jrc3BhY2UgaXMgb3IgYmVjb21lcyBlbXB0eSwgc3VjaCBhcyBzd2l0Y2hpbmcgdG8gYW4gZW1wdHkgd29ya3NwYWNlLCB3aGVuIGFsbCB3aW5kb3dzIG9uIGEgd29ya3NwYWNlIGFyZSBjbG9zZWQsIG9yIGFmdGVyIGxvZ2luLlxuTm8gZm9sZGVyIG5lZWRzIHRvIGJlIHNldCBleHBsaWNpdGx5LCBhcyBpdCB3aWxsIHVzZSB0aGUgZm9sZGVyIHRoYXQgdGhlIGN1cnJlbnQgYmFja2dyb3VuZCBpcyBpbi4iLAogICJuYW1lIjogIkNoYW5nZSBEZXNrdG9wIEJhY2tncm91bmQgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNoYW5nZV9kZXNrdG9wX2JhY2tncm91bmRfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiA3Cn0="}, "40": {"version": "7", "sha256": "1jlr37qcj1gqnaivjrc5qq7hr62r7nfj6v8rh3mj6946a70sy6gw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgdGhlIGRlc2t0b3AgYmFja2dyb3VuZCB3aGVuIHRoZSB3b3Jrc3BhY2UgaXMgb3IgYmVjb21lcyBlbXB0eSwgc3VjaCBhcyBzd2l0Y2hpbmcgdG8gYW4gZW1wdHkgd29ya3NwYWNlLCB3aGVuIGFsbCB3aW5kb3dzIG9uIGEgd29ya3NwYWNlIGFyZSBjbG9zZWQsIG9yIGFmdGVyIGxvZ2luLlxuTm8gZm9sZGVyIG5lZWRzIHRvIGJlIHNldCBleHBsaWNpdGx5LCBhcyBpdCB3aWxsIHVzZSB0aGUgZm9sZGVyIHRoYXQgdGhlIGN1cnJlbnQgYmFja2dyb3VuZCBpcyBpbi4iLAogICJuYW1lIjogIkNoYW5nZSBEZXNrdG9wIEJhY2tncm91bmQgV2hlbiBXb3Jrc3BhY2UgRW1wdHkiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNoYW5nZV9kZXNrdG9wX2JhY2tncm91bmRfd2hlbl9lbXB0eUBmYXd0eXRvbyIsCiAgInZlcnNpb24iOiA3Cn0="}}}
, {"uuid": "translate-clipboard@lsnow.github.io", "name": "translate-clipboard", "pname": "translate-clipboard", "description": "translate clipboard text", "link": "https://extensions.gnome.org/extension/4097/translate-clipboard/", "shell_version_map": {"38": {"version": "1", "sha256": "091aywnrmaz5j2nzjv1n968a25k8hm6a7ykifrl1b1nswybx5ark", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogInRyYW5zbGF0ZSBjbGlwYm9hcmQgdGV4dCIsCiAgIm5hbWUiOiAidHJhbnNsYXRlLWNsaXBib2FyZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2xzbm93L3RyYW5zbGF0ZS1jbGlwYm9hcmQiLAogICJ1dWlkIjogInRyYW5zbGF0ZS1jbGlwYm9hcmRAbHNub3cuZ2l0aHViLmlvIiwKICAidmVyc2lvbiI6IDEKfQ=="}, "40": {"version": "8", "sha256": "0af7fwsfp6pvhx5ipzzjmwwdjb77sgysyhmy5im8492a31p43f2h", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogInRyYW5zbGF0ZSBjbGlwYm9hcmQgdGV4dCIsCiAgIm5hbWUiOiAidHJhbnNsYXRlLWNsaXBib2FyZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9sc25vdy90cmFuc2xhdGUtY2xpcGJvYXJkIiwKICAidXVpZCI6ICJ0cmFuc2xhdGUtY2xpcGJvYXJkQGxzbm93LmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiA4Cn0="}}}
-, {"uuid": "no-overview@fthx", "name": "No overview at start-up", "pname": "no-overview", "description": "No overview at start-up. For GNOME Shell 40+.", "link": "https://extensions.gnome.org/extension/4099/no-overview/", "shell_version_map": {"40": {"version": "8", "sha256": "15y0qyknm2c3p94n8lvq3x13vk8j90mfwzl8g2vpraiavgid52fm", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIG92ZXJ2aWV3IGF0IHN0YXJ0LXVwLiBGb3IgR05PTUUgU2hlbGwgNDArLiIsCiAgIm5hbWUiOiAiTm8gb3ZlcnZpZXcgYXQgc3RhcnQtdXAiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgImZ0aHgiCiAgXSwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2Z0aHgvbm8tb3ZlcnZpZXciLAogICJ1dWlkIjogIm5vLW92ZXJ2aWV3QGZ0aHgiLAogICJ2ZXJzaW9uIjogOAp9"}}}
+, {"uuid": "no-overview@fthx", "name": "No overview at start-up", "pname": "no-overview", "description": "No overview at start-up. For GNOME Shell 40+.", "link": "https://extensions.gnome.org/extension/4099/no-overview/", "shell_version_map": {"40": {"version": "10", "sha256": "0syw56wbchxpkrkc7jkwd4sq5dw7j88ai6sy2q0hvgj87fyx6wm7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk5vIG92ZXJ2aWV3IGF0IHN0YXJ0LXVwLiBGb3IgR05PTUUgU2hlbGwgNDArLiIsCiAgIm5hbWUiOiAiTm8gb3ZlcnZpZXcgYXQgc3RhcnQtdXAiLAogICJvcmlnaW5hbC1hdXRob3JzIjogWwogICAgImZ0aHgiCiAgXSwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiLAogICAgIjQyIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZnRoeC9uby1vdmVydmlldyIsCiAgInV1aWQiOiAibm8tb3ZlcnZpZXdAZnRoeCIsCiAgInZlcnNpb24iOiAxMAp9"}}}
, {"uuid": "notification-position@drugo.dev", "name": "Notification Banner Position", "pname": "notification-banner-position", "description": "Changes position of the notification banner from the default to the right side of the screen.", "link": "https://extensions.gnome.org/extension/4105/notification-banner-position/", "shell_version_map": {"38": {"version": "2", "sha256": "10c3z6b9gwnjybyshrgg4mh9gcj7pv7mwhci32bprsai9nbdid4p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgcG9zaXRpb24gb2YgdGhlIG5vdGlmaWNhdGlvbiBiYW5uZXIgZnJvbSB0aGUgZGVmYXVsdCB0byB0aGUgcmlnaHQgc2lkZSBvZiB0aGUgc2NyZWVuLiIsCiAgIm5hbWUiOiAiTm90aWZpY2F0aW9uIEJhbm5lciBQb3NpdGlvbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9icnVub2RydWdvd2ljay9ub3RpZmljYXRpb24tcG9zaXRpb24tZ25vbWUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJub3RpZmljYXRpb24tcG9zaXRpb25AZHJ1Z28uZGV2IiwKICAidmVyc2lvbiI6IDIKfQ=="}, "40": {"version": "2", "sha256": "10c3z6b9gwnjybyshrgg4mh9gcj7pv7mwhci32bprsai9nbdid4p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYW5nZXMgcG9zaXRpb24gb2YgdGhlIG5vdGlmaWNhdGlvbiBiYW5uZXIgZnJvbSB0aGUgZGVmYXVsdCB0byB0aGUgcmlnaHQgc2lkZSBvZiB0aGUgc2NyZWVuLiIsCiAgIm5hbWUiOiAiTm90aWZpY2F0aW9uIEJhbm5lciBQb3NpdGlvbiIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9icnVub2RydWdvd2ljay9ub3RpZmljYXRpb24tcG9zaXRpb24tZ25vbWUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJub3RpZmljYXRpb24tcG9zaXRpb25AZHJ1Z28uZGV2IiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
-, {"uuid": "volume_scroller@trflynn89.pm.me", "name": "Volume Scroller", "pname": "volume-scroller", "description": "Scroll up or down in the Top Bar to adjust volume.", "link": "https://extensions.gnome.org/extension/4109/volume-scroller/", "shell_version_map": {"38": {"version": "2", "sha256": "0wd7k5ryjq4w949qi73k5g1pi5nl5wvjxsw155ihyg3yinr8qjxs", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNjcm9sbCB1cCBvciBkb3duIGluIHRoZSBUb3AgQmFyIHRvIGFkanVzdCB2b2x1bWUuIiwKICAibmFtZSI6ICJWb2x1bWUgU2Nyb2xsZXIiLAogICJvcmlnaW5hbC1hdXRob3IiOiAidHJmbHlubjg5QHBtLm1lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vdHJmbHlubjg5L2dub21lLXNoZWxsLXZvbHVtZS1zY3JvbGxlciIsCiAgInV1aWQiOiAidm9sdW1lX3Njcm9sbGVyQHRyZmx5bm44OS5wbS5tZSIsCiAgInZlcnNpb24iOiAyCn0="}}}
-, {"uuid": "customize-ibus@hollowman.ml", "name": "Customize IBus", "pname": "customize-ibus", "description": "Full customization of appearance, behavior, system tray and input source indicator for IBus\n\nSupport Customization of:\n* Candidate Box Orientation\n* Candidate Box Animation\n* Right-click Candidate Box to Switch the Input Mode or Open the Tray Menu\n* Scroll on Candidate Box to Switch among Pages or Candidates\n* Fix Candidate Box to Not Follow the Caret and Set Fixed Position\n* Candidate Box Font\n* Input Mode Remember and Auto-switch by APP\n* Change Candidate Box Opacity\n* Fix IME List Order\n* Drag Candidate Box to Reposition\n* Show or Hide Candidate Box Page Buttons\n* System Tray Menus and Interaction Settings\n* * Show or Hide Tray Icon\n* * Directly Click Tray Icon to Switch Input Mode\n* * Add Additional Menu\n* Input Source Indicator Appearance and Interaction Settings\n* * Enable Indicator\n* * Only Indicate when Switching Input Mode\n* * Only Indicate when Using ASCII Input Mode\n* * Right-click Indicator to Hide\n* * Scroll on Indicator to Switch Input Mode\n* * Indicator Animation\n* * Customize Font\n* * Left-click Indicator to Drag to Move Indicator or Switch Input Mode\n* * Change Opacity\n* * Enable Auto-hide Indicator and Configure Auto-hide Timeout\n* Theme (Stylesheet Provided or Extracted from GNOME Shell Themes, Refer to Help Instructions in Extension for More)\n* Candidate Box Background and its Displaying Style\n* Theme and Background Picture Follow GNOME Night Light Mode\n\nUser Guide: https://hollowmansblog.wordpress.com/2021/08/21/customize-ibus-user-guide/\n\n深度定制 IBus 的外观、行为、系统托盘以及输入指示\n\n支持自定义:\n* 候选框方向\n* 候选框动画\n* 右键单击候选框以切换输入源或打开任务栏菜单\n* 候选框上滚动以切换页面或候选词\n* 固定候选框使其不跟随光标以及设定固定位置\n* 候选框字体\n* 输入模式根据应用记忆并自动切换\n* 更改候选框透明度\n* 固定输入法列表顺序\n* 拖拽移动候选框\n* 显示或隐藏候选框调页按钮\n* 系统任务栏托盘显示和交互设置\n* * 显示或隐藏托盘图标\n* * 直接点击托盘图标切换输入源\n* * 添加额外菜单\n* 输入源指示器及其显示和交互设置\n* * 启用指示器\n* * 仅在切换输入法时指示\n* * 仅在英文输入时指示\n* * 右击指示器来将其隐藏\n* * 指示器上滚动来切换输入源\n* * 指示器显示动画\n* * 自定义字体\n* * 左击指示器以拖拽移动或者切换输入源\n* * 更改透明度\n* * 启用自动隐藏以及配置自动隐藏时延\n* 皮肤样式主题(提供的或者从GNOME Shell主题中提取的样式表,参见扩展的帮助部分来获取更多指导)\n* 候选框背景图片及其显示样式\n* 主题和背景图片跟随GNOME夜灯\n\n使用指南:https://blog.csdn.net/qq_18572023/article/details/116331601", "link": "https://extensions.gnome.org/extension/4112/customize-ibus/", "shell_version_map": {"38": {"version": "72", "sha256": "1w6hi46i7k7fvm4z5hv0igr6n8cbkakcxsy103p0pbhra1r25frz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZ1bGwgY3VzdG9taXphdGlvbiBvZiBhcHBlYXJhbmNlLCBiZWhhdmlvciwgc3lzdGVtIHRyYXkgYW5kIGlucHV0IHNvdXJjZSBpbmRpY2F0b3IgZm9yIElCdXNcblxuU3VwcG9ydCBDdXN0b21pemF0aW9uIG9mOlxuKiBDYW5kaWRhdGUgQm94IE9yaWVudGF0aW9uXG4qIENhbmRpZGF0ZSBCb3ggQW5pbWF0aW9uXG4qIFJpZ2h0LWNsaWNrIENhbmRpZGF0ZSBCb3ggdG8gU3dpdGNoIHRoZSBJbnB1dCBNb2RlIG9yIE9wZW4gdGhlIFRyYXkgTWVudVxuKiBTY3JvbGwgb24gQ2FuZGlkYXRlIEJveCB0byBTd2l0Y2ggYW1vbmcgUGFnZXMgb3IgQ2FuZGlkYXRlc1xuKiBGaXggQ2FuZGlkYXRlIEJveCB0byBOb3QgRm9sbG93IHRoZSBDYXJldCBhbmQgU2V0IEZpeGVkIFBvc2l0aW9uXG4qIENhbmRpZGF0ZSBCb3ggRm9udFxuKiBJbnB1dCBNb2RlIFJlbWVtYmVyIGFuZCBBdXRvLXN3aXRjaCBieSBBUFBcbiogQ2hhbmdlIENhbmRpZGF0ZSBCb3ggT3BhY2l0eVxuKiBGaXggSU1FIExpc3QgT3JkZXJcbiogRHJhZyBDYW5kaWRhdGUgQm94IHRvIFJlcG9zaXRpb25cbiogU2hvdyBvciBIaWRlIENhbmRpZGF0ZSBCb3ggUGFnZSBCdXR0b25zXG4qIFN5c3RlbSBUcmF5IE1lbnVzIGFuZCBJbnRlcmFjdGlvbiBTZXR0aW5nc1xuKiAqIFNob3cgb3IgSGlkZSBUcmF5IEljb25cbiogKiBEaXJlY3RseSBDbGljayBUcmF5IEljb24gdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBBZGQgQWRkaXRpb25hbCBNZW51XG4qIElucHV0IFNvdXJjZSBJbmRpY2F0b3IgQXBwZWFyYW5jZSBhbmQgSW50ZXJhY3Rpb24gU2V0dGluZ3NcbiogKiBFbmFibGUgSW5kaWNhdG9yXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFN3aXRjaGluZyBJbnB1dCBNb2RlXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFVzaW5nIEFTQ0lJIElucHV0IE1vZGVcbiogKiBSaWdodC1jbGljayBJbmRpY2F0b3IgdG8gSGlkZVxuKiAqIFNjcm9sbCBvbiBJbmRpY2F0b3IgdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBJbmRpY2F0b3IgQW5pbWF0aW9uXG4qICogQ3VzdG9taXplIEZvbnRcbiogKiBMZWZ0LWNsaWNrIEluZGljYXRvciB0byBEcmFnIHRvIE1vdmUgSW5kaWNhdG9yIG9yIFN3aXRjaCBJbnB1dCBNb2RlXG4qICogQ2hhbmdlIE9wYWNpdHlcbiogKiBFbmFibGUgQXV0by1oaWRlIEluZGljYXRvciBhbmQgQ29uZmlndXJlIEF1dG8taGlkZSBUaW1lb3V0XG4qIFRoZW1lIChTdHlsZXNoZWV0IFByb3ZpZGVkIG9yIEV4dHJhY3RlZCBmcm9tIEdOT01FIFNoZWxsIFRoZW1lcywgUmVmZXIgdG8gSGVscCBJbnN0cnVjdGlvbnMgaW4gRXh0ZW5zaW9uIGZvciBNb3JlKVxuKiBDYW5kaWRhdGUgQm94IEJhY2tncm91bmQgYW5kIGl0cyBEaXNwbGF5aW5nIFN0eWxlXG4qIFRoZW1lIGFuZCBCYWNrZ3JvdW5kIFBpY3R1cmUgRm9sbG93IEdOT01FIE5pZ2h0IExpZ2h0IE1vZGVcblxuVXNlciBHdWlkZTogaHR0cHM6Ly9ob2xsb3dtYW5zYmxvZy53b3JkcHJlc3MuY29tLzIwMjEvMDgvMjEvY3VzdG9taXplLWlidXMtdXNlci1ndWlkZS9cblxuXHU2ZGYxXHU1ZWE2XHU1YjlhXHU1MjM2IElCdXMgXHU3Njg0XHU1OTE2XHU4OWMyXHUzMDAxXHU4ODRjXHU0ZTNhXHUzMDAxXHU3Y2ZiXHU3ZWRmXHU2MjU4XHU3NmQ4XHU0ZWU1XHU1M2NhXHU4ZjkzXHU1MTY1XHU2MzA3XHU3OTNhXG5cblx1NjUyZlx1NjMwMVx1ODFlYVx1NWI5YVx1NGU0OVx1ZmYxYVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTY1YjlcdTU0MTFcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU1MmE4XHU3NTNiXG4qIFx1NTNmM1x1OTUyZVx1NTM1NVx1NTFmYlx1NTAxOVx1OTAwOVx1Njg0Nlx1NGVlNVx1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFx1NjIxNlx1NjI1M1x1NWYwMFx1NGVmYlx1NTJhMVx1NjgwZlx1ODNkY1x1NTM1NVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTRlMGFcdTZlZGFcdTUyYThcdTRlZTVcdTUyMDdcdTYzNjJcdTk4NzVcdTk3NjJcdTYyMTZcdTUwMTlcdTkwMDlcdThiY2RcbiogXHU1NmZhXHU1YjlhXHU1MDE5XHU5MDA5XHU2ODQ2XHU0ZjdmXHU1MTc2XHU0ZTBkXHU4ZGRmXHU5NjhmXHU1MTQ5XHU2ODA3XHU0ZWU1XHU1M2NhXHU4YmJlXHU1YjlhXHU1NmZhXHU1YjlhXHU0ZjRkXHU3ZjZlXG4qIFx1NTAxOVx1OTAwOVx1Njg0Nlx1NWI1N1x1NGY1M1xuKiBcdThmOTNcdTUxNjVcdTZhMjFcdTVmMGZcdTY4MzlcdTYzNmVcdTVlOTRcdTc1MjhcdThiYjBcdTVmYzZcdTVlNzZcdTgxZWFcdTUyYThcdTUyMDdcdTYzNjJcbiogXHU2NmY0XHU2NTM5XHU1MDE5XHU5MDA5XHU2ODQ2XHU5MDBmXHU2NjBlXHU1ZWE2XG4qIFx1NTZmYVx1NWI5YVx1OGY5M1x1NTE2NVx1NmNkNVx1NTIxN1x1ODg2OFx1OTg3YVx1NWU4ZlxuKiBcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTUwMTlcdTkwMDlcdTY4NDZcbiogXHU2NjNlXHU3OTNhXHU2MjE2XHU5NjkwXHU4NWNmXHU1MDE5XHU5MDA5XHU2ODQ2XHU4YzAzXHU5ODc1XHU2MzA5XHU5NGFlXG4qIFx1N2NmYlx1N2VkZlx1NGVmYlx1NTJhMVx1NjgwZlx1NjI1OFx1NzZkOFx1NjYzZVx1NzkzYVx1NTQ4Y1x1NGVhNFx1NGU5Mlx1OGJiZVx1N2Y2ZVxuKiAqIFx1NjYzZVx1NzkzYVx1NjIxNlx1OTY5MFx1ODVjZlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1xuKiAqIFx1NzZmNFx1NjNhNVx1NzBiOVx1NTFmYlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1x1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFxuKiAqIFx1NmRmYlx1NTJhMFx1OTg5ZFx1NTkxNlx1ODNkY1x1NTM1NVxuKiBcdThmOTNcdTUxNjVcdTZlOTBcdTYzMDdcdTc5M2FcdTU2NjhcdTUzY2FcdTUxNzZcdTY2M2VcdTc5M2FcdTU0OGNcdTRlYTRcdTRlOTJcdThiYmVcdTdmNmVcbiogKiBcdTU0MmZcdTc1MjhcdTYzMDdcdTc5M2FcdTU2NjhcbiogKiBcdTRlYzVcdTU3MjhcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZjZDVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTRlYzVcdTU3MjhcdTgyZjFcdTY1ODdcdThmOTNcdTUxNjVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTUzZjNcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTY3NjVcdTVjMDZcdTUxNzZcdTk2OTBcdTg1Y2ZcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTRlMGFcdTZlZGFcdTUyYThcdTY3NjVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTY2M2VcdTc5M2FcdTUyYThcdTc1M2JcbiogKiBcdTgxZWFcdTViOWFcdTRlNDlcdTViNTdcdTRmNTNcbiogKiBcdTVkZTZcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTRlZTVcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTYyMTZcdTgwMDVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTY2ZjRcdTY1MzlcdTkwMGZcdTY2MGVcdTVlYTZcbiogKiBcdTU0MmZcdTc1MjhcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTRlZTVcdTUzY2FcdTkxNGRcdTdmNmVcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTY1ZjZcdTVlZjZcbiogXHU3NmFlXHU4MGE0XHU2ODM3XHU1ZjBmXHU0ZTNiXHU5ODk4XHVmZjA4XHU2M2QwXHU0ZjliXHU3Njg0XHU2MjE2XHU4MDA1XHU0ZWNlR05PTUUgU2hlbGxcdTRlM2JcdTk4OThcdTRlMmRcdTYzZDBcdTUzZDZcdTc2ODRcdTY4MzdcdTVmMGZcdTg4NjhcdWZmMGNcdTUzYzJcdTg5YzFcdTYyNjlcdTVjNTVcdTc2ODRcdTVlMmVcdTUyYTlcdTkwZThcdTUyMDZcdTY3NjVcdTgzYjdcdTUzZDZcdTY2ZjRcdTU5MWFcdTYzMDdcdTViZmNcdWZmMDlcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU4MGNjXHU2NjZmXHU1NmZlXHU3MjQ3XHU1M2NhXHU1MTc2XHU2NjNlXHU3OTNhXHU2ODM3XHU1ZjBmXG4qIFx1NGUzYlx1OTg5OFx1NTQ4Y1x1ODBjY1x1NjY2Zlx1NTZmZVx1NzI0N1x1OGRkZlx1OTY4ZkdOT01FXHU1OTFjXHU3MDZmXG5cblx1NGY3Zlx1NzUyOFx1NjMwN1x1NTM1N1x1ZmYxYWh0dHBzOi8vYmxvZy5jc2RuLm5ldC9xcV8xODU3MjAyMy9hcnRpY2xlL2RldGFpbHMvMTE2MzMxNjAxIiwKICAiZXh0ZW5zaW9uLWlkIjogImN1c3RvbWl6ZS1pYnVzIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiY3VzdG9taXplLWlidXMiLAogICJuYW1lIjogIkN1c3RvbWl6ZSBJQnVzIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJob2xsb3dtYW5AaG9sbG93bWFuLm1sIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5jdXN0b21pemUtaWJ1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb3BlblNVU0UvQ3VzdG9taXplLUlCdXMiLAogICJ1dWlkIjogImN1c3RvbWl6ZS1pYnVzQGhvbGxvd21hbi5tbCIsCiAgInZlcnNpb24iOiA3Mgp9"}, "40": {"version": "72", "sha256": "1w6hi46i7k7fvm4z5hv0igr6n8cbkakcxsy103p0pbhra1r25frz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZ1bGwgY3VzdG9taXphdGlvbiBvZiBhcHBlYXJhbmNlLCBiZWhhdmlvciwgc3lzdGVtIHRyYXkgYW5kIGlucHV0IHNvdXJjZSBpbmRpY2F0b3IgZm9yIElCdXNcblxuU3VwcG9ydCBDdXN0b21pemF0aW9uIG9mOlxuKiBDYW5kaWRhdGUgQm94IE9yaWVudGF0aW9uXG4qIENhbmRpZGF0ZSBCb3ggQW5pbWF0aW9uXG4qIFJpZ2h0LWNsaWNrIENhbmRpZGF0ZSBCb3ggdG8gU3dpdGNoIHRoZSBJbnB1dCBNb2RlIG9yIE9wZW4gdGhlIFRyYXkgTWVudVxuKiBTY3JvbGwgb24gQ2FuZGlkYXRlIEJveCB0byBTd2l0Y2ggYW1vbmcgUGFnZXMgb3IgQ2FuZGlkYXRlc1xuKiBGaXggQ2FuZGlkYXRlIEJveCB0byBOb3QgRm9sbG93IHRoZSBDYXJldCBhbmQgU2V0IEZpeGVkIFBvc2l0aW9uXG4qIENhbmRpZGF0ZSBCb3ggRm9udFxuKiBJbnB1dCBNb2RlIFJlbWVtYmVyIGFuZCBBdXRvLXN3aXRjaCBieSBBUFBcbiogQ2hhbmdlIENhbmRpZGF0ZSBCb3ggT3BhY2l0eVxuKiBGaXggSU1FIExpc3QgT3JkZXJcbiogRHJhZyBDYW5kaWRhdGUgQm94IHRvIFJlcG9zaXRpb25cbiogU2hvdyBvciBIaWRlIENhbmRpZGF0ZSBCb3ggUGFnZSBCdXR0b25zXG4qIFN5c3RlbSBUcmF5IE1lbnVzIGFuZCBJbnRlcmFjdGlvbiBTZXR0aW5nc1xuKiAqIFNob3cgb3IgSGlkZSBUcmF5IEljb25cbiogKiBEaXJlY3RseSBDbGljayBUcmF5IEljb24gdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBBZGQgQWRkaXRpb25hbCBNZW51XG4qIElucHV0IFNvdXJjZSBJbmRpY2F0b3IgQXBwZWFyYW5jZSBhbmQgSW50ZXJhY3Rpb24gU2V0dGluZ3NcbiogKiBFbmFibGUgSW5kaWNhdG9yXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFN3aXRjaGluZyBJbnB1dCBNb2RlXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFVzaW5nIEFTQ0lJIElucHV0IE1vZGVcbiogKiBSaWdodC1jbGljayBJbmRpY2F0b3IgdG8gSGlkZVxuKiAqIFNjcm9sbCBvbiBJbmRpY2F0b3IgdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBJbmRpY2F0b3IgQW5pbWF0aW9uXG4qICogQ3VzdG9taXplIEZvbnRcbiogKiBMZWZ0LWNsaWNrIEluZGljYXRvciB0byBEcmFnIHRvIE1vdmUgSW5kaWNhdG9yIG9yIFN3aXRjaCBJbnB1dCBNb2RlXG4qICogQ2hhbmdlIE9wYWNpdHlcbiogKiBFbmFibGUgQXV0by1oaWRlIEluZGljYXRvciBhbmQgQ29uZmlndXJlIEF1dG8taGlkZSBUaW1lb3V0XG4qIFRoZW1lIChTdHlsZXNoZWV0IFByb3ZpZGVkIG9yIEV4dHJhY3RlZCBmcm9tIEdOT01FIFNoZWxsIFRoZW1lcywgUmVmZXIgdG8gSGVscCBJbnN0cnVjdGlvbnMgaW4gRXh0ZW5zaW9uIGZvciBNb3JlKVxuKiBDYW5kaWRhdGUgQm94IEJhY2tncm91bmQgYW5kIGl0cyBEaXNwbGF5aW5nIFN0eWxlXG4qIFRoZW1lIGFuZCBCYWNrZ3JvdW5kIFBpY3R1cmUgRm9sbG93IEdOT01FIE5pZ2h0IExpZ2h0IE1vZGVcblxuVXNlciBHdWlkZTogaHR0cHM6Ly9ob2xsb3dtYW5zYmxvZy53b3JkcHJlc3MuY29tLzIwMjEvMDgvMjEvY3VzdG9taXplLWlidXMtdXNlci1ndWlkZS9cblxuXHU2ZGYxXHU1ZWE2XHU1YjlhXHU1MjM2IElCdXMgXHU3Njg0XHU1OTE2XHU4OWMyXHUzMDAxXHU4ODRjXHU0ZTNhXHUzMDAxXHU3Y2ZiXHU3ZWRmXHU2MjU4XHU3NmQ4XHU0ZWU1XHU1M2NhXHU4ZjkzXHU1MTY1XHU2MzA3XHU3OTNhXG5cblx1NjUyZlx1NjMwMVx1ODFlYVx1NWI5YVx1NGU0OVx1ZmYxYVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTY1YjlcdTU0MTFcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU1MmE4XHU3NTNiXG4qIFx1NTNmM1x1OTUyZVx1NTM1NVx1NTFmYlx1NTAxOVx1OTAwOVx1Njg0Nlx1NGVlNVx1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFx1NjIxNlx1NjI1M1x1NWYwMFx1NGVmYlx1NTJhMVx1NjgwZlx1ODNkY1x1NTM1NVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTRlMGFcdTZlZGFcdTUyYThcdTRlZTVcdTUyMDdcdTYzNjJcdTk4NzVcdTk3NjJcdTYyMTZcdTUwMTlcdTkwMDlcdThiY2RcbiogXHU1NmZhXHU1YjlhXHU1MDE5XHU5MDA5XHU2ODQ2XHU0ZjdmXHU1MTc2XHU0ZTBkXHU4ZGRmXHU5NjhmXHU1MTQ5XHU2ODA3XHU0ZWU1XHU1M2NhXHU4YmJlXHU1YjlhXHU1NmZhXHU1YjlhXHU0ZjRkXHU3ZjZlXG4qIFx1NTAxOVx1OTAwOVx1Njg0Nlx1NWI1N1x1NGY1M1xuKiBcdThmOTNcdTUxNjVcdTZhMjFcdTVmMGZcdTY4MzlcdTYzNmVcdTVlOTRcdTc1MjhcdThiYjBcdTVmYzZcdTVlNzZcdTgxZWFcdTUyYThcdTUyMDdcdTYzNjJcbiogXHU2NmY0XHU2NTM5XHU1MDE5XHU5MDA5XHU2ODQ2XHU5MDBmXHU2NjBlXHU1ZWE2XG4qIFx1NTZmYVx1NWI5YVx1OGY5M1x1NTE2NVx1NmNkNVx1NTIxN1x1ODg2OFx1OTg3YVx1NWU4ZlxuKiBcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTUwMTlcdTkwMDlcdTY4NDZcbiogXHU2NjNlXHU3OTNhXHU2MjE2XHU5NjkwXHU4NWNmXHU1MDE5XHU5MDA5XHU2ODQ2XHU4YzAzXHU5ODc1XHU2MzA5XHU5NGFlXG4qIFx1N2NmYlx1N2VkZlx1NGVmYlx1NTJhMVx1NjgwZlx1NjI1OFx1NzZkOFx1NjYzZVx1NzkzYVx1NTQ4Y1x1NGVhNFx1NGU5Mlx1OGJiZVx1N2Y2ZVxuKiAqIFx1NjYzZVx1NzkzYVx1NjIxNlx1OTY5MFx1ODVjZlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1xuKiAqIFx1NzZmNFx1NjNhNVx1NzBiOVx1NTFmYlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1x1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFxuKiAqIFx1NmRmYlx1NTJhMFx1OTg5ZFx1NTkxNlx1ODNkY1x1NTM1NVxuKiBcdThmOTNcdTUxNjVcdTZlOTBcdTYzMDdcdTc5M2FcdTU2NjhcdTUzY2FcdTUxNzZcdTY2M2VcdTc5M2FcdTU0OGNcdTRlYTRcdTRlOTJcdThiYmVcdTdmNmVcbiogKiBcdTU0MmZcdTc1MjhcdTYzMDdcdTc5M2FcdTU2NjhcbiogKiBcdTRlYzVcdTU3MjhcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZjZDVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTRlYzVcdTU3MjhcdTgyZjFcdTY1ODdcdThmOTNcdTUxNjVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTUzZjNcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTY3NjVcdTVjMDZcdTUxNzZcdTk2OTBcdTg1Y2ZcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTRlMGFcdTZlZGFcdTUyYThcdTY3NjVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTY2M2VcdTc5M2FcdTUyYThcdTc1M2JcbiogKiBcdTgxZWFcdTViOWFcdTRlNDlcdTViNTdcdTRmNTNcbiogKiBcdTVkZTZcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTRlZTVcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTYyMTZcdTgwMDVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTY2ZjRcdTY1MzlcdTkwMGZcdTY2MGVcdTVlYTZcbiogKiBcdTU0MmZcdTc1MjhcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTRlZTVcdTUzY2FcdTkxNGRcdTdmNmVcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTY1ZjZcdTVlZjZcbiogXHU3NmFlXHU4MGE0XHU2ODM3XHU1ZjBmXHU0ZTNiXHU5ODk4XHVmZjA4XHU2M2QwXHU0ZjliXHU3Njg0XHU2MjE2XHU4MDA1XHU0ZWNlR05PTUUgU2hlbGxcdTRlM2JcdTk4OThcdTRlMmRcdTYzZDBcdTUzZDZcdTc2ODRcdTY4MzdcdTVmMGZcdTg4NjhcdWZmMGNcdTUzYzJcdTg5YzFcdTYyNjlcdTVjNTVcdTc2ODRcdTVlMmVcdTUyYTlcdTkwZThcdTUyMDZcdTY3NjVcdTgzYjdcdTUzZDZcdTY2ZjRcdTU5MWFcdTYzMDdcdTViZmNcdWZmMDlcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU4MGNjXHU2NjZmXHU1NmZlXHU3MjQ3XHU1M2NhXHU1MTc2XHU2NjNlXHU3OTNhXHU2ODM3XHU1ZjBmXG4qIFx1NGUzYlx1OTg5OFx1NTQ4Y1x1ODBjY1x1NjY2Zlx1NTZmZVx1NzI0N1x1OGRkZlx1OTY4ZkdOT01FXHU1OTFjXHU3MDZmXG5cblx1NGY3Zlx1NzUyOFx1NjMwN1x1NTM1N1x1ZmYxYWh0dHBzOi8vYmxvZy5jc2RuLm5ldC9xcV8xODU3MjAyMy9hcnRpY2xlL2RldGFpbHMvMTE2MzMxNjAxIiwKICAiZXh0ZW5zaW9uLWlkIjogImN1c3RvbWl6ZS1pYnVzIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiY3VzdG9taXplLWlidXMiLAogICJuYW1lIjogIkN1c3RvbWl6ZSBJQnVzIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJob2xsb3dtYW5AaG9sbG93bWFuLm1sIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5jdXN0b21pemUtaWJ1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb3BlblNVU0UvQ3VzdG9taXplLUlCdXMiLAogICJ1dWlkIjogImN1c3RvbWl6ZS1pYnVzQGhvbGxvd21hbi5tbCIsCiAgInZlcnNpb24iOiA3Mgp9"}}}
+, {"uuid": "volume_scroller@trflynn89.pm.me", "name": "Volume Scroller", "pname": "volume-scroller", "description": "Scroll up or down in the Top Bar to adjust volume.", "link": "https://extensions.gnome.org/extension/4109/volume-scroller/", "shell_version_map": {"38": {"version": "5", "sha256": "035gkl1g3k3jqmksgmh2aip3v4k8kkbc6gdnndg6lnhz6czn9c12", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNjcm9sbCB1cCBvciBkb3duIGluIHRoZSBUb3AgQmFyIHRvIGFkanVzdCB2b2x1bWUuIiwKICAibmFtZSI6ICJWb2x1bWUgU2Nyb2xsZXIiLAogICJvcmlnaW5hbC1hdXRob3IiOiAidHJmbHlubjg5QHBtLm1lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3RyZmx5bm44OS9nbm9tZS1zaGVsbC12b2x1bWUtc2Nyb2xsZXIiLAogICJ1dWlkIjogInZvbHVtZV9zY3JvbGxlckB0cmZseW5uODkucG0ubWUiLAogICJ2ZXJzaW9uIjogNQp9"}, "40": {"version": "5", "sha256": "035gkl1g3k3jqmksgmh2aip3v4k8kkbc6gdnndg6lnhz6czn9c12", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNjcm9sbCB1cCBvciBkb3duIGluIHRoZSBUb3AgQmFyIHRvIGFkanVzdCB2b2x1bWUuIiwKICAibmFtZSI6ICJWb2x1bWUgU2Nyb2xsZXIiLAogICJvcmlnaW5hbC1hdXRob3IiOiAidHJmbHlubjg5QHBtLm1lIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3RyZmx5bm44OS9nbm9tZS1zaGVsbC12b2x1bWUtc2Nyb2xsZXIiLAogICJ1dWlkIjogInZvbHVtZV9zY3JvbGxlckB0cmZseW5uODkucG0ubWUiLAogICJ2ZXJzaW9uIjogNQp9"}}}
+, {"uuid": "customize-ibus@hollowman.ml", "name": "Customize IBus", "pname": "customize-ibus", "description": "Full customization of appearance, behavior, system tray and input source indicator for IBus\n\nSupport Customization of:\n* Candidate Box Orientation\n* Candidate Box Animation\n* Right-click Candidate Box to Switch the Input Mode or Open the Tray Menu\n* Scroll on Candidate Box to Switch among Pages or Candidates\n* Fix Candidate Box to Not Follow the Caret and Set Fixed Position\n* Candidate Box Font\n* Input Mode Remember and Auto-switch by APP\n* Change Candidate Box Opacity\n* Fix IME List Order\n* Drag Candidate Box to Reposition\n* Show or Hide Candidate Box Page Buttons\n* System Tray Menus and Interaction Settings\n* * Show or Hide Tray Icon\n* * Directly Click Tray Icon to Switch Input Mode\n* * Add Additional Menu\n* Input Source Indicator Appearance and Interaction Settings\n* * Enable Indicator\n* * Only Indicate when Switching Input Mode\n* * Only Indicate when Using ASCII Input Mode\n* * Right-click Indicator to Hide\n* * Scroll on Indicator to Switch Input Mode\n* * Indicator Animation\n* * Customize Font\n* * Left-click Indicator to Drag to Move Indicator or Switch Input Mode\n* * Change Opacity\n* * Enable Auto-hide Indicator and Configure Auto-hide Timeout\n* Theme (Stylesheet Provided or Extracted from GNOME Shell Themes, Refer to Help Instructions in Extension for More)\n* Candidate Box Background and its Displaying Style\n* Theme and Background Picture Follow GNOME Night Light Mode\n\nUser Guide: https://hollowmansblog.wordpress.com/2021/08/21/customize-ibus-user-guide/\n\n深度定制 IBus 的外观、行为、系统托盘以及输入指示\n\n支持自定义:\n* 候选框方向\n* 候选框动画\n* 右键单击候选框以切换输入源或打开任务栏菜单\n* 候选框上滚动以切换页面或候选词\n* 固定候选框使其不跟随光标以及设定固定位置\n* 候选框字体\n* 输入模式根据应用记忆并自动切换\n* 更改候选框透明度\n* 固定输入法列表顺序\n* 拖拽移动候选框\n* 显示或隐藏候选框调页按钮\n* 系统任务栏托盘显示和交互设置\n* * 显示或隐藏托盘图标\n* * 直接点击托盘图标切换输入源\n* * 添加额外菜单\n* 输入源指示器及其显示和交互设置\n* * 启用指示器\n* * 仅在切换输入法时指示\n* * 仅在英文输入时指示\n* * 右击指示器来将其隐藏\n* * 指示器上滚动来切换输入源\n* * 指示器显示动画\n* * 自定义字体\n* * 左击指示器以拖拽移动或者切换输入源\n* * 更改透明度\n* * 启用自动隐藏以及配置自动隐藏时延\n* 皮肤样式主题(提供的或者从GNOME Shell主题中提取的样式表,参见扩展的帮助部分来获取更多指导)\n* 候选框背景图片及其显示样式\n* 主题和背景图片跟随GNOME夜灯\n\n使用指南:https://blog.csdn.net/qq_18572023/article/details/116331601", "link": "https://extensions.gnome.org/extension/4112/customize-ibus/", "shell_version_map": {"38": {"version": "75", "sha256": "1hagdzn3k27aal1kcsjsfzbas1xbnzv8z3hdmriypxvy531adz2d", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZ1bGwgY3VzdG9taXphdGlvbiBvZiBhcHBlYXJhbmNlLCBiZWhhdmlvciwgc3lzdGVtIHRyYXkgYW5kIGlucHV0IHNvdXJjZSBpbmRpY2F0b3IgZm9yIElCdXNcblxuU3VwcG9ydCBDdXN0b21pemF0aW9uIG9mOlxuKiBDYW5kaWRhdGUgQm94IE9yaWVudGF0aW9uXG4qIENhbmRpZGF0ZSBCb3ggQW5pbWF0aW9uXG4qIFJpZ2h0LWNsaWNrIENhbmRpZGF0ZSBCb3ggdG8gU3dpdGNoIHRoZSBJbnB1dCBNb2RlIG9yIE9wZW4gdGhlIFRyYXkgTWVudVxuKiBTY3JvbGwgb24gQ2FuZGlkYXRlIEJveCB0byBTd2l0Y2ggYW1vbmcgUGFnZXMgb3IgQ2FuZGlkYXRlc1xuKiBGaXggQ2FuZGlkYXRlIEJveCB0byBOb3QgRm9sbG93IHRoZSBDYXJldCBhbmQgU2V0IEZpeGVkIFBvc2l0aW9uXG4qIENhbmRpZGF0ZSBCb3ggRm9udFxuKiBJbnB1dCBNb2RlIFJlbWVtYmVyIGFuZCBBdXRvLXN3aXRjaCBieSBBUFBcbiogQ2hhbmdlIENhbmRpZGF0ZSBCb3ggT3BhY2l0eVxuKiBGaXggSU1FIExpc3QgT3JkZXJcbiogRHJhZyBDYW5kaWRhdGUgQm94IHRvIFJlcG9zaXRpb25cbiogU2hvdyBvciBIaWRlIENhbmRpZGF0ZSBCb3ggUGFnZSBCdXR0b25zXG4qIFN5c3RlbSBUcmF5IE1lbnVzIGFuZCBJbnRlcmFjdGlvbiBTZXR0aW5nc1xuKiAqIFNob3cgb3IgSGlkZSBUcmF5IEljb25cbiogKiBEaXJlY3RseSBDbGljayBUcmF5IEljb24gdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBBZGQgQWRkaXRpb25hbCBNZW51XG4qIElucHV0IFNvdXJjZSBJbmRpY2F0b3IgQXBwZWFyYW5jZSBhbmQgSW50ZXJhY3Rpb24gU2V0dGluZ3NcbiogKiBFbmFibGUgSW5kaWNhdG9yXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFN3aXRjaGluZyBJbnB1dCBNb2RlXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFVzaW5nIEFTQ0lJIElucHV0IE1vZGVcbiogKiBSaWdodC1jbGljayBJbmRpY2F0b3IgdG8gSGlkZVxuKiAqIFNjcm9sbCBvbiBJbmRpY2F0b3IgdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBJbmRpY2F0b3IgQW5pbWF0aW9uXG4qICogQ3VzdG9taXplIEZvbnRcbiogKiBMZWZ0LWNsaWNrIEluZGljYXRvciB0byBEcmFnIHRvIE1vdmUgSW5kaWNhdG9yIG9yIFN3aXRjaCBJbnB1dCBNb2RlXG4qICogQ2hhbmdlIE9wYWNpdHlcbiogKiBFbmFibGUgQXV0by1oaWRlIEluZGljYXRvciBhbmQgQ29uZmlndXJlIEF1dG8taGlkZSBUaW1lb3V0XG4qIFRoZW1lIChTdHlsZXNoZWV0IFByb3ZpZGVkIG9yIEV4dHJhY3RlZCBmcm9tIEdOT01FIFNoZWxsIFRoZW1lcywgUmVmZXIgdG8gSGVscCBJbnN0cnVjdGlvbnMgaW4gRXh0ZW5zaW9uIGZvciBNb3JlKVxuKiBDYW5kaWRhdGUgQm94IEJhY2tncm91bmQgYW5kIGl0cyBEaXNwbGF5aW5nIFN0eWxlXG4qIFRoZW1lIGFuZCBCYWNrZ3JvdW5kIFBpY3R1cmUgRm9sbG93IEdOT01FIE5pZ2h0IExpZ2h0IE1vZGVcblxuVXNlciBHdWlkZTogaHR0cHM6Ly9ob2xsb3dtYW5zYmxvZy53b3JkcHJlc3MuY29tLzIwMjEvMDgvMjEvY3VzdG9taXplLWlidXMtdXNlci1ndWlkZS9cblxuXHU2ZGYxXHU1ZWE2XHU1YjlhXHU1MjM2IElCdXMgXHU3Njg0XHU1OTE2XHU4OWMyXHUzMDAxXHU4ODRjXHU0ZTNhXHUzMDAxXHU3Y2ZiXHU3ZWRmXHU2MjU4XHU3NmQ4XHU0ZWU1XHU1M2NhXHU4ZjkzXHU1MTY1XHU2MzA3XHU3OTNhXG5cblx1NjUyZlx1NjMwMVx1ODFlYVx1NWI5YVx1NGU0OVx1ZmYxYVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTY1YjlcdTU0MTFcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU1MmE4XHU3NTNiXG4qIFx1NTNmM1x1OTUyZVx1NTM1NVx1NTFmYlx1NTAxOVx1OTAwOVx1Njg0Nlx1NGVlNVx1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFx1NjIxNlx1NjI1M1x1NWYwMFx1NGVmYlx1NTJhMVx1NjgwZlx1ODNkY1x1NTM1NVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTRlMGFcdTZlZGFcdTUyYThcdTRlZTVcdTUyMDdcdTYzNjJcdTk4NzVcdTk3NjJcdTYyMTZcdTUwMTlcdTkwMDlcdThiY2RcbiogXHU1NmZhXHU1YjlhXHU1MDE5XHU5MDA5XHU2ODQ2XHU0ZjdmXHU1MTc2XHU0ZTBkXHU4ZGRmXHU5NjhmXHU1MTQ5XHU2ODA3XHU0ZWU1XHU1M2NhXHU4YmJlXHU1YjlhXHU1NmZhXHU1YjlhXHU0ZjRkXHU3ZjZlXG4qIFx1NTAxOVx1OTAwOVx1Njg0Nlx1NWI1N1x1NGY1M1xuKiBcdThmOTNcdTUxNjVcdTZhMjFcdTVmMGZcdTY4MzlcdTYzNmVcdTVlOTRcdTc1MjhcdThiYjBcdTVmYzZcdTVlNzZcdTgxZWFcdTUyYThcdTUyMDdcdTYzNjJcbiogXHU2NmY0XHU2NTM5XHU1MDE5XHU5MDA5XHU2ODQ2XHU5MDBmXHU2NjBlXHU1ZWE2XG4qIFx1NTZmYVx1NWI5YVx1OGY5M1x1NTE2NVx1NmNkNVx1NTIxN1x1ODg2OFx1OTg3YVx1NWU4ZlxuKiBcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTUwMTlcdTkwMDlcdTY4NDZcbiogXHU2NjNlXHU3OTNhXHU2MjE2XHU5NjkwXHU4NWNmXHU1MDE5XHU5MDA5XHU2ODQ2XHU4YzAzXHU5ODc1XHU2MzA5XHU5NGFlXG4qIFx1N2NmYlx1N2VkZlx1NGVmYlx1NTJhMVx1NjgwZlx1NjI1OFx1NzZkOFx1NjYzZVx1NzkzYVx1NTQ4Y1x1NGVhNFx1NGU5Mlx1OGJiZVx1N2Y2ZVxuKiAqIFx1NjYzZVx1NzkzYVx1NjIxNlx1OTY5MFx1ODVjZlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1xuKiAqIFx1NzZmNFx1NjNhNVx1NzBiOVx1NTFmYlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1x1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFxuKiAqIFx1NmRmYlx1NTJhMFx1OTg5ZFx1NTkxNlx1ODNkY1x1NTM1NVxuKiBcdThmOTNcdTUxNjVcdTZlOTBcdTYzMDdcdTc5M2FcdTU2NjhcdTUzY2FcdTUxNzZcdTY2M2VcdTc5M2FcdTU0OGNcdTRlYTRcdTRlOTJcdThiYmVcdTdmNmVcbiogKiBcdTU0MmZcdTc1MjhcdTYzMDdcdTc5M2FcdTU2NjhcbiogKiBcdTRlYzVcdTU3MjhcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZjZDVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTRlYzVcdTU3MjhcdTgyZjFcdTY1ODdcdThmOTNcdTUxNjVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTUzZjNcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTY3NjVcdTVjMDZcdTUxNzZcdTk2OTBcdTg1Y2ZcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTRlMGFcdTZlZGFcdTUyYThcdTY3NjVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTY2M2VcdTc5M2FcdTUyYThcdTc1M2JcbiogKiBcdTgxZWFcdTViOWFcdTRlNDlcdTViNTdcdTRmNTNcbiogKiBcdTVkZTZcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTRlZTVcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTYyMTZcdTgwMDVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTY2ZjRcdTY1MzlcdTkwMGZcdTY2MGVcdTVlYTZcbiogKiBcdTU0MmZcdTc1MjhcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTRlZTVcdTUzY2FcdTkxNGRcdTdmNmVcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTY1ZjZcdTVlZjZcbiogXHU3NmFlXHU4MGE0XHU2ODM3XHU1ZjBmXHU0ZTNiXHU5ODk4XHVmZjA4XHU2M2QwXHU0ZjliXHU3Njg0XHU2MjE2XHU4MDA1XHU0ZWNlR05PTUUgU2hlbGxcdTRlM2JcdTk4OThcdTRlMmRcdTYzZDBcdTUzZDZcdTc2ODRcdTY4MzdcdTVmMGZcdTg4NjhcdWZmMGNcdTUzYzJcdTg5YzFcdTYyNjlcdTVjNTVcdTc2ODRcdTVlMmVcdTUyYTlcdTkwZThcdTUyMDZcdTY3NjVcdTgzYjdcdTUzZDZcdTY2ZjRcdTU5MWFcdTYzMDdcdTViZmNcdWZmMDlcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU4MGNjXHU2NjZmXHU1NmZlXHU3MjQ3XHU1M2NhXHU1MTc2XHU2NjNlXHU3OTNhXHU2ODM3XHU1ZjBmXG4qIFx1NGUzYlx1OTg5OFx1NTQ4Y1x1ODBjY1x1NjY2Zlx1NTZmZVx1NzI0N1x1OGRkZlx1OTY4ZkdOT01FXHU1OTFjXHU3MDZmXG5cblx1NGY3Zlx1NzUyOFx1NjMwN1x1NTM1N1x1ZmYxYWh0dHBzOi8vYmxvZy5jc2RuLm5ldC9xcV8xODU3MjAyMy9hcnRpY2xlL2RldGFpbHMvMTE2MzMxNjAxIiwKICAiZXh0ZW5zaW9uLWlkIjogImN1c3RvbWl6ZS1pYnVzIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiY3VzdG9taXplLWlidXMiLAogICJuYW1lIjogIkN1c3RvbWl6ZSBJQnVzIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJob2xsb3dtYW5AaG9sbG93bWFuLm1sIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5jdXN0b21pemUtaWJ1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb3BlblNVU0UvQ3VzdG9taXplLUlCdXMiLAogICJ1dWlkIjogImN1c3RvbWl6ZS1pYnVzQGhvbGxvd21hbi5tbCIsCiAgInZlcnNpb24iOiA3NQp9"}, "40": {"version": "75", "sha256": "1hagdzn3k27aal1kcsjsfzbas1xbnzv8z3hdmriypxvy531adz2d", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZ1bGwgY3VzdG9taXphdGlvbiBvZiBhcHBlYXJhbmNlLCBiZWhhdmlvciwgc3lzdGVtIHRyYXkgYW5kIGlucHV0IHNvdXJjZSBpbmRpY2F0b3IgZm9yIElCdXNcblxuU3VwcG9ydCBDdXN0b21pemF0aW9uIG9mOlxuKiBDYW5kaWRhdGUgQm94IE9yaWVudGF0aW9uXG4qIENhbmRpZGF0ZSBCb3ggQW5pbWF0aW9uXG4qIFJpZ2h0LWNsaWNrIENhbmRpZGF0ZSBCb3ggdG8gU3dpdGNoIHRoZSBJbnB1dCBNb2RlIG9yIE9wZW4gdGhlIFRyYXkgTWVudVxuKiBTY3JvbGwgb24gQ2FuZGlkYXRlIEJveCB0byBTd2l0Y2ggYW1vbmcgUGFnZXMgb3IgQ2FuZGlkYXRlc1xuKiBGaXggQ2FuZGlkYXRlIEJveCB0byBOb3QgRm9sbG93IHRoZSBDYXJldCBhbmQgU2V0IEZpeGVkIFBvc2l0aW9uXG4qIENhbmRpZGF0ZSBCb3ggRm9udFxuKiBJbnB1dCBNb2RlIFJlbWVtYmVyIGFuZCBBdXRvLXN3aXRjaCBieSBBUFBcbiogQ2hhbmdlIENhbmRpZGF0ZSBCb3ggT3BhY2l0eVxuKiBGaXggSU1FIExpc3QgT3JkZXJcbiogRHJhZyBDYW5kaWRhdGUgQm94IHRvIFJlcG9zaXRpb25cbiogU2hvdyBvciBIaWRlIENhbmRpZGF0ZSBCb3ggUGFnZSBCdXR0b25zXG4qIFN5c3RlbSBUcmF5IE1lbnVzIGFuZCBJbnRlcmFjdGlvbiBTZXR0aW5nc1xuKiAqIFNob3cgb3IgSGlkZSBUcmF5IEljb25cbiogKiBEaXJlY3RseSBDbGljayBUcmF5IEljb24gdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBBZGQgQWRkaXRpb25hbCBNZW51XG4qIElucHV0IFNvdXJjZSBJbmRpY2F0b3IgQXBwZWFyYW5jZSBhbmQgSW50ZXJhY3Rpb24gU2V0dGluZ3NcbiogKiBFbmFibGUgSW5kaWNhdG9yXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFN3aXRjaGluZyBJbnB1dCBNb2RlXG4qICogT25seSBJbmRpY2F0ZSB3aGVuIFVzaW5nIEFTQ0lJIElucHV0IE1vZGVcbiogKiBSaWdodC1jbGljayBJbmRpY2F0b3IgdG8gSGlkZVxuKiAqIFNjcm9sbCBvbiBJbmRpY2F0b3IgdG8gU3dpdGNoIElucHV0IE1vZGVcbiogKiBJbmRpY2F0b3IgQW5pbWF0aW9uXG4qICogQ3VzdG9taXplIEZvbnRcbiogKiBMZWZ0LWNsaWNrIEluZGljYXRvciB0byBEcmFnIHRvIE1vdmUgSW5kaWNhdG9yIG9yIFN3aXRjaCBJbnB1dCBNb2RlXG4qICogQ2hhbmdlIE9wYWNpdHlcbiogKiBFbmFibGUgQXV0by1oaWRlIEluZGljYXRvciBhbmQgQ29uZmlndXJlIEF1dG8taGlkZSBUaW1lb3V0XG4qIFRoZW1lIChTdHlsZXNoZWV0IFByb3ZpZGVkIG9yIEV4dHJhY3RlZCBmcm9tIEdOT01FIFNoZWxsIFRoZW1lcywgUmVmZXIgdG8gSGVscCBJbnN0cnVjdGlvbnMgaW4gRXh0ZW5zaW9uIGZvciBNb3JlKVxuKiBDYW5kaWRhdGUgQm94IEJhY2tncm91bmQgYW5kIGl0cyBEaXNwbGF5aW5nIFN0eWxlXG4qIFRoZW1lIGFuZCBCYWNrZ3JvdW5kIFBpY3R1cmUgRm9sbG93IEdOT01FIE5pZ2h0IExpZ2h0IE1vZGVcblxuVXNlciBHdWlkZTogaHR0cHM6Ly9ob2xsb3dtYW5zYmxvZy53b3JkcHJlc3MuY29tLzIwMjEvMDgvMjEvY3VzdG9taXplLWlidXMtdXNlci1ndWlkZS9cblxuXHU2ZGYxXHU1ZWE2XHU1YjlhXHU1MjM2IElCdXMgXHU3Njg0XHU1OTE2XHU4OWMyXHUzMDAxXHU4ODRjXHU0ZTNhXHUzMDAxXHU3Y2ZiXHU3ZWRmXHU2MjU4XHU3NmQ4XHU0ZWU1XHU1M2NhXHU4ZjkzXHU1MTY1XHU2MzA3XHU3OTNhXG5cblx1NjUyZlx1NjMwMVx1ODFlYVx1NWI5YVx1NGU0OVx1ZmYxYVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTY1YjlcdTU0MTFcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU1MmE4XHU3NTNiXG4qIFx1NTNmM1x1OTUyZVx1NTM1NVx1NTFmYlx1NTAxOVx1OTAwOVx1Njg0Nlx1NGVlNVx1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFx1NjIxNlx1NjI1M1x1NWYwMFx1NGVmYlx1NTJhMVx1NjgwZlx1ODNkY1x1NTM1NVxuKiBcdTUwMTlcdTkwMDlcdTY4NDZcdTRlMGFcdTZlZGFcdTUyYThcdTRlZTVcdTUyMDdcdTYzNjJcdTk4NzVcdTk3NjJcdTYyMTZcdTUwMTlcdTkwMDlcdThiY2RcbiogXHU1NmZhXHU1YjlhXHU1MDE5XHU5MDA5XHU2ODQ2XHU0ZjdmXHU1MTc2XHU0ZTBkXHU4ZGRmXHU5NjhmXHU1MTQ5XHU2ODA3XHU0ZWU1XHU1M2NhXHU4YmJlXHU1YjlhXHU1NmZhXHU1YjlhXHU0ZjRkXHU3ZjZlXG4qIFx1NTAxOVx1OTAwOVx1Njg0Nlx1NWI1N1x1NGY1M1xuKiBcdThmOTNcdTUxNjVcdTZhMjFcdTVmMGZcdTY4MzlcdTYzNmVcdTVlOTRcdTc1MjhcdThiYjBcdTVmYzZcdTVlNzZcdTgxZWFcdTUyYThcdTUyMDdcdTYzNjJcbiogXHU2NmY0XHU2NTM5XHU1MDE5XHU5MDA5XHU2ODQ2XHU5MDBmXHU2NjBlXHU1ZWE2XG4qIFx1NTZmYVx1NWI5YVx1OGY5M1x1NTE2NVx1NmNkNVx1NTIxN1x1ODg2OFx1OTg3YVx1NWU4ZlxuKiBcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTUwMTlcdTkwMDlcdTY4NDZcbiogXHU2NjNlXHU3OTNhXHU2MjE2XHU5NjkwXHU4NWNmXHU1MDE5XHU5MDA5XHU2ODQ2XHU4YzAzXHU5ODc1XHU2MzA5XHU5NGFlXG4qIFx1N2NmYlx1N2VkZlx1NGVmYlx1NTJhMVx1NjgwZlx1NjI1OFx1NzZkOFx1NjYzZVx1NzkzYVx1NTQ4Y1x1NGVhNFx1NGU5Mlx1OGJiZVx1N2Y2ZVxuKiAqIFx1NjYzZVx1NzkzYVx1NjIxNlx1OTY5MFx1ODVjZlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1xuKiAqIFx1NzZmNFx1NjNhNVx1NzBiOVx1NTFmYlx1NjI1OFx1NzZkOFx1NTZmZVx1NjgwN1x1NTIwN1x1NjM2Mlx1OGY5M1x1NTE2NVx1NmU5MFxuKiAqIFx1NmRmYlx1NTJhMFx1OTg5ZFx1NTkxNlx1ODNkY1x1NTM1NVxuKiBcdThmOTNcdTUxNjVcdTZlOTBcdTYzMDdcdTc5M2FcdTU2NjhcdTUzY2FcdTUxNzZcdTY2M2VcdTc5M2FcdTU0OGNcdTRlYTRcdTRlOTJcdThiYmVcdTdmNmVcbiogKiBcdTU0MmZcdTc1MjhcdTYzMDdcdTc5M2FcdTU2NjhcbiogKiBcdTRlYzVcdTU3MjhcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZjZDVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTRlYzVcdTU3MjhcdTgyZjFcdTY1ODdcdThmOTNcdTUxNjVcdTY1ZjZcdTYzMDdcdTc5M2FcbiogKiBcdTUzZjNcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTY3NjVcdTVjMDZcdTUxNzZcdTk2OTBcdTg1Y2ZcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTRlMGFcdTZlZGFcdTUyYThcdTY3NjVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTYzMDdcdTc5M2FcdTU2NjhcdTY2M2VcdTc5M2FcdTUyYThcdTc1M2JcbiogKiBcdTgxZWFcdTViOWFcdTRlNDlcdTViNTdcdTRmNTNcbiogKiBcdTVkZTZcdTUxZmJcdTYzMDdcdTc5M2FcdTU2NjhcdTRlZTVcdTYyZDZcdTYyZmRcdTc5ZmJcdTUyYThcdTYyMTZcdTgwMDVcdTUyMDdcdTYzNjJcdThmOTNcdTUxNjVcdTZlOTBcbiogKiBcdTY2ZjRcdTY1MzlcdTkwMGZcdTY2MGVcdTVlYTZcbiogKiBcdTU0MmZcdTc1MjhcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTRlZTVcdTUzY2FcdTkxNGRcdTdmNmVcdTgxZWFcdTUyYThcdTk2OTBcdTg1Y2ZcdTY1ZjZcdTVlZjZcbiogXHU3NmFlXHU4MGE0XHU2ODM3XHU1ZjBmXHU0ZTNiXHU5ODk4XHVmZjA4XHU2M2QwXHU0ZjliXHU3Njg0XHU2MjE2XHU4MDA1XHU0ZWNlR05PTUUgU2hlbGxcdTRlM2JcdTk4OThcdTRlMmRcdTYzZDBcdTUzZDZcdTc2ODRcdTY4MzdcdTVmMGZcdTg4NjhcdWZmMGNcdTUzYzJcdTg5YzFcdTYyNjlcdTVjNTVcdTc2ODRcdTVlMmVcdTUyYTlcdTkwZThcdTUyMDZcdTY3NjVcdTgzYjdcdTUzZDZcdTY2ZjRcdTU5MWFcdTYzMDdcdTViZmNcdWZmMDlcbiogXHU1MDE5XHU5MDA5XHU2ODQ2XHU4MGNjXHU2NjZmXHU1NmZlXHU3MjQ3XHU1M2NhXHU1MTc2XHU2NjNlXHU3OTNhXHU2ODM3XHU1ZjBmXG4qIFx1NGUzYlx1OTg5OFx1NTQ4Y1x1ODBjY1x1NjY2Zlx1NTZmZVx1NzI0N1x1OGRkZlx1OTY4ZkdOT01FXHU1OTFjXHU3MDZmXG5cblx1NGY3Zlx1NzUyOFx1NjMwN1x1NTM1N1x1ZmYxYWh0dHBzOi8vYmxvZy5jc2RuLm5ldC9xcV8xODU3MjAyMy9hcnRpY2xlL2RldGFpbHMvMTE2MzMxNjAxIiwKICAiZXh0ZW5zaW9uLWlkIjogImN1c3RvbWl6ZS1pYnVzIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiY3VzdG9taXplLWlidXMiLAogICJuYW1lIjogIkN1c3RvbWl6ZSBJQnVzIiwKICAib3JpZ2luYWwtYXV0aG9ycyI6IFsKICAgICJob2xsb3dtYW5AaG9sbG93bWFuLm1sIgogIF0sCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5jdXN0b21pemUtaWJ1cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNCIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAuMCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vb3BlblNVU0UvQ3VzdG9taXplLUlCdXMiLAogICJ1dWlkIjogImN1c3RvbWl6ZS1pYnVzQGhvbGxvd21hbi5tbCIsCiAgInZlcnNpb24iOiA3NQp9"}}}
, {"uuid": "fildemGMenu@gonza.com", "name": "Fildem global menu", "pname": "fildem-global-menu", "description": "Global menu and HUD for Gnome\n\nThis extension requires the installation of an external program. Please, check the instructions on Github.\n\nThis extension works on gnome 40 but the preferences doesn’t work, if you want you can install it manually modifing the version supported on metadata.", "link": "https://extensions.gnome.org/extension/4114/fildem-global-menu/", "shell_version_map": {"38": {"version": "1", "sha256": "0zgkf4cb4hl0r6r1kzwlvnr4f2svlpwayrw7xqs39fa19cc1zasv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdsb2JhbCBtZW51IGFuZCBIVUQgZm9yIEdub21lXG5cblRoaXMgZXh0ZW5zaW9uIHJlcXVpcmVzIHRoZSBpbnN0YWxsYXRpb24gb2YgYW4gZXh0ZXJuYWwgcHJvZ3JhbS4gUGxlYXNlLCBjaGVjayB0aGUgaW5zdHJ1Y3Rpb25zIG9uIEdpdGh1Yi5cblxuVGhpcyBleHRlbnNpb24gd29ya3Mgb24gZ25vbWUgNDAgYnV0IHRoZSBwcmVmZXJlbmNlcyBkb2Vzblx1MjAxOXQgd29yaywgaWYgeW91IHdhbnQgeW91IGNhbiBpbnN0YWxsIGl0IG1hbnVhbGx5IG1vZGlmaW5nIHRoZSB2ZXJzaW9uIHN1cHBvcnRlZCBvbiBtZXRhZGF0YS4iLAogICJuYW1lIjogIkZpbGRlbSBnbG9iYWwgbWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5maWxkZW0tZ2xvYmFsLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9nb256YWFyY3IvRmlsZGVtIiwKICAidXVpZCI6ICJmaWxkZW1HTWVudUBnb256YS5jb20iLAogICJ2ZXJzaW9uIjogMQp9"}}}
, {"uuid": "remove-panel@sulincix", "name": "RemovePanel", "pname": "removepanel", "description": "remove top panel from gnome-shell", "link": "https://extensions.gnome.org/extension/4118/removepanel/", "shell_version_map": {"38": {"version": "4", "sha256": "0f6p5cd68qlb082favqf2h7q4vn8c6rh0y48g3s2d9fxgccvc1di", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogInJlbW92ZSB0b3AgcGFuZWwgZnJvbSBnbm9tZS1zaGVsbCIsCiAgIm5hbWUiOiAiUmVtb3ZlUGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAicmVtb3ZlLXBhbmVsQHN1bGluY2l4IiwKICAidmVyc2lvbiI6IDQKfQ=="}}}
, {"uuid": "bottom-triggers-activities@papjul", "name": "Bottom triggers Activities overview", "pname": "bottom-triggers-activities-overview", "description": "DEPRECATION NOTICE: No longer maintained. Please migrate to another extension such as Hot Edge https://extensions.gnome.org/extension/4222/hot-edge/\n\nAllows to toggle Activities overview when the mouse reaches the bottom edge of the screen.\nPLEASE report your bugs to the extension homepage link below. I cannot reply to you if you write a review here.\n\nThis is a fork of Dash to Dock focusing only on doing this, it adds support for Gnome Shell 40 and is mainly aimed at Gnome Shell 40 users to reduce mouse travel.\n\nI may backport fixes from upstream, but I don't intend to add any new feature and may not fix any bug if I'm not affected/cannot reproduce. However, I will accept pull requests that keep the extension in the KISS principle. It could be adding a prefs UI for toggle delay and edge(s) triggered, or supporting multiple monitors.\n\nYou can customize the following parameters from the constructor of extension.js:\n this._position = St.Side.BOTTOM;\n this._toggleDelay = 0.25;", "link": "https://extensions.gnome.org/extension/4120/bottom-triggers-activities-overview/", "shell_version_map": {"38": {"version": "2", "sha256": "1q1ahz612w2fzbvky8ydwns2kykbj2vqcr5ddyncg16lhrfzx9vq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRFUFJFQ0FUSU9OIE5PVElDRTogTm8gbG9uZ2VyIG1haW50YWluZWQuIFBsZWFzZSBtaWdyYXRlIHRvIGFub3RoZXIgZXh0ZW5zaW9uIHN1Y2ggYXMgSG90IEVkZ2UgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vNDIyMi9ob3QtZWRnZS9cblxuQWxsb3dzIHRvIHRvZ2dsZSBBY3Rpdml0aWVzIG92ZXJ2aWV3IHdoZW4gdGhlIG1vdXNlIHJlYWNoZXMgdGhlIGJvdHRvbSBlZGdlIG9mIHRoZSBzY3JlZW4uXG5QTEVBU0UgcmVwb3J0IHlvdXIgYnVncyB0byB0aGUgZXh0ZW5zaW9uIGhvbWVwYWdlIGxpbmsgYmVsb3cuIEkgY2Fubm90IHJlcGx5IHRvIHlvdSBpZiB5b3Ugd3JpdGUgYSByZXZpZXcgaGVyZS5cblxuVGhpcyBpcyBhIGZvcmsgb2YgRGFzaCB0byBEb2NrIGZvY3VzaW5nIG9ubHkgb24gZG9pbmcgdGhpcywgaXQgYWRkcyBzdXBwb3J0IGZvciBHbm9tZSBTaGVsbCA0MCBhbmQgaXMgbWFpbmx5IGFpbWVkIGF0IEdub21lIFNoZWxsIDQwIHVzZXJzIHRvIHJlZHVjZSBtb3VzZSB0cmF2ZWwuXG5cbkkgbWF5IGJhY2twb3J0IGZpeGVzIGZyb20gdXBzdHJlYW0sIGJ1dCBJIGRvbid0IGludGVuZCB0byBhZGQgYW55IG5ldyBmZWF0dXJlIGFuZCBtYXkgbm90IGZpeCBhbnkgYnVnIGlmIEknbSBub3QgYWZmZWN0ZWQvY2Fubm90IHJlcHJvZHVjZS4gSG93ZXZlciwgSSB3aWxsIGFjY2VwdCBwdWxsIHJlcXVlc3RzIHRoYXQga2VlcCB0aGUgZXh0ZW5zaW9uIGluIHRoZSBLSVNTIHByaW5jaXBsZS4gSXQgY291bGQgYmUgYWRkaW5nIGEgcHJlZnMgVUkgZm9yIHRvZ2dsZSBkZWxheSBhbmQgZWRnZShzKSB0cmlnZ2VyZWQsIG9yIHN1cHBvcnRpbmcgbXVsdGlwbGUgbW9uaXRvcnMuXG5cbllvdSBjYW4gY3VzdG9taXplIHRoZSBmb2xsb3dpbmcgcGFyYW1ldGVycyBmcm9tIHRoZSBjb25zdHJ1Y3RvciBvZiBleHRlbnNpb24uanM6XG4gICAgICAgIHRoaXMuX3Bvc2l0aW9uID0gU3QuU2lkZS5CT1RUT007XG4gICAgICAgIHRoaXMuX3RvZ2dsZURlbGF5ID0gMC4yNTsiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJib3R0b210cmlnZ2Vyc2FjdGl2aXRpZXMiLAogICJuYW1lIjogIkJvdHRvbSB0cmlnZ2VycyBBY3Rpdml0aWVzIG92ZXJ2aWV3IiwKICAib3JpZ2luYWwtYXV0aG9yIjogInBhcGp1bCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9wYXBqdWwvYm90dG9tLXRyaWdnZXJzLWFjdGl2aXRpZXMiLAogICJ1dWlkIjogImJvdHRvbS10cmlnZ2Vycy1hY3Rpdml0aWVzQHBhcGp1bCIsCiAgInZlcnNpb24iOiAyCn0="}, "40": {"version": "2", "sha256": "1q1ahz612w2fzbvky8ydwns2kykbj2vqcr5ddyncg16lhrfzx9vq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRFUFJFQ0FUSU9OIE5PVElDRTogTm8gbG9uZ2VyIG1haW50YWluZWQuIFBsZWFzZSBtaWdyYXRlIHRvIGFub3RoZXIgZXh0ZW5zaW9uIHN1Y2ggYXMgSG90IEVkZ2UgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vNDIyMi9ob3QtZWRnZS9cblxuQWxsb3dzIHRvIHRvZ2dsZSBBY3Rpdml0aWVzIG92ZXJ2aWV3IHdoZW4gdGhlIG1vdXNlIHJlYWNoZXMgdGhlIGJvdHRvbSBlZGdlIG9mIHRoZSBzY3JlZW4uXG5QTEVBU0UgcmVwb3J0IHlvdXIgYnVncyB0byB0aGUgZXh0ZW5zaW9uIGhvbWVwYWdlIGxpbmsgYmVsb3cuIEkgY2Fubm90IHJlcGx5IHRvIHlvdSBpZiB5b3Ugd3JpdGUgYSByZXZpZXcgaGVyZS5cblxuVGhpcyBpcyBhIGZvcmsgb2YgRGFzaCB0byBEb2NrIGZvY3VzaW5nIG9ubHkgb24gZG9pbmcgdGhpcywgaXQgYWRkcyBzdXBwb3J0IGZvciBHbm9tZSBTaGVsbCA0MCBhbmQgaXMgbWFpbmx5IGFpbWVkIGF0IEdub21lIFNoZWxsIDQwIHVzZXJzIHRvIHJlZHVjZSBtb3VzZSB0cmF2ZWwuXG5cbkkgbWF5IGJhY2twb3J0IGZpeGVzIGZyb20gdXBzdHJlYW0sIGJ1dCBJIGRvbid0IGludGVuZCB0byBhZGQgYW55IG5ldyBmZWF0dXJlIGFuZCBtYXkgbm90IGZpeCBhbnkgYnVnIGlmIEknbSBub3QgYWZmZWN0ZWQvY2Fubm90IHJlcHJvZHVjZS4gSG93ZXZlciwgSSB3aWxsIGFjY2VwdCBwdWxsIHJlcXVlc3RzIHRoYXQga2VlcCB0aGUgZXh0ZW5zaW9uIGluIHRoZSBLSVNTIHByaW5jaXBsZS4gSXQgY291bGQgYmUgYWRkaW5nIGEgcHJlZnMgVUkgZm9yIHRvZ2dsZSBkZWxheSBhbmQgZWRnZShzKSB0cmlnZ2VyZWQsIG9yIHN1cHBvcnRpbmcgbXVsdGlwbGUgbW9uaXRvcnMuXG5cbllvdSBjYW4gY3VzdG9taXplIHRoZSBmb2xsb3dpbmcgcGFyYW1ldGVycyBmcm9tIHRoZSBjb25zdHJ1Y3RvciBvZiBleHRlbnNpb24uanM6XG4gICAgICAgIHRoaXMuX3Bvc2l0aW9uID0gU3QuU2lkZS5CT1RUT007XG4gICAgICAgIHRoaXMuX3RvZ2dsZURlbGF5ID0gMC4yNTsiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJib3R0b210cmlnZ2Vyc2FjdGl2aXRpZXMiLAogICJuYW1lIjogIkJvdHRvbSB0cmlnZ2VycyBBY3Rpdml0aWVzIG92ZXJ2aWV3IiwKICAib3JpZ2luYWwtYXV0aG9yIjogInBhcGp1bCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9wYXBqdWwvYm90dG9tLXRyaWdnZXJzLWFjdGl2aXRpZXMiLAogICJ1dWlkIjogImJvdHRvbS10cmlnZ2Vycy1hY3Rpdml0aWVzQHBhcGp1bCIsCiAgInZlcnNpb24iOiAyCn0="}}}
@@ -457,7 +463,7 @@
, {"uuid": "clippie@blackjackshellac.ca", "name": "clippie [replaced by eclipse]", "pname": "clippie", "description": "clippie has been rereleased as 'eclipse'\n\nClipboard interface to gpaste-client output\n\nhttps://extensions.gnome.org/extension/4246/eclipse/\n\nClippie now uses dbus to communicate with the gpaste daemon\nAdded encryption of clipboard items with eclipse feature", "link": "https://extensions.gnome.org/extension/4182/clippie/", "shell_version_map": {"38": {"version": "6", "sha256": "05kd2pq605k21yq6wcaqcm2lrpnlc6mbiq1wxgmwdnpvi7ib2h8k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImNsaXBwaWUgaGFzIGJlZW4gcmVyZWxlYXNlZCBhcyAnZWNsaXBzZSdcblxuQ2xpcGJvYXJkIGludGVyZmFjZSB0byBncGFzdGUtY2xpZW50IG91dHB1dFxuXG5odHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi80MjQ2L2VjbGlwc2UvXG5cbkNsaXBwaWUgbm93IHVzZXMgZGJ1cyB0byBjb21tdW5pY2F0ZSB3aXRoIHRoZSBncGFzdGUgZGFlbW9uXG5BZGRlZCBlbmNyeXB0aW9uIG9mIGNsaXBib2FyZCBpdGVtcyB3aXRoIGVjbGlwc2UgZmVhdHVyZSIsCiAgImdldHRleHQtZG9tYWluIjogImNsaXBwaWUtYmxhY2tqYWNrc2hlbGxhYyIsCiAgIm5hbWUiOiAiY2xpcHBpZSBbcmVwbGFjZWQgYnkgZWNsaXBzZV0iLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuY2xpcHBpZS1ibGFja2phY2tzaGVsbGFjIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2JsYWNramFja3NoZWxsYWMvZWNsaXBzZSIsCiAgInV1aWQiOiAiY2xpcHBpZUBibGFja2phY2tzaGVsbGFjLmNhIiwKICAidmVyc2lvbiI6IDYKfQ=="}, "40": {"version": "6", "sha256": "05kd2pq605k21yq6wcaqcm2lrpnlc6mbiq1wxgmwdnpvi7ib2h8k", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImNsaXBwaWUgaGFzIGJlZW4gcmVyZWxlYXNlZCBhcyAnZWNsaXBzZSdcblxuQ2xpcGJvYXJkIGludGVyZmFjZSB0byBncGFzdGUtY2xpZW50IG91dHB1dFxuXG5odHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi80MjQ2L2VjbGlwc2UvXG5cbkNsaXBwaWUgbm93IHVzZXMgZGJ1cyB0byBjb21tdW5pY2F0ZSB3aXRoIHRoZSBncGFzdGUgZGFlbW9uXG5BZGRlZCBlbmNyeXB0aW9uIG9mIGNsaXBib2FyZCBpdGVtcyB3aXRoIGVjbGlwc2UgZmVhdHVyZSIsCiAgImdldHRleHQtZG9tYWluIjogImNsaXBwaWUtYmxhY2tqYWNrc2hlbGxhYyIsCiAgIm5hbWUiOiAiY2xpcHBpZSBbcmVwbGFjZWQgYnkgZWNsaXBzZV0iLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuY2xpcHBpZS1ibGFja2phY2tzaGVsbGFjIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2JsYWNramFja3NoZWxsYWMvZWNsaXBzZSIsCiAgInV1aWQiOiAiY2xpcHBpZUBibGFja2phY2tzaGVsbGFjLmNhIiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
, {"uuid": "screen-autorotate@kosmospredanie.yandex.ru", "name": "Screen Autorotate", "pname": "screen-autorotate", "description": "Enable screen rotation regardless of touch mode", "link": "https://extensions.gnome.org/extension/4191/screen-autorotate/", "shell_version_map": {"40": {"version": "2", "sha256": "0s8jb0d644kprcd2adidgjsbhm6fqwm896bh4p05yyd9zwkm1bq2", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkVuYWJsZSBzY3JlZW4gcm90YXRpb24gcmVnYXJkbGVzcyBvZiB0b3VjaCBtb2RlIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXNjcmVlbi1hdXRvcm90YXRlIiwKICAibmFtZSI6ICJTY3JlZW4gQXV0b3JvdGF0ZSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zY3JlZW4tYXV0b3JvdGF0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9rb3Ntb3NwcmVkYW5pZS9nbm9tZS1zaGVsbC1leHRlbnNpb24tc2NyZWVuLWF1dG9yb3RhdGUiLAogICJ1dWlkIjogInNjcmVlbi1hdXRvcm90YXRlQGtvc21vc3ByZWRhbmllLnlhbmRleC5ydSIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "Low_Latency_Loopback@jacebennest87.gmail.com", "name": "Low Latency Loopback", "pname": "low-latency-loopback", "description": "Enables a low latency PulseAudio loopback device", "link": "https://extensions.gnome.org/extension/4194/low-latency-loopback/", "shell_version_map": {"38": {"version": "2", "sha256": "0dqjy59c8dgn81x84hifnzldb54n1l31qrbg2m08i84zxrc40x4n", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkVuYWJsZXMgYSBsb3cgbGF0ZW5jeSBQdWxzZUF1ZGlvIGxvb3BiYWNrIGRldmljZSIsCiAgIm5hbWUiOiAiTG93IExhdGVuY3kgTG9vcGJhY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmNvbS90aGVqYWNlcjg3L2xvdy1sYXRlbmN5LWxvb3BiYWNrIiwKICAidXVpZCI6ICJMb3dfTGF0ZW5jeV9Mb29wYmFja0BqYWNlYmVubmVzdDg3LmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiAyCn0="}}}
-, {"uuid": "dash-to-plank@hardpixel.eu", "name": "Dash to Plank", "pname": "dash-to-plank", "description": "GNOME Shell integration for Plank, the simplest dock on the planet. To use this extension, you must have Plank installed on your system.\n\nThis extension depends on Plank. To install it:\n- Debian/Ubuntu: apt install plank\n- Fedora/RHEL: dnf install plank\n- Arch: pacman -S plank\n\n** This extension does NOT WORK on WAYLAND.", "link": "https://extensions.gnome.org/extension/4198/dash-to-plank/", "shell_version_map": {"38": {"version": "11", "sha256": "1075km7wfmgxqw17vvdkcfwcjs44wzfnw5rla5msvrb8kv1hx7ap", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdOT01FIFNoZWxsIGludGVncmF0aW9uIGZvciBQbGFuaywgdGhlIHNpbXBsZXN0IGRvY2sgb24gdGhlIHBsYW5ldC4gVG8gdXNlIHRoaXMgZXh0ZW5zaW9uLCB5b3UgbXVzdCBoYXZlIFBsYW5rIGluc3RhbGxlZCBvbiB5b3VyIHN5c3RlbS5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBQbGFuay4gVG8gaW5zdGFsbCBpdDpcbi0gRGViaWFuL1VidW50dTogYXB0IGluc3RhbGwgcGxhbmtcbi0gRmVkb3JhL1JIRUw6IGRuZiBpbnN0YWxsIHBsYW5rXG4tIEFyY2g6IHBhY21hbiAtUyBwbGFua1xuXG4qKiBUaGlzIGV4dGVuc2lvbiBkb2VzIE5PVCBXT1JLIG9uIFdBWUxBTkQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaC10by1wbGFuayIsCiAgIm5hbWUiOiAiRGFzaCB0byBQbGFuayIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5kYXNoLXRvLXBsYW5rIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oYXJkcGl4ZWwvZGFzaC10by1wbGFuayIsCiAgInV1aWQiOiAiZGFzaC10by1wbGFua0BoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogMTEKfQ=="}, "40": {"version": "11", "sha256": "1075km7wfmgxqw17vvdkcfwcjs44wzfnw5rla5msvrb8kv1hx7ap", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdOT01FIFNoZWxsIGludGVncmF0aW9uIGZvciBQbGFuaywgdGhlIHNpbXBsZXN0IGRvY2sgb24gdGhlIHBsYW5ldC4gVG8gdXNlIHRoaXMgZXh0ZW5zaW9uLCB5b3UgbXVzdCBoYXZlIFBsYW5rIGluc3RhbGxlZCBvbiB5b3VyIHN5c3RlbS5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBQbGFuay4gVG8gaW5zdGFsbCBpdDpcbi0gRGViaWFuL1VidW50dTogYXB0IGluc3RhbGwgcGxhbmtcbi0gRmVkb3JhL1JIRUw6IGRuZiBpbnN0YWxsIHBsYW5rXG4tIEFyY2g6IHBhY21hbiAtUyBwbGFua1xuXG4qKiBUaGlzIGV4dGVuc2lvbiBkb2VzIE5PVCBXT1JLIG9uIFdBWUxBTkQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaC10by1wbGFuayIsCiAgIm5hbWUiOiAiRGFzaCB0byBQbGFuayIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5kYXNoLXRvLXBsYW5rIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oYXJkcGl4ZWwvZGFzaC10by1wbGFuayIsCiAgInV1aWQiOiAiZGFzaC10by1wbGFua0BoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogMTEKfQ=="}}}
+, {"uuid": "dash-to-plank@hardpixel.eu", "name": "Dash to Plank", "pname": "dash-to-plank", "description": "GNOME Shell integration for Plank, the simplest dock on the planet. To use this extension, you must have Plank installed on your system.\n\nThis extension depends on Plank. To install it:\n- Debian/Ubuntu: apt install plank\n- Fedora/RHEL: dnf install plank\n- Arch: pacman -S plank\n\n** This extension does NOT WORK on WAYLAND.", "link": "https://extensions.gnome.org/extension/4198/dash-to-plank/", "shell_version_map": {"38": {"version": "12", "sha256": "14pjbqjgg9aksjgk6mm1hkxn08qpzxiimy5qsfcrkjp31qjldan3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdOT01FIFNoZWxsIGludGVncmF0aW9uIGZvciBQbGFuaywgdGhlIHNpbXBsZXN0IGRvY2sgb24gdGhlIHBsYW5ldC4gVG8gdXNlIHRoaXMgZXh0ZW5zaW9uLCB5b3UgbXVzdCBoYXZlIFBsYW5rIGluc3RhbGxlZCBvbiB5b3VyIHN5c3RlbS5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBQbGFuay4gVG8gaW5zdGFsbCBpdDpcbi0gRGViaWFuL1VidW50dTogYXB0IGluc3RhbGwgcGxhbmtcbi0gRmVkb3JhL1JIRUw6IGRuZiBpbnN0YWxsIHBsYW5rXG4tIEFyY2g6IHBhY21hbiAtUyBwbGFua1xuXG4qKiBUaGlzIGV4dGVuc2lvbiBkb2VzIE5PVCBXT1JLIG9uIFdBWUxBTkQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaC10by1wbGFuayIsCiAgIm5hbWUiOiAiRGFzaCB0byBQbGFuayIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5kYXNoLXRvLXBsYW5rIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oYXJkcGl4ZWwvZGFzaC10by1wbGFuayIsCiAgInV1aWQiOiAiZGFzaC10by1wbGFua0BoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogMTIKfQ=="}, "40": {"version": "12", "sha256": "14pjbqjgg9aksjgk6mm1hkxn08qpzxiimy5qsfcrkjp31qjldan3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdOT01FIFNoZWxsIGludGVncmF0aW9uIGZvciBQbGFuaywgdGhlIHNpbXBsZXN0IGRvY2sgb24gdGhlIHBsYW5ldC4gVG8gdXNlIHRoaXMgZXh0ZW5zaW9uLCB5b3UgbXVzdCBoYXZlIFBsYW5rIGluc3RhbGxlZCBvbiB5b3VyIHN5c3RlbS5cblxuVGhpcyBleHRlbnNpb24gZGVwZW5kcyBvbiBQbGFuay4gVG8gaW5zdGFsbCBpdDpcbi0gRGViaWFuL1VidW50dTogYXB0IGluc3RhbGwgcGxhbmtcbi0gRmVkb3JhL1JIRUw6IGRuZiBpbnN0YWxsIHBsYW5rXG4tIEFyY2g6IHBhY21hbiAtUyBwbGFua1xuXG4qKiBUaGlzIGV4dGVuc2lvbiBkb2VzIE5PVCBXT1JLIG9uIFdBWUxBTkQuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZGFzaC10by1wbGFuayIsCiAgIm5hbWUiOiAiRGFzaCB0byBQbGFuayIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5kYXNoLXRvLXBsYW5rIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9oYXJkcGl4ZWwvZGFzaC10by1wbGFuayIsCiAgInV1aWQiOiAiZGFzaC10by1wbGFua0BoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogMTIKfQ=="}}}
, {"uuid": "rrc@ogarcia.me", "name": "Remove Rounded Corners", "pname": "remove-rounded-corners", "description": "Removes rounded corners from main panel or top bar", "link": "https://extensions.gnome.org/extension/4201/remove-rounded-corners/", "shell_version_map": {"40": {"version": "2", "sha256": "1432bvjcknhw57j6ngpppclvkdnpy9dcqv0na4vqcvl2l035bbxv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlbW92ZXMgcm91bmRlZCBjb3JuZXJzIGZyb20gbWFpbiBwYW5lbCBvciB0b3AgYmFyIiwKICAibmFtZSI6ICJSZW1vdmUgUm91bmRlZCBDb3JuZXJzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL29nYXJjaWEvcmVtb3ZlLXJvdW5kZWQtY29ybmVycyIsCiAgInV1aWQiOiAicnJjQG9nYXJjaWEubWUiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "private-switcher@dziban.com", "name": "Private Switcher", "pname": "private-switcher", "description": "Simple extension that allows you do have independent app switcher (alt-tab) for each workspace.", "link": "https://extensions.gnome.org/extension/4204/private-switcher/", "shell_version_map": {"38": {"version": "1", "sha256": "1awjnic8zca2f6viah2l4ai0pyfdyisxna9ys1zzpya11rwj6jk7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBleHRlbnNpb24gdGhhdCBhbGxvd3MgeW91IGRvIGhhdmUgaW5kZXBlbmRlbnQgYXBwIHN3aXRjaGVyIChhbHQtdGFiKSBmb3IgZWFjaCB3b3Jrc3BhY2UuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAicHJpdmF0ZS1zd2l0Y2hlciIsCiAgIm5hbWUiOiAiUHJpdmF0ZSBTd2l0Y2hlciIsCiAgInNjaGVtYS1pZCI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5wcml2YXRlLXN3aXRjaGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC5iZXRhIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tIiwKICAidXVpZCI6ICJwcml2YXRlLXN3aXRjaGVyQGR6aWJhbi5jb20iLAogICJ2ZXJzaW9uIjogMQp9"}, "40": {"version": "1", "sha256": "1awjnic8zca2f6viah2l4ai0pyfdyisxna9ys1zzpya11rwj6jk7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBleHRlbnNpb24gdGhhdCBhbGxvd3MgeW91IGRvIGhhdmUgaW5kZXBlbmRlbnQgYXBwIHN3aXRjaGVyIChhbHQtdGFiKSBmb3IgZWFjaCB3b3Jrc3BhY2UuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAicHJpdmF0ZS1zd2l0Y2hlciIsCiAgIm5hbWUiOiAiUHJpdmF0ZSBTd2l0Y2hlciIsCiAgInNjaGVtYS1pZCI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5wcml2YXRlLXN3aXRjaGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC5iZXRhIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tIiwKICAidXVpZCI6ICJwcml2YXRlLXN3aXRjaGVyQGR6aWJhbi5jb20iLAogICJ2ZXJzaW9uIjogMQp9"}}}
, {"uuid": "colosseum@sereneblue", "name": "Colosseum", "pname": "colosseum", "description": "View live scores for your favorite sports teams.", "link": "https://extensions.gnome.org/extension/4207/colosseum/", "shell_version_map": {"40": {"version": "6", "sha256": "1gpv6d4jxsx842wjlj7g9fz870jl9fcwp0fhxbrsgp8jhk6jnpcq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlZpZXcgbGl2ZSBzY29yZXMgZm9yIHlvdXIgZmF2b3JpdGUgc3BvcnRzIHRlYW1zLiIsCiAgIm5hbWUiOiAiQ29sb3NzZXVtIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zZXJlbmVibHVlL2dub21lLXNoZWxsLWV4dGVuc2lvbi1jb2xvc3NldW0iLAogICJ1dWlkIjogImNvbG9zc2V1bUBzZXJlbmVibHVlIiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
@@ -472,17 +478,17 @@
, {"uuid": "eclipse@blackjackshellac.ca", "name": "eclipse", "pname": "eclipse", "description": "eclipse clipboard interface with item encryption\n\nAdded encryption of clipboard items. Encrypted items can be\nsaved to disk in a folder of your choice. These items are persisted\nbetween sessions using openssl to encrypt the content.\n\nEclipse uses dbus to communicate with the gpaste daemon.\n\nThe following utilities are required,\n\n# for example, on fedora (add gpaste-ui for gpaste settings gui)\n$ sudo dnf install gpaste openssl\n# ubuntu\n$ sudo apt install gpaste openssl\n\nNow works with Gpaste 1 and Gpaste 2 on GS 3.36, 3.38 and 40\n\nIf updating the extension reports an ERROR it should work after the next reboot or if you logout and login again. If you're not running on Wayland you should be able to just restart the shell (Alt+F2,r).\n\nPlease report issues on github.\n", "link": "https://extensions.gnome.org/extension/4246/eclipse/", "shell_version_map": {"38": {"version": "8", "sha256": "09j5f8p23m4v2bdad582497r194z05x4izc2wywp9nhv1nldcs3n", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImVjbGlwc2UgY2xpcGJvYXJkIGludGVyZmFjZSB3aXRoIGl0ZW0gZW5jcnlwdGlvblxuXG5BZGRlZCBlbmNyeXB0aW9uIG9mIGNsaXBib2FyZCBpdGVtcy4gRW5jcnlwdGVkIGl0ZW1zIGNhbiBiZVxuc2F2ZWQgdG8gZGlzayBpbiBhIGZvbGRlciBvZiB5b3VyIGNob2ljZS4gVGhlc2UgaXRlbXMgYXJlIHBlcnNpc3RlZFxuYmV0d2VlbiBzZXNzaW9ucyB1c2luZyBvcGVuc3NsIHRvIGVuY3J5cHQgdGhlIGNvbnRlbnQuXG5cbkVjbGlwc2UgdXNlcyBkYnVzIHRvIGNvbW11bmljYXRlIHdpdGggdGhlIGdwYXN0ZSBkYWVtb24uXG5cblRoZSBmb2xsb3dpbmcgdXRpbGl0aWVzIGFyZSByZXF1aXJlZCxcblxuIyBmb3IgZXhhbXBsZSwgb24gZmVkb3JhIChhZGQgZ3Bhc3RlLXVpIGZvciBncGFzdGUgc2V0dGluZ3MgZ3VpKVxuJCBzdWRvIGRuZiBpbnN0YWxsIGdwYXN0ZSBvcGVuc3NsXG4jIHVidW50dVxuJCBzdWRvIGFwdCBpbnN0YWxsIGdwYXN0ZSBvcGVuc3NsXG5cbk5vdyB3b3JrcyB3aXRoIEdwYXN0ZSAxIGFuZCBHcGFzdGUgMiBvbiBHUyAzLjM2LCAzLjM4IGFuZCA0MFxuXG5JZiB1cGRhdGluZyB0aGUgZXh0ZW5zaW9uIHJlcG9ydHMgYW4gRVJST1IgaXQgc2hvdWxkIHdvcmsgYWZ0ZXIgdGhlIG5leHQgcmVib290IG9yIGlmIHlvdSBsb2dvdXQgYW5kIGxvZ2luIGFnYWluLiBJZiB5b3UncmUgbm90IHJ1bm5pbmcgb24gV2F5bGFuZCB5b3Ugc2hvdWxkIGJlIGFibGUgdG8ganVzdCByZXN0YXJ0IHRoZSBzaGVsbCAoQWx0K0YyLHIpLlxuXG5QbGVhc2UgcmVwb3J0IGlzc3VlcyBvbiBnaXRodWIuXG4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJlY2xpcHNlLWJsYWNramFja3NoZWxsYWMiLAogICJuYW1lIjogImVjbGlwc2UiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZWNsaXBzZS1ibGFja2phY2tzaGVsbGFjIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2JsYWNramFja3NoZWxsYWMvZWNsaXBzZSIsCiAgInV1aWQiOiAiZWNsaXBzZUBibGFja2phY2tzaGVsbGFjLmNhIiwKICAidmVyc2lvbiI6IDgKfQ=="}, "40": {"version": "8", "sha256": "09j5f8p23m4v2bdad582497r194z05x4izc2wywp9nhv1nldcs3n", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImVjbGlwc2UgY2xpcGJvYXJkIGludGVyZmFjZSB3aXRoIGl0ZW0gZW5jcnlwdGlvblxuXG5BZGRlZCBlbmNyeXB0aW9uIG9mIGNsaXBib2FyZCBpdGVtcy4gRW5jcnlwdGVkIGl0ZW1zIGNhbiBiZVxuc2F2ZWQgdG8gZGlzayBpbiBhIGZvbGRlciBvZiB5b3VyIGNob2ljZS4gVGhlc2UgaXRlbXMgYXJlIHBlcnNpc3RlZFxuYmV0d2VlbiBzZXNzaW9ucyB1c2luZyBvcGVuc3NsIHRvIGVuY3J5cHQgdGhlIGNvbnRlbnQuXG5cbkVjbGlwc2UgdXNlcyBkYnVzIHRvIGNvbW11bmljYXRlIHdpdGggdGhlIGdwYXN0ZSBkYWVtb24uXG5cblRoZSBmb2xsb3dpbmcgdXRpbGl0aWVzIGFyZSByZXF1aXJlZCxcblxuIyBmb3IgZXhhbXBsZSwgb24gZmVkb3JhIChhZGQgZ3Bhc3RlLXVpIGZvciBncGFzdGUgc2V0dGluZ3MgZ3VpKVxuJCBzdWRvIGRuZiBpbnN0YWxsIGdwYXN0ZSBvcGVuc3NsXG4jIHVidW50dVxuJCBzdWRvIGFwdCBpbnN0YWxsIGdwYXN0ZSBvcGVuc3NsXG5cbk5vdyB3b3JrcyB3aXRoIEdwYXN0ZSAxIGFuZCBHcGFzdGUgMiBvbiBHUyAzLjM2LCAzLjM4IGFuZCA0MFxuXG5JZiB1cGRhdGluZyB0aGUgZXh0ZW5zaW9uIHJlcG9ydHMgYW4gRVJST1IgaXQgc2hvdWxkIHdvcmsgYWZ0ZXIgdGhlIG5leHQgcmVib290IG9yIGlmIHlvdSBsb2dvdXQgYW5kIGxvZ2luIGFnYWluLiBJZiB5b3UncmUgbm90IHJ1bm5pbmcgb24gV2F5bGFuZCB5b3Ugc2hvdWxkIGJlIGFibGUgdG8ganVzdCByZXN0YXJ0IHRoZSBzaGVsbCAoQWx0K0YyLHIpLlxuXG5QbGVhc2UgcmVwb3J0IGlzc3VlcyBvbiBnaXRodWIuXG4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJlY2xpcHNlLWJsYWNramFja3NoZWxsYWMiLAogICJuYW1lIjogImVjbGlwc2UiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZWNsaXBzZS1ibGFja2phY2tzaGVsbGFjIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2JsYWNramFja3NoZWxsYWMvZWNsaXBzZSIsCiAgInV1aWQiOiAiZWNsaXBzZUBibGFja2phY2tzaGVsbGFjLmNhIiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
, {"uuid": "audio-switcher@albertomosconi", "name": "Audio Switcher 40", "pname": "audio-switcher-40", "description": "Adds a switch for choosing audio input/output to the system menu in GNOME 40. (Makes InputSlider always visible)", "link": "https://extensions.gnome.org/extension/4248/audio-switcher-40/", "shell_version_map": {"38": {"version": "4", "sha256": "0mvc4f6i7vsqijq8l4adcixdyycfxmd7kvw13d5h0vx4hg6vam1g", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYSBzd2l0Y2ggZm9yIGNob29zaW5nIGF1ZGlvIGlucHV0L291dHB1dCB0byB0aGUgc3lzdGVtIG1lbnUgaW4gR05PTUUgNDAuIChNYWtlcyBJbnB1dFNsaWRlciBhbHdheXMgdmlzaWJsZSkiLAogICJuYW1lIjogIkF1ZGlvIFN3aXRjaGVyIDQwIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4xIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cDovL2dpdGh1Yi5jb20vYWxiZXJ0b21vc2NvbmkvYXVkaW8tc3dpdGNoZXIiLAogICJ1dWlkIjogImF1ZGlvLXN3aXRjaGVyQGFsYmVydG9tb3Njb25pIiwKICAidmVyc2lvbiI6IDQKfQ=="}, "40": {"version": "4", "sha256": "0mvc4f6i7vsqijq8l4adcixdyycfxmd7kvw13d5h0vx4hg6vam1g", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYSBzd2l0Y2ggZm9yIGNob29zaW5nIGF1ZGlvIGlucHV0L291dHB1dCB0byB0aGUgc3lzdGVtIG1lbnUgaW4gR05PTUUgNDAuIChNYWtlcyBJbnB1dFNsaWRlciBhbHdheXMgdmlzaWJsZSkiLAogICJuYW1lIjogIkF1ZGlvIFN3aXRjaGVyIDQwIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MC4xIiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cDovL2dpdGh1Yi5jb20vYWxiZXJ0b21vc2NvbmkvYXVkaW8tc3dpdGNoZXIiLAogICJ1dWlkIjogImF1ZGlvLXN3aXRjaGVyQGFsYmVydG9tb3Njb25pIiwKICAidmVyc2lvbiI6IDQKfQ=="}}}
, {"uuid": "shell-configurator@adeswanta", "name": "Shell Configurator", "pname": "shell-configurator", "description": "Configure and customize GNOME Shell with advanced settings.", "link": "https://extensions.gnome.org/extension/4254/shell-configurator/", "shell_version_map": {"38": {"version": "4", "sha256": "18dcbxizgj295v34m2dsz1dq9wxlk1s9cgqcgwd1k6r2v2f4p00z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbmZpZ3VyZSBhbmQgY3VzdG9taXplIEdOT01FIFNoZWxsIHdpdGggYWR2YW5jZWQgc2V0dGluZ3MuIiwKICAiaWQiOiAic2hlbGwtY29uZmlndXJhdG9yIiwKICAiaW5zdGFsbC10eXBlIjogIlVzZXIiLAogICJuYW1lIjogIlNoZWxsIENvbmZpZ3VyYXRvciIsCiAgInJlbGVhc2Utc3RhdGUiOiAicmVsZWFzZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vYWRlc3dhbnRhVGVjaHMvc2hlbGwtY29uZmlndXJhdG9yIiwKICAidXVpZCI6ICJzaGVsbC1jb25maWd1cmF0b3JAYWRlc3dhbnRhIiwKICAidmVyc2lvbiI6IDQKfQ=="}, "40": {"version": "4", "sha256": "18dcbxizgj295v34m2dsz1dq9wxlk1s9cgqcgwd1k6r2v2f4p00z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbmZpZ3VyZSBhbmQgY3VzdG9taXplIEdOT01FIFNoZWxsIHdpdGggYWR2YW5jZWQgc2V0dGluZ3MuIiwKICAiaWQiOiAic2hlbGwtY29uZmlndXJhdG9yIiwKICAiaW5zdGFsbC10eXBlIjogIlVzZXIiLAogICJuYW1lIjogIlNoZWxsIENvbmZpZ3VyYXRvciIsCiAgInJlbGVhc2Utc3RhdGUiOiAicmVsZWFzZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vYWRlc3dhbnRhVGVjaHMvc2hlbGwtY29uZmlndXJhdG9yIiwKICAidXVpZCI6ICJzaGVsbC1jb25maWd1cmF0b3JAYWRlc3dhbnRhIiwKICAidmVyc2lvbiI6IDQKfQ=="}}}
-, {"uuid": "io.github.mreditor.gnome-shell-extensions.scroll-panel", "name": "Scroll Panel", "pname": "scroll-panel", "description": "This extension allows switching between windows or workspaces by scrolling Gnome Shell topbar with mouse (both in overview and workspace modes).", "link": "https://extensions.gnome.org/extension/4257/scroll-panel/", "shell_version_map": {"40": {"version": "5", "sha256": "0qhgazsrbk8sflj19whcqk0wmjrsbyg1cxcys5ynxi37vsh0ispw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGFsbG93cyBzd2l0Y2hpbmcgYmV0d2VlbiB3aW5kb3dzIG9yIHdvcmtzcGFjZXMgYnkgc2Nyb2xsaW5nIEdub21lIFNoZWxsIHRvcGJhciB3aXRoIG1vdXNlIChib3RoIGluIG92ZXJ2aWV3IGFuZCB3b3Jrc3BhY2UgbW9kZXMpLiIsCiAgImdldHRleHQtZG9tYWluIjogImlvLmdpdGh1Yi5tcmVkaXRvci5nbm9tZS1zaGVsbC1leHRlbnNpb25zLnNjcm9sbC1wYW5lbCIsCiAgIm5hbWUiOiAiU2Nyb2xsIFBhbmVsIiwKICAic2VtYW50aWMtdmVyc2lvbiI6ICI0LjEuMytnaXQtNTIzZjA4ZiIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJpby5naXRodWIubXJlZGl0b3IuZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5zY3JvbGwtcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbXJFRGl0b3IvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXNjcm9sbC1wYW5lbCIsCiAgInV1aWQiOiAiaW8uZ2l0aHViLm1yZWRpdG9yLmdub21lLXNoZWxsLWV4dGVuc2lvbnMuc2Nyb2xsLXBhbmVsIiwKICAidmVyc2lvbiI6IDUKfQ=="}}}
+, {"uuid": "io.github.mreditor.gnome-shell-extensions.scroll-panel", "name": "Scroll Panel", "pname": "scroll-panel", "description": "This extension allows switching between windows or workspaces by scrolling Gnome Shell topbar with mouse (both in overview and workspace modes).", "link": "https://extensions.gnome.org/extension/4257/scroll-panel/", "shell_version_map": {"40": {"version": "6", "sha256": "0505zv1sbdd00pk1nfsjwqycq4mzih19r128aqpm35q4wj6frpn0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgZXh0ZW5zaW9uIGFsbG93cyBzd2l0Y2hpbmcgYmV0d2VlbiB3aW5kb3dzIG9yIHdvcmtzcGFjZXMgYnkgc2Nyb2xsaW5nIEdub21lIFNoZWxsIHRvcGJhciB3aXRoIG1vdXNlIChib3RoIGluIG92ZXJ2aWV3IGFuZCB3b3Jrc3BhY2UgbW9kZXMpLiIsCiAgImdldHRleHQtZG9tYWluIjogImlvLmdpdGh1Yi5tcmVkaXRvci5nbm9tZS1zaGVsbC1leHRlbnNpb25zLnNjcm9sbC1wYW5lbCIsCiAgIm5hbWUiOiAiU2Nyb2xsIFBhbmVsIiwKICAic2VtYW50aWMtdmVyc2lvbiI6ICI0LjEuNCtnaXQtMzdmMGM3YyIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJpby5naXRodWIubXJlZGl0b3IuZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5zY3JvbGwtcGFuZWwiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL21yRURpdG9yL2dub21lLXNoZWxsLWV4dGVuc2lvbi1zY3JvbGwtcGFuZWwiLAogICJ1dWlkIjogImlvLmdpdGh1Yi5tcmVkaXRvci5nbm9tZS1zaGVsbC1leHRlbnNpb25zLnNjcm9sbC1wYW5lbCIsCiAgInZlcnNpb24iOiA2Cn0="}}}
, {"uuid": "wb@pwall.github.com", "name": "WindowButtons", "pname": "windowbuttons", "description": "This is an extension for Gnome 3.38 which puts minimize and close buttons in the top panel.", "link": "https://extensions.gnome.org/extension/4261/windowbuttons/", "shell_version_map": {"38": {"version": "6", "sha256": "1w9j3rmn8yhppfkxrgyfvws2hsr24ki60vi8d73hdhifpnfps2sy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgaXMgYW4gZXh0ZW5zaW9uIGZvciBHbm9tZSAzLjM4IHdoaWNoIHB1dHMgbWluaW1pemUgYW5kIGNsb3NlIGJ1dHRvbnMgaW4gdGhlIHRvcCBwYW5lbC4iLAogICJuYW1lIjogIldpbmRvd0J1dHRvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9QV2FsbDIyMjIvV0IiLAogICJ1dWlkIjogIndiQHB3YWxsLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogNgp9"}}}
, {"uuid": "rippleremove@slippinggitty", "name": "Ripple Remove", "pname": "ripple-remove", "description": "Removes the ripple effect from the Activities hot corner", "link": "https://extensions.gnome.org/extension/4264/ripple-remove/", "shell_version_map": {"40": {"version": "1", "sha256": "1dnk8nfnv5hp8c11fzhn5vscicij4lk9i1vz25fz6sjc3rn1a9pq", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlJlbW92ZXMgdGhlIHJpcHBsZSBlZmZlY3QgZnJvbSB0aGUgQWN0aXZpdGllcyBob3QgY29ybmVyIiwKICAibmFtZSI6ICJSaXBwbGUgUmVtb3ZlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5zbGlwcGluZ2l0dHkucmlwcGxlcmVtb3ZlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJyaXBwbGVyZW1vdmVAc2xpcHBpbmdnaXR0eSIsCiAgInZlcnNpb24iOiAxCn0="}}}
, {"uuid": "quickmenu@slippinggitty", "name": "Quick Menu [DEAD]", "pname": "quick-menu", "description": "This is a fork of fedoramenu (which is a fork of Big Sur Menu by fausto) that scrubs references of Fedora by replacing the icon with the GNOME logo.\n\nQuick Menu is a panel applet similar to the Apple menu found on macOS.\n\nEDIT: This extension's purpose is dead. Check out Tofu Menu, which is fedoramenu, but with the ability to change the icon. https://extensions.gnome.org/extension/4272/tofu-menu/", "link": "https://extensions.gnome.org/extension/4266/quick-menu/", "shell_version_map": {"40": {"version": "1", "sha256": "1qla029n79366a7xvg2d9v0wa7272bqj40ggvbjrfsbd8x066aca", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgaXMgYSBmb3JrIG9mIGZlZG9yYW1lbnUgKHdoaWNoIGlzIGEgZm9yayBvZiBCaWcgU3VyIE1lbnUgYnkgZmF1c3RvKSB0aGF0IHNjcnVicyByZWZlcmVuY2VzIG9mIEZlZG9yYSBieSByZXBsYWNpbmcgdGhlIGljb24gd2l0aCB0aGUgR05PTUUgbG9nby5cblxuUXVpY2sgTWVudSBpcyBhIHBhbmVsIGFwcGxldCBzaW1pbGFyIHRvIHRoZSBBcHBsZSBtZW51IGZvdW5kIG9uIG1hY09TLlxuXG5FRElUOiBUaGlzIGV4dGVuc2lvbidzIHB1cnBvc2UgaXMgZGVhZC4gQ2hlY2sgb3V0IFRvZnUgTWVudSwgd2hpY2ggaXMgZmVkb3JhbWVudSwgYnV0IHdpdGggdGhlIGFiaWxpdHkgdG8gY2hhbmdlIHRoZSBpY29uLiBodHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi80MjcyL3RvZnUtbWVudS8iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJxdWljay1tZW51IiwKICAibmFtZSI6ICJRdWljayBNZW51IFtERUFEXSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuc2xpcHBpbmdpdHR5LnF1aWNrLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vU2xpcHBpbmdHaXR0eS9xdWlja21lbnUiLAogICJ1dWlkIjogInF1aWNrbWVudUBzbGlwcGluZ2dpdHR5IiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
, {"uuid": "show-desktop-applet@valent-in", "name": "Show Desktop Applet", "pname": "show-desktop-applet", "description": "Minimize/unminimize all open windows with a single click.\n\nForked from https://extensions.gnome.org/extension/1194/show-desktop-button/\n\nFeatures:\n- Windows-like behavior\n- Can be placed at the end of panel\n- Hotkey support (can be activated in settings)", "link": "https://extensions.gnome.org/extension/4267/show-desktop-applet/", "shell_version_map": {"38": {"version": "2", "sha256": "0ybzzr3gmii29lpjqzh7yad9yyvz1fg8gb3ip6lki2l84hs3aa0c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1pbmltaXplL3VubWluaW1pemUgYWxsIG9wZW4gd2luZG93cyB3aXRoIGEgc2luZ2xlIGNsaWNrLlxuXG5Gb3JrZWQgZnJvbSBodHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi8xMTk0L3Nob3ctZGVza3RvcC1idXR0b24vXG5cbkZlYXR1cmVzOlxuLSBXaW5kb3dzLWxpa2UgYmVoYXZpb3Jcbi0gQ2FuIGJlIHBsYWNlZCBhdCB0aGUgZW5kIG9mIHBhbmVsXG4tIEhvdGtleSBzdXBwb3J0IChjYW4gYmUgYWN0aXZhdGVkIGluIHNldHRpbmdzKSIsCiAgImV4dGVuc2lvbi1pZCI6ICJzaG93LWRlc2t0b3AtYXBwbGV0IiwKICAiZ2V0dGV4dC1kb21haW4iOiAic2hvdy1kZXNrdG9wLWFwcGxldCIsCiAgImxvY2FsZWRpciI6ICIvdXNyL3NoYXJlL2xvY2FsZSIsCiAgIm5hbWUiOiAiU2hvdyBEZXNrdG9wIEFwcGxldCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zaG93LWRlc2t0b3AtYXBwbGV0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1ZhbGVudC1pbi9TaG93LURlc2t0b3AtQXBwbGV0IiwKICAidXVpZCI6ICJzaG93LWRlc2t0b3AtYXBwbGV0QHZhbGVudC1pbiIsCiAgInZlcnNpb24iOiAyCn0="}, "40": {"version": "2", "sha256": "0ybzzr3gmii29lpjqzh7yad9yyvz1fg8gb3ip6lki2l84hs3aa0c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1pbmltaXplL3VubWluaW1pemUgYWxsIG9wZW4gd2luZG93cyB3aXRoIGEgc2luZ2xlIGNsaWNrLlxuXG5Gb3JrZWQgZnJvbSBodHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi8xMTk0L3Nob3ctZGVza3RvcC1idXR0b24vXG5cbkZlYXR1cmVzOlxuLSBXaW5kb3dzLWxpa2UgYmVoYXZpb3Jcbi0gQ2FuIGJlIHBsYWNlZCBhdCB0aGUgZW5kIG9mIHBhbmVsXG4tIEhvdGtleSBzdXBwb3J0IChjYW4gYmUgYWN0aXZhdGVkIGluIHNldHRpbmdzKSIsCiAgImV4dGVuc2lvbi1pZCI6ICJzaG93LWRlc2t0b3AtYXBwbGV0IiwKICAiZ2V0dGV4dC1kb21haW4iOiAic2hvdy1kZXNrdG9wLWFwcGxldCIsCiAgImxvY2FsZWRpciI6ICIvdXNyL3NoYXJlL2xvY2FsZSIsCiAgIm5hbWUiOiAiU2hvdyBEZXNrdG9wIEFwcGxldCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5zaG93LWRlc2t0b3AtYXBwbGV0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL1ZhbGVudC1pbi9TaG93LURlc2t0b3AtQXBwbGV0IiwKICAidXVpZCI6ICJzaG93LWRlc2t0b3AtYXBwbGV0QHZhbGVudC1pbiIsCiAgInZlcnNpb24iOiAyCn0="}}}
-, {"uuid": "AlphabeticalAppGrid@stuarthayhurst", "name": "Alphabetical App Grid", "pname": "alphabetical-app-grid", "description": "Restore the alphabetical ordering of the app grid", "link": "https://extensions.gnome.org/extension/4269/alphabetical-app-grid/", "shell_version_map": {"38": {"version": "13", "sha256": "1bch7ymih0rcahf35dnl2yzr14azpvw3llz4vd2bkjhsqyzww7k1", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlYnVnIjogZmFsc2UsCiAgImRlc2NyaXB0aW9uIjogIlJlc3RvcmUgdGhlIGFscGhhYmV0aWNhbCBvcmRlcmluZyBvZiB0aGUgYXBwIGdyaWQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJBbHBoYWJldGljYWxBcHBHcmlkQHN0dWFydGhheWh1cnN0IiwKICAibmFtZSI6ICJBbHBoYWJldGljYWwgQXBwIEdyaWQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYWxwaGFiZXRpY2FsLWFwcC1ncmlkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9hbHBoYWJldGljYWwtZ3JpZC1leHRlbnNpb24iLAogICJ1dWlkIjogIkFscGhhYmV0aWNhbEFwcEdyaWRAc3R1YXJ0aGF5aHVyc3QiLAogICJ2ZXJzaW9uIjogMTMKfQ=="}, "40": {"version": "13", "sha256": "1bch7ymih0rcahf35dnl2yzr14azpvw3llz4vd2bkjhsqyzww7k1", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlYnVnIjogZmFsc2UsCiAgImRlc2NyaXB0aW9uIjogIlJlc3RvcmUgdGhlIGFscGhhYmV0aWNhbCBvcmRlcmluZyBvZiB0aGUgYXBwIGdyaWQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJBbHBoYWJldGljYWxBcHBHcmlkQHN0dWFydGhheWh1cnN0IiwKICAibmFtZSI6ICJBbHBoYWJldGljYWwgQXBwIEdyaWQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYWxwaGFiZXRpY2FsLWFwcC1ncmlkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9hbHBoYWJldGljYWwtZ3JpZC1leHRlbnNpb24iLAogICJ1dWlkIjogIkFscGhhYmV0aWNhbEFwcEdyaWRAc3R1YXJ0aGF5aHVyc3QiLAogICJ2ZXJzaW9uIjogMTMKfQ=="}}}
+, {"uuid": "AlphabeticalAppGrid@stuarthayhurst", "name": "Alphabetical App Grid", "pname": "alphabetical-app-grid", "description": "Restore the alphabetical ordering of the app grid", "link": "https://extensions.gnome.org/extension/4269/alphabetical-app-grid/", "shell_version_map": {"38": {"version": "15", "sha256": "1h3b3a8cbkjqfv7d1sq6j2kmaq3lf255gx7qw2h34m64cahm943y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlYnVnIjogZmFsc2UsCiAgImRlc2NyaXB0aW9uIjogIlJlc3RvcmUgdGhlIGFscGhhYmV0aWNhbCBvcmRlcmluZyBvZiB0aGUgYXBwIGdyaWQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJBbHBoYWJldGljYWxBcHBHcmlkQHN0dWFydGhheWh1cnN0IiwKICAibmFtZSI6ICJBbHBoYWJldGljYWwgQXBwIEdyaWQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYWxwaGFiZXRpY2FsLWFwcC1ncmlkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9hbHBoYWJldGljYWwtZ3JpZC1leHRlbnNpb24iLAogICJ1dWlkIjogIkFscGhhYmV0aWNhbEFwcEdyaWRAc3R1YXJ0aGF5aHVyc3QiLAogICJ2ZXJzaW9uIjogMTUKfQ=="}, "40": {"version": "15", "sha256": "1h3b3a8cbkjqfv7d1sq6j2kmaq3lf255gx7qw2h34m64cahm943y", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlYnVnIjogZmFsc2UsCiAgImRlc2NyaXB0aW9uIjogIlJlc3RvcmUgdGhlIGFscGhhYmV0aWNhbCBvcmRlcmluZyBvZiB0aGUgYXBwIGdyaWQiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJBbHBoYWJldGljYWxBcHBHcmlkQHN0dWFydGhheWh1cnN0IiwKICAibmFtZSI6ICJBbHBoYWJldGljYWwgQXBwIEdyaWQiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuYWxwaGFiZXRpY2FsLWFwcC1ncmlkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9hbHBoYWJldGljYWwtZ3JpZC1leHRlbnNpb24iLAogICJ1dWlkIjogIkFscGhhYmV0aWNhbEFwcEdyaWRAc3R1YXJ0aGF5aHVyc3QiLAogICJ2ZXJzaW9uIjogMTUKfQ=="}}}
, {"uuid": "tofumenu@tofu", "name": "Tofu Menu", "pname": "tofu-menu", "description": "Quick access menu for the GNOME panel with options that help ease the workflow for newcomers and power users alike.\n\nhttps://github.com/tofutech/tofumenu", "link": "https://extensions.gnome.org/extension/4272/tofu-menu/", "shell_version_map": {"40": {"version": "2", "sha256": "05ndbjvvz0v1y8iq6ngqylz4z1ld6q5ibhkr5dh24wqc4wiky30v", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlF1aWNrIGFjY2VzcyBtZW51IGZvciB0aGUgR05PTUUgcGFuZWwgd2l0aCBvcHRpb25zIHRoYXQgaGVscCBlYXNlIHRoZSB3b3JrZmxvdyBmb3IgbmV3Y29tZXJzIGFuZCBwb3dlciB1c2VycyBhbGlrZS5cblxuaHR0cHM6Ly9naXRodWIuY29tL3RvZnV0ZWNoL3RvZnVtZW51IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZmVkb3JhLW1lbnUiLAogICJuYW1lIjogIlRvZnUgTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcudG9mdS5mZWRvcmEtbWVudSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAidG9mdW1lbnVAdG9mdSIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "cryptostash@filidorwiese.nl", "name": "CryptoStash", "pname": "cryptostash", "description": "Keep an eye on the real time value of your crypto coins collections.\n\nYou can create multiple \"stashes\" (portfolios) of coins and monitor the accumulated value in USD or EUR. Or if you prefer, you can simply track the current value of your favorite coin.", "link": "https://extensions.gnome.org/extension/4276/cryptostash/", "shell_version_map": {"38": {"version": "4", "sha256": "0n1452ky1dppcxazgqxv5jc91l4piwp64rmc9b41ak3792j1sgbw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvcl91cmwiOiAiaHR0cHM6Ly9maWxpZG9yd2llc2UubmwiLAogICJkZXNjcmlwdGlvbiI6ICJLZWVwIGFuIGV5ZSBvbiB0aGUgcmVhbCB0aW1lIHZhbHVlIG9mIHlvdXIgY3J5cHRvIGNvaW5zIGNvbGxlY3Rpb25zLlxuXG5Zb3UgY2FuIGNyZWF0ZSBtdWx0aXBsZSBcInN0YXNoZXNcIiAocG9ydGZvbGlvcykgb2YgY29pbnMgYW5kIG1vbml0b3IgdGhlIGFjY3VtdWxhdGVkIHZhbHVlIGluIFVTRCBvciBFVVIuIE9yIGlmIHlvdSBwcmVmZXIsIHlvdSBjYW4gc2ltcGx5IHRyYWNrIHRoZSBjdXJyZW50IHZhbHVlIG9mIHlvdXIgZmF2b3JpdGUgY29pbi4iLAogICJuYW1lIjogIkNyeXB0b1N0YXNoIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmNyeXB0by1zdGFzaCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ0YWciOiAxLjMsCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vZmlsaWRvcndpZXNlL2dub21lLXNoZWxsLWNyeXB0by1zdGFzaCIsCiAgInV1aWQiOiAiY3J5cHRvc3Rhc2hAZmlsaWRvcndpZXNlLm5sIiwKICAidmVyc2lvbiI6IDQKfQ=="}}}
, {"uuid": "xmlfix@pwall.github.com", "name": "XML-Fix", "pname": "xml-fix", "description": "Fixes the XML-Codes displaying instead of the characters on notifications.", "link": "https://extensions.gnome.org/extension/4279/xml-fix/", "shell_version_map": {"38": {"version": "2", "sha256": "1c9qa3ky873hkckylsbv0s7q9bmsnia7h8mlc36i7xz7h1ml6fpx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZpeGVzIHRoZSBYTUwtQ29kZXMgZGlzcGxheWluZyBpbnN0ZWFkIG9mIHRoZSBjaGFyYWN0ZXJzIG9uIG5vdGlmaWNhdGlvbnMuIiwKICAibmFtZSI6ICJYTUwtRml4IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vUFdhbGwyMjIyL1hNTEZpeCIsCiAgInV1aWQiOiAieG1sZml4QHB3YWxsLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "gnometoggle@foreverxml.github.io", "name": "Gnome Toggle", "pname": "gnome-toggle", "description": "Turn on your GNOME dark mode! (For up-to-date versions, download from GitHub.)", "link": "https://extensions.gnome.org/extension/4287/gnome-toggle/", "shell_version_map": {"38": {"version": "1", "sha256": "1a1qvrdq0xglr0lf4pglaxhn03k9qxhh77n4g0d51r419l4y6n2r", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlR1cm4gb24geW91ciBHTk9NRSBkYXJrIG1vZGUhIChGb3IgdXAtdG8tZGF0ZSB2ZXJzaW9ucywgZG93bmxvYWQgZnJvbSBHaXRIdWIuKSIsCiAgIm5hbWUiOiAiR25vbWUgVG9nZ2xlIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImZvcmV2ZXJ4bWxAdHV0YS5pbyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mb3JldmVyeG1sL2dub21lLXRvZ2dsZSIsCiAgInV1aWQiOiAiZ25vbWV0b2dnbGVAZm9yZXZlcnhtbC5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogMQp9"}, "40": {"version": "1", "sha256": "1a1qvrdq0xglr0lf4pglaxhn03k9qxhh77n4g0d51r419l4y6n2r", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlR1cm4gb24geW91ciBHTk9NRSBkYXJrIG1vZGUhIChGb3IgdXAtdG8tZGF0ZSB2ZXJzaW9ucywgZG93bmxvYWQgZnJvbSBHaXRIdWIuKSIsCiAgIm5hbWUiOiAiR25vbWUgVG9nZ2xlIiwKICAib3JpZ2luYWwtYXV0aG9yIjogImZvcmV2ZXJ4bWxAdHV0YS5pbyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mb3JldmVyeG1sL2dub21lLXRvZ2dsZSIsCiAgInV1aWQiOiAiZ25vbWV0b2dnbGVAZm9yZXZlcnhtbC5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogMQp9"}}}
-, {"uuid": "instantworkspaceswitcher@amalantony.net", "name": "Disable Workspace Switch Animation for GNOME 40+", "pname": "disable-workspace-switch-animation-for-gnome-40", "description": "Disables the workspace switch animation while preserving all other animations - instantly switch between workspaces with keyboard shortcuts, akin to a window manager like i3.", "link": "https://extensions.gnome.org/extension/4290/disable-workspace-switch-animation-for-gnome-40/", "shell_version_map": {"40": {"version": "2", "sha256": "11b5cym8x6p0zi9r5lk94c2f4jkbx1x04wzzfbmnpf0hrp60j6ic", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc2FibGVzIHRoZSB3b3Jrc3BhY2Ugc3dpdGNoIGFuaW1hdGlvbiB3aGlsZSBwcmVzZXJ2aW5nIGFsbCBvdGhlciBhbmltYXRpb25zIC0gaW5zdGFudGx5IHN3aXRjaCBiZXR3ZWVuIHdvcmtzcGFjZXMgd2l0aCBrZXlib2FyZCBzaG9ydGN1dHMsIGFraW4gdG8gYSB3aW5kb3cgbWFuYWdlciBsaWtlIGkzLiIsCiAgIm5hbWUiOiAiRGlzYWJsZSBXb3Jrc3BhY2UgU3dpdGNoIEFuaW1hdGlvbiBmb3IgR05PTUUgNDArIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2FtYWxhbnRvbnkvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWluc3RhbnQtd29ya3NwYWNlLXN3aXRjaGVyIiwKICAidXVpZCI6ICJpbnN0YW50d29ya3NwYWNlc3dpdGNoZXJAYW1hbGFudG9ueS5uZXQiLAogICJ2ZXJzaW9uIjogMgp9"}}}
+, {"uuid": "instantworkspaceswitcher@amalantony.net", "name": "Disable Workspace Switch Animation for GNOME 40+", "pname": "disable-workspace-switch-animation-for-gnome-40", "description": "Disables the workspace switch animation while preserving all other animations - instantly switch between workspaces with keyboard shortcuts.", "link": "https://extensions.gnome.org/extension/4290/disable-workspace-switch-animation-for-gnome-40/", "shell_version_map": {"40": {"version": "3", "sha256": "13jbmsq3h5d5isp57pyrkds4dr6isvnsglg0ivhkjblnx0cqyk94", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc2FibGVzIHRoZSB3b3Jrc3BhY2Ugc3dpdGNoIGFuaW1hdGlvbiB3aGlsZSBwcmVzZXJ2aW5nIGFsbCBvdGhlciBhbmltYXRpb25zIC0gaW5zdGFudGx5IHN3aXRjaCBiZXR3ZWVuIHdvcmtzcGFjZXMgd2l0aCBrZXlib2FyZCBzaG9ydGN1dHMuIiwKICAibmFtZSI6ICJEaXNhYmxlIFdvcmtzcGFjZSBTd2l0Y2ggQW5pbWF0aW9uIGZvciBHTk9NRSA0MCsiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2FtYWxhbnRvbnkvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWluc3RhbnQtd29ya3NwYWNlLXN3aXRjaGVyIiwKICAidXVpZCI6ICJpbnN0YW50d29ya3NwYWNlc3dpdGNoZXJAYW1hbGFudG9ueS5uZXQiLAogICJ2ZXJzaW9uIjogMwp9"}}}
, {"uuid": "top-panel-notification-icons@5th0.github.com", "name": "Top Panel Notification Icons", "pname": "top-panel-notification-icons", "description": "Display notification icons in the Top", "link": "https://extensions.gnome.org/extension/4293/top-panel-notification-icons/", "shell_version_map": {"38": {"version": "1", "sha256": "0s84r45nc1kyv6sc6a9jbxv981f1ih8g2nfdzrzd33n3032f30px", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgbm90aWZpY2F0aW9uIGljb25zIGluIHRoZSBUb3AiLAogICJuYW1lIjogIlRvcCBQYW5lbCBOb3RpZmljYXRpb24gSWNvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogInRvcC1wYW5lbC1ub3RpZmljYXRpb24taWNvbnNANXRoMC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEKfQ=="}, "40": {"version": "1", "sha256": "0s84r45nc1kyv6sc6a9jbxv981f1ih8g2nfdzrzd33n3032f30px", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXkgbm90aWZpY2F0aW9uIGljb25zIGluIHRoZSBUb3AiLAogICJuYW1lIjogIlRvcCBQYW5lbCBOb3RpZmljYXRpb24gSWNvbnMiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogInRvcC1wYW5lbC1ub3RpZmljYXRpb24taWNvbnNANXRoMC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
, {"uuid": "custom-menu-panel@AndreaBenini", "name": "custom-menu-panel", "pname": "custom-menu-panel", "description": "Quick custom menu for launching your favorite applications", "link": "https://extensions.gnome.org/extension/4295/custom-menu-panel/", "shell_version_map": {"40": {"version": "2", "sha256": "12d8p8cmsq93pmyd6y07jx7r0ls4h7pfqlhp8bvmsw48gmiv5sq8", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlF1aWNrIGN1c3RvbSBtZW51IGZvciBsYXVuY2hpbmcgeW91ciBmYXZvcml0ZSBhcHBsaWNhdGlvbnMiLAogICJuYW1lIjogImN1c3RvbS1tZW51LXBhbmVsIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJjdXN0b20tbWVudS1wYW5lbEBBbmRyZWFCZW5pbmkiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "clean-system-menu@astrapi.de", "name": "Clean System Menu", "pname": "clean-system-menu", "description": "Cleanup the System Menu from Power Options", "link": "https://extensions.gnome.org/extension/4298/clean-system-menu/", "shell_version_map": {"40": {"version": "4", "sha256": "1x3fvi8qbbbqa9nc5xqp7ql2djcrch2w5azw0xq1dampdgz1976q", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNsZWFudXAgdGhlIFN5c3RlbSBNZW51IGZyb20gUG93ZXIgT3B0aW9ucyIsCiAgIm5hbWUiOiAiQ2xlYW4gU3lzdGVtIE1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5nbm9tZS5vcmcvYXN0cmFwaS9jbGVhbi1zeXN0ZW0tbWVudSIsCiAgInV1aWQiOiAiY2xlYW4tc3lzdGVtLW1lbnVAYXN0cmFwaS5kZSIsCiAgInZlcnNpb24iOiA0Cn0="}}}
@@ -492,13 +498,13 @@
, {"uuid": "umi-coin-rate@exposedcat", "name": "UMI Coin Rate", "pname": "umi-coin-rate", "description": "Add UMI coin rate to the panel", "link": "https://extensions.gnome.org/extension/4307/umi-coin-rate/", "shell_version_map": {"38": {"version": "5", "sha256": "13fh82kwma7qdis6ny0c5bw9fxx103p6mj2434fsgfra3d1k8aqh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBVTUkgY29pbiByYXRlIHRvIHRoZSBwYW5lbCIsCiAgIm5hbWUiOiAiVU1JIENvaW4gUmF0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9FeHBvc2VkQ2F0L3VtaS1jb2luLXJhdGUiLAogICJ1dWlkIjogInVtaS1jb2luLXJhdGVAZXhwb3NlZGNhdCIsCiAgInZlcnNpb24iOiA1Cn0="}, "40": {"version": "5", "sha256": "13fh82kwma7qdis6ny0c5bw9fxx103p6mj2434fsgfra3d1k8aqh", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBVTUkgY29pbiByYXRlIHRvIHRoZSBwYW5lbCIsCiAgIm5hbWUiOiAiVU1JIENvaW4gUmF0ZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9FeHBvc2VkQ2F0L3VtaS1jb2luLXJhdGUiLAogICJ1dWlkIjogInVtaS1jb2luLXJhdGVAZXhwb3NlZGNhdCIsCiAgInZlcnNpb24iOiA1Cn0="}}}
, {"uuid": "network-stats@gnome.noroadsleft.xyz", "name": "Network Stats", "pname": "network-stats", "description": "Displays internet upload speed, download speed, bandwidth, data usage. \n\n visit github page for instructions.", "link": "https://extensions.gnome.org/extension/4308/network-stats/", "shell_version_map": {"38": {"version": "8", "sha256": "1znmrvrvbxd5xyiyrm43rrb3lxmjv1xnwi17m7a4ly36mjww9llv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIGludGVybmV0IHVwbG9hZCBzcGVlZCwgZG93bmxvYWQgc3BlZWQsIGJhbmR3aWR0aCwgZGF0YSB1c2FnZS4gXG5cbiB2aXNpdCBnaXRodWIgcGFnZSBmb3IgaW5zdHJ1Y3Rpb25zLiIsCiAgImdldHRleHQtZG9tYWluIjogIm5ldHdvcmstc3RhdHMiLAogICJuYW1lIjogIk5ldHdvcmsgU3RhdHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMubmV0d29yay1zdGF0cyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yNCIsCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL25vcm9hZHNsZWZ0MDAwL2dub21lLW5ldHdvcmstc3RhdHMiLAogICJ1dWlkIjogIm5ldHdvcmstc3RhdHNAZ25vbWUubm9yb2Fkc2xlZnQueHl6IiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
, {"uuid": "screen-lock@garciabaameiro.com", "name": "Screen lock", "pname": "extension-list", "description": "Simple gnome shell extension to use xscreensaver in top panel", "link": "https://extensions.gnome.org/extension/4311/extension-list/", "shell_version_map": {"40": {"version": "1", "sha256": "1jas7pcn3a28fnfs3azrbiqf22gx337js6if8v8vsb15994pbak6", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNpbXBsZSBnbm9tZSBzaGVsbCBleHRlbnNpb24gdG8gdXNlIHhzY3JlZW5zYXZlciBpbiB0b3AgcGFuZWwiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJzY3JlZW4tbG9jayIsCiAgIm5hbWUiOiAiU2NyZWVuIGxvY2siLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuc2NyZWVuLWxvY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vU2F3eWVyMTMvc2NyZWVuLWxvY2siLAogICJ1dWlkIjogInNjcmVlbi1sb2NrQGdhcmNpYWJhYW1laXJvLmNvbSIsCiAgInZlcnNpb24iOiAxCn0="}}}
-, {"uuid": "force-show-osk@bruh.ltd", "name": "Force Show OSK", "pname": "force-show-osk", "description": "Show the on-screen keyboard regardless of whether the touch mode is enabled", "link": "https://extensions.gnome.org/extension/4316/force-show-osk/", "shell_version_map": {"40": {"version": "1", "sha256": "16ww0hcdgl9mdkh38l2p0fsc5166mvid7q9r0fbym5xzfzxvhkw7", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgdGhlIG9uLXNjcmVlbiBrZXlib2FyZCByZWdhcmRsZXNzIG9mIHdoZXRoZXIgdGhlIHRvdWNoIG1vZGUgaXMgZW5hYmxlZCIsCiAgIm5hbWUiOiAiRm9yY2UgU2hvdyBPU0siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MS5hbHBoYSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2tpcmJ5a2V2aW5zb24vZm9yY2Utc2hvdy1vc2siLAogICJ1dWlkIjogImZvcmNlLXNob3ctb3NrQGJydWgubHRkIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
+, {"uuid": "force-show-osk@bruh.ltd", "name": "Force Show OSK", "pname": "force-show-osk", "description": "Show the on-screen keyboard regardless of whether the touch mode is enabled", "link": "https://extensions.gnome.org/extension/4316/force-show-osk/", "shell_version_map": {"40": {"version": "3", "sha256": "0p2v36bliaa6i85b4r0g38ih9fidn95dwmyhc3dygvynjzvvv56b", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgdGhlIG9uLXNjcmVlbiBrZXlib2FyZCByZWdhcmRsZXNzIG9mIHdoZXRoZXIgdGhlIHRvdWNoIG1vZGUgaXMgZW5hYmxlZCIsCiAgIm5hbWUiOiAiRm9yY2UgU2hvdyBPU0siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2tpcmJ5a2V2aW5zb24vZm9yY2Utc2hvdy1vc2siLAogICJ1dWlkIjogImZvcmNlLXNob3ctb3NrQGJydWgubHRkIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "hide-activities-button@nmingori.gnome-shell-extensions.org", "name": "Hide Activities Button", "pname": "hide-activities-button", "description": "Hide Activities Button on the top panel. For Gnome 40 or 3.6+", "link": "https://extensions.gnome.org/extension/4325/hide-activities-button/", "shell_version_map": {"38": {"version": "1", "sha256": "0644h9cqy07h1fgr9wcjp4agvszrcpk6f0yr725hxfil600k5m9b", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUgQWN0aXZpdGllcyBCdXR0b24gb24gdGhlIHRvcCBwYW5lbC4gRm9yIEdub21lIDQwIG9yIDMuNisiLAogICJuYW1lIjogIkhpZGUgQWN0aXZpdGllcyBCdXR0b24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuNiIsCiAgICAiMy44IiwKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL25taW5nb3JpL2dub21lLWhpZGUtYWN0aXRpdmllcy1idXR0b24iLAogICJ1dWlkIjogImhpZGUtYWN0aXZpdGllcy1idXR0b25Abm1pbmdvcmkuZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5vcmciLAogICJ2ZXJzaW9uIjogMQp9"}, "40": {"version": "1", "sha256": "0644h9cqy07h1fgr9wcjp4agvszrcpk6f0yr725hxfil600k5m9b", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUgQWN0aXZpdGllcyBCdXR0b24gb24gdGhlIHRvcCBwYW5lbC4gRm9yIEdub21lIDQwIG9yIDMuNisiLAogICJuYW1lIjogIkhpZGUgQWN0aXZpdGllcyBCdXR0b24iLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuNiIsCiAgICAiMy44IiwKICAgICIzLjEwIiwKICAgICIzLjEyIiwKICAgICIzLjE0IiwKICAgICIzLjE2IiwKICAgICIzLjE4IiwKICAgICIzLjIwIiwKICAgICIzLjIyIiwKICAgICIzLjI0IiwKICAgICIzLjI2IiwKICAgICIzLjI4IiwKICAgICIzLjMwIiwKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL25taW5nb3JpL2dub21lLWhpZGUtYWN0aXRpdmllcy1idXR0b24iLAogICJ1dWlkIjogImhpZGUtYWN0aXZpdGllcy1idXR0b25Abm1pbmdvcmkuZ25vbWUtc2hlbGwtZXh0ZW5zaW9ucy5vcmciLAogICJ2ZXJzaW9uIjogMQp9"}}}
, {"uuid": "apt-shortcuts@rx1310", "name": "Shortcuts for APT", "pname": "shortcuts-for-apt", "description": "A small extension that adds buttons to the panel to check for APT updates through the terminal without entering commands.", "link": "https://extensions.gnome.org/extension/4328/shortcuts-for-apt/", "shell_version_map": {"38": {"version": "2", "sha256": "1dagzbryg85hgdksxqb90j6ia1b4rfpm46jihviivc8jz1iqb6f0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgc21hbGwgZXh0ZW5zaW9uIHRoYXQgYWRkcyBidXR0b25zIHRvIHRoZSBwYW5lbCB0byBjaGVjayBmb3IgQVBUIHVwZGF0ZXMgdGhyb3VnaCB0aGUgdGVybWluYWwgd2l0aG91dCBlbnRlcmluZyBjb21tYW5kcy4iLAogICJuYW1lIjogIlNob3J0Y3V0cyBmb3IgQVBUIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3J4MTMxMC9nbm9tZS1leHRlbnNpb25fYXB0dXBkYXRlIiwKICAidXVpZCI6ICJhcHQtc2hvcnRjdXRzQHJ4MTMxMCIsCiAgInZlcnNpb24iOiAyCn0="}, "40": {"version": "2", "sha256": "1dagzbryg85hgdksxqb90j6ia1b4rfpm46jihviivc8jz1iqb6f0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgc21hbGwgZXh0ZW5zaW9uIHRoYXQgYWRkcyBidXR0b25zIHRvIHRoZSBwYW5lbCB0byBjaGVjayBmb3IgQVBUIHVwZGF0ZXMgdGhyb3VnaCB0aGUgdGVybWluYWwgd2l0aG91dCBlbnRlcmluZyBjb21tYW5kcy4iLAogICJuYW1lIjogIlNob3J0Y3V0cyBmb3IgQVBUIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3J4MTMxMC9nbm9tZS1leHRlbnNpb25fYXB0dXBkYXRlIiwKICAidXVpZCI6ICJhcHQtc2hvcnRjdXRzQHJ4MTMxMCIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "ideapad-mode@annexhack.inceptive.ru", "name": "ideapad mode", "pname": "ideapad-mode", "description": "Chargning mode indicator for laptops. Allows to switch the charging mode from conservative or healthy to normal mode. Indicates also which mode you are using now. Works on Lenovo Slim 7.\n\nPlease Report Problems or issues on Gitlab at:\n\nhttps://gitlab.com/annexhack/conservation-mode-lenovo", "link": "https://extensions.gnome.org/extension/4331/ideapad-mode/", "shell_version_map": {"40": {"version": "3", "sha256": "0hd0rqkrly27c2bqg7403ng192blrcidb2hrykx4i170i2x604fv", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNoYXJnbmluZyBtb2RlIGluZGljYXRvciBmb3IgbGFwdG9wcy4gQWxsb3dzIHRvIHN3aXRjaCB0aGUgY2hhcmdpbmcgbW9kZSBmcm9tIGNvbnNlcnZhdGl2ZSBvciBoZWFsdGh5IHRvIG5vcm1hbCBtb2RlLiBJbmRpY2F0ZXMgYWxzbyB3aGljaCBtb2RlIHlvdSBhcmUgdXNpbmcgbm93LiBXb3JrcyBvbiBMZW5vdm8gU2xpbSA3LlxuXG5QbGVhc2UgUmVwb3J0IFByb2JsZW1zIG9yIGlzc3VlcyBvbiBHaXRsYWIgYXQ6XG5cbmh0dHBzOi8vZ2l0bGFiLmNvbS9hbm5leGhhY2svY29uc2VydmF0aW9uLW1vZGUtbGVub3ZvIiwKICAibmFtZSI6ICJpZGVhcGFkIG1vZGUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuY29tL2FubmV4aGFjay9jb25zZXJ2YXRpb24tbW9kZS1sZW5vdm8iLAogICJ1dWlkIjogImlkZWFwYWQtbW9kZUBhbm5leGhhY2suaW5jZXB0aXZlLnJ1IiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
, {"uuid": "ubuntu-yaru-appearance@itzlightyhd", "name": "Ubuntu Appearance (GNOME 40)", "pname": "ubuntu-appearance-gnome-40", "description": "Adds a toggle between the default Ubuntu themes on GNOME 40. Forked from https://github.com/Muqtxdir/yaru-remix-theme-toggle.\n\nIt requires the `gnome-shell-extension-prefs` package installed on your Linux environment.", "link": "https://extensions.gnome.org/extension/4335/ubuntu-appearance-gnome-40/", "shell_version_map": {"40": {"version": "1", "sha256": "16068sihwydg99w82nw6qr3lrnq1vh8jl8fbr3q27i3zyds4xyja", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvcnMiOiBbCiAgICAiQXBleGllRGV2ZWxvcG1lbnQiLAogICAgIkl0ekxpZ2h0eUhEIgogIF0sCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgYSB0b2dnbGUgYmV0d2VlbiB0aGUgZGVmYXVsdCBVYnVudHUgdGhlbWVzIG9uIEdOT01FIDQwLiBGb3JrZWQgZnJvbSBodHRwczovL2dpdGh1Yi5jb20vTXVxdHhkaXIveWFydS1yZW1peC10aGVtZS10b2dnbGUuXG5cbkl0IHJlcXVpcmVzIHRoZSBgZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXByZWZzYCBwYWNrYWdlIGluc3RhbGxlZCBvbiB5b3VyIExpbnV4IGVudmlyb25tZW50LiIsCiAgIm5hbWUiOiAiVWJ1bnR1IEFwcGVhcmFuY2UgKEdOT01FIDQwKSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9BcGV4aWVEZXZlbG9wbWVudC91YnVudHUteWFydS1hcHBlYXJhbmNlIiwKICAidXVpZCI6ICJ1YnVudHUteWFydS1hcHBlYXJhbmNlQGl0emxpZ2h0eWhkIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
, {"uuid": "desktopicons-neo@darkdemon", "name": "Desktop Icons: Neo", "pname": "desktop-icons-neo", "description": "This adds desktop icons to GNOME. A fork of Desktop Icons NG with a massive amount of customizations (like icon shapes and curved corners), features, bug fixes, and overall polish.", "link": "https://extensions.gnome.org/extension/4337/desktop-icons-neo/", "shell_version_map": {"38": {"version": "5", "sha256": "0g1bm8day6jn9zbw661dqgdk96vgl1jd3snzwwfgmlkxgxshbq09", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgYWRkcyBkZXNrdG9wIGljb25zIHRvIEdOT01FLiBBIGZvcmsgb2YgRGVza3RvcCBJY29ucyBORyB3aXRoIGEgbWFzc2l2ZSBhbW91bnQgb2YgY3VzdG9taXphdGlvbnMgKGxpa2UgaWNvbiBzaGFwZXMgYW5kIGN1cnZlZCBjb3JuZXJzKSwgZmVhdHVyZXMsIGJ1ZyBmaXhlcywgYW5kIG92ZXJhbGwgcG9saXNoLiIsCiAgIm5hbWUiOiAiRGVza3RvcCBJY29uczogTmVvIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0RFTTBOQXNzaXNzYW43L2Rlc2t0b3AtaWNvbnMtbmVvIiwKICAidXVpZCI6ICJkZXNrdG9waWNvbnMtbmVvQGRhcmtkZW1vbiIsCiAgInZlcnNpb24iOiA1Cn0="}, "40": {"version": "5", "sha256": "0g1bm8day6jn9zbw661dqgdk96vgl1jd3snzwwfgmlkxgxshbq09", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRoaXMgYWRkcyBkZXNrdG9wIGljb25zIHRvIEdOT01FLiBBIGZvcmsgb2YgRGVza3RvcCBJY29ucyBORyB3aXRoIGEgbWFzc2l2ZSBhbW91bnQgb2YgY3VzdG9taXphdGlvbnMgKGxpa2UgaWNvbiBzaGFwZXMgYW5kIGN1cnZlZCBjb3JuZXJzKSwgZmVhdHVyZXMsIGJ1ZyBmaXhlcywgYW5kIG92ZXJhbGwgcG9saXNoLiIsCiAgIm5hbWUiOiAiRGVza3RvcCBJY29uczogTmVvIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM0IiwKICAgICIzLjMyIiwKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0RFTTBOQXNzaXNzYW43L2Rlc2t0b3AtaWNvbnMtbmVvIiwKICAidXVpZCI6ICJkZXNrdG9waWNvbnMtbmVvQGRhcmtkZW1vbiIsCiAgInZlcnNpb24iOiA1Cn0="}}}
-, {"uuid": "allowlockedremotedesktop@kamens.us", "name": "Allow Locked Remote Desktop", "pname": "allow-locked-remote-desktop", "description": "Allow remote desktop connections when the screen is locked", "link": "https://extensions.gnome.org/extension/4338/allow-locked-remote-desktop/", "shell_version_map": {"38": {"version": "1", "sha256": "1ilb4rzvng2ndzs4va2f6v5l5rfs2xk15skiw9cch9vazsfshk0c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93IHJlbW90ZSBkZXNrdG9wIGNvbm5lY3Rpb25zIHdoZW4gdGhlIHNjcmVlbiBpcyBsb2NrZWQiLAogICJuYW1lIjogIkFsbG93IExvY2tlZCBSZW1vdGUgRGVza3RvcCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJhbGxvd2xvY2tlZHJlbW90ZWRlc2t0b3BAa2FtZW5zLnVzIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
+, {"uuid": "allowlockedremotedesktop@kamens.us", "name": "Allow Locked Remote Desktop", "pname": "allow-locked-remote-desktop", "description": "Allow remote desktop connections when the screen is locked", "link": "https://extensions.gnome.org/extension/4338/allow-locked-remote-desktop/", "shell_version_map": {"38": {"version": "2", "sha256": "16kh8zp97905r3w0jx57r27x6lhkmrxavkj57nvp1zvhyhdc8mh3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93IHJlbW90ZSBkZXNrdG9wIGNvbm5lY3Rpb25zIHdoZW4gdGhlIHNjcmVlbiBpcyBsb2NrZWQiLAogICJuYW1lIjogIkFsbG93IExvY2tlZCBSZW1vdGUgRGVza3RvcCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAiYWxsb3dsb2NrZWRyZW1vdGVkZXNrdG9wQGthbWVucy51cyIsCiAgInZlcnNpb24iOiAyCn0="}, "40": {"version": "2", "sha256": "16kh8zp97905r3w0jx57r27x6lhkmrxavkj57nvp1zvhyhdc8mh3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFsbG93IHJlbW90ZSBkZXNrdG9wIGNvbm5lY3Rpb25zIHdoZW4gdGhlIHNjcmVlbiBpcyBsb2NrZWQiLAogICJuYW1lIjogIkFsbG93IExvY2tlZCBSZW1vdGUgRGVza3RvcCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAiYWxsb3dsb2NrZWRyZW1vdGVkZXNrdG9wQGthbWVucy51cyIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "mumble-ping@maweil.github.com", "name": "MumblePing", "pname": "mumbleping", "description": "Displays how many users are currently online on a mumble server", "link": "https://extensions.gnome.org/extension/4341/mumbleping/", "shell_version_map": {"38": {"version": "1", "sha256": "1xvz9dshkhgil1ivsj47lil3d5g2k6l7l3phdqb11kpd14873xa5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIGhvdyBtYW55IHVzZXJzIGFyZSBjdXJyZW50bHkgb25saW5lIG9uIGEgbXVtYmxlIHNlcnZlciIsCiAgImdldHRleHQtZG9tYWluIjogIm11bWJsZS1waW5nIiwKICAibmFtZSI6ICJNdW1ibGVQaW5nIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm11bWJsZS1waW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL21hd2VpbC9nbm9tZS1zaGVsbC1leHRlbnNpb24tbXVtYmxlLXBpbmciLAogICJ1dWlkIjogIm11bWJsZS1waW5nQG1hd2VpbC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEKfQ=="}, "40": {"version": "1", "sha256": "1xvz9dshkhgil1ivsj47lil3d5g2k6l7l3phdqb11kpd14873xa5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIGhvdyBtYW55IHVzZXJzIGFyZSBjdXJyZW50bHkgb25saW5lIG9uIGEgbXVtYmxlIHNlcnZlciIsCiAgImdldHRleHQtZG9tYWluIjogIm11bWJsZS1waW5nIiwKICAibmFtZSI6ICJNdW1ibGVQaW5nIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLm11bWJsZS1waW5nIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL21hd2VpbC9nbm9tZS1zaGVsbC1leHRlbnNpb24tbXVtYmxlLXBpbmciLAogICJ1dWlkIjogIm11bWJsZS1waW5nQG1hd2VpbC5naXRodWIuY29tIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
, {"uuid": "simply.workspaces@andyrichardson.dev", "name": "Simply Workspaces", "pname": "simply-workspaces", "description": "Workspace indication with an i3/polybar style.", "link": "https://extensions.gnome.org/extension/4343/simply-workspaces/", "shell_version_map": {"40": {"version": "5", "sha256": "1gkmzf93xnkv58g6vxzvnr8bsybqlwm5qjipvqx3iv3rhygk8i86", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIldvcmtzcGFjZSBpbmRpY2F0aW9uIHdpdGggYW4gaTMvcG9seWJhciBzdHlsZS4iLAogICJuYW1lIjogIlNpbXBseSBXb3Jrc3BhY2VzIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2FuZHlyaWNoYXJkc29uL3NpbXBseS13b3Jrc3BhY2VzIiwKICAidXVpZCI6ICJzaW1wbHkud29ya3NwYWNlc0BhbmR5cmljaGFyZHNvbi5kZXYiLAogICJ2ZXJzaW9uIjogNQp9"}}}
, {"uuid": "nonblockingswitcher@scottworley.com", "name": "Non-Blocking Switcher", "pname": "non-blocking-switcher", "description": "Application switching oughtn't stop all other keyboard shortcuts", "link": "https://extensions.gnome.org/extension/4347/non-blocking-switcher/", "shell_version_map": {"40": {"version": "2", "sha256": "05a59fi1454kxh2q8p5qp3an7ss243v3d67jm37k6xggwd59v5fn", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFwcGxpY2F0aW9uIHN3aXRjaGluZyBvdWdodG4ndCBzdG9wIGFsbCBvdGhlciBrZXlib2FyZCBzaG9ydGN1dHMiLAogICJuYW1lIjogIk5vbi1CbG9ja2luZyBTd2l0Y2hlciIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zMiIsCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9jaHVjay9ub24tYmxvY2tpbmctc3dpdGNoZXIiLAogICJ1dWlkIjogIm5vbmJsb2NraW5nc3dpdGNoZXJAc2NvdHR3b3JsZXkuY29tIiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
@@ -526,14 +532,14 @@
, {"uuid": "improvedosk@nick-shmyrev.dev", "name": "Improved OSK", "pname": "improved-osk", "description": "Makes Gnome's onscreen keyboard more useable with e.g. more keys.\nThis extension is a fork of https://extensions.gnome.org/extension/3330/improved-onscreen-keyboard/ by SebastianLuebke.", "link": "https://extensions.gnome.org/extension/4413/improved-osk/", "shell_version_map": {"38": {"version": "4", "sha256": "0f3051wf7lp9ia1r74j72ajlyph63nw4928wg16lfxhdzid4bymp", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2VzIEdub21lJ3Mgb25zY3JlZW4ga2V5Ym9hcmQgbW9yZSB1c2VhYmxlIHdpdGggZS5nLiBtb3JlIGtleXMuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMzMzMC9pbXByb3ZlZC1vbnNjcmVlbi1rZXlib2FyZC8gYnkgU2ViYXN0aWFuTHVlYmtlLiIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgT1NLIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9uaWNrLXNobXlyZXYvaW1wcm92ZWQtb3NrLWdub21lLWV4dCIsCiAgInV1aWQiOiAiaW1wcm92ZWRvc2tAbmljay1zaG15cmV2LmRldiIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "0f3051wf7lp9ia1r74j72ajlyph63nw4928wg16lfxhdzid4bymp", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2VzIEdub21lJ3Mgb25zY3JlZW4ga2V5Ym9hcmQgbW9yZSB1c2VhYmxlIHdpdGggZS5nLiBtb3JlIGtleXMuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMzMzMC9pbXByb3ZlZC1vbnNjcmVlbi1rZXlib2FyZC8gYnkgU2ViYXN0aWFuTHVlYmtlLiIsCiAgIm5hbWUiOiAiSW1wcm92ZWQgT1NLIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9uaWNrLXNobXlyZXYvaW1wcm92ZWQtb3NrLWdub21lLWV4dCIsCiAgInV1aWQiOiAiaW1wcm92ZWRvc2tAbmljay1zaG15cmV2LmRldiIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "fedora-update@pepe386", "name": "Fedora Linux Updates Indicator", "pname": "fedora-linux-updates-indicator", "description": "Update indicator for Fedora Linux and GNOME Shell.", "link": "https://extensions.gnome.org/extension/4415/fedora-linux-updates-indicator/", "shell_version_map": {"40": {"version": "1", "sha256": "0sz69rs6z1fybva20xs8587bs4xaflb4frd14d729lqq5h1m8b2p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlVwZGF0ZSBpbmRpY2F0b3IgZm9yIEZlZG9yYSBMaW51eCBhbmQgR05PTUUgU2hlbGwuIiwKICAibmFtZSI6ICJGZWRvcmEgTGludXggVXBkYXRlcyBJbmRpY2F0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vcGVwZTM4Ni9mZWRvcmEtdXBkYXRlIiwKICAidXVpZCI6ICJmZWRvcmEtdXBkYXRlQHBlcGUzODYiLAogICJ2ZXJzaW9uIjogMQp9"}}}
, {"uuid": "readingstrip@lupantano.gihthub", "name": "Reading Strip", "pname": "reading-strip", "description": "It is a extension for Gnome-Shell with an equivalent function to a reading guide on the computer, that's really useful for people with dyslexia.", "link": "https://extensions.gnome.org/extension/4419/reading-strip/", "shell_version_map": {"40": {"version": "9", "sha256": "0r6ccgha8gqdqyy9z8sqxgpm1prbxfbh7cc8iyfhba5g40b4lh9g", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkl0IGlzIGEgZXh0ZW5zaW9uIGZvciBHbm9tZS1TaGVsbCB3aXRoIGFuIGVxdWl2YWxlbnQgZnVuY3Rpb24gdG8gYSByZWFkaW5nIGd1aWRlIG9uIHRoZSBjb21wdXRlciwgdGhhdCdzIHJlYWxseSB1c2VmdWwgZm9yIHBlb3BsZSB3aXRoIGR5c2xleGlhLiIsCiAgIm5hbWUiOiAiUmVhZGluZyBTdHJpcCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5yZWFkaW5nc3RyaXAiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vbHVwYW50YW5vL3JlYWRpbmdzdHJpcCIsCiAgInV1aWQiOiAicmVhZGluZ3N0cmlwQGx1cGFudGFuby5naWh0aHViIiwKICAidmVyc2lvbiI6IDkKfQ=="}}}
-, {"uuid": "gnome-clipboard@b00f.github.io", "name": "Gnome Clipboard", "pname": "gnome-clipboard", "description": "A gnome extension to manage your clipboard.", "link": "https://extensions.gnome.org/extension/4422/gnome-clipboard/", "shell_version_map": {"38": {"version": "6", "sha256": "0ikcx7fgjbb8bh9zrg2m030sxrabf6jj6143ank6dvqc4mndzf6c", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ25vbWUgZXh0ZW5zaW9uIHRvIG1hbmFnZSB5b3VyIGNsaXBib2FyZC4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1jbGlwYm9hcmQiLAogICJuYW1lIjogIkdub21lIENsaXBib2FyZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2IwMGYvZ25vbWUtY2xpcGJvYXJkIiwKICAidXVpZCI6ICJnbm9tZS1jbGlwYm9hcmRAYjAwZi5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogNgp9"}}}
+, {"uuid": "gnome-clipboard@b00f.github.io", "name": "Gnome Clipboard", "pname": "gnome-clipboard", "description": "A gnome shell extension to manage your clipboard.", "link": "https://extensions.gnome.org/extension/4422/gnome-clipboard/", "shell_version_map": {"38": {"version": "7", "sha256": "06x44rg72n5nzn1b28hzq5pzp5ci8cr2dd1yfmlz4fvxlhm4zn64", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgZ25vbWUgc2hlbGwgZXh0ZW5zaW9uIHRvIG1hbmFnZSB5b3VyIGNsaXBib2FyZC4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJnbm9tZS1jbGlwYm9hcmQiLAogICJuYW1lIjogIkdub21lIENsaXBib2FyZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2IwMGYvZ25vbWUtY2xpcGJvYXJkIiwKICAidXVpZCI6ICJnbm9tZS1jbGlwYm9hcmRAYjAwZi5naXRodWIuaW8iLAogICJ2ZXJzaW9uIjogNwp9"}}}
, {"uuid": "thanatophobia@yatx.one", "name": "Thanatophobia", "pname": "thanatophobia", "description": "Displays your age in real time. \n\nGreat source of motivation according to terror management theory!\n\nMay induce stress.", "link": "https://extensions.gnome.org/extension/4425/thanatophobia/", "shell_version_map": {"40": {"version": "4", "sha256": "14yijd7d2iad2axsqmx9dszs41cc691zbsqjhpjrfig4zf6blxik", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc3BsYXlzIHlvdXIgYWdlIGluIHJlYWwgdGltZS4gXG5cbkdyZWF0IHNvdXJjZSBvZiBtb3RpdmF0aW9uIGFjY29yZGluZyB0byB0ZXJyb3IgbWFuYWdlbWVudCB0aGVvcnkhXG5cbk1heSBpbmR1Y2Ugc3RyZXNzLiIsCiAgIm5hbWUiOiAiVGhhbmF0b3Bob2JpYSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogIiIsCiAgInV1aWQiOiAidGhhbmF0b3Bob2JpYUB5YXR4Lm9uZSIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "typewriter-kb@zzzheka97.gmail.com", "name": "Typewriter Keyboard", "pname": "typewriter-keyboard", "description": "Add a typewriter effect to your keyboard.\n \nThis extension is based on typewriter-kb application \n(https://github.com/ZhekehZ/linux-typewriter-kb), which \nis required to run the extension, but is not part of it.\n \n-------------------------------------------\nIcons made by Freepik from www.flaticon.com", "link": "https://extensions.gnome.org/extension/4427/typewriter-keyboard/", "shell_version_map": {"38": {"version": "2", "sha256": "1zmlmijkm6sgpp00qbrwnxmd4q5dfh07g9w9nynq3ciwxs9fjnai", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHR5cGV3cml0ZXIgZWZmZWN0IHRvIHlvdXIga2V5Ym9hcmQuXG4gXG5UaGlzIGV4dGVuc2lvbiBpcyBiYXNlZCBvbiB0eXBld3JpdGVyLWtiIGFwcGxpY2F0aW9uIFxuKGh0dHBzOi8vZ2l0aHViLmNvbS9aaGVrZWhaL2xpbnV4LXR5cGV3cml0ZXIta2IpLCB3aGljaCBcbmlzIHJlcXVpcmVkIHRvIHJ1biB0aGUgZXh0ZW5zaW9uLCBidXQgaXMgbm90IHBhcnQgb2YgaXQuXG4gXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5JY29ucyBtYWRlIGJ5IEZyZWVwaWsgZnJvbSB3d3cuZmxhdGljb24uY29tIiwKICAibmFtZSI6ICJUeXBld3JpdGVyIEtleWJvYXJkIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogInR5cGV3cml0ZXIta2JAenp6aGVrYTk3LmdtYWlsLmNvbSIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "dark-side@kamil-galek.pl", "name": "Dark side of Gnome", "pname": "dark-side-of-gnome", "description": "Join the dark side with some of your apps. For now it won't work with every app.", "link": "https://extensions.gnome.org/extension/4430/dark-side-of-gnome/", "shell_version_map": {"40": {"version": "2", "sha256": "08kzwpn22qwgyrps4khwkarn4rakr1rn57wg94wpfgd9pfbgb7ri", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkpvaW4gdGhlIGRhcmsgc2lkZSB3aXRoIHNvbWUgb2YgeW91ciBhcHBzLiBGb3Igbm93IGl0IHdvbid0IHdvcmsgd2l0aCBldmVyeSBhcHAuIiwKICAibmFtZSI6ICJEYXJrIHNpZGUgb2YgR25vbWUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImRhcmstc2lkZUBrYW1pbC1nYWxlay5wbCIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "wizlight@iabhilashjoshi", "name": "Wiz Light", "pname": "wiz-light", "description": "Control Wiz Connected Lights Through Gnome Shell\n\nRequirements:\n #Wiz enabled smart bulb\n #python3 (To install use command \"sudo apt install python3\")\n #pywizlight (To install use command \"pip3 install pywizlight\")\n\nTo Use go to the location where extension is installed (usually stored in \"~/.local/share/gnome-shell/extensions\") and change IP address in extension.js file to your smart bulb's IP address and then extension should work.", "link": "https://extensions.gnome.org/extension/4436/wiz-light/", "shell_version_map": {"38": {"version": "4", "sha256": "0pby93ivqz2ymdskyjp6ajc2c588dbpq7vjj7b7d8mc03hvkap5z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkNvbnRyb2wgV2l6IENvbm5lY3RlZCBMaWdodHMgVGhyb3VnaCBHbm9tZSBTaGVsbFxuXG5SZXF1aXJlbWVudHM6XG4gICAgICAgICNXaXogZW5hYmxlZCBzbWFydCBidWxiXG4gICAgICAgICNweXRob24zICAoVG8gaW5zdGFsbCAgdXNlIGNvbW1hbmQgXCJzdWRvIGFwdCBpbnN0YWxsIHB5dGhvbjNcIilcbiAgICAgICAgI3B5d2l6bGlnaHQgKFRvIGluc3RhbGwgdXNlIGNvbW1hbmQgXCJwaXAzIGluc3RhbGwgcHl3aXpsaWdodFwiKVxuXG5UbyBVc2UgZ28gdG8gdGhlIGxvY2F0aW9uIHdoZXJlIGV4dGVuc2lvbiBpcyBpbnN0YWxsZWQgKHVzdWFsbHkgc3RvcmVkIGluIFwifi8ubG9jYWwvc2hhcmUvZ25vbWUtc2hlbGwvZXh0ZW5zaW9uc1wiKSBhbmQgY2hhbmdlIElQIGFkZHJlc3MgaW4gZXh0ZW5zaW9uLmpzIGZpbGUgdG8geW91ciBzbWFydCBidWxiJ3MgSVAgYWRkcmVzcyBhbmQgdGhlbiBleHRlbnNpb24gc2hvdWxkIHdvcmsuIiwKICAibmFtZSI6ICJXaXogTGlnaHQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9hbHBoYXNwZWFyL1dpei1MaWdodCIsCiAgInV1aWQiOiAid2l6bGlnaHRAaWFiaGlsYXNoam9zaGkiLAogICJ2ZXJzaW9uIjogNAp9"}}}
, {"uuid": "gSnap@micahosborne", "name": "gSnap", "pname": "gsnap", "description": "Organize windows in customizable snap zones like FancyZones on windows.", "link": "https://extensions.gnome.org/extension/4442/gsnap/", "shell_version_map": {"40": {"version": "6", "sha256": "1sm3kmc4i5m9jimly95bf39p5vjl2rnavkkkiiqq0blk725fsa2j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk9yZ2FuaXplIHdpbmRvd3MgaW4gY3VzdG9taXphYmxlIHNuYXAgem9uZXMgbGlrZSBGYW5jeVpvbmVzIG9uIHdpbmRvd3MuIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ3NuYXBAbWljYWhvc2Jvcm5lIiwKICAibmFtZSI6ICJnU25hcCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5nc25hcCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9taWNhaG9zYm9ybmUvZ1NuYXAiLAogICJ1dWlkIjogImdTbmFwQG1pY2Fob3Nib3JuZSIsCiAgInZlcnNpb24iOiA2Cn0="}}}
, {"uuid": "appswitcheronlyoncurrentworkspace@ermesonsampaio.com", "name": "Alt + Tab only on current workspace", "pname": "alt-tab-only-on-current-workspace", "description": "Force alt + tab to switch only in the current workspace.", "link": "https://extensions.gnome.org/extension/4443/alt-tab-only-on-current-workspace/", "shell_version_map": {"40": {"version": "3", "sha256": "1jl7gi45gz9fliggkwdg44rdqcirh6qxfkvc639vbw2sgmpbmcvw", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkZvcmNlIGFsdCArIHRhYiB0byBzd2l0Y2ggb25seSBpbiB0aGUgY3VycmVudCB3b3Jrc3BhY2UuIiwKICAibmFtZSI6ICJBbHQgKyBUYWIgb25seSBvbiBjdXJyZW50IHdvcmtzcGFjZSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9lcm1lc29uc2FtcGFpby9hcHAtc3dpdGNoZXItb25seS1vbi1jdXJyZW50LXdvcmtzcGFjZSIsCiAgInV1aWQiOiAiYXBwc3dpdGNoZXJvbmx5b25jdXJyZW50d29ya3NwYWNlQGVybWVzb25zYW1wYWlvLmNvbSIsCiAgInZlcnNpb24iOiAzCn0="}}}
-, {"uuid": "logomenu@aryan_k", "name": "Logo Menu", "pname": "logo-menu", "description": "Logo Menu - Menu similar to Apple's macOS menu for the GNOME Desktop\nThis extension gives a simple menu along with the ability to get the icon of your distro on top left part of the panel for a great look.\nThe Icon can be customized through settings, it has both Linux and BSD logos.\nfor more screenshots, visit GitHub.\n\nThe default Terminal and Software center can also be changed.\n\nmatrix group - https://matrix.to/#/#logo-menu:matrix.org\n\nThis extension is a fork of - https://github.com/tofutech/tofumenu\n\nThe original project is no more supported thus I made this.", "link": "https://extensions.gnome.org/extension/4451/logo-menu/", "shell_version_map": {"38": {"version": "6", "sha256": "137v6cf7cpsh314v7kn4fngyd3mg0gbbzqba0ph46gpi1nvfjbpb", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvZ28gTWVudSAtIE1lbnUgc2ltaWxhciB0byBBcHBsZSdzIG1hY09TIG1lbnUgZm9yIHRoZSBHTk9NRSBEZXNrdG9wXG5UaGlzIGV4dGVuc2lvbiBnaXZlcyBhIHNpbXBsZSBtZW51IGFsb25nIHdpdGggdGhlIGFiaWxpdHkgdG8gZ2V0IHRoZSBpY29uIG9mIHlvdXIgZGlzdHJvIG9uIHRvcCBsZWZ0IHBhcnQgb2YgdGhlIHBhbmVsIGZvciBhIGdyZWF0IGxvb2suXG5UaGUgSWNvbiBjYW4gYmUgY3VzdG9taXplZCB0aHJvdWdoIHNldHRpbmdzLCBpdCBoYXMgYm90aCBMaW51eCBhbmQgQlNEIGxvZ29zLlxuZm9yIG1vcmUgc2NyZWVuc2hvdHMsIHZpc2l0IEdpdEh1Yi5cblxuVGhlIGRlZmF1bHQgVGVybWluYWwgYW5kIFNvZnR3YXJlIGNlbnRlciBjYW4gYWxzbyBiZSBjaGFuZ2VkLlxuXG5tYXRyaXggZ3JvdXAgLSBodHRwczovL21hdHJpeC50by8jLyNsb2dvLW1lbnU6bWF0cml4Lm9yZ1xuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgLSBodHRwczovL2dpdGh1Yi5jb20vdG9mdXRlY2gvdG9mdW1lbnVcblxuVGhlIG9yaWdpbmFsIHByb2plY3QgaXMgbm8gbW9yZSBzdXBwb3J0ZWQgdGh1cyBJIG1hZGUgdGhpcy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJsb2dvLW1lbnUiLAogICJuYW1lIjogIkxvZ28gTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuYXJ5YW5fay5sb2dvLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0FyeWFuMjAvTG9nb21lbnUiLAogICJ1dWlkIjogImxvZ29tZW51QGFyeWFuX2siLAogICJ2ZXJzaW9uIjogNgp9"}, "40": {"version": "6", "sha256": "137v6cf7cpsh314v7kn4fngyd3mg0gbbzqba0ph46gpi1nvfjbpb", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvZ28gTWVudSAtIE1lbnUgc2ltaWxhciB0byBBcHBsZSdzIG1hY09TIG1lbnUgZm9yIHRoZSBHTk9NRSBEZXNrdG9wXG5UaGlzIGV4dGVuc2lvbiBnaXZlcyBhIHNpbXBsZSBtZW51IGFsb25nIHdpdGggdGhlIGFiaWxpdHkgdG8gZ2V0IHRoZSBpY29uIG9mIHlvdXIgZGlzdHJvIG9uIHRvcCBsZWZ0IHBhcnQgb2YgdGhlIHBhbmVsIGZvciBhIGdyZWF0IGxvb2suXG5UaGUgSWNvbiBjYW4gYmUgY3VzdG9taXplZCB0aHJvdWdoIHNldHRpbmdzLCBpdCBoYXMgYm90aCBMaW51eCBhbmQgQlNEIGxvZ29zLlxuZm9yIG1vcmUgc2NyZWVuc2hvdHMsIHZpc2l0IEdpdEh1Yi5cblxuVGhlIGRlZmF1bHQgVGVybWluYWwgYW5kIFNvZnR3YXJlIGNlbnRlciBjYW4gYWxzbyBiZSBjaGFuZ2VkLlxuXG5tYXRyaXggZ3JvdXAgLSBodHRwczovL21hdHJpeC50by8jLyNsb2dvLW1lbnU6bWF0cml4Lm9yZ1xuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgLSBodHRwczovL2dpdGh1Yi5jb20vdG9mdXRlY2gvdG9mdW1lbnVcblxuVGhlIG9yaWdpbmFsIHByb2plY3QgaXMgbm8gbW9yZSBzdXBwb3J0ZWQgdGh1cyBJIG1hZGUgdGhpcy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJsb2dvLW1lbnUiLAogICJuYW1lIjogIkxvZ28gTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuYXJ5YW5fay5sb2dvLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0FyeWFuMjAvTG9nb21lbnUiLAogICJ1dWlkIjogImxvZ29tZW51QGFyeWFuX2siLAogICJ2ZXJzaW9uIjogNgp9"}}}
+, {"uuid": "logomenu@aryan_k", "name": "Logo Menu", "pname": "logo-menu", "description": "Logo Menu - Menu similar to Apple's macOS menu for the GNOME Desktop\nThis extension gives a simple menu along with the ability to get the icon of your distro on top left part of the panel for a great look.\nThe Icon can be customized through settings, it has both Linux and BSD logos.\nfor more screenshots, visit GitHub.\n\nThe default Terminal and Software center can also be changed.\n\nThis extension is a fork of - https://github.com/tofutech/tofumenu\n\nThe original project is no more supported thus I made this.", "link": "https://extensions.gnome.org/extension/4451/logo-menu/", "shell_version_map": {"38": {"version": "7", "sha256": "15n7ij36sizhg4arbn5x4b2j3nqlr4z7nvsbcqm3bvy9pjvmib2h", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvZ28gTWVudSAtIE1lbnUgc2ltaWxhciB0byBBcHBsZSdzIG1hY09TIG1lbnUgZm9yIHRoZSBHTk9NRSBEZXNrdG9wXG5UaGlzIGV4dGVuc2lvbiBnaXZlcyBhIHNpbXBsZSBtZW51IGFsb25nIHdpdGggdGhlIGFiaWxpdHkgdG8gZ2V0IHRoZSBpY29uIG9mIHlvdXIgZGlzdHJvIG9uIHRvcCBsZWZ0IHBhcnQgb2YgdGhlIHBhbmVsIGZvciBhIGdyZWF0IGxvb2suXG5UaGUgSWNvbiBjYW4gYmUgY3VzdG9taXplZCB0aHJvdWdoIHNldHRpbmdzLCBpdCBoYXMgYm90aCBMaW51eCBhbmQgQlNEIGxvZ29zLlxuZm9yIG1vcmUgc2NyZWVuc2hvdHMsIHZpc2l0IEdpdEh1Yi5cblxuVGhlIGRlZmF1bHQgVGVybWluYWwgYW5kIFNvZnR3YXJlIGNlbnRlciBjYW4gYWxzbyBiZSBjaGFuZ2VkLlxuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgLSBodHRwczovL2dpdGh1Yi5jb20vdG9mdXRlY2gvdG9mdW1lbnVcblxuVGhlIG9yaWdpbmFsIHByb2plY3QgaXMgbm8gbW9yZSBzdXBwb3J0ZWQgdGh1cyBJIG1hZGUgdGhpcy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJsb2dvLW1lbnUiLAogICJuYW1lIjogIkxvZ28gTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuYXJ5YW5fay5sb2dvLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0FyeWFuMjAvTG9nb21lbnUiLAogICJ1dWlkIjogImxvZ29tZW51QGFyeWFuX2siLAogICJ2ZXJzaW9uIjogNwp9"}, "40": {"version": "7", "sha256": "15n7ij36sizhg4arbn5x4b2j3nqlr4z7nvsbcqm3bvy9pjvmib2h", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkxvZ28gTWVudSAtIE1lbnUgc2ltaWxhciB0byBBcHBsZSdzIG1hY09TIG1lbnUgZm9yIHRoZSBHTk9NRSBEZXNrdG9wXG5UaGlzIGV4dGVuc2lvbiBnaXZlcyBhIHNpbXBsZSBtZW51IGFsb25nIHdpdGggdGhlIGFiaWxpdHkgdG8gZ2V0IHRoZSBpY29uIG9mIHlvdXIgZGlzdHJvIG9uIHRvcCBsZWZ0IHBhcnQgb2YgdGhlIHBhbmVsIGZvciBhIGdyZWF0IGxvb2suXG5UaGUgSWNvbiBjYW4gYmUgY3VzdG9taXplZCB0aHJvdWdoIHNldHRpbmdzLCBpdCBoYXMgYm90aCBMaW51eCBhbmQgQlNEIGxvZ29zLlxuZm9yIG1vcmUgc2NyZWVuc2hvdHMsIHZpc2l0IEdpdEh1Yi5cblxuVGhlIGRlZmF1bHQgVGVybWluYWwgYW5kIFNvZnR3YXJlIGNlbnRlciBjYW4gYWxzbyBiZSBjaGFuZ2VkLlxuXG5UaGlzIGV4dGVuc2lvbiBpcyBhIGZvcmsgb2YgLSBodHRwczovL2dpdGh1Yi5jb20vdG9mdXRlY2gvdG9mdW1lbnVcblxuVGhlIG9yaWdpbmFsIHByb2plY3QgaXMgbm8gbW9yZSBzdXBwb3J0ZWQgdGh1cyBJIG1hZGUgdGhpcy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJsb2dvLW1lbnUiLAogICJuYW1lIjogIkxvZ28gTWVudSIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuYXJ5YW5fay5sb2dvLW1lbnUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzAiLAogICAgIjMuMzQiLAogICAgIjMuMzIiLAogICAgIjMuMzYiLAogICAgIjMuMzgiLAogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0FyeWFuMjAvTG9nb21lbnUiLAogICJ1dWlkIjogImxvZ29tZW51QGFyeWFuX2siLAogICJ2ZXJzaW9uIjogNwp9"}}}
, {"uuid": "rog-manager@rog", "name": "Rog Asus Manager", "pname": "rog-asus-manager", "description": "Asus ROG manager", "link": "https://extensions.gnome.org/extension/4452/rog-asus-manager/", "shell_version_map": {"38": {"version": "4", "sha256": "194k3qzjd05rki20ww0nv8001aiyp4ih9abv82g64058x8rmnff5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFzdXMgUk9HIG1hbmFnZXIiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJyb2ctbWFuYWdlciIsCiAgIm5hbWUiOiAiUm9nIEFzdXMgTWFuYWdlciIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5yb2dtYW5hZ2VyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vYWxlamFuZHJvLW1vdXJhcy9yb2ctbWFuYWdlciIsCiAgInV1aWQiOiAicm9nLW1hbmFnZXJAcm9nIiwKICAidmVyc2lvbiI6IDQKfQ=="}}}
, {"uuid": "titlebar-screenshot@jmaargh.github.com", "name": "Titlebar Screenshot", "pname": "titlebar-screenshot", "description": "Take screenshots by right-clicking on window titlebars.\n\nVarious configuration options include screenshots can be taken to the clipboard, to a file, or by opening the interactive tool.\n\nAll feedback and bug reports to Issues on the github page.", "link": "https://extensions.gnome.org/extension/4458/titlebar-screenshot/", "shell_version_map": {"38": {"version": "3", "sha256": "1vhphrjq2vyzlknfl3i7f8i3v9f8jcrpwiz26sigklmv3bmzb059", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRha2Ugc2NyZWVuc2hvdHMgYnkgcmlnaHQtY2xpY2tpbmcgb24gd2luZG93IHRpdGxlYmFycy5cblxuVmFyaW91cyBjb25maWd1cmF0aW9uIG9wdGlvbnMgaW5jbHVkZSBzY3JlZW5zaG90cyBjYW4gYmUgdGFrZW4gdG8gdGhlIGNsaXBib2FyZCwgdG8gYSBmaWxlLCBvciBieSBvcGVuaW5nIHRoZSBpbnRlcmFjdGl2ZSB0b29sLlxuXG5BbGwgZmVlZGJhY2sgYW5kIGJ1ZyByZXBvcnRzIHRvIElzc3VlcyBvbiB0aGUgZ2l0aHViIHBhZ2UuIiwKICAibmFtZSI6ICJUaXRsZWJhciBTY3JlZW5zaG90IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRpdGxlYmFyLXNjcmVlbnNob3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vam1hYXJnaC90aXRsZWJhci1zY3JlZW5zaG90LWdub21lLWV4dGVuc2lvbiIsCiAgInV1aWQiOiAidGl0bGViYXItc2NyZWVuc2hvdEBqbWFhcmdoLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMwp9"}, "40": {"version": "3", "sha256": "1vhphrjq2vyzlknfl3i7f8i3v9f8jcrpwiz26sigklmv3bmzb059", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRha2Ugc2NyZWVuc2hvdHMgYnkgcmlnaHQtY2xpY2tpbmcgb24gd2luZG93IHRpdGxlYmFycy5cblxuVmFyaW91cyBjb25maWd1cmF0aW9uIG9wdGlvbnMgaW5jbHVkZSBzY3JlZW5zaG90cyBjYW4gYmUgdGFrZW4gdG8gdGhlIGNsaXBib2FyZCwgdG8gYSBmaWxlLCBvciBieSBvcGVuaW5nIHRoZSBpbnRlcmFjdGl2ZSB0b29sLlxuXG5BbGwgZmVlZGJhY2sgYW5kIGJ1ZyByZXBvcnRzIHRvIElzc3VlcyBvbiB0aGUgZ2l0aHViIHBhZ2UuIiwKICAibmFtZSI6ICJUaXRsZWJhciBTY3JlZW5zaG90IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRpdGxlYmFyLXNjcmVlbnNob3QiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vam1hYXJnaC90aXRsZWJhci1zY3JlZW5zaG90LWdub21lLWV4dGVuc2lvbiIsCiAgInV1aWQiOiAidGl0bGViYXItc2NyZWVuc2hvdEBqbWFhcmdoLmdpdGh1Yi5jb20iLAogICJ2ZXJzaW9uIjogMwp9"}}}
, {"uuid": "expandable-notifications@kaan.g.inam.org", "name": "Expandable Notifications", "pname": "expandable-notifications", "description": "Makes the notifications in the notification list expandable. In the settings, the user can define if all notifications should be expanded automatically or not.", "link": "https://extensions.gnome.org/extension/4463/expandable-notifications/", "shell_version_map": {"40": {"version": "5", "sha256": "0ml8nac1r4cklsnnyy2982y5vxw8pzwqrpa3zbkfxih0d5k8l6za", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1ha2VzIHRoZSBub3RpZmljYXRpb25zIGluIHRoZSBub3RpZmljYXRpb24gbGlzdCBleHBhbmRhYmxlLiBJbiB0aGUgc2V0dGluZ3MsIHRoZSB1c2VyIGNhbiBkZWZpbmUgaWYgYWxsIG5vdGlmaWNhdGlvbnMgc2hvdWxkIGJlIGV4cGFuZGVkIGF1dG9tYXRpY2FsbHkgb3Igbm90LiIsCiAgImdldHRleHQtZG9tYWluIjogImV4cGFuZGFibGUtbm90aWZpY2F0aW9ucyIsCiAgIm5hbWUiOiAiRXhwYW5kYWJsZSBOb3RpZmljYXRpb25zIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmV4cGFuZGFibGUtbm90aWZpY2F0aW9ucy1zZXR0aW5ncyIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0bGFiLmdub21lLm9yZy9rYWFuZ2luYW0vZXhwYW5kYWJsZS1ub3RpZmljYXRpb25zIiwKICAidXVpZCI6ICJleHBhbmRhYmxlLW5vdGlmaWNhdGlvbnNAa2Fhbi5nLmluYW0ub3JnIiwKICAidmVyc2lvbiI6IDUKfQ=="}}}
@@ -542,15 +548,20 @@
, {"uuid": "aws-default-profile-switcher@kevin-chappell.com", "name": "AWS Default Profile Switcher", "pname": "aws-default-profile-switcher", "description": "Gnome shell extension for quickly setting named profiles as the default", "link": "https://extensions.gnome.org/extension/4473/aws-default-profile-switcher/", "shell_version_map": {"38": {"version": "3", "sha256": "0mal1290kdvqv60m0ps42hnx801knh5vd4mlwg1z7ydj9sw31cfg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkdub21lIHNoZWxsIGV4dGVuc2lvbiBmb3IgcXVpY2tseSBzZXR0aW5nIG5hbWVkIHByb2ZpbGVzIGFzIHRoZSBkZWZhdWx0IiwKICAibmFtZSI6ICJBV1MgRGVmYXVsdCBQcm9maWxlIFN3aXRjaGVyIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20va2V2aW5jaGFwcGVsbC9hd3MtZGVmYXVsdC1wcm9maWxlLXN3aXRjaGVyIiwKICAidXVpZCI6ICJhd3MtZGVmYXVsdC1wcm9maWxlLXN3aXRjaGVyQGtldmluLWNoYXBwZWxsLmNvbSIsCiAgInZlcnNpb24iOiAzCn0="}}}
, {"uuid": "hide-panel-for-fullscreen-windows-only@github.freder", "name": "Hide panel (only when active window is fullscreen)", "pname": "hide-panel-only-when-active-window-is-fullscreen", "description": "hide top panel only when a fullscreen application has focus", "link": "https://extensions.gnome.org/extension/4475/hide-panel-only-when-active-window-is-fullscreen/", "shell_version_map": {"40": {"version": "2", "sha256": "1hd5agdjq73qiqip0m3grmlxk8klp26pd71cz555414mi3f9mww3", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogImhpZGUgdG9wIHBhbmVsIG9ubHkgd2hlbiBhIGZ1bGxzY3JlZW4gYXBwbGljYXRpb24gaGFzIGZvY3VzIiwKICAibmFtZSI6ICJIaWRlIHBhbmVsIChvbmx5IHdoZW4gYWN0aXZlIHdpbmRvdyBpcyBmdWxsc2NyZWVuKSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mcmVkZXIvaGlkZS1wYW5lbC1mb3ItZnVsbHNjcmVlbi13aW5kb3dzLW9ubHkiLAogICJ1dWlkIjogImhpZGUtcGFuZWwtZm9yLWZ1bGxzY3JlZW4td2luZG93cy1vbmx5QGdpdGh1Yi5mcmVkZXIiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "netspeed@alynx.one", "name": "Net Speed", "pname": "net-speed", "description": "Show current net speed on panel.", "link": "https://extensions.gnome.org/extension/4478/net-speed/", "shell_version_map": {"40": {"version": "2", "sha256": "0j48ai7nqkpr0ymypsicdp7nw59hx9rgya8qws58wx56q9bznl69", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgY3VycmVudCBuZXQgc3BlZWQgb24gcGFuZWwuIiwKICAibmFtZSI6ICJOZXQgU3BlZWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogIm5ldHNwZWVkQGFseW54Lm9uZSIsCiAgInZlcnNpb24iOiAyCn0="}}}
-, {"uuid": "forge@jmmaranan.com", "name": "Forge", "pname": "forge", "description": "Tiling and window manager for GNOME\n\nFeatures:\n- Horizontal and Vertical Splits\n- Keyboard and mouse-driven support\n- Tiling per workspace\n- Customizable keybindings\n- Smart gaps / gaps customization\n- Wayland/X11 Support\n- Works in GNOME 3.3x - 4x\n\nFile an issue or feature request at:\nhttps://github.com/jmmaranan/forge/issues", "link": "https://extensions.gnome.org/extension/4481/forge/", "shell_version_map": {"38": {"version": "12", "sha256": "1kr1vxssgnxqdfxfs2awg9fy9rhnjnamgjrldlzmxphz3hpvqcy4", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGluZyBhbmQgd2luZG93IG1hbmFnZXIgZm9yIEdOT01FXG5cbkZlYXR1cmVzOlxuLSBIb3Jpem9udGFsIGFuZCBWZXJ0aWNhbCBTcGxpdHNcbi0gS2V5Ym9hcmQgYW5kIG1vdXNlLWRyaXZlbiBzdXBwb3J0XG4tIFRpbGluZyBwZXIgd29ya3NwYWNlXG4tIEN1c3RvbWl6YWJsZSBrZXliaW5kaW5nc1xuLSBTbWFydCBnYXBzIC8gZ2FwcyBjdXN0b21pemF0aW9uXG4tIFdheWxhbmQvWDExIFN1cHBvcnRcbi0gV29ya3MgaW4gR05PTUUgMy4zeCAtIDR4XG5cbkZpbGUgYW4gaXNzdWUgb3IgZmVhdHVyZSByZXF1ZXN0IGF0OlxuaHR0cHM6Ly9naXRodWIuY29tL2ptbWFyYW5hbi9mb3JnZS9pc3N1ZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmb3JnZSIsCiAgIm5hbWUiOiAiRm9yZ2UiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZm9yZ2UiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzYiLAogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9qbW1hcmFuYW4vZm9yZ2UiLAogICJ1dWlkIjogImZvcmdlQGptbWFyYW5hbi5jb20iLAogICJ2ZXJzaW9uIjogMTIKfQ=="}, "40": {"version": "13", "sha256": "1yyygws96np012j7dgabjr3l84060xz6pg2x0vdgj16hm31q443z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGluZyBhbmQgd2luZG93IG1hbmFnZXIgZm9yIEdOT01FXG5cbkZlYXR1cmVzOlxuLSBIb3Jpem9udGFsIGFuZCBWZXJ0aWNhbCBTcGxpdHNcbi0gS2V5Ym9hcmQgYW5kIG1vdXNlLWRyaXZlbiBzdXBwb3J0XG4tIFRpbGluZyBwZXIgd29ya3NwYWNlXG4tIEN1c3RvbWl6YWJsZSBrZXliaW5kaW5nc1xuLSBTbWFydCBnYXBzIC8gZ2FwcyBjdXN0b21pemF0aW9uXG4tIFdheWxhbmQvWDExIFN1cHBvcnRcbi0gV29ya3MgaW4gR05PTUUgMy4zeCAtIDR4XG5cbkZpbGUgYW4gaXNzdWUgb3IgZmVhdHVyZSByZXF1ZXN0IGF0OlxuaHR0cHM6Ly9naXRodWIuY29tL2ptbWFyYW5hbi9mb3JnZS9pc3N1ZXMiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJmb3JnZSIsCiAgIm5hbWUiOiAiRm9yZ2UiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAib3JnLmdub21lLnNoZWxsLmV4dGVuc2lvbnMuZm9yZ2UiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vam1tYXJhbmFuL2ZvcmdlIiwKICAidXVpZCI6ICJmb3JnZUBqbW1hcmFuYW4uY29tIiwKICAidmVyc2lvbiI6IDEzCn0="}}}
+, {"uuid": "forge@jmmaranan.com", "name": "Forge", "pname": "forge", "description": "Tiling and window manager for GNOME", "link": "https://extensions.gnome.org/extension/4481/forge/", "shell_version_map": {"38": {"version": "18", "sha256": "1j1d3pmmpn1gk4l8wk9384nz1azd9gdcrpks23k4v7icbbaq9v6a", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGluZyBhbmQgd2luZG93IG1hbmFnZXIgZm9yIEdOT01FIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZm9yZ2UiLAogICJuYW1lIjogIkZvcmdlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmZvcmdlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vam1tYXJhbmFuL2ZvcmdlIiwKICAidXVpZCI6ICJmb3JnZUBqbW1hcmFuYW4uY29tIiwKICAidmVyc2lvbiI6IDE4Cn0="}, "40": {"version": "19", "sha256": "1fphxpxpxxfcv4225h47a50dbxkrqf4y45q49a4rvn9gdrmlh79z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGluZyBhbmQgd2luZG93IG1hbmFnZXIgZm9yIEdOT01FIiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZm9yZ2UiLAogICJuYW1lIjogIkZvcmdlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmZvcmdlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2ptbWFyYW5hbi9mb3JnZSIsCiAgInV1aWQiOiAiZm9yZ2VAam1tYXJhbmFuLmNvbSIsCiAgInZlcnNpb24iOiAxOQp9"}}}
, {"uuid": "autonightlight@zefty.github.io", "name": "Auto Night Light", "pname": "auto-night-light", "description": "Automatically adjust night light", "link": "https://extensions.gnome.org/extension/4482/auto-night-light/", "shell_version_map": {"38": {"version": "2", "sha256": "1dfaprvy36vvhiqsqksmkqwb66dm9wj38gjwbv3g9xlvshnaxv6j", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkF1dG9tYXRpY2FsbHkgYWRqdXN0IG5pZ2h0IGxpZ2h0IiwKICAibmFtZSI6ICJBdXRvIE5pZ2h0IExpZ2h0IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vWmVmdHkvQXV0b05pZ2h0TGlnaHQiLAogICJ1dWlkIjogImF1dG9uaWdodGxpZ2h0QHplZnR5LmdpdGh1Yi5pbyIsCiAgInZlcnNpb24iOiAyCn0="}}}
, {"uuid": "favourites-in-appgrid@harshadgavali.gitlab.org", "name": "Favourites in AppGrid", "pname": "favourites-in-appgrid", "description": "Keep favourite applications in AppGrid", "link": "https://extensions.gnome.org/extension/4485/favourites-in-appgrid/", "shell_version_map": {"40": {"version": "1", "sha256": "1zcbs36kcmw50wgxkqn22abh8g1nx17p48vbpzk5x2842mn8shaz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIktlZXAgZmF2b3VyaXRlIGFwcGxpY2F0aW9ucyBpbiBBcHBHcmlkIiwKICAibmFtZSI6ICJGYXZvdXJpdGVzIGluIEFwcEdyaWQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRsYWIuZ25vbWUub3JnL2hhcnNoYWRnYXZhbGkvZmF2b3VyaXRlcy1pbi1hcHBncmlkLyIsCiAgInV1aWQiOiAiZmF2b3VyaXRlcy1pbi1hcHBncmlkQGhhcnNoYWRnYXZhbGkuZ2l0bGFiLm9yZyIsCiAgInZlcnNpb24iOiAxCn0="}}}
, {"uuid": "dark-variant@hardpixel.eu", "name": "Dark Variant", "pname": "dark-variant", "description": "Enable dark window decorations on applications. This extension is not compatible with applications that use Client Side Decorations (CSD).\n\nThis extension depends on some Xorg utilities. To install them:\n- Debian/Ubuntu: apt install x11-utils\n- Fedora/RHEL: dnf install xorg-x11-utils\n- Arch: pacman -S xorg-xprop\n\n*Settings are provided to enable/disable applications.", "link": "https://extensions.gnome.org/extension/4488/dark-variant/", "shell_version_map": {"40": {"version": "2", "sha256": "0i24nb93ihhaw76aaiv62fpwbvhc5dp8n88n7j8jbb557f1cvpwy", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkVuYWJsZSBkYXJrIHdpbmRvdyBkZWNvcmF0aW9ucyBvbiBhcHBsaWNhdGlvbnMuIFRoaXMgZXh0ZW5zaW9uIGlzIG5vdCBjb21wYXRpYmxlIHdpdGggYXBwbGljYXRpb25zIHRoYXQgdXNlIENsaWVudCBTaWRlIERlY29yYXRpb25zIChDU0QpLlxuXG5UaGlzIGV4dGVuc2lvbiBkZXBlbmRzIG9uIHNvbWUgWG9yZyB1dGlsaXRpZXMuIFRvIGluc3RhbGwgdGhlbTpcbi0gRGViaWFuL1VidW50dTogYXB0IGluc3RhbGwgeDExLXV0aWxzXG4tIEZlZG9yYS9SSEVMOiBkbmYgaW5zdGFsbCB4b3JnLXgxMS11dGlsc1xuLSBBcmNoOiBwYWNtYW4gLVMgeG9yZy14cHJvcFxuXG4qU2V0dGluZ3MgYXJlIHByb3ZpZGVkIHRvIGVuYWJsZS9kaXNhYmxlIGFwcGxpY2F0aW9ucy4iLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJkYXJrLXZhcmlhbnQiLAogICJuYW1lIjogIkRhcmsgVmFyaWFudCIsCiAgInNldHRpbmdzLXNjaGVtYSI6ICJvcmcuZ25vbWUuc2hlbGwuZXh0ZW5zaW9ucy5kYXJrLXZhcmlhbnQiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL2hhcmRwaXhlbC9kYXJrLXZhcmlhbnQiLAogICJ1dWlkIjogImRhcmstdmFyaWFudEBoYXJkcGl4ZWwuZXUiLAogICJ2ZXJzaW9uIjogMgp9"}}}
-, {"uuid": "PrivacyMenu@stuarthayhurst", "name": "Privacy Settings Menu", "pname": "privacy-settings-menu", "description": "Add a privacy menu to the top bar for quick access to privacy settings", "link": "https://extensions.gnome.org/extension/4491/privacy-settings-menu/", "shell_version_map": {"38": {"version": "3", "sha256": "1sdw2ac4llmml1zha8v31sh4mb55zgc5wgaa5gyfl3kv3069wsy5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHByaXZhY3kgbWVudSB0byB0aGUgdG9wIGJhciBmb3IgcXVpY2sgYWNjZXNzIHRvIHByaXZhY3kgc2V0dGluZ3MiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgIm5hbWUiOiAiUHJpdmFjeSBTZXR0aW5ncyBNZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9wcml2YWN5LW1lbnUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgInZlcnNpb24iOiAzCn0="}, "40": {"version": "3", "sha256": "1sdw2ac4llmml1zha8v31sh4mb55zgc5wgaa5gyfl3kv3069wsy5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHByaXZhY3kgbWVudSB0byB0aGUgdG9wIGJhciBmb3IgcXVpY2sgYWNjZXNzIHRvIHByaXZhY3kgc2V0dGluZ3MiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgIm5hbWUiOiAiUHJpdmFjeSBTZXR0aW5ncyBNZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9wcml2YWN5LW1lbnUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgInZlcnNpb24iOiAzCn0="}}}
+, {"uuid": "PrivacyMenu@stuarthayhurst", "name": "Privacy Settings Menu", "pname": "privacy-settings-menu", "description": "Add a privacy menu to the top bar for quick access to privacy settings", "link": "https://extensions.gnome.org/extension/4491/privacy-settings-menu/", "shell_version_map": {"38": {"version": "4", "sha256": "1kdkm032xz72cycaj85q1yjb7s6bv3srysp4sn69phclldyg6bhx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHByaXZhY3kgbWVudSB0byB0aGUgdG9wIGJhciBmb3IgcXVpY2sgYWNjZXNzIHRvIHByaXZhY3kgc2V0dGluZ3MiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgIm5hbWUiOiAiUHJpdmFjeSBTZXR0aW5ncyBNZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9wcml2YWN5LW1lbnUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgInZlcnNpb24iOiA0Cn0="}, "40": {"version": "4", "sha256": "1kdkm032xz72cycaj85q1yjb7s6bv3srysp4sn69phclldyg6bhx", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZCBhIHByaXZhY3kgbWVudSB0byB0aGUgdG9wIGJhciBmb3IgcXVpY2sgYWNjZXNzIHRvIHByaXZhY3kgc2V0dGluZ3MiLAogICJnZXR0ZXh0LWRvbWFpbiI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgIm5hbWUiOiAiUHJpdmFjeSBTZXR0aW5ncyBNZW51IiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9zdHVhcnRoYXlodXJzdC9wcml2YWN5LW1lbnUtZXh0ZW5zaW9uIiwKICAidXVpZCI6ICJQcml2YWN5TWVudUBzdHVhcnRoYXlodXJzdCIsCiAgInZlcnNpb24iOiA0Cn0="}}}
, {"uuid": "hide-panel-lite@fthx", "name": "Hide Panel (light version & without hot corner)", "pname": "hide-panel-light-version-without-hot-corner", "description": "Hide top panel except in overview.\n\nFor those who don't need a hot corner (e.g. running GNOME 40+ with three fingers gestures). Very very light extension. No options, no bugs. ;-)", "link": "https://extensions.gnome.org/extension/4496/hide-panel-light-version-without-hot-corner/", "shell_version_map": {"38": {"version": "1", "sha256": "092fqwypkfnzfa584nzg90ml9q8cvnxgfvhl4gj049745szs2j06", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUgdG9wIHBhbmVsIGV4Y2VwdCBpbiBvdmVydmlldy5cblxuRm9yIHRob3NlIHdobyBkb24ndCBuZWVkIGEgaG90IGNvcm5lciAoZS5nLiBydW5uaW5nIEdOT01FIDQwKyB3aXRoIHRocmVlIGZpbmdlcnMgZ2VzdHVyZXMpLiBWZXJ5IHZlcnkgbGlnaHQgZXh0ZW5zaW9uLiBObyBvcHRpb25zLCBubyBidWdzLiA7LSkiLAogICJuYW1lIjogIkhpZGUgUGFuZWwgKGxpZ2h0IHZlcnNpb24gJiB3aXRob3V0IGhvdCBjb3JuZXIpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2hpZGUtcGFuZWwtbGl0ZSIsCiAgInV1aWQiOiAiaGlkZS1wYW5lbC1saXRlQGZ0aHgiLAogICJ2ZXJzaW9uIjogMQp9"}, "40": {"version": "1", "sha256": "092fqwypkfnzfa584nzg90ml9q8cvnxgfvhl4gj049745szs2j06", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkhpZGUgdG9wIHBhbmVsIGV4Y2VwdCBpbiBvdmVydmlldy5cblxuRm9yIHRob3NlIHdobyBkb24ndCBuZWVkIGEgaG90IGNvcm5lciAoZS5nLiBydW5uaW5nIEdOT01FIDQwKyB3aXRoIHRocmVlIGZpbmdlcnMgZ2VzdHVyZXMpLiBWZXJ5IHZlcnkgbGlnaHQgZXh0ZW5zaW9uLiBObyBvcHRpb25zLCBubyBidWdzLiA7LSkiLAogICJuYW1lIjogIkhpZGUgUGFuZWwgKGxpZ2h0IHZlcnNpb24gJiB3aXRob3V0IGhvdCBjb3JuZXIpIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICIzLjM2IiwKICAgICIzLjM4IiwKICAgICI0MCIsCiAgICAiNDEiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mdGh4L2hpZGUtcGFuZWwtbGl0ZSIsCiAgInV1aWQiOiAiaGlkZS1wYW5lbC1saXRlQGZ0aHgiLAogICJ2ZXJzaW9uIjogMQp9"}}}
-, {"uuid": "ssm-gnome@lgiki.net", "name": "Simple System Monitor", "pname": "simple-system-monitor", "description": "Show current CPU usage, memory usage and net speed on panel.\n\nThis is a fork of https://extensions.gnome.org/extension/4478/net-speed/.", "link": "https://extensions.gnome.org/extension/4506/simple-system-monitor/", "shell_version_map": {"40": {"version": "3", "sha256": "0sx6ilmxkylaxacrqk2sbmy3pm26ic7v6vnanvg394dlbipz3pj5", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgY3VycmVudCBDUFUgdXNhZ2UsIG1lbW9yeSB1c2FnZSBhbmQgbmV0IHNwZWVkIG9uIHBhbmVsLlxuXG5UaGlzIGlzIGEgZm9yayBvZiBodHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi80NDc4L25ldC1zcGVlZC8uIiwKICAibmFtZSI6ICJTaW1wbGUgU3lzdGVtIE1vbml0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGh1Yi5jb20vTEdpa2kvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLXNpbXBsZS1zeXN0ZW0tbW9uaXRvciIsCiAgInV1aWQiOiAic3NtLWdub21lQGxnaWtpLm5ldCIsCiAgInZlcnNpb24iOiAzCn0="}}}
+, {"uuid": "ssm-gnome@lgiki.net", "name": "Simple System Monitor", "pname": "simple-system-monitor", "description": "Show current CPU usage, memory usage and net speed on panel.\n\nThis is a fork of https://extensions.gnome.org/extension/4478/net-speed/.", "link": "https://extensions.gnome.org/extension/4506/simple-system-monitor/", "shell_version_map": {"40": {"version": "5", "sha256": "1gzj7zryq716nq15im9wfiaxji3b6gaq0yvbc6cqp2fawj7ajj13", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3cgY3VycmVudCBDUFUgdXNhZ2UsIG1lbW9yeSB1c2FnZSBhbmQgbmV0IHNwZWVkIG9uIHBhbmVsLlxuXG5UaGlzIGlzIGEgZm9yayBvZiBodHRwczovL2V4dGVuc2lvbnMuZ25vbWUub3JnL2V4dGVuc2lvbi80NDc4L25ldC1zcGVlZC8uIiwKICAibmFtZSI6ICJTaW1wbGUgU3lzdGVtIE1vbml0b3IiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIiwKICAgICI0MSIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0xHaWtpL2dub21lLXNoZWxsLWV4dGVuc2lvbi1zaW1wbGUtc3lzdGVtLW1vbml0b3IiLAogICJ1dWlkIjogInNzbS1nbm9tZUBsZ2lraS5uZXQiLAogICJ2ZXJzaW9uIjogNQp9"}}}
, {"uuid": "unredirect@aunetx", "name": "Disable unredirect fullscreen windows", "pname": "disable-unredirect-fullscreen-windows", "description": "Disables unredirect fullscreen windows in gnome-shell to prevent artifacts when in fullscreen.\n\nThis version makes sure the unredirect option is not re-enabled automatically by the shell.", "link": "https://extensions.gnome.org/extension/4509/disable-unredirect-fullscreen-windows/", "shell_version_map": {"40": {"version": "2", "sha256": "1d1frg29hhmlc1fdadz7ap9v3zrd2mw46ixs2rd9pm8z969fbw5p", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkRpc2FibGVzIHVucmVkaXJlY3QgZnVsbHNjcmVlbiB3aW5kb3dzIGluIGdub21lLXNoZWxsIHRvIHByZXZlbnQgYXJ0aWZhY3RzIHdoZW4gaW4gZnVsbHNjcmVlbi5cblxuVGhpcyB2ZXJzaW9uIG1ha2VzIHN1cmUgdGhlIHVucmVkaXJlY3Qgb3B0aW9uIGlzIG5vdCByZS1lbmFibGVkIGF1dG9tYXRpY2FsbHkgYnkgdGhlIHNoZWxsLiIsCiAgIm5hbWUiOiAiRGlzYWJsZSB1bnJlZGlyZWN0IGZ1bGxzY3JlZW4gd2luZG93cyIsCiAgIm9yaWdpbmFsLWF1dGhvcnMiOiAiS2F6aW1pZXJhcyBWYWluYSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9hdW5ldHgvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWRpc2FibGUtdW5yZWRpcmVjdCIsCiAgInV1aWQiOiAidW5yZWRpcmVjdEBhdW5ldHgiLAogICJ2ZXJzaW9uIjogMgp9"}}}
, {"uuid": "nepali-date@biplab", "name": "Nepali Date", "pname": "nepali-calendar", "description": "Shows nepali date on the panel.", "link": "https://extensions.gnome.org/extension/4518/nepali-calendar/", "shell_version_map": {"40": {"version": "8", "sha256": "0hkgibrmwz7rk9y53x7klb1cx0v6vpygrx9ndfh173b3sk7dy1a0", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNob3dzIG5lcGFsaSBkYXRlIG9uIHRoZSBwYW5lbC4iLAogICJuYW1lIjogIk5lcGFsaSBEYXRlIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL0JpcGxhYi1EdXR0YS9OZXBhbGlfRGF0ZSIsCiAgInV1aWQiOiAibmVwYWxpLWRhdGVAYmlwbGFiIiwKICAidmVyc2lvbiI6IDgKfQ=="}}}
, {"uuid": "clock-left@mapuut", "name": "Clock Left", "pname": "clock-left", "description": "Move clock to left", "link": "https://extensions.gnome.org/extension/4526/clock-left/", "shell_version_map": {"38": {"version": "2", "sha256": "027wlahy8pwic90cyx677456miaj1kpmfw85r0y0iwr66i3k00qf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmUgY2xvY2sgdG8gbGVmdCIsCiAgIm5hbWUiOiAiQ2xvY2sgTGVmdCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNsb2NrLWxlZnRAbWFwdXV0IiwKICAidmVyc2lvbiI6IDIKfQ=="}, "40": {"version": "2", "sha256": "027wlahy8pwic90cyx677456miaj1kpmfw85r0y0iwr66i3k00qf", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIk1vdmUgY2xvY2sgdG8gbGVmdCIsCiAgIm5hbWUiOiAiQ2xvY2sgTGVmdCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4yNiIsCiAgICAiMy4yOCIsCiAgICAiMy4zMCIsCiAgICAiMy4zNCIsCiAgICAiMy4zMiIsCiAgICAiMy4zNiIsCiAgICAiMy4zOCIsCiAgICAiNDAiLAogICAgIjQxIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogImNsb2NrLWxlZnRAbWFwdXV0IiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
, {"uuid": "cpudots@kdevmen.gmail.com", "name": "CPUdots", "pname": "cpudots", "description": "A basic cpu graph inspired from xfce4 cpu freq monitor plugin. it's incomplete right now... I'll update as soon as I get some time off my job.", "link": "https://extensions.gnome.org/extension/4530/cpudots/", "shell_version_map": {"40": {"version": "1", "sha256": "095dp7i7n6mk3y8fkkh6fiq1zh2lhs0z6cjfygwmr5vv9z23p7dg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkEgYmFzaWMgY3B1IGdyYXBoIGluc3BpcmVkIGZyb20geGZjZTQgY3B1IGZyZXEgbW9uaXRvciBwbHVnaW4uIGl0J3MgaW5jb21wbGV0ZSByaWdodCBub3cuLi4gSSdsbCB1cGRhdGUgYXMgc29vbiBhcyBJIGdldCBzb21lIHRpbWUgb2ZmIG15IGpvYi4iLAogICJuYW1lIjogIkNQVWRvdHMiLAogICJzZXR0aW5ncy1zY2hlbWEiOiAiY29tLmdpdGh1Yi5hbWV6aW4uZGR0ZXJtIiwKICAic2hlbGwtdmVyc2lvbiI6IFsKICAgICI0MCIKICBdLAogICJ1cmwiOiAiIiwKICAidXVpZCI6ICJjcHVkb3RzQGtkZXZtZW4uZ21haWwuY29tIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
+, {"uuid": "taildropsendxuwuming2014@outlook.com", "name": "TailDrop Send", "pname": "taildrop-send", "description": "Send files via tailscale", "link": "https://extensions.gnome.org/extension/4533/taildrop-send/", "shell_version_map": {"40": {"version": "3", "sha256": "1gg2ijadazlldysbyag1yrbgg9k9igfwylnjmiw7khjcbhjy1fjg", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlNlbmQgZmlsZXMgdmlhIHRhaWxzY2FsZSIsCiAgImdldHRleHQtZG9tYWluIjogInRhaWxkcm9wLXNlbmQtZXh0ZW5zaW9uIiwKICAibmFtZSI6ICJUYWlsRHJvcCBTZW5kIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRhaWxkcm9wc2VuZCIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiNDAiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9mcjIzMy9nbm9tZS1zaGVsbC1leHRlbnNpb24tdGFpbGRyb3BzZW5kIiwKICAidXVpZCI6ICJ0YWlsZHJvcHNlbmR4dXd1bWluZzIwMTRAb3V0bG9vay5jb20iLAogICJ2ZXJzaW9uIjogMwp9"}}}
+, {"uuid": "toggle-mute-on-middle-click-updated@konradmb", "name": "Toggle Mute on Middle Click", "pname": "toggle-mute-on-middle-click", "description": "Toggle mute by middle-clicking the volume indicator. Updated for Gnome 40 from: https://extensions.gnome.org/extension/1473/toggle-mute-on-middle-click/", "link": "https://extensions.gnome.org/extension/4538/toggle-mute-on-middle-click/", "shell_version_map": {"40": {"version": "1", "sha256": "0ag52arddv2dypfr1bs28c6dnfq0lrccibbl6cdzjx4d26j4cv4z", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRvZ2dsZSBtdXRlIGJ5IG1pZGRsZS1jbGlja2luZyB0aGUgdm9sdW1lIGluZGljYXRvci4gVXBkYXRlZCBmb3IgR25vbWUgNDAgZnJvbTogaHR0cHM6Ly9leHRlbnNpb25zLmdub21lLm9yZy9leHRlbnNpb24vMTQ3My90b2dnbGUtbXV0ZS1vbi1taWRkbGUtY2xpY2svIiwKICAibmFtZSI6ICJUb2dnbGUgTXV0ZSBvbiBNaWRkbGUgQ2xpY2siLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMjgiLAogICAgIjQwIgogIF0sCiAgInVybCI6ICIiLAogICJ1dWlkIjogInRvZ2dsZS1tdXRlLW9uLW1pZGRsZS1jbGljay11cGRhdGVkQGtvbnJhZG1iIiwKICAidmVyc2lvbiI6IDEKfQ=="}}}
+, {"uuid": "cloudflare@adam.gadmz", "name": "Cloudflare", "pname": "cloudflare", "description": "Warp Connect", "link": "https://extensions.gnome.org/extension/4542/cloudflare/", "shell_version_map": {"38": {"version": "6", "sha256": "1kng66bnbq9fa307zmijarn6s4672h13s8hl55k2yf406rl5bijz", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImF1dGhvciI6ICJBZGFtIiwKICAiZGVzY3JpcHRpb24iOiAiV2FycCBDb25uZWN0IiwKICAiZ2V0dGV4dC1kb21haW4iOiAiZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWNsb3VkZmxhcmUiLAogICJuYW1lIjogIkNsb3VkZmxhcmUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjMuMzgiCiAgXSwKICAidXJsIjogImh0dHBzOi8vZ2l0aHViLmNvbS9kdW9uZ2dpYWtoYW5oYi9DbG91ZGZsYXJlX0dOT01FX0V4dGVuc2lvbiIsCiAgInV1aWQiOiAiY2xvdWRmbGFyZUBhZGFtLmdhZG16IiwKICAidmVyc2lvbiI6IDYKfQ=="}}}
+, {"uuid": "dell-command-configure-menu@vsimkus.github.io", "name": "Dell Command Configure menu", "pname": "dell-command-configure-menu", "description": "Adds submenu in gnome shell to access Dell Command Configure options.\n\nCurrently, only battery charge settings are implemented.\n\nThe Dell Command Configure tool must be installed separately from Dell https://www.dell.com/support/kbdoc/en-uk/000178000/dell-command-configure#Downloads.", "link": "https://extensions.gnome.org/extension/4545/dell-command-configure-menu/", "shell_version_map": {"38": {"version": "2", "sha256": "1wbxmwpmzlksrf04ccsn3qqwprxl9sa0d4vc4jwidnn9vq7gkack", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIkFkZHMgc3VibWVudSBpbiBnbm9tZSBzaGVsbCB0byBhY2Nlc3MgRGVsbCBDb21tYW5kIENvbmZpZ3VyZSBvcHRpb25zLlxuXG5DdXJyZW50bHksIG9ubHkgYmF0dGVyeSBjaGFyZ2Ugc2V0dGluZ3MgYXJlIGltcGxlbWVudGVkLlxuXG5UaGUgRGVsbCBDb21tYW5kIENvbmZpZ3VyZSB0b29sIG11c3QgYmUgaW5zdGFsbGVkIHNlcGFyYXRlbHkgZnJvbSBEZWxsIGh0dHBzOi8vd3d3LmRlbGwuY29tL3N1cHBvcnQva2Jkb2MvZW4tdWsvMDAwMTc4MDAwL2RlbGwtY29tbWFuZC1jb25maWd1cmUjRG93bmxvYWRzLiIsCiAgImdldHRleHQtZG9tYWluIjogImRlbGwtY29tbWFuZC1jb25maWd1cmUtbWVudSIsCiAgIm5hbWUiOiAiRGVsbCBDb21tYW5kIENvbmZpZ3VyZSBtZW51IiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLmRlbGxjb21tYW5kY29uZmlndXJlbWVudSIsCiAgInNoZWxsLXZlcnNpb24iOiBbCiAgICAiMy4zOCIKICBdLAogICJ1cmwiOiAiaHR0cHM6Ly9naXRodWIuY29tL3ZzaW1rdXMvZ25vbWUtc2hlbGwtZXh0ZW5zaW9uLWRlbGwtY29tbWFuZC1jb25maWd1cmUtbWVudSIsCiAgInV1aWQiOiAiZGVsbC1jb21tYW5kLWNvbmZpZ3VyZS1tZW51QHZzaW1rdXMuZ2l0aHViLmlvIiwKICAidmVyc2lvbiI6IDIKfQ=="}}}
+, {"uuid": "tactile@lundal.io", "name": "Tactile", "pname": "tactile", "description": "Tile windows on a custom grid using your keyboard. Type Super-T to show the grid, then type two tiles (or the same tile twice) to move the active window.\n\nThe grid can be up to 4x3 (corresponding to one hand on the keyboard) and each row/column can be weighted to take up more or less space.", "link": "https://extensions.gnome.org/extension/4548/tactile/", "shell_version_map": {"40": {"version": "3", "sha256": "0dvj64dap77n973ksshfmdfw7rmijhwdwp0g2rga4f6did3xaqq9", "metadata": "ewogICJfZ2VuZXJhdGVkIjogIkdlbmVyYXRlZCBieSBTd2VldFRvb3RoLCBkbyBub3QgZWRpdCIsCiAgImRlc2NyaXB0aW9uIjogIlRpbGUgd2luZG93cyBvbiBhIGN1c3RvbSBncmlkIHVzaW5nIHlvdXIga2V5Ym9hcmQuIFR5cGUgU3VwZXItVCB0byBzaG93IHRoZSBncmlkLCB0aGVuIHR5cGUgdHdvIHRpbGVzIChvciB0aGUgc2FtZSB0aWxlIHR3aWNlKSB0byBtb3ZlIHRoZSBhY3RpdmUgd2luZG93LlxuXG5UaGUgZ3JpZCBjYW4gYmUgdXAgdG8gNHgzIChjb3JyZXNwb25kaW5nIHRvIG9uZSBoYW5kIG9uIHRoZSBrZXlib2FyZCkgYW5kIGVhY2ggcm93L2NvbHVtbiBjYW4gYmUgd2VpZ2h0ZWQgdG8gdGFrZSB1cCBtb3JlIG9yIGxlc3Mgc3BhY2UuIiwKICAibmFtZSI6ICJUYWN0aWxlIiwKICAic2V0dGluZ3Mtc2NoZW1hIjogIm9yZy5nbm9tZS5zaGVsbC5leHRlbnNpb25zLnRhY3RpbGUiLAogICJzaGVsbC12ZXJzaW9uIjogWwogICAgIjQwIgogIF0sCiAgInVybCI6ICJodHRwczovL2dpdGxhYi5jb20vbHVuZGFsL3RhY3RpbGUiLAogICJ1dWlkIjogInRhY3RpbGVAbHVuZGFsLmlvIiwKICAidmVyc2lvbiI6IDMKfQ=="}}}
]
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/manuallyPackaged.nix b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
index 19d9861565..1c648e4a04 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/extensions/manuallyPackaged.nix
@@ -3,7 +3,6 @@
"arcmenu@arcmenu.com" = callPackage ./arcmenu { };
"caffeine@patapon.info" = callPackage ./caffeine { };
"clock-override@gnomeshell.kryogenix.org" = callPackage ./clock-override { };
- "dash-to-dock@micxgx.gmail.com" = callPackage ./dash-to-dock { };
"dash-to-panel@jderose9.github.com" = callPackage ./dash-to-panel { };
"drop-down-terminal@gs-extensions.zzrough.org" = callPackage ./drop-down-terminal { };
"EasyScreenCast@iacopodeenosee.gmail.com" = callPackage ./EasyScreenCast { };
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/default.nix
index 2881cc7e50..245a522934 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/default.nix
@@ -1,9 +1,13 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
-, autoconf-archive
-, appstream-glib
+, substituteAll
+, fetchpatch
+, meson
+, ninja
, pkg-config
, wrapGAppsHook
+, desktop-file-utils
, libcanberra
, gst_all_1
, vala
@@ -11,43 +15,54 @@
, gom
, sqlite
, libxml2
-, autoreconfHook
, glib
, gobject-introspection
, libpeas
-, gnome-shell
, gsettings-desktop-schemas
-, adwaita-icon-theme
, gettext
}:
stdenv.mkDerivation rec {
pname = "gnome-shell-pomodoro";
- version = "0.19.1";
+ version = "0.20.0";
src = fetchFromGitHub {
- owner = "codito";
+ owner = "gnome-pomodoro";
repo = "gnome-pomodoro";
rev = version;
- sha256 = "sha256-im66QUzz6PcX0vkf4cN57ttRLB4KKPFky1pwUa4V7kQ=";
+ sha256 = "sha256-USzLHoBM0QbBPtbTzJJY02cOSDtmlxPGYhMj7M1FJic=";
};
+ patches = [
+ # Our glib setup hooks moves GSettings schemas to a subdirectory to prevent conflicts.
+ # We need to patch the build script so that the extension can find them.
+ (substituteAll {
+ src = ./fix-schema-path.patch;
+ inherit pname version;
+ })
+
+ # Fix error reporting code.
+ # https://github.com/gnome-pomodoro/gnome-pomodoro/pull/591
+ (fetchpatch {
+ url = "https://github.com/gnome-pomodoro/gnome-pomodoro/commit/133bd62f15653856d9705b66188b42c20d81719e.patch";
+ sha256 = "A20K+57A6/lYH2Buri2+wrCQgz6EGBdYg2xQbHPSkYc=";
+ })
+ ];
+
nativeBuildInputs = [
- appstream-glib
- autoconf-archive
- autoreconfHook
+ meson
+ ninja
gettext
gobject-introspection
libxml2
pkg-config
vala
wrapGAppsHook
+ desktop-file-utils
];
buildInputs = [
- adwaita-icon-theme
glib
- gnome-shell
gom
gsettings-desktop-schemas
gst_all_1.gst-plugins-base
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/fix-schema-path.patch b/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/fix-schema-path.patch
new file mode 100644
index 0000000000..0750d01f86
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/desktops/gnome/misc/pomodoro/fix-schema-path.patch
@@ -0,0 +1,40 @@
+diff --git a/data/meson.build b/data/meson.build
+index 5e4ce69..982b3c9 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -31,7 +31,7 @@ i18n.merge_file(
+
+ install_data(
+ 'org.gnome.pomodoro.gschema.xml',
+- install_dir: get_option('datadir') / 'glib-2.0' / 'schemas',
++ install_dir: gschema_dir,
+ )
+
+ subdir('icons')
+diff --git a/meson-post-install.sh b/meson-post-install.sh
+index bf4013a..c87fba4 100644
+--- a/meson-post-install.sh
++++ b/meson-post-install.sh
+@@ -7,7 +7,7 @@ datadir="${prefix}/$1"
+ # want/need us to do the below
+ if [ -z "${DESTDIR}" ]; then
+ echo "Compiling GSchema..."
+- glib-compile-schemas "${datadir}/glib-2.0/schemas"
++ glib-compile-schemas "${datadir}/gsettings-schemas/@pname@-@version@/glib-2.0/schemas"
+
+ echo "Updating icon cache..."
+ gtk-update-icon-cache -f -t "${datadir}/icons/hicolor"
+diff --git a/meson.build b/meson.build
+index 09857a1..a07d27c 100644
+--- a/meson.build
++++ b/meson.build
+@@ -40,7 +40,8 @@ add_project_arguments(
+ )
+
+ # We are going to use these variables later on for the plugins
+-gschema_dir = get_option('prefix') / get_option('datadir') / 'glib-2.0' / 'schemas'
++nix_package_name = '@pname@' + '-' + '@version@'
++gschema_dir = get_option('prefix') / get_option('datadir') / 'gsettings-schemas' / nix_package_name / 'glib-2.0' / 'schemas'
+ plugin_libdir = get_option('prefix') / get_option('libdir') / meson.project_name() / 'plugins'
+ extension_dir = get_option('prefix') / get_option('datadir') / 'gnome-shell' / 'extensions' / 'pomodoro@arun.codito.in'
+
diff --git a/third_party/nixpkgs/pkgs/desktops/pantheon/default.nix b/third_party/nixpkgs/pkgs/desktops/pantheon/default.nix
index b3b5409f6a..668638c1bf 100644
--- a/third_party/nixpkgs/pkgs/desktops/pantheon/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/pantheon/default.nix
@@ -71,6 +71,8 @@ lib.makeScope pkgs.newScope (self: with self; {
epiphany = pkgs.epiphany.override { withPantheon = true; };
+ evince = pkgs.evince.override { withPantheon = true; };
+
sideload = callPackage ./apps/sideload { };
#### DESKTOP
diff --git a/third_party/nixpkgs/pkgs/development/compilers/dotnet/build-dotnet.nix b/third_party/nixpkgs/pkgs/development/compilers/dotnet/build-dotnet.nix
index 56880826a1..38c2fae603 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/dotnet/build-dotnet.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/dotnet/build-dotnet.nix
@@ -3,7 +3,7 @@
, sha512
}:
-assert builtins.elem type [ "aspnetcore" "netcore" "sdk"];
+assert builtins.elem type [ "aspnetcore" "runtime" "sdk"];
{ lib, stdenv
, fetchurl
, libunwind
@@ -17,7 +17,7 @@ assert builtins.elem type [ "aspnetcore" "netcore" "sdk"];
let
pname = if type == "aspnetcore" then
"aspnetcore-runtime"
- else if type == "netcore" then
+ else if type == "runtime" then
"dotnet-runtime"
else
"dotnet-sdk";
@@ -30,12 +30,12 @@ let
"Unsupported system: ${stdenv.hostPlatform.system}");
urls = {
aspnetcore = "https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${version}/${pname}-${version}-${platform}-${suffix}.tar.gz";
- netcore = "https://dotnetcli.azureedge.net/dotnet/Runtime/${version}/${pname}-${version}-${platform}-${suffix}.tar.gz";
+ runtime = "https://dotnetcli.azureedge.net/dotnet/Runtime/${version}/${pname}-${version}-${platform}-${suffix}.tar.gz";
sdk = "https://dotnetcli.azureedge.net/dotnet/Sdk/${version}/${pname}-${version}-${platform}-${suffix}.tar.gz";
};
descriptions = {
- aspnetcore = "ASP .NET Core runtime ${version}";
- netcore = ".NET Core runtime ${version}";
+ aspnetcore = "ASP.NET Core Runtime ${version}";
+ runtime = ".NET Runtime ${version}";
sdk = ".NET SDK ${version}";
};
in stdenv.mkDerivation rec {
diff --git a/third_party/nixpkgs/pkgs/development/compilers/dotnet/combine-packages.nix b/third_party/nixpkgs/pkgs/development/compilers/dotnet/combine-packages.nix
index a38d44e37e..c99af4e62a 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/dotnet/combine-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/dotnet/combine-packages.nix
@@ -5,7 +5,7 @@ in
assert lib.assertMsg ((builtins.length packages) != 0)
''You must include at least one package, e.g
`with dotnetCorePackages; combinePackages [
- sdk_3_0 aspnetcore_2_1
+ sdk_3_1 aspnetcore_5_0
];`'' ;
buildEnv {
name = "dotnet-core-combined";
diff --git a/third_party/nixpkgs/pkgs/development/compilers/dotnet/default.nix b/third_party/nixpkgs/pkgs/development/compilers/dotnet/default.nix
index 89d7f4c7d9..5b4740c22e 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/dotnet/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/dotnet/default.nix
@@ -1,6 +1,6 @@
/*
How to combine packages for use in development:
-dotnetCombined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_2_2 sdk_3_0 sdk aspnetcore_2_1 ];
+dotnetCombined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_5_0 aspnetcore_5_0 ];
Hashes below are retrived from:
https://dotnet.microsoft.com/download/dotnet
@@ -9,75 +9,19 @@ https://dotnet.microsoft.com/download/dotnet
let
buildDotnet = attrs: callPackage (import ./build-dotnet.nix attrs) {};
buildAspNetCore = attrs: buildDotnet (attrs // { type = "aspnetcore"; });
- buildNetCore = attrs: buildDotnet (attrs // { type = "netcore"; });
- buildNetCoreSdk = attrs: buildDotnet (attrs // { type = "sdk"; });
+ buildNetRuntime = attrs: buildDotnet (attrs // { type = "runtime"; });
+ buildNetSdk = attrs: buildDotnet (attrs // { type = "sdk"; });
in
rec {
combinePackages = attrs: callPackage (import ./combine-packages.nix attrs) {};
- # v2.1.22 (LTS)
+ # EOL
- aspnetcore_2_1 = buildAspNetCore {
- version = "2.1.22";
- sha512 = {
- x86_64-linux = "27v3a69dgnnb4lz5p2dn2qwadb8vpnqwdy6mnnqfp1dl4kgg3izvriz2268if272sy6flcz5lckjlmn0i0i1jci5zypc7x9kykj991l";
- aarch64-linux = null; # no aarch64 version of this package is available
- x86_64-darwin = "0xh06jmzx2cfq51hv9l4h72hbfyh3r0wlla217821gi0hlw6xcc0gb3b4xmqcs240fllqnwrnrwz0axi3xi21wacgn3xbcmzpbi6jml";
- };
- };
+ sdk_2_1 = throw "Dotnet SDK 2.1 is EOL, please use 3.1 (LTS) or 5.0 (Current)";
+ sdk_2_2 = throw "Dotnet SDK 2.2 is EOL, please use 3.1 (LTS) or 5.0 (Current)";
+ sdk_3_0 = throw "Dotnet SDK 3.0 is EOL, please use 3.1 (LTS) or 5.0 (Current)";
- netcore_2_1 = buildNetCore {
- version = "2.1.22";
- sha512 = {
- x86_64-linux = "0c2b31l59izcxbhz5wzjpjkdl550s5p3aid4vyghq468vyf67pm0npjny50c172b63vw0ikfbps2b2hj16hpifp116gj4b5llmqjhyc";
- aarch64-linux = "3llai3d2xpgbr7a4ndg9wqfpnb5zb8k07dicc57a6cmniiqyqigyxinhpx2k0l45mbnihjsr5k1rih3r6bwlj241v67iwd2i0dpqd8a";
- x86_64-darwin = "106mx6a4rwcvq41v54c1yx89156s43n889im9g0q2pvm7054q8b6xm6qrnymzmj5i2i6awyk0z02j5pfiyh35sw9afxb3695ymsb3v8";
- };
- };
-
- sdk_2_1 = buildNetCoreSdk {
- version = "2.1.810";
- sha512 = {
- x86_64-linux = "388nrba5f7z9syq23xh3k45rzy3iys58s32ya7a0q9mwdf1y3haw7yvbq79cn08741hhqdi73mip8jf50f4s64mbr62ay1p76zsrkj5";
- aarch64-linux = "2vs8bhk63cjrqkm5n164ahc6bdz58aq9vmhaiyy27krp7wlkz4gpiva9153h7mywhk709l1qc7cddj99qsh2ygv6axjfigbhgrzslqi";
- x86_64-darwin = "3qxlgbd0np0w8wmp98mhp4cqgva4zglqf7k9kzqbwxfwr5s795kap7rs5w0cy7h0bsvj0ygx3d5nzyn9hp3fsswx4jl4mkvillnvjzy";
- };
- };
-
- # v2.2
-
- sdk_2_2 = throw "Dotnet SDK 2.2 is EOL, please use 3.1";
-
- # v3.0.2 (Maintenance)
-
- aspnetcore_3_0 = buildAspNetCore {
- version = "3.0.3";
- sha512 = {
- x86_64-linux = "342v6kxxbxky09d1c392vvr9rm30lf75wccka1bk2h4advlcga5nlgv93g7vrq48bsyxfi5gc36r3b0dlwl1g409g5mlk1042n6d0yq";
- aarch64-linux = "2xkg4q88q5jw6jdz6cxj8vsjr475nd0fcvifkv1shdm2j9dsjy233hwpxbr140m5n5ggyh6z99238z9j4kp2az977y8y8irz8m8ppvf";
- x86_64-darwin = "2p04j6p4j93pan71ih13hv57zxalcirh0n3vfjq0cfb80pbhf1f5cgxl24pw6kifh6hhh38rj62c4mr69lxzlqc8sfcfaws8dyz2avm";
- };
- };
-
- netcore_3_0 = buildNetCore {
- version = "3.0.3";
- sha512 = {
- x86_64-linux = "32ykpcw2xx708r2lxcwcbxnmy4sk159rlfjfvkw990qh7n79pm3lm2qwa3zhqcslznmpg18kwxz8qb5fgsa0h49g843xx4kyai0n7rx";
- aarch64-linux = "1lp8din7d5jv5fkyq1a7m01i1xg9jwpiljvam1kcyzsnwzvi0cb4ji336cfx4lqrn95gvc75gkzi6q8b4fz0h21gvk6z6kmlcr63nyg";
- x86_64-darwin = "0s20k7xawwd09xhy4xdcxp1rw6jd418ibrvhb509dnj480g48xryda2203g4mpswd24v2kx0n9qzxgbrbq9lvasfglkxi84bbqayp83";
- };
- };
-
- sdk_3_0 = buildNetCoreSdk {
- version = "3.0.103";
- sha512 = {
- x86_64-linux = "2diiplgxs92fkb6ym68b02d79z4qn63x5qlky5lvr757c1zkh0vfpk3khawdg94kdn4qkn6dmyqr0msxqgmiqyhp63cadzqq4vx7b12";
- aarch64-linux = "32843q2lj7dgciq62g9v1q31vwfjyv5vaxrz712d942mcg5lyzjygwri106bv4naq3a22131ldzwnsifbdn2vq1iz60raqdb7ss9vnf";
- x86_64-darwin = "3apswk2bhalgi0hm7h2j9p152jvp39h4xilxxzix5j1n36b442l1pwk7lj7019lxafjqkz5y850xkfcp14ks5wcvs33xs2c0aqwxvcn";
- };
- };
-
- # v3.1.1 (LTS)
+ # v3.1 (LTS)
aspnetcore_3_1 = buildAspNetCore {
version = "3.1.19";
@@ -88,7 +32,7 @@ rec {
};
};
- netcore_3_1 = buildNetCore {
+ runtime_3_1 = buildNetRuntime {
version = "3.1.19";
sha512 = {
x86_64-linux = "2cf268cc13bb4739203a18a9160aac58f2088e8ec275b1f7ef2fe2b74bc16edfdfbeb886a74fc9421edbf2899fa9e3ee7ea2734a83b1800b4a9848fb7e10bbbe";
@@ -97,7 +41,7 @@ rec {
};
};
- sdk_3_1 = buildNetCoreSdk {
+ sdk_3_1 = buildNetSdk {
version = "3.1.413";
sha512 = {
x86_64-linux = "2a0824f11aba0b79d3f9a36af0395649bc9b4137e61b240a48dccb671df0a5b8c2086054f8e495430b7ed6c344bb3f27ac3dfda5967d863718a6dadeca951a83";
@@ -106,7 +50,7 @@ rec {
};
};
- # v5.0.0
+ # v5.0 (Current)
aspnetcore_5_0 = buildAspNetCore {
version = "5.0.10";
@@ -117,7 +61,7 @@ rec {
};
};
- net_5_0 = buildNetCore {
+ runtime_5_0 = buildNetRuntime {
version = "5.0.10";
sha512 = {
x86_64-linux = "421b00d5751381e6bf829dcba8fa0d781f0efd065be492739d60a4bef2b7b362dbec77fa3289e2ee45cab40616f95318fc214699ffe2f33aa15e77c2d163841c";
@@ -126,7 +70,7 @@ rec {
};
};
- sdk_5_0 = buildNetCoreSdk {
+ sdk_5_0 = buildNetSdk {
version = "5.0.401";
sha512 = {
x86_64-linux = "a444d44007709ceb68d8f72dec0531e17f85f800efc0007ace4fa66ba27f095066930e6c6defcd2f85cdedea2fec25e163f5da461c1c2b8563e5cd7cb47091e0";
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/001_mx.py.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/001_mx.py.patch
deleted file mode 100644
index 0477c6c556..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/001_mx.py.patch
+++ /dev/null
@@ -1,291 +0,0 @@
-diff --git a/mx.py b/mx.py
-index a0b9315..b7d67a0 100755
---- a/mx.py
-+++ b/mx.py
-@@ -238,21 +238,7 @@ def _check_file_with_sha1(path, sha1, sha1path, mustExist=True, newFile=False, l
- f.write(value or sha1OfFile(path))
-
- if exists(path):
-- if sha1Check and sha1:
-- if not _sha1CachedValid() or (newFile and sha1 != _sha1Cached()):
-- logv('Create/update SHA1 cache file ' + sha1path)
-- _writeSha1Cached()
--
-- if sha1 != _sha1Cached():
-- computedSha1 = sha1OfFile(path)
-- if sha1 == computedSha1:
-- warn('Fixing corrupt SHA1 cache file ' + sha1path)
-- _writeSha1Cached(computedSha1)
-- return True
-- if logErrors:
-- size = os.path.getsize(path)
-- log_error('SHA1 of {} [size: {}] ({}) does not match expected value ({})'.format(TimeStampFile(path), size, computedSha1, sha1))
-- return False
-+ return True
- elif mustExist:
- if logErrors:
- log_error("'{}' does not exist".format(path))
-@@ -1057,46 +1043,8 @@ class SuiteImport:
- version = import_dict.get("version")
- suite_dir = None
- version_from = import_dict.get("versionFrom")
-- if version_from and version:
-- abort("In import for '{}': 'version' and 'versionFrom' can not be both set".format(name), context=context)
-- if version is None and version_from is None:
-- if not (in_subdir and (importer.vc_dir != importer.dir or isinstance(importer, BinarySuite))):
-- abort("In import for '{}': No version given and not a 'subdir' suite of the same repository".format(name), context=context)
-- if importer.isSourceSuite():
-- suite_dir = join(importer.vc_dir, name)
-- version = importer.version()
-- if urls is None:
-- if not in_subdir:
-- if import_dict.get("subdir") is None and importer.vc_dir != importer.dir:
-- warn("In import for '{}': No urls given but 'subdir' is not set, assuming 'subdir=True'".format(name), context)
-- in_subdir = True
-- else:
-- abort("In import for '{}': No urls given and not a 'subdir' suite".format(name), context=context)
-- return SuiteImport(name, version, None, None, dynamicImport=dynamicImport, in_subdir=in_subdir, version_from=version_from, suite_dir=suite_dir)
-- # urls a list of alternatives defined as dicts
-- if not isinstance(urls, list):
-- abort('suite import urls must be a list', context=context)
-- urlinfos = []
-- mainKind = None
-- for urlinfo in urls:
-- if isinstance(urlinfo, dict) and urlinfo.get('url') and urlinfo.get('kind'):
-- kind = urlinfo.get('kind')
-- if not VC.is_valid_kind(kind):
-- abort('suite import kind ' + kind + ' illegal', context=context)
-- else:
-- abort('suite import url must be a dict with {"url", kind", attributes', context=context)
-- vc = vc_system(kind)
-- if kind != 'binary':
-- assert not mainKind or mainKind == kind, "Only expecting one non-binary kind"
-- mainKind = kind
-- url = mx_urlrewrites.rewriteurl(urlinfo.get('url'))
-- urlinfos.append(SuiteImportURLInfo(url, kind, vc))
-- vc_kind = None
-- if mainKind:
-- vc_kind = mainKind
-- elif urlinfos:
-- vc_kind = 'binary'
-- return SuiteImport(name, version, urlinfos, vc_kind, dynamicImport=dynamicImport, in_subdir=in_subdir, version_from=version_from, suite_dir=suite_dir)
-+ suite_dir = join(get_env('MX_GIT_CACHE_DIR'), name)
-+ return SuiteImport(name, version, [], None, True, in_subdir=in_subdir, version_from=version_from, suite_dir=suite_dir)
-
- @staticmethod
- def get_source_urls(source, kind=None):
-@@ -1467,8 +1415,6 @@ class Suite(object):
- :type dists: list[Distribution]
- """
- def __init__(self, mxDir, primary, internal, importing_suite, load, vc, vc_dir, dynamicallyImported=False):
-- if primary is True and vc_dir is None:
-- abort("The primary suite must be in a vcs repository")
- self.imported_by = [] if primary else [importing_suite]
- self.mxDir = mxDir
- self.dir = dirname(mxDir)
-@@ -1496,7 +1442,7 @@ class Suite(object):
- self._outputRoot = None
- self._preloaded_suite_dict = None
- self.vc = vc
-- self.vc_dir = vc_dir
-+ self.vc_dir = get_env('MX_GIT_CACHE_DIR')
- self._preload_suite_dict()
- self._init_imports()
- if load:
-@@ -2405,7 +2351,9 @@ class Repository(SuiteConstituent):
- class SourceSuite(Suite):
- """A source suite"""
- def __init__(self, mxDir, primary=False, load=True, internal=False, importing_suite=None, dynamicallyImported=False):
-- vc, vc_dir = VC.get_vc_root(dirname(mxDir), abortOnError=False)
-+ vc, vc_dir_test = VC.get_vc_root(dirname(mxDir), abortOnError=False)
-+ vc_dir = get_env('MX_GIT_CACHE_DIR')
-+ warn("LOOKING FOR: " + mxDir)
- Suite.__init__(self, mxDir, primary, internal, importing_suite, load, vc, vc_dir, dynamicallyImported=dynamicallyImported)
- logvv("SourceSuite.__init__({}), got vc={}, vc_dir={}".format(mxDir, self.vc, self.vc_dir))
- self.projects = []
-@@ -2454,17 +2402,7 @@ class SourceSuite(Suite):
- """
- Gets the release tag from VC or create a time based once if VC is unavailable
- """
-- if snapshotSuffix not in self._releaseVersion:
-- _version = self._get_early_suite_dict_property('version')
-- if _version and self.getMxCompatibility().addVersionSuffixToExplicitVersion():
-- if not self.is_release():
-- _version = _version + '-' + snapshotSuffix
-- if not _version:
-- _version = self.vc.release_version_from_tags(self.vc_dir, self.name, snapshotSuffix=snapshotSuffix)
-- if not _version:
-- _version = 'unknown-{0}-{1}'.format(platform.node(), time.strftime('%Y-%m-%d_%H-%M-%S_%Z'))
-- self._releaseVersion[snapshotSuffix] = _version
-- return self._releaseVersion[snapshotSuffix]
-+ return get_env('version')
-
- def scm_metadata(self, abortOnError=False):
- scm = self.scm
-@@ -2993,12 +2931,35 @@ def _find_suite_import(importing_suite, suite_import, fatalIfMissing=True, load=
- Attempts to locate an existing suite in the local context
- Returns the path to the mx.name dir if found else None
- """
-- if mode == 'binary':
-- # binary suites are always stored relative to the importing suite in mx-private directory
-- return importing_suite._find_binary_suite_dir(suite_import.name)
-+ warn("FAKE CLONE: " + str(suite_import))
-+ if (suite_import.name == "truffle"):
-+ return join(get_env('TMP'), "source", "truffle", "mx.truffle")
-+ if (suite_import.name == "graal-nodejs"):
-+ return join(get_env('MX_GIT_CACHE_DIR'), "graaljs", "graal-nodejs", "mx.graal-nodejs")
-+ if (suite_import.name == "truffleruby"):
-+ return join(get_env('MX_GIT_CACHE_DIR'), "truffleruby", "mx.truffleruby")
-+ if (suite_import.name == "graalpython"):
-+ return join(get_env('MX_GIT_CACHE_DIR'), "graalpython", "mx.graalpython")
-+ if (suite_import.name == "vm"):
-+ return join(get_env('TMP'), "source", "vm", "mx.vm")
-+ if (suite_import.name == "fastr"):
-+ return join(get_env('MX_GIT_CACHE_DIR'), "fastr", "mx.fastr")
-+ if (suite_import.name == "sdk"):
-+ return join(get_env('TMP'), "source", "sdk", "mx.sdk")
-+ if (suite_import.name == "graal-js"):
-+ return join(get_env('MX_GIT_CACHE_DIR'), "graaljs", "graal-js", "mx.graal-js")
-+ if (suite_import.name == "regex"):
-+ return join(get_env('TMP'), "source", "regex", "mx.regex")
-+ if (suite_import.name == "substratevm"):
-+ return join(get_env('TMP'), "source", "substratevm", "mx.substratevm")
-+ if (suite_import.name == "tools"):
-+ return join(get_env('TMP'), "source", "tools", "mx.tools")
-+ if (suite_import.name == "sulong"):
-+ return join(get_env('TMP'), "source", "sulong", "mx.sulong")
-+ if (suite_import.name == "compiler"):
-+ return join(get_env('TMP'), "source", "compiler", "mx.compiler")
- else:
-- # use the SuiteModel to locate a local source copy of the suite
-- return _suitemodel.find_suite_dir(suite_import)
-+ return join(get_env('MX_GIT_CACHE_DIR'), suite_import.name)
-
- def _get_import_dir(url, mode):
- """Return directory where the suite will be cloned to"""
-@@ -3816,7 +3777,7 @@ def getmtime(name):
- """
- Wrapper for builtin open function that handles long path names on Windows.
- """
-- return os.path.getmtime(_safe_path(name))
-+ return 315532800
-
-
- def stat(name):
-@@ -4062,57 +4023,8 @@ def _attempt_download(url, path, jarEntryName=None):
- return False
-
- def download(path, urls, verbose=False, abortOnError=True, verifyOnly=False):
-- """
-- Attempts to downloads content for each URL in a list, stopping after the first successful download.
-- If the content cannot be retrieved from any URL, the program is aborted, unless abortOnError=False.
-- The downloaded content is written to the file indicated by `path`.
-- """
-- if not verifyOnly:
-- ensure_dirname_exists(path)
-- assert not path.endswith(os.sep)
--
-- # https://docs.oracle.com/javase/7/docs/api/java/net/JarURLConnection.html
-- jarURLPattern = re.compile('jar:(.*)!/(.*)')
-- verify_errors = {}
-- for url in urls:
-- if not verifyOnly or verbose:
-- log('Downloading ' + url + ' to ' + path)
-- m = jarURLPattern.match(url)
-- jarEntryName = None
-- if m:
-- url = m.group(1)
-- jarEntryName = m.group(2)
--
-- if not _opts.trust_http and (url.lower().startswith('http://') or url.lower().startswith('ftp://')):
-- warn('Downloading from non-https URL {}. Use --trust-http mx option to suppress this warning.'.format(url))
--
-- if verifyOnly:
-- try:
-- conn = _urlopen(url, timeout=10)
-- conn.close()
-- except (IOError, socket.timeout) as e:
-- _suggest_tlsv1_error(e)
-- verify_errors[url] = e
-- else:
-- for i in range(4):
-- if i != 0:
-- time.sleep(1)
-- warn('Retry {} to download from {}'.format(i, url))
-- if _attempt_download(url, path, jarEntryName):
-- return True # Download was successful
--
-- if verifyOnly and len(verify_errors) < len(urls): # verify-mode at least one success -> success
-- return True
-- else: # Either verification error or no download was successful
-- msg = 'Could not download to ' + path + ' from any of the following URLs: ' + ', '.join(urls)
-- if verifyOnly: # verify-mode -> print error details
-- for url, e in verify_errors.items():
-- msg += '\n ' + url + ': ' + str(e)
-- if abortOnError:
-- abort(msg)
-- else:
-- warn(msg)
-- return False
-+ print("FAKE download(path={} urls={} verbose={} abortOnError={} verifyOnly={})".format(path, urls, verbose, abortOnError, verifyOnly))
-+ return True
-
- def update_file(path, content, showDiff=False):
- """
-@@ -7887,30 +7799,6 @@ class PackedResourceLibrary(ResourceLibrary):
-
- def get_path(self, resolve):
- extract_path = _make_absolute(self.extract_path, self.suite.dir)
-- download_path = super(PackedResourceLibrary, self).get_path(resolve)
-- if resolve and self._check_extract_needed(extract_path, download_path):
-- extract_path_tmp = tempfile.mkdtemp(suffix=basename(extract_path), dir=dirname(extract_path))
-- try:
-- # extract archive
-- Extractor.create(download_path).extract(extract_path_tmp)
-- # ensure modification time is up to date
-- os.utime(extract_path_tmp, None)
-- logv("Moving temporary directory {} to {}".format(extract_path_tmp, extract_path))
-- try:
-- # attempt atomic overwrite
-- os.rename(extract_path_tmp, extract_path)
-- except OSError:
-- # clean destination & re-try for cases where atomic overwrite doesn't work
-- rmtree(extract_path, ignore_errors=True)
-- os.rename(extract_path_tmp, extract_path)
-- except OSError as ose:
-- # Rename failed. Race with other process?
-- if self._check_extract_needed(extract_path, download_path):
-- # ok something really went wrong
-- abort("Extracting {} failed!".format(download_path), context=ose)
-- finally:
-- rmtree(extract_path_tmp, ignore_errors=True)
--
- return extract_path
-
- def _check_download_needed(self):
-@@ -8430,7 +8318,7 @@ class VC(_with_metaclass(ABCMeta, object)):
- :param str branch: a branch name
- :param bool abortOnError: if True abort on error
- """
-- abort(self.kind + " update_to_branch is not implemented")
-+ self.run(['hg', vcdir] + cmd)
-
- def is_release_from_tags(self, vcdir, prefix):
- """
-@@ -8831,7 +8719,7 @@ class HgConfig(VC):
- return None
-
- def parent_info(self, vcdir, abortOnError=True):
-- out = self.hg_command(vcdir, ["log", "-r", ".", "--template", "{author}|||{date|hgdate}"], abortOnError=abortOnError)
-+ out = _check_output_str(["hg", '-R', vcdir, "log", "-r", ".", "--template", "{author}|||{date|hgdate}"])
- author, date = out.split("|||")
- ts, _ = date.split(" ")
- return self._sanitize_parent_info({
-@@ -14069,6 +13957,7 @@ class Archiver(SafeFileCreation):
-
- def _add_zip(self, filename, archive_name, provenance):
- self._add_provenance(archive_name, provenance)
-+ os.utime(filename, (315532800, 315532800))
- self.zf.write(filename, archive_name)
-
- def _add_str_zip(self, data, archive_name, provenance):
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/002_setjmp.c.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/002_setjmp.c.patch
deleted file mode 100644
index 38a29fd8fb..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/002_setjmp.c.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c b/sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c
-index 16b869354d8..3691739d13b 100644
---- a/sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c
-+++ b/sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c
-@@ -41,11 +41,3 @@ int sigsetjmp(sigjmp_buf env, int savesigs) {
- WARN_UNSUPPORTED(sigsetjmp);
- return 0;
- }
--
--void longjmp(jmp_buf env, int val) {
-- ERR_UNSUPPORTED(longjmp);
--}
--
--void siglongjmp(sigjmp_buf env, int val) {
-- ERR_UNSUPPORTED(siglongjmp);
--}
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/003_mx_truffle.py.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/003_mx_truffle.py.patch
deleted file mode 100644
index bb9a006871..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/003_mx_truffle.py.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/truffle/mx.truffle/mx_truffle.py b/truffle/mx.truffle/mx_truffle.py
-index 8889c5ad810..add211a45c5 100644
---- a/truffle/mx.truffle/mx_truffle.py
-+++ b/truffle/mx.truffle/mx_truffle.py
-@@ -695,6 +695,7 @@ class LibffiBuildTask(mx.AbstractNativeBuildTask):
- os.path.relpath(self.subject.delegate.dir, self.subject.suite.vc_dir)]
- for patch in self.subject.patches:
- mx.run(git_apply + [patch], cwd=self.subject.suite.vc_dir)
-+ mx.run(['cp', os.path.join(os.getenv('TMP'), 'truffle.make'), os.path.join(self.subject.delegate.dir, 'Makefile')])
-
- self.delegate.logBuild()
- self.delegate.build()
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/004_mx_jvmci.py.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/004_mx_jvmci.py.patch
deleted file mode 100644
index 0aa1bc9b88..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/004_mx_jvmci.py.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/mx.jvmci/mx_jvmci.py b/mx.jvmci/mx_jvmci.py
-index 491fc19ab9..b4ddc03abb 100644
---- a/mx.jvmci/mx_jvmci.py
-+++ b/mx.jvmci/mx_jvmci.py
-@@ -192,6 +192,7 @@ class HotSpotVMJDKDeployedDist(JDKDeployedDist):
- if m.name in _hs_deploy_map:
- targetDir = join(jdkDir, _hs_deploy_map[m.name])
- mx.logv('Deploying {} from {} to {}'.format(m.name, dist.name, targetDir))
-+ subprocess.call(["chmod", "-R", "+rw", targetDir])
- tar.extract(m, targetDir)
-
- """
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/005_tool_jt.rb.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/005_tool_jt.rb.patch
deleted file mode 100644
index 06f693db9f..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/005_tool_jt.rb.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff --git a/tool/jt.rb b/tool/jt.rb
-index 870d88edcb..0a6e4c367b 100755
---- a/tool/jt.rb
-+++ b/tool/jt.rb
-@@ -152,13 +152,16 @@ module Utilities
- end
-
- def find_mx
-- if which('mx')
-- 'mx'
-+ if ENV.key?("MX_GIT_CACHE_DIR")
-+ "mx-internal"
- else
-- mx_repo = find_or_clone_repo("https://github.com/graalvm/mx.git")
-- "#{mx_repo}/mx"
-+ if which('mx')
-+ 'mx'
-+ else
-+ mx_repo = find_or_clone_repo("https://github.com/graalvm/mx.git")
-+ "#{mx_repo}/mx"
-+ end
- end
-- end
-
- def find_launcher(use_native)
- if use_native
-@@ -444,8 +447,8 @@ module Commands
- --no-sforceimports do not run sforceimports before building
- parser build the parser
- options build the options
-- graalvm build a minimal JVM-only GraalVM containing only TruffleRuby,
-- available by default in mxbuild/truffleruby-jvm,
-+ graalvm build a minimal JVM-only GraalVM containing only TruffleRuby,
-+ available by default in mxbuild/truffleruby-jvm,
- the Ruby is symlinked into rbenv or chruby if available
- --graal include the GraalVM Compiler in the build
- --native build native ruby image as well, available in mxbuild/truffleruby-native
-@@ -491,7 +494,7 @@ module Commands
- jt test compiler run compiler tests
- jt test integration [TESTS] run integration tests
- jt test bundle [--jdebug] tests using bundler
-- jt test gems [TESTS] tests using gems
-+ jt test gems [TESTS] tests using gems
- jt test ecosystem [TESTS] tests using the wider ecosystem such as bundler, Rails, etc
- jt test cexts [--no-openssl] [--no-gems] [test_names...]
- run C extension tests (set GEM_HOME)
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/006_mx_copylib.py.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/006_mx_copylib.py.patch
deleted file mode 100644
index 43ca3e1683..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/006_mx_copylib.py.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/mx.fastr/mx_copylib.py b/mx.fastr/mx_copylib.py
-index 4f57e1954..db45220d9 100644
---- a/mx.fastr/mx_copylib.py
-+++ b/mx.fastr/mx_copylib.py
-@@ -54,6 +54,9 @@ def _copylib(lib, libpath, plain_libpath_base, target):
- else:
- try:
- if platform.system() == 'Linux':
-+ # https://github.com/oracle/fastr/issues/110
-+ if libpath.endswith("libgcc_s.so"):
-+ libpath = libpath + ".1"
- output = subprocess.check_output(['objdump', '-p', libpath])
- elif platform.system() == 'SunOS':
- output = subprocess.check_output(['elfdump', '-d', libpath])
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/007_unimplemented.c.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/007_unimplemented.c.patch
deleted file mode 100644
index 96cca7ed23..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/007_unimplemented.c.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-diff --git a/com.oracle.truffle.r.native/fficall/src/common/unimplemented.c b/com.oracle.truffle.r.native/fficall/src/common/unimplemented.c
-index dcf081316..c2cb4879b 100644
---- a/com.oracle.truffle.r.native/fficall/src/common/unimplemented.c
-+++ b/com.oracle.truffle.r.native/fficall/src/common/unimplemented.c
-@@ -20,8 +20,10 @@
-
- #include
- #include
-+#include
-
- #include
-+#include
- #include
-
- Rboolean known_to_be_latin1 = FALSE;
-@@ -166,3 +168,69 @@ int Scollate(SEXP a, SEXP b) {
- void z_prec_r(Rcomplex *r, Rcomplex *x, double digits) {
- unimplemented("z_prec_r");
- }
-+
-+int Rf_AdobeSymbol2ucs2(int n) {
-+ unimplemented("Rf_AdobeSymbol2ucs2");
-+ return 0;
-+}
-+
-+size_t Mbrtowc(wchar_t *wc, const char *s, size_t n, mbstate_t *ps) {
-+ unimplemented("Mbrtowc");
-+ return 0;
-+}
-+
-+double R_GE_VStrHeight(const char *s, cetype_t enc, const pGEcontext gc, pGEDevDesc dd) {
-+ unimplemented("R_GE_VStrHeight");
-+ return 0;
-+}
-+
-+void R_GE_VText(double x, double y, const char * const s, cetype_t enc,
-+ double x_justify, double y_justify, double rotation,
-+ const pGEcontext gc, pGEDevDesc dd) {
-+ unimplemented("R_GE_VText");
-+}
-+
-+double R_GE_VStrWidth(const char *s, cetype_t enc, const pGEcontext gc, pGEDevDesc dd) {
-+ unimplemented("R_GE_VStrWidth");
-+}
-+
-+void setulb(int n, int m, double *x, double *l, double *u, int *nbd,
-+ double *f, double *g, double factr, double *pgtol,
-+ double *wa, int * iwa, char *task, int iprint, int *isave) {
-+ unimplemented("setulb");
-+}
-+
-+void genptry(int n, double *p, double *ptry, double scale, void *ex) {
-+ unimplemented("genptry");
-+}
-+
-+double EXP(double x) {
-+ unimplemented("EXP");
-+ return 0;
-+}
-+
-+double LOG(double x) {
-+ unimplemented("LOG");
-+ return 0;
-+}
-+
-+Rwchar_t Rf_utf8toucs32(wchar_t high, const char *s) {
-+ unimplemented("Rf_utf8toucs32");
-+ return 0;
-+}
-+
-+size_t mbtoucs(unsigned int *wc, const char *s, size_t n) {
-+ unimplemented("mbtoucs");
-+ return (size_t) 0;
-+}
-+
-+
-+int DispatchOrEval(SEXP call, SEXP op, const char *generic, SEXP args,
-+ SEXP rho, SEXP *ans, int dropmissing, int argsevald) {
-+ unimplemented("DispatchOrEval");
-+ return 0;
-+}
-+
-+void ENSURE_NAMEDMAX (SEXP x) {
-+ unimplemented("ENSURE_NAMEDMAX");
-+}
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/008_remove_jfr.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/008_remove_jfr.patch
deleted file mode 100644
index 1aea044c80..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/008_remove_jfr.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff --git a/mx.jvmci/suite.py b/mx.jvmci/suite.py
-index 9690c0a38f..fa1d36b7e1 100644
---- a/mx.jvmci/suite.py
-+++ b/mx.jvmci/suite.py
-@@ -241,18 +241,7 @@ suite = {
- "workingSets" : "JVMCI,HotSpot,SPARC",
- },
-
-- "jdk.vm.ci.hotspot.jfr" : {
-- "subDir" : "jvmci",
-- "sourceDirs" : ["src"],
-- "dependencies" : [
-- "jdk.vm.ci.hotspot",
-- "JFR",
-- ],
-- "checkstyle" : "jdk.vm.ci.hotspot",
-- "javaCompliance" : "1.8",
-- "profile" : "",
-- "workingSets" : "JVMCI,HotSpot",
-- },
-+
-
- "hotspot" : {
- "native" : True,
-@@ -354,7 +343,7 @@ suite = {
- "jdk.vm.ci.hotspot.aarch64",
- "jdk.vm.ci.hotspot.amd64",
- "jdk.vm.ci.hotspot.sparc",
-- "jdk.vm.ci.hotspot.jfr",
-+
- ],
- "distDependencies" : [
- "JVMCI_SERVICES",
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/009_remove_signedness_verifier.patch b/third_party/nixpkgs/pkgs/development/compilers/graalvm/009_remove_signedness_verifier.patch
deleted file mode 100644
index cf8bd40506..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/009_remove_signedness_verifier.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/query/SizeAndSignednessVerifier.java b/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/query/SizeAndSignednessVerifier.java
-index 23a76357fd2..f13694b6ed7 100644
---- a/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/query/SizeAndSignednessVerifier.java
-+++ b/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/query/SizeAndSignednessVerifier.java
-@@ -249,15 +249,6 @@ public final class SizeAndSignednessVerifier extends NativeInfoTreeVisitor {
- }
-
- private void checkSignedness(boolean isUnsigned, ResolvedJavaType type, ResolvedJavaMethod method) {
-- if (isSigned(type)) {
-- if (isUnsigned) {
-- addError("Type " + type.toJavaName(false) + " is signed, but accessed C value is unsigned", method);
-- }
-- } else if (nativeLibs.isWordBase(type)) {
-- /* every Word type other than Signed is assumed to be unsigned. */
-- if (!isUnsigned) {
-- addError("Type " + type.toJavaName(false) + " is unsigned, but accessed C value is signed", method);
-- }
-- }
-+
- }
- }
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/010_mx_substratevm.py b/third_party/nixpkgs/pkgs/development/compilers/graalvm/010_mx_substratevm.py
deleted file mode 100644
index afb6b56816..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/010_mx_substratevm.py
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/substratevm/mx.substratevm/mx_substratevm.py b/substratevm/mx.substratevm/mx_substratevm.py
-index b89163ef983..0fd0138b336 100644
---- a/substratevm/mx.substratevm/mx_substratevm.py
-+++ b/substratevm/mx.substratevm/mx_substratevm.py
-@@ -189,7 +189,7 @@ if str(svm_java_compliance().value) not in GRAAL_COMPILER_FLAGS_MAP:
- mx.abort("Substrate VM does not support this Java version: " + str(svm_java_compliance()))
- GRAAL_COMPILER_FLAGS = GRAAL_COMPILER_FLAGS_BASE + GRAAL_COMPILER_FLAGS_MAP[str(svm_java_compliance().value)]
-
--IMAGE_ASSERTION_FLAGS = ['-H:+VerifyGraalGraphs', '-H:+VerifyPhases']
-+IMAGE_ASSERTION_FLAGS = ['-H:+VerifyGraalGraphs', '-H:+VerifyPhases', '-H:+ReportExceptionStackTraces']
- suite = mx.suite('substratevm')
- svmSuites = [suite]
- clibraryDists = ['SVM_HOSTED_NATIVE']
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/default.nix b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/default.nix
index 54cc917a5b..1921b1c4f5 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/default.nix
@@ -1,21 +1,18 @@
-{ callPackage, Foundation }:
+{ lib, callPackage, Foundation }:
let
- mkGraal = opts: callPackage (import ./repository.nix opts) {
+ mkGraal = opts: callPackage (import ./mkGraal.nix opts) {
inherit Foundation;
};
-in {
+in
+{
inherit mkGraal;
- graalvm8-ce = mkGraal rec {
- version = "21.2.0";
- javaVersion = "8";
- platforms = ["x86_64-linux"];
+ graalvm11-ce = mkGraal rec {
+ version = lib.fileContents ./version;
+ javaVersion = "11";
+ platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
- graalvm11-ce = mkGraal rec {
- version = "21.2.0";
- javaVersion = "11";
- platforms = ["x86_64-linux" "x86_64-darwin"];
- };
+ # TODO: added graalvm17-ce
}
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/hashes.nix b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/hashes.nix
new file mode 100644
index 0000000000..2f59a40f9c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/hashes.nix
@@ -0,0 +1,43 @@
+# Generated by ./update.sh script
+{ javaVersionPlatform, ... }:
+[
+ {
+ sha256 = {
+ "11-linux-aarch64" = "0hsjxp6ly7jsn9k94fddcl7afc5gda66jyppcnfvslishbizqd0i";
+ "11-linux-amd64" = "1ylk5l933z813k0k1xlayiv8fa0f1gmpr66bma51532iy3mch6rs";
+ "11-darwin-amd64" = "0qpqnnmqxvxzj3mwz05acpg4n8ffqsz0sji8lbl03fgswpvgfavc";
+ }.${javaVersionPlatform} or null;
+ url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-21.3.0/graalvm-ce-java${javaVersionPlatform}-21.3.0.tar.gz";
+ }
+ {
+ sha256 = {
+ "11-linux-aarch64" = "0qlmg5fwvqsb5ab3irj2hrcd5jc94mibnlz1gvzpnq85rw1zcb6h";
+ "11-linux-amd64" = "0kvnjr55rizy53vn0ff9w27z1qh9d1vp3s7r1kdl0wyhrbhd8n49";
+ "11-darwin-amd64" = "1mg8c8hh8wmbwsisgarmp35jd0dall1fwdv49mggp74hicbc32h3";
+ }.${javaVersionPlatform} or null;
+ url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-21.3.0/native-image-installable-svm-java${javaVersionPlatform}-21.3.0.jar";
+ }
+ {
+ sha256 = {
+ "11-linux-aarch64" = "02rvwl1nng8d3qn226rjx5yq2blxs4yz009ab928qanhmb4vhv8b";
+ "11-linux-amd64" = "0zz62zr7imjaw9a3j5m66xs7c72cqb1i74ab3rnlh0dgs1mdpljg";
+ "11-darwin-amd64" = "1wiv0299b2xrc229alczmjfj1bsn90p0wdm64rr39xnyyhbqrr80";
+ }.${javaVersionPlatform} or null;
+ url = "https://github.com/oracle/truffleruby/releases/download/vm-21.3.0/ruby-installable-svm-java${javaVersionPlatform}-21.3.0.jar";
+ }
+ {
+ sha256 = {
+ "11-linux-aarch64" = "1ck4c1z98h1zn4i6xhh1hb6w2jab6n17ddykb72xxw4vig9nhlc7";
+ "11-linux-amd64" = "0gy8jj9d9msmj0i44sysiwq3j2k2w2g47fhq6y1aq47n3kmwj9kv";
+ "11-darwin-amd64" = "0agw6k3jn2jh8wyc9h8rvzlgs96qh4nlj0y8nyzsmidvwq2ahl00";
+ }.${javaVersionPlatform} or null;
+ url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-21.3.0/wasm-installable-svm-java${javaVersionPlatform}-21.3.0.jar";
+ }
+ {
+ sha256 = {
+ "11-linux-amd64" = "1l5av2v459q88zfl83877h7b3426z3d86kp6wqjvz2441brvidi0";
+ "11-darwin-amd64" = "06694n74dzsfwlli1sjdsrfbj9ngw7bhrcayvy4sgy2va5qpdjs0";
+ }.${javaVersionPlatform} or null;
+ url = "https://github.com/graalvm/graalpython/releases/download/vm-21.3.0/python-installable-svm-java${javaVersionPlatform}-21.3.0.jar";
+ }
+]
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/repository.nix b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/mkGraal.nix
similarity index 56%
rename from third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/repository.nix
rename to third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/mkGraal.nix
index b532fe8cb5..8b0ff22af0 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/repository.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/mkGraal.nix
@@ -10,55 +10,34 @@
, gtkSupport ? true, cairo, glib, gtk3 }:
let
- platform = if stdenv.isDarwin then "darwin-amd64" else "linux-amd64";
+ platform = {
+ aarch64-linux = "linux-aarch64";
+ x86_64-linux = "linux-amd64";
+ x86_64-darwin = "darwin-amd64";
+ }.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
+
runtimeDependencies = [ cups ]
++ lib.optionals gtkSupport [ cairo glib gtk3 ];
+
runtimeLibraryPath = lib.makeLibraryPath runtimeDependencies;
+
javaVersionPlatform = "${javaVersion}-${platform}";
+
graalvmXXX-ce = stdenv.mkDerivation rec {
+ inherit version;
name = "graalvm${javaVersion}-ce";
- srcs = [
- (fetchurl {
- sha256 = {
- "8-linux-amd64" = "01gyxjmfp7wpcyn7x8b184fn0lp3xryfw619bqch120pzvr6z88f";
- "11-linux-amd64" = "0w7lhvxm4nggqdcl4xrhdd3y6dqw9jhyca9adjkp508n4lqf1lxv";
- "11-darwin-amd64" = "0dnahicdl0vhrbiml9z9nbb7k75hbsjj8rs246i1lwril12dqb7n";
- }.${javaVersionPlatform};
- url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${version}/graalvm-ce-java${javaVersionPlatform}-${version}.tar.gz";
- })
- (fetchurl {
- sha256 = {
- "8-linux-amd64" = "1jlvrxdlbsmlk3ia43h9m29kmmdn83h6zdlnf8qb7bm38c84nhsc";
- "11-linux-amd64" = "1ybd7a6ii6582skr0nkxx7bccsa7gkg0yriql2h1lcz0rfzcdi3g";
- "11-darwin-amd64" = "1jdy845vanmz05zx5b9227gb1msh9wdrz2kf3fx9z54ssd9qgdhm";
- }.${javaVersionPlatform};
- url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${version}/native-image-installable-svm-java${javaVersionPlatform}-${version}.jar";
- })
- (fetchurl {
- sha256 = {
- "8-linux-amd64" = "18ip0ay06q1pryqs8ja988mvk9vw475c0nfjcznnsd1zp296p6jc";
- "11-linux-amd64" = "1jszz97mkqavxzyhx5jxhi43kqjxk9c36j5l5hy3kn8sdfmbplm4";
- "11-darwin-amd64" = "1767ryhv2cn5anlys63ysax1p8ag79bykac1xfrjfan8yv6d8ybl";
- }.${javaVersionPlatform};
- url = "https://github.com/oracle/truffleruby/releases/download/vm-${version}/ruby-installable-svm-java${javaVersionPlatform}-${version}.jar";
- })
- (fetchurl {
- sha256 = {
- "8-linux-amd64" = "0il15438qnikqsxdsl7fcdg0c8zs3cbm4ry7pys7fxxr1ckd8szq";
- "11-linux-amd64" = "07759sr8nijvqm8aqn69x9vq7lyppns7a6l6xribv43jvfmwpfkl";
- "11-darwin-amd64" = "01l3as8dihc7xqy5sdkrpxmpzrqbcvvg84m2s6j1j8y2db1khf2s";
- }.${javaVersionPlatform};
- url = "https://github.com/graalvm/graalpython/releases/download/vm-${version}/python-installable-svm-java${javaVersionPlatform}-${version}.jar";
- })
- (fetchurl {
- sha256 = {
- "8-linux-amd64" = "08s36rjy5irg25b7lqx0m4v2wpywin3cqyhdrywhvq14f7zshsd5";
- "11-linux-amd64" = "1ybjaknmbsdg8qzb986x39fq0h7fyiymdcigc7y86swk8dd916hv";
- "11-darwin-amd64" = "02dwlb62kqr4rjjmvkhn2xk9l1p47ahg9xyyfkw7im1jwlqmqnzf";
- }.${javaVersionPlatform};
- url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${version}/wasm-installable-svm-java${javaVersionPlatform}-${version}.jar";
- })
- ];
+ srcs =
+ let
+ # Some platforms doesn't have all GraalVM features
+ # e.g.: GraalPython on aarch64-linux
+ # When the platform doesn't have a feature, sha256 is null on hashes.nix
+ # To update hashes.nix file, run `./update.sh `
+ maybeFetchUrl = url: if url.sha256 != null then (fetchurl url) else null;
+ in
+ (lib.remove null
+ (map
+ maybeFetchUrl
+ (import ./hashes.nix { inherit javaVersionPlatform; })));
buildInputs = lib.optionals stdenv.isLinux [
alsa-lib # libasound.so wanted by lib/libjsound.so
@@ -124,10 +103,9 @@ let
exit 1
fi
- unpack_jar ''${arr[1]}
- unpack_jar ''${arr[2]}
- unpack_jar ''${arr[3]}
- unpack_jar ''${arr[4]}
+ for jar in "''${arr[@]:1}"; do
+ unpack_jar "$jar"
+ done
'';
outputs = [ "out" "lib" ];
@@ -145,7 +123,6 @@ let
ln -s $f ${basepath}/${platform}/$(basename $f)
done
'';
-
copyClibrariesToLib = ''
# add those libraries to $lib output too, so we can use them with
# `native-image -H:CLibraryPath=''${graalvm11-ce.lib}/lib ...` and reduce
@@ -156,17 +133,14 @@ let
done
'';
in {
- "8-linux-amd64" = ''
- ${nativePRNGWorkaround "$out/jre/lib/security/java.security"}
+ "11-linux-amd64" = ''
+ ${nativePRNGWorkaround "$out/conf/security/java.security"}
- ${copyClibrariesToOut "$out/jre/lib/svm/clibraries"}
+ ${copyClibrariesToOut "$out/lib/svm/clibraries"}
${copyClibrariesToLib}
-
- # allow using external truffle-api.jar and languages not included in the distrubution
- rm $out/jre/lib/jvmci/parentClassLoader.classpath
'';
- "11-linux-amd64" = ''
+ "11-linux-aarch64" = ''
${nativePRNGWorkaround "$out/conf/security/java.security"}
${copyClibrariesToOut "$out/lib/svm/clibraries"}
@@ -219,57 +193,74 @@ let
doInstallCheck = true;
installCheckPhase = ''
- echo ${
- lib.escapeShellArg ''
- public class HelloWorld {
- public static void main(String[] args) {
- System.out.println("Hello World");
- }
+ echo ${
+ lib.escapeShellArg ''
+ public class HelloWorld {
+ public static void main(String[] args) {
+ System.out.println("Hello World");
}
- ''
- } > HelloWorld.java
- $out/bin/javac HelloWorld.java
+ }
+ ''
+ } > HelloWorld.java
+ $out/bin/javac HelloWorld.java
- # run on JVM with Graal Compiler
- $out/bin/java -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler HelloWorld | fgrep 'Hello World'
+ # run on JVM with Graal Compiler
+ $out/bin/java -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler HelloWorld | fgrep 'Hello World'
- # Ahead-Of-Time compilation
- $out/bin/native-image -H:-CheckToolchain -H:+ReportExceptionStackTraces --no-server HelloWorld
- ./helloworld | fgrep 'Hello World'
+ # Ahead-Of-Time compilation
+ $out/bin/native-image -H:-CheckToolchain -H:+ReportExceptionStackTraces --no-server HelloWorld
+ ./helloworld | fgrep 'Hello World'
- ${
- lib.optionalString stdenv.isLinux ''
- # Ahead-Of-Time compilation with --static
- # --static flag doesn't work for darwin
- $out/bin/native-image --no-server --static HelloWorld
- ./helloworld | fgrep 'Hello World'
- ''
- }
+ ${
+ lib.optionalString stdenv.isLinux ''
+ # Ahead-Of-Time compilation with --static
+ # --static flag doesn't work for darwin
+ $out/bin/native-image --no-server --static HelloWorld
+ ./helloworld | fgrep 'Hello World'
+ ''
+ }
- echo "Testing interpreted languages"
- $out/bin/graalpython -c 'print(1 + 1)'
- $out/bin/ruby -e 'puts(1 + 1)'
+ ${# TODO: Doesn't work on MacOS, we have this error:
+ # "Launching JShell execution engine threw: Operation not permitted (Bind failed)"
+ lib.optionalString (stdenv.isLinux) ''
+ echo "Testing Jshell"
+ echo '1 + 1' | $out/bin/jshell
+ ''
+ }
- echo '1 + 1' | $out/bin/graalpython
+ ${
+ lib.optionalString (platform != "linux-aarch64") ''
+ echo "Testing GraalPython"
+ $out/bin/graalpython -c 'print(1 + 1)'
+ echo '1 + 1' | $out/bin/graalpython
+ ''
+ }
- ${
- lib.optionalString stdenv.isLinux ''
- # TODO: `irb` on MacOS gives an error saying "Could not find OpenSSL
- # headers, install via Homebrew or MacPorts or set OPENSSL_PREFIX", even
- # though `openssl` is in `propagatedBuildInputs`. For more details see:
- # https://github.com/NixOS/nixpkgs/pull/105815
- echo '1 + 1' | $out/bin/irb
- ''
- }
+ echo "Testing TruffleRuby"
+ $out/bin/ruby -e 'puts(1 + 1)'
- ${lib.optionalString (javaVersion == "11" && stdenv.isLinux) ''
- # Doesn't work on MacOS, we have this error: "Launching JShell execution engine threw: Operation not permitted (Bind failed)"
- echo '1 + 1' | $out/bin/jshell
- ''}'';
+ ${# TODO: `irb` on MacOS gives an error saying "Could not find OpenSSL
+ # headers, install via Homebrew or MacPorts or set OPENSSL_PREFIX", even
+ # though `openssl` is in `propagatedBuildInputs`. For more details see:
+ # https://github.com/NixOS/nixpkgs/pull/105815
+ # TODO: "truffleruby: an internal exception escaped out of the interpreter"
+ # error on linux-aarch64
+ # TODO: "core/kernel.rb:234:in `gem_original_require':
+ # /nix/store/wlc5xalzj2ip1l83siqw8ac5fjd52ngm-graalvm11-ce/languages/llvm/native/lib:
+ # cannot read file data: Is a directory (RuntimeError)" error on linux-amd64
+ lib.optionalString false ''
+ echo '1 + 1' | $out/bin/irb
+ ''
+ }
+ '';
- passthru.home = graalvmXXX-ce;
+ passthru = {
+ home = graalvmXXX-ce;
+ updateScript = ./update.sh;
+ };
meta = with lib; {
+ inherit platforms;
homepage = "https://www.graalvm.org/";
description = "High-Performance Polyglot VM";
license = with licenses; [ upl gpl2Classpath bsd3 ];
@@ -280,8 +271,8 @@ let
glittershark
babariviere
ericdallo
+ thiagokokada
];
- platforms = platforms;
};
};
in graalvmXXX-ce
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/update.sh b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/update.sh
new file mode 100755
index 0000000000..ba063b2a96
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/update.sh
@@ -0,0 +1,72 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -p curl -i bash coreutils nix common-updater-scripts curl jq
+
+set -eou pipefail
+
+cd "$(dirname "${BASH_SOURCE[0]}")"
+
+info() { echo "[INFO] $*"; }
+
+echo_file() { echo "$@" >> hashes.nix; }
+
+verlte() {
+ [ "$1" = "$(echo -e "$1\n$2" | sort -V | head -n1)" ]
+}
+
+readonly old_version="$(cat version)"
+
+if [[ -z "${1:-}" ]]; then
+ readonly gh_version="$(curl -s https://api.github.com/repos/graalvm/graalvm-ce-builds/releases/latest | jq --raw-output .tag_name)"
+ readonly new_version="${gh_version//vm-/}"
+else
+ readonly new_version="$1"
+fi
+
+if verlte "$new_version" "$old_version"; then
+ info "graalvm-ce $old_version is up-to-date. Exiting..."
+ exit 0
+else
+ info "graalvm-ce $old_version is out-of-date. Updating..."
+fi
+
+readonly urls=(
+ "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${new_version}/graalvm-ce-java@platform@-${new_version}.tar.gz"
+ "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${new_version}/native-image-installable-svm-java@platform@-${new_version}.jar"
+ "https://github.com/oracle/truffleruby/releases/download/vm-${new_version}/ruby-installable-svm-java@platform@-${new_version}.jar"
+ "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-${new_version}/wasm-installable-svm-java@platform@-${new_version}.jar"
+ "https://github.com/graalvm/graalpython/releases/download/vm-${new_version}/python-installable-svm-java@platform@-${new_version}.jar"
+)
+
+readonly platforms=(
+ "11-linux-aarch64"
+ "11-linux-amd64"
+ "11-darwin-amd64"
+)
+
+info "Deleting old hashes.nix file..."
+rm -f hashes.nix
+info "Generating hashes.nix file for 'graalvm-ce' $new_version. This will take a while..."
+
+echo_file "# Generated by $0 script"
+echo_file "{ javaVersionPlatform, ... }:"
+echo_file "["
+
+for url in "${urls[@]}"; do
+ echo_file " {"
+ echo_file " sha256 = {"
+ for platform in "${platforms[@]}"; do
+ if hash="$(nix-prefetch-url "${url//@platform@/$platform}")"; then
+ echo_file " \"$platform\" = \"$hash\";"
+ fi
+ done
+ echo_file ' }.${javaVersionPlatform} or null;'
+ echo_file " url = \"${url//@platform@/\$\{javaVersionPlatform\}}\";"
+ echo_file " }"
+done
+
+echo_file "]"
+
+info "Updating 'version' file..."
+echo "$new_version" > version
+
+info "Done!"
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/version b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/version
new file mode 100644
index 0000000000..54d3ad7364
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/compilers/graalvm/community-edition/version
@@ -0,0 +1 @@
+21.3.0
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/default.nix b/third_party/nixpkgs/pkgs/development/compilers/graalvm/default.nix
deleted file mode 100644
index 9430ded8b6..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/default.nix
+++ /dev/null
@@ -1,540 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, fetchurl, fetchzip, fetchgit, mercurial_4, python27, setJavaClassPath,
- which, zlib, makeWrapper, openjdk, unzip, git, clang, llvm, icu, ruby, glibc, bash, gcc, libobjc,
- xcodebuild, gfortran, readline, bzip2, xz, pcre, curl, ed, libresolv, libiconv, writeScriptBin,
- openssl, perl, CoreFoundation, Foundation, JavaNativeFoundation, JavaRuntimeSupport, JavaVM, Cocoa
-}:
-
-let
- version = "19.2.1";
- mercurial = mercurial_4;
- truffleMake = ./truffle.make;
- makeMxGitCache = list: out: ''
- mkdir ${out}
- ${lib.concatMapStrings ({ url, name, rev, sha256 }: ''
- mkdir -p ${out}/${name}
- cp -rf ${fetchgit { inherit url rev sha256; }}/* ${out}/${name}
- ''
- ) list}
-
- # # GRAAL-NODEJS # #
- chmod -R +rw ${out}
- sed -i "s|#include \"../../../../mxbuild/trufflenode/coremodules/node_snapshots.h\"| \
- #include \"$NIX_BUILD_TOP/mxbuild/graal-nodejs/trufflenode/coremodules/node_snapshots.h\"|g" \
- ${out}/graaljs/graal-nodejs/deps/v8/src/graal/callbacks.cc
-
- # patch the shebang in python script runner
- chmod -R +rw ${out}/graaljs/graal-nodejs/mx.graal-nodejs/python2
- patchShebangs ${out}/graaljs/graal-nodejs/mx.graal-nodejs/python2/python
-
- # # TUFFLE-RUBY # #
- (cd ${out}/truffleruby && git apply ${./005_tool_jt.rb.patch})
- patchShebangs ${out}/truffleruby/tool/query-versions-json.rb
-
- substituteInPlace ${out}/truffleruby/src/main/c/Makefile \
- --replace '(MX_HOME)/mx' '(MX_HOME)/mx-internal'
-
- substituteInPlace ${out}/truffleruby/src/processor/java/org/truffleruby/processor/BuildInformationProcessor.java \
- --replace 'trufflerubyHome = findHome();' \
- 'trufflerubyHome = new File(System.getenv("MX_GIT_CACHE_DIR"), "truffleruby");' \
- --replace tool/query-versions-json.rb 'ruby tool/query-versions-json.rb' \
- --replace 'revision = runCommand("git rev-parse --short=8 HEAD");' \
- 'revision = "${version}";' \
- --replace 'compileDate = runCommand("git log -1 --date=short --pretty=format:%cd");' \
- 'compileDate = "1970-01-01";'
-
- substituteInPlace ${out}/truffleruby/mx.truffleruby/mx_truffleruby.py \
- --replace "mx_binary = join(mx._mx_home, 'mx')" "mx_binary = join(mx._mx_home, 'mx-internal')"
-
- # # FASTR # #
- (cd ${out}/fastr && git apply ${ ./006_mx_copylib.py.patch })
- (cd ${out}/fastr && git apply ${ ./007_unimplemented.c.patch })
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.parser.processor/src/com/oracle/truffle/r/parser/processor/GenerateRParserProcessor.java \
- --replace 'File suiteRoot = srcGenDir.getCanonicalFile().getParentFile().getParentFile().getParentFile();' \
- 'File suiteRoot = new File(System.getenv("MX_GIT_CACHE_DIR"), "fastr");'
-
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native/gnur/Makefile.libs \
- --replace 'mx -p' 'mx-internal -p'
-
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native/include/Makefile \
- --replace 'mx -p' 'mx-internal -p'
-
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native/fficall/Makefile \
- --replace 'mx -p' 'mx-internal -p'
-
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native.recommended/Makefile \
- --replace 'mx -p' 'mx-internal -p'
-
- # Make sure that the logs aren't hidden when compiling gnur
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native/gnur/Makefile.gnur \
- --replace '> gnur_configure.log 2>&1' "" \
- --replace '> gnur_make.log 2>&1' ""
-
- substituteInPlace ${out}/fastr/com.oracle.truffle.r.native/run/Linux/Renviron \
- --replace /bin/ "" \
- --replace /usr/bin/ ""
-
- sed -i "s|exec \$mx|exec mx-internal|g" ${out}/fastr/com.oracle.truffle.r.native/run/*.sh
- chmod +x ${out}/fastr/com.oracle.truffle.r.native/run/*.sh
- patchShebangs ${out}/fastr/com.oracle.truffle.r.native/run/*.sh
-
- cd ${out}
- hg init
- hg add
- hg commit -m 'dummy commit'
- hg tag ${lib.escapeShellArg "vm${version}"}
- hg checkout ${lib.escapeShellArg "vm${version}"}
- '';
-
- # pre-download some cache entries ('mx' will not be able to download under nixbld)
- makeMxCache = list:
- stdenv.mkDerivation {
- name = "mx-cache";
- nativeBuildInputs = [ unzip ];
- buildCommand = with lib; ''
- mkdir $out
- ${lib.concatMapStrings
- ({url, name, sha1, isNinja ? false}: ''
- install -D ${fetchurl { inherit url sha1; }} $out/${name}
- echo -n ${sha1} > $out/${name}.sha1
- ${if isNinja then ''
- export BASENAME=${removeSuffix ".zip" name}
- mkdir "$out/$BASENAME.extracted" &&
- unzip "$out/${name}" -d "$out/$BASENAME.extracted"
-
- # Ninja is called later in the build process
- ${lib.optionalString stdenv.isLinux ''
- if [ -f $out/$BASENAME.extracted/ninja ]; then
- patchelf --set-interpreter \
- "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${stdenv.cc.cc.lib}/lib64" \
- $out/$BASENAME.extracted/ninja
- fi''}
- ''
- else ""}
- '') list}
- '';
- };
-
- jvmci8-mxcache = [
- rec { sha1 = "53addc878614171ff0fcbc8f78aed12175c22cdb"; name = "JACOCOCORE_0.8.4_${sha1}/jacococore-0.8.4.jar"; url = "mirror://maven/org/jacoco/org.jacoco.core/0.8.4/org.jacoco.core-0.8.4.jar"; }
- rec { sha1 = "9bd1fa334d941005bc9ab3ac92478a590f5b7d73"; name = "JACOCOCORE_0.8.4_${sha1}/jacococore-0.8.4.sources.jar"; url = "mirror://maven/org/jacoco/org.jacoco.core/0.8.4/org.jacoco.core-0.8.4-sources.jar"; }
- rec { sha1 = "e5ca9511493b7e3bc2cabdb8ded92e855f3aac32"; name = "JACOCOREPORT_0.8.4_${sha1}/jacocoreport-0.8.4.jar"; url = "mirror://maven/org/jacoco/org.jacoco.report/0.8.4/org.jacoco.report-0.8.4.jar"; }
- rec { sha1 = "eb61e479b35b467954f28a565c094c563b790e19"; name = "JACOCOREPORT_0.8.4_${sha1}/jacocoreport-0.8.4.sources.jar"; url = "mirror://maven/org/jacoco/org.jacoco.report/0.8.4/org.jacoco.report-0.8.4-sources.jar"; }
- rec { sha1 = "869021a6d90cfb008b12e83fccbe42eca29e5355"; name = "JACOCOAGENT_0.8.4_${sha1}/jacocoagent-0.8.4.jar"; url = "mirror://maven/org/jacoco/org.jacoco.agent/0.8.4/org.jacoco.agent-0.8.4-runtime.jar"; }
- rec { sha1 = "306816fb57cf94f108a43c95731b08934dcae15c"; name = "JOPTSIMPLE_4_6_${sha1}/joptsimple-4-6.jar"; url = "mirror://maven/net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6.jar"; }
- rec { sha1 = "9cd14a61d7aa7d554f251ef285a6f2c65caf7b65"; name = "JOPTSIMPLE_4_6_${sha1}/joptsimple-4-6.sources.jar"; url = "mirror://maven/net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6-sources.jar"; }
- rec { sha1 = "fa29aa438674ff19d5e1386d2c3527a0267f291e"; name = "ASM_7.1_${sha1}/asm-7.1.jar"; url = "mirror://maven/org/ow2/asm/asm/7.1/asm-7.1.jar"; }
- rec { sha1 = "9d170062d595240da35301362b079e5579c86f49"; name = "ASM_7.1_${sha1}/asm-7.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm/7.1/asm-7.1-sources.jar"; }
- rec { sha1 = "a3662cf1c1d592893ffe08727f78db35392fa302"; name = "ASM_TREE_7.1_${sha1}/asm-tree-7.1.jar"; url = "mirror://maven/org/ow2/asm/asm-tree/7.1/asm-tree-7.1.jar"; }
- rec { sha1 = "157238292b551de8680505fa2d19590d136e25b9"; name = "ASM_TREE_7.1_${sha1}/asm-tree-7.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-tree/7.1/asm-tree-7.1-sources.jar"; }
- rec { sha1 = "379e0250f7a4a42c66c5e94e14d4c4491b3c2ed3"; name = "ASM_ANALYSIS_7.1_${sha1}/asm-analysis-7.1.jar"; url = "mirror://maven/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1.jar"; }
- rec { sha1 = "36789198124eb075f1a5efa18a0a7812fb16f47f"; name = "ASM_ANALYSIS_7.1_${sha1}/asm-analysis-7.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1-sources.jar"; }
- rec { sha1 = "431dc677cf5c56660c1c9004870de1ed1ea7ce6c"; name = "ASM_COMMONS_7.1_${sha1}/asm-commons-7.1.jar"; url = "mirror://maven/org/ow2/asm/asm-commons/7.1/asm-commons-7.1.jar"; }
- rec { sha1 = "a62ff3ae6e37affda7c6fb7d63b89194c6d006ee"; name = "ASM_COMMONS_7.1_${sha1}/asm-commons-7.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-commons/7.1/asm-commons-7.1-sources.jar"; }
- rec { sha1 = "ec2544ab27e110d2d431bdad7d538ed509b21e62"; name = "COMMONS_MATH3_3_2_${sha1}/commons-math3-3-2.jar"; url = "mirror://maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar"; }
- rec { sha1 = "cd098e055bf192a60c81d81893893e6e31a6482f"; name = "COMMONS_MATH3_3_2_${sha1}/commons-math3-3-2.sources.jar"; url = "mirror://maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2-sources.jar"; }
- rec { sha1 = "442447101f63074c61063858033fbfde8a076873"; name = "JMH_1_21_${sha1}/jmh-1-21.jar"; url = "mirror://maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar"; }
- rec { sha1 = "a6fe84788bf8cf762b0e561bf48774c2ea74e370"; name = "JMH_1_21_${sha1}/jmh-1-21.sources.jar"; url = "mirror://maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21-sources.jar"; }
- rec { sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.jar"; url = "mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar"; }
- rec { sha1 = "fb48e2a97df95f8b9dced54a1a37749d2a64d2ae"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.sources.jar"; url = "mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21-sources.jar"; }
- rec { sha1 = "2973d150c0dc1fefe998f834810d68f278ea58ec"; name = "JUNIT_${sha1}/junit.jar"; url = "mirror://maven/junit/junit/4.12/junit-4.12.jar"; }
- rec { sha1 = "a6c32b40bf3d76eca54e3c601e5d1470c86fcdfa"; name = "JUNIT_${sha1}/junit.sources.jar"; url = "mirror://maven/junit/junit/4.12/junit-4.12-sources.jar"; }
- rec { sha1 = "42a25dc3219429f0e5d060061f71acb49bf010a0"; name = "HAMCREST_${sha1}/hamcrest.jar"; url = "mirror://maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"; }
- rec { sha1 = "1dc37250fbc78e23a65a67fbbaf71d2e9cbc3c0b"; name = "HAMCREST_${sha1}/hamcrest.sources.jar"; url = "mirror://maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar"; }
- rec { sha1 = "0d031013db9a80d6c88330c42c983fbfa7053193"; name = "hsdis_${sha1}/hsdis.so"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/hsdis/intel/hsdis-amd64-linux-${sha1}.so"; }
-] ++ lib.optionals stdenv.isLinux [
- rec { sha1 = "0d031013db9a80d6c88330c42c983fbfa7053193"; name = "hsdis_${sha1}/hsdis.so"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/hsdis/intel/hsdis-amd64-linux-${sha1}.so"; }
- ]
-++ lib.optionals stdenv.isDarwin [
- rec { sha1 = "67f6d23cbebd8998450a88b5bef362171f66f11a"; name = "hsdis_${sha1}/hsdis.dylib"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/hsdis/intel/hsdis-amd64-darwin-${sha1}.dylib"; }
- ];
-
- graal-mxcache = jvmci8-mxcache ++ [
- # rec { sha1 = "5001adab652fc4eb35e30cdefbb0765442f8b7db"; name = "LLVM_ORG_LIBCXX_SRC_${sha1}/llvm-org-libcxx-src.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/llvm-org/compiler-rt-llvmorg-8.0.0-4-gd563e33a79-bgae3b177eaa-linux-amd64.tar.gz"; }
- rec { sha1 = "5001adab652fc4eb35e30cdefbb0765442f8b7db"; name = "LLVM_ORG_COMPILER_RT_LINUX_${sha1}/llvm-org-compiler-rt-linux.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/llvm-org/compiler-rt-llvmorg-8.0.0-4-gd563e33a79-bgae3b177eaa-linux-amd64.tar.gz"; }
- rec { sha1 = "a990b2dba1c706f5c43c56fedfe70bad9a695852"; name = "LLVM_WRAPPER_${sha1}/llvm-wrapper.jar"; url = "mirror://maven/org/bytedeco/javacpp-presets/llvm/6.0.1-1.4.2/llvm-6.0.1-1.4.2.jar"; }
- rec { sha1 = "decbd95d46092fa9afaf2523b5b23d07ad7ad6bc"; name = "LLVM_WRAPPER_${sha1}/llvm-wrapper.sources.jar"; url = "mirror://maven/org/bytedeco/javacpp-presets/llvm/6.0.1-1.4.2/llvm-6.0.1-1.4.2-sources.jar"; }
- rec { sha1 = "cfa6a0259d98bff5aa8d41ba11b4d1dad648fbaa"; name = "JAVACPP_${sha1}/javacpp.jar"; url = "mirror://maven/org/bytedeco/javacpp/1.4.2/javacpp-1.4.2.jar"; }
- rec { sha1 = "fdb2d2c17f6b91cdd5421554396da8905f0dfed2"; name = "JAVACPP_${sha1}/javacpp.sources.jar"; url = "mirror://maven/org/bytedeco/javacpp/1.4.2/javacpp-1.4.2-sources.jar"; }
- rec { sha1 = "702ca2d0ae93841c5ab75e4d119b29780ec0b7d9"; name = "NINJA_SYNTAX_${sha1}/ninja-syntax.tar.gz"; url = "https://pypi.org/packages/source/n/ninja_syntax/ninja_syntax-1.7.2.tar.gz"; }
- rec { sha1 = "f2cfb09cee12469ff64f0d698b13de19903bb4f7"; name = "NanoHTTPD-WebSocket_${sha1}/nanohttpd-websocket.jar"; url = "mirror://maven/org/nanohttpd/nanohttpd-websocket/2.3.1/nanohttpd-websocket-2.3.1.jar"; }
- rec { sha1 = "a8d54d1ca554a77f377eff6bf9e16ca8383c8f6c"; name = "NanoHTTPD_${sha1}/nanohttpd.jar"; url = "mirror://maven/org/nanohttpd/nanohttpd/2.3.1/nanohttpd-2.3.1.jar"; }
- rec { sha1 = "946f8aa9daa917dd81a8b818111bec7e288f821a"; name = "ANTLR4_${sha1}/antlr4.jar"; url = "mirror://maven/org/antlr/antlr4-runtime/4.7.1/antlr4-runtime-4.7.1.jar"; }
- rec { sha1 = "c3aeac59c022bdc497c8c48ed86fa50450e4896a"; name = "JLINE_${sha1}/jline.jar"; url = "mirror://maven/jline/jline/2.14.6/jline-2.14.6.jar"; }
- rec { sha1 = "d0bdc21c5e6404726b102998e44c66a738897905"; name = "JAVA_ALLOCATION_INSTRUMENTER_${sha1}/java-allocation-instrumenter.jar"; url = "mirror://maven/com/google/code/java-allocation-instrumenter/java-allocation-instrumenter/3.1.0/java-allocation-instrumenter-3.1.0.jar"; }
- rec { sha1 = "0da08b8cce7bbf903602a25a3a163ae252435795"; name = "ASM5_${sha1}/asm5.jar"; url = "mirror://maven/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar"; }
- rec { sha1 = "396ce0c07ba2b481f25a70195c7c94922f0d1b0b"; name = "ASM_TREE5_${sha1}/asm-tree5.jar"; url = "mirror://maven/org/ow2/asm/asm-tree/5.0.4/asm-tree-5.0.4.jar"; }
- rec { sha1 = "280c265b789e041c02e5c97815793dfc283fb1e6"; name = "LIBFFI_SOURCES_${sha1}/libffi-sources.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/libffi-3.2.1.tar.gz"; }
- rec { sha1 = "8819cea8bfe22c9c63f55465e296b3855ea41786"; name = "TruffleJSON_${sha1}/trufflejson.jar"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/trufflejson-20180130.jar"; }
- rec { sha1 = "9712a8124c40298015f04a74f61b3d81a51513af"; name = "CHECKSTYLE_8.8_${sha1}/checkstyle-8.8.jar"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/checkstyle-8.8-all.jar"; }
- rec { sha1 = "8dc5a90bed5f51d7538d05b8c31c31b7dfddbd66"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-20.tar.gz"; }
- rec { sha1 = "e6e60889b7211a80b21052a249bd7e0f88f79fee"; name = "Java-WebSocket_${sha1}/java-websocket.jar"; url = "mirror://maven/org/java-websocket/Java-WebSocket/1.3.9/Java-WebSocket-1.3.9.jar"; }
- rec { sha1 = "7a4d00d5ec5febd252a6182e8b6e87a0a9821f81"; name = "ICU4J_${sha1}/icu4j.jar"; url = "mirror://maven/com/ibm/icu/icu4j/62.1/icu4j-62.1.jar"; }
- # This duplication of asm with underscore and minus is totally weird
- rec { sha1 = "c01b6798f81b0fc2c5faa70cbe468c275d4b50c7"; name = "ASM-6.2.1_${sha1}/asm-6.2.1.jar"; url = "mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar"; }
- rec { sha1 = "cee28077ac7a63d3de0b205ec314d83944ff6267"; name = "ASM-6.2.1_${sha1}/asm-6.2.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1-sources.jar"; }
- rec { sha1 = "332b022092ecec53cdb6272dc436884b2d940615"; name = "ASM_TREE-6.2.1_${sha1}/asm-tree-6.2.1.jar"; url = "mirror://maven/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar"; }
- rec { sha1 = "072bd64989090e4ed58e4657e3d4481d96f643af"; name = "ASM_TREE-6.2.1_${sha1}/asm-tree-6.2.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1-sources.jar"; }
- rec { sha1 = "e8b876c5ccf226cae2f44ed2c436ad3407d0ec1d"; name = "ASM_ANALYSIS-6.2.1_${sha1}/asm-analysis-6.2.1.jar"; url = "mirror://maven/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar"; }
- rec { sha1 = "b0b249bd185677648692e7c57b488b6d7c2a6653"; name = "ASM_ANALYSIS-6.2.1_${sha1}/asm-analysis-6.2.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1-sources.jar"; }
- rec { sha1 = "eaf31376d741a3e2017248a4c759209fe25c77d3"; name = "ASM_COMMONS-6.2.1_${sha1}/asm-commons-6.2.1.jar"; url = "mirror://maven/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar"; }
- rec { sha1 = "667fa0f9d370e7848b0e3d173942855a91fd1daf"; name = "ASM_COMMONS-6.2.1_${sha1}/asm-commons-6.2.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1-sources.jar"; }
- # From here on the deps are new
- rec { sha1 = "400d664d7c92a659d988c00cb65150d1b30cf339"; name = "ASM_UTIL-6.2.1_${sha1}/asm-util-6.2.1.jar"; url = "mirror://maven/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1.jar"; }
- rec { sha1 = "c9f7246bf93bb0dc7fe9e7c9eca531a8fb98d252"; name = "ASM_UTIL-6.2.1_${sha1}/asm-util-6.2.1.sources.jar"; url = "mirror://maven/org/ow2/asm/asm-util/6.2.1/asm-util-6.2.1-sources.jar"; }
- rec { sha1 = "4b52bd03014f6d080ef0528865c1ee50621e35c6"; name = "NETBEANS_PROFILER_${sha1}/netbeans-profiler.jar"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/truffle/js/org-netbeans-lib-profiler-8.2-201609300101.jar"; }
- rec { sha1 = "b5840706cc8ce639fcafeab1bc61da2d8aa37afd"; name = "NASHORN_INTERNAL_TESTS_${sha1}/nashorn-internal-tests.jar"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/truffle/js/nashorn-internal-tests-700f5e3f5ff2.jar"; }
- rec { sha1 = "9577018f9ce3636a2e1cb0a0c7fe915e5098ded5"; name = "JACKSON_ANNOTATIONS_${sha1}/jackson-annotations.jar"; url = "mirror://maven/com/fasterxml/jackson/core/jackson-annotations/2.8.6/jackson-annotations-2.8.6.jar"; }
- rec { sha1 = "2ef7b1cc34de149600f5e75bc2d5bf40de894e60"; name = "JACKSON_CORE_${sha1}/jackson-core.jar"; url = "mirror://maven/com/fasterxml/jackson/core/jackson-core/2.8.6/jackson-core-2.8.6.jar"; }
- rec { sha1 = "c43de61f74ecc61322ef8f402837ba65b0aa2bf4"; name = "JACKSON_DATABIND_${sha1}/jackson-databind.jar"; url = "mirror://maven/com/fasterxml/jackson/core/jackson-databind/2.8.6/jackson-databind-2.8.6.jar"; }
- rec { sha1 = "2838952e91baa37ac73ed817451268a193ba440a"; name = "JCODINGS_${sha1}/jcodings.jar"; url = "mirror://maven/org/jruby/jcodings/jcodings/1.0.40/jcodings-1.0.40.jar"; }
- rec { sha1 = "0ed89e096c83d540acac00d6ee3ea935b4c905ff"; name = "JCODINGS_${sha1}/jcodings.sources.jar"; url = "mirror://maven/org/jruby/jcodings/jcodings/1.0.40/jcodings-1.0.40-sources.jar"; }
- rec { sha1 = "5dbb09787a9b8780737b71fbf942235ef59051b9"; name = "JONI_${sha1}/joni.jar"; url = "mirror://maven/org/jruby/joni/joni/2.1.25/joni-2.1.25.jar"; }
- rec { sha1 = "505a09064f6e2209616f38724f6d97d8d889aa92"; name = "JONI_${sha1}/joni.sources.jar"; url = "mirror://maven/org/jruby/joni/joni/2.1.25/joni-2.1.25-sources.jar"; }
- rec { sha1 = "c4f7d054303948eb6a4066194253886c8af07128"; name = "XZ-1.8_${sha1}/xz-1.8.jar"; url = "mirror://maven/org/tukaani/xz/1.8/xz-1.8.jar"; }
- rec { sha1 = "9314d3d372b05546a33791fbc8dd579c92ebd16b"; name = "GNUR_${sha1}/gnur.tar.gz"; url = "http://cran.rstudio.com/src/base/R-3/R-3.5.1.tar.gz"; }
- rec { sha1 = "90aa8308da72ae610207d8f6ca27736921be692a"; name = "ANTLR4_COMPLETE_${sha1}/antlr4-complete.jar"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/antlr-4.7.1-complete.jar"; }] ++
- lib.optionals stdenv.isLinux [
- rec { sha1 = "df4c1f784294d02a82d78664064248283bfcc297"; name = "LLVM_ORG_${sha1}/llvm-org.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/llvm-org/llvm-llvmorg-8.0.0-4-gd563e33a79-bgae3b177eaa-linux-amd64.tar.gz"; }
- rec { sha1 = "344483aefa15147c121a8fb6fb35a2406768cc5c"; name = "LLVM_PLATFORM_SPECIFIC_${sha1}/llvm-platform-specific.jar"; url = "mirror://maven/org/bytedeco/javacpp-presets/llvm/6.0.1-1.4.2/llvm-6.0.1-1.4.2-linux-x86_64.jar"; }
- rec { sha1 = "fd1a723d62cbbc591041d303e8b151d89f131643"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-20-linux-amd64.tar.gz"; }
- rec { sha1 = "987234c4ce45505c21302e097c24efef4873325c"; name = "NINJA_${sha1}/ninja.zip"; url = "https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip";
- isNinja = true; }] ++
- lib.optionals stdenv.isDarwin [
- rec { sha1 = "0fa1af180755fa4cc018ee9be33f2d7d827593c4"; name = "LLVM_ORG_${sha1}/llvm-org.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/llvm-org/llvm-llvmorg-8.0.0-4-gd563e33a79-bgae3b177eaa-darwin-amd64.tar.gz"; }
- rec { sha1 = "57bc74574104a9e0a2dc4d7a71ffcc5731909e57"; name = "LLVM_PLATFORM_SPECIFIC_${sha1}/llvm-platform-specific.jar"; url = "mirror://maven/org/bytedeco/javacpp-presets/llvm/6.0.1-1.4.2/llvm-6.0.1-1.4.2-macosx-x86_64.jar"; }
- rec { sha1 = "ae23bb365930f720acc88c62640bae6852a37d67"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-20-macosx-x86_64.tar.gz"; }
- rec { sha1 = "8142c497f7dfbdb052a1e31960fdfe2c6f9a5ca2"; name = "NINJA_${sha1}/ninja.zip"; url = "https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-mac.zip";
- isNinja = true; }];
-
- graal-mxcachegit = [
- { sha256 = "01w39ms39gl3cw7c2fgcacr2yjg94im9x2x7p5g94l6xlcgqvcnr"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; }
- { sha256 = "1dps9n5b9c80pbg1fmlwpffy6ina0f0h27di24kafc8isxrdggia"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; }
- { sha256 = "0jdpdqm3ld1wsasmi8ka26qf19cibjac8lrqm040h5vh0iqzxizy"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; }
- { sha256 = "1gv8vafwrafjzvgv4gwk4kcsb3bnvsx07qa5inc0bdyxy5shl381"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; }];
-
- ninja-syntax = python27.pkgs.buildPythonPackage rec {
- version = "1.7.2";
- pname = "ninja_syntax";
- doCheck = false;
- src = python27.pkgs.fetchPypi {
- inherit pname version;
- sha256 = "07zg30m0khx55fv2gxxn7pqd549z0vk3x592mrdlk9l8krxwjb9l";
- };
- };
-
- findbugs = fetchzip {
- name = "findbugs-3.0.0";
- url = "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/findbugs-3.0.0.zip";
- sha256 = "0sf5f9h1s6fmhfigjy81i109j1ani5kzdr4njlpq0mnkkh9fpr7m";
- };
-
- python27withPackages = python27.withPackages (ps: [ ninja-syntax ]);
-
-in rec {
-
- mx = stdenv.mkDerivation rec {
- version = "5.247.1";
- pname = "mx";
- src = fetchFromGitHub {
- owner = "graalvm";
- repo = "mx";
- rev = version;
- sha256 = "038qr49rqzkhj76nqd27h8fysssnlpdhmy23ks2y81xlxhlzkc59";
- };
- nativeBuildInputs = [ makeWrapper ];
- prePatch = ''
- cp mx.py bak_mx.py
- '';
- patches = [ ./001_mx.py.patch ];
- postPatch = ''
- mv mx.py internal_mx.py
- mv bak_mx.py mx.py
- '';
- buildPhase = ''
- substituteInPlace mx --replace /bin/pwd pwd
-
- # avoid crash with 'ValueError: ZIP does not support timestamps before 1980'
- substituteInPlace internal_mx.py --replace \
- 'zipfile.ZipInfo(arcname, time.localtime(getmtime(join(root, f)))[:6])' \
- 'zipfile.ZipInfo(arcname, time.strptime ("1 Jan 1980", "%d %b %Y" )[:6])'
- '';
- installPhase = ''
- mkdir -p $out/bin
- cp -dpR * $out/bin
- wrapProgram $out/bin/mx \
- --prefix PATH : ${lib.makeBinPath [ python27withPackages mercurial ]} \
- --set FINDBUGS_HOME ${findbugs}
- makeWrapper ${python27}/bin/python $out/bin/mx-internal \
- --add-flags "$out/bin/internal_mx.py" \
- --prefix PATH : ${lib.makeBinPath [ python27withPackages mercurial ]} \
- --set FINDBUGS_HOME ${findbugs}
- '';
- meta = with lib; {
- homepage = "https://github.com/graalvm/mx";
- description = "Command-line tool used for the development of Graal projects";
- license = licenses.gpl2;
- platforms = python27.meta.platforms;
- };
- };
-
- jvmci8 = stdenv.mkDerivation rec {
- version = "19.3-b05";
- pname = "jvmci";
- src = fetchFromGitHub {
- owner = "graalvm";
- repo = "graal-jvmci-8";
- rev = "jvmci-${version}";
- sha256 = "0j7my76vldbrvki9x1gn9ics3x2z96j05jdy4nflbpik8i396114";
- };
- buildInputs = [ mx mercurial openjdk ] ++ lib.optionals stdenv.isDarwin [
- libobjc CoreFoundation Foundation JavaNativeFoundation JavaRuntimeSupport JavaVM xcodebuild Cocoa
- ];
- postUnpack = ''
- # a fake mercurial dir to prevent mx crash and supply the version to mx
- ( cd $sourceRoot
- hg init
- hg add
- hg commit -m 'dummy commit'
- hg tag ${lib.escapeShellArg src.rev}
- hg checkout ${lib.escapeShellArg src.rev}
- )
- '';
- patches = [ ./004_mx_jvmci.py.patch ] ++
- lib.optional stdenv.isDarwin [
- ./008_remove_jfr.patch ];
- postPatch =''
- # The hotspot version name regex fix
- substituteInPlace mx.jvmci/mx_jvmci.py \
- --replace "\\d+.\\d+-b\\d+" "\\d+.\\d+-b[g\\d][a\\d]"
- # darwin: https://github.com/oracle/graal/issues/1816
- substituteInPlace src/share/vm/code/compiledIC.cpp \
- --replace 'entry == false' '*entry == false'
- '';
- hardeningDisable = [ "fortify" ];
- NIX_CFLAGS_COMPILE = toString (lib.optional stdenv.isDarwin [
- "-Wno-reserved-user-defined-literal"
- "-Wno-c++11-narrowing"
- ] ++
- lib.optional stdenv.isLinux [
- "-Wno-error=format-overflow" # newly detected by gcc7
- "-Wno-error=nonnull"
- ]);
-
- buildPhase = ''
- export MX_ALT_OUTPUT_ROOT=$NIX_BUILD_TOP/mxbuild
- export MX_CACHE_DIR=${makeMxCache jvmci8-mxcache}
-
- mx-internal --primary-suite . --vm=server -v build -DFULL_DEBUG_SYMBOLS=0
- mx-internal --primary-suite . --vm=server -v vm -version
- mx-internal --primary-suite . --vm=server -v unittest
- '';
- installPhase = ''
- mkdir -p $out
- ${if stdenv.isDarwin
- then "mv openjdk1.8.0_*/darwin-amd64/product/* $out"
- else "mv openjdk1.8.0_*/linux-amd64/product/* $out"}
- install -v -m0555 -D $MX_CACHE_DIR/hsdis*/hsdis.so $out/jre/lib/amd64/hsdis-amd64.so
- '';
- # copy-paste openjdk's preFixup
- preFixup = ''
- # Propagate the setJavaClassPath setup hook from the JRE so that
- # any package that depends on the JRE has $CLASSPATH set up
- # properly.
- mkdir -p $out/nix-support
- printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
-
- # Set JAVA_HOME automatically.
- mkdir -p $out/nix-support
- cat < $out/nix-support/setup-hook
- if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out; fi
- EOF
- '';
- postFixup = openjdk.postFixup or null;
- dontStrip = true; # stripped javac crashes with "segmentaion fault"
- inherit (openjdk) meta;
- };
-
- graalvm8 = stdenv.mkDerivation rec {
- inherit version;
- pname = "graal";
- src = fetchFromGitHub {
- owner = "oracle";
- repo = "graal";
- rev = "vm-${version}";
- sha256 = "0v8zkmzkyhmmmvra5pp876d4i4ijrrw15j98ipayc7is02kwiwmq";
- };
-
- patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ] ++
- lib.optional stdenv.isDarwin [
- ./009_remove_signedness_verifier.patch ./010_mx_substratevm.py
- ];
-
- nativeBuildInputs = [ gfortran ];
-
- buildInputs = [ mx zlib.dev mercurial jvmci8 git llvm clang
- python27withPackages icu ruby bzip2 which
- readline bzip2 xz pcre curl ed
- ] ++ lib.optional stdenv.isDarwin [
- CoreFoundation gcc.cc.lib libiconv perl openssl
- ];
-
- postUnpack = ''
- ${lib.optionalString stdenv.isLinux ''
- cp ${stdenv.cc.cc}/include/c++/${lib.getVersion stdenv.cc.cc}/stdlib.h \
- $sourceRoot/sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/include
- ''}
- cp ${truffleMake} $TMPDIR/truffle.make
- rm $sourceRoot/truffle/src/libffi/patches/others/0001-Add-mx-bootstrap-Makefile.patch
-
- # a fake mercurial dir to prevent mx crash and supply the version to mx
- ( cd $sourceRoot
- hg init
- hg add
- hg commit -m 'dummy commit'
- hg tag ${lib.escapeShellArg src.rev}
- hg checkout ${lib.escapeShellArg src.rev}
- )
-
- # make a copy of jvmci8
- mkdir $NIX_BUILD_TOP/jvmci8
- cp -dpR ${jvmci8}/* $NIX_BUILD_TOP/jvmci8
- chmod +w -R $NIX_BUILD_TOP/jvmci8
- export MX_CACHE_DIR=${makeMxCache graal-mxcache}
- export MX_GIT_CACHE_DIR=$NIX_BUILD_TOP/mxgitcache
- ${makeMxGitCache graal-mxcachegit "$MX_GIT_CACHE_DIR"}
- cd $TMPDIR
- '';
-
- postPatch = ''
- substituteInPlace substratevm/src/com.oracle.svm.core.posix/src/com/oracle/svm/core/posix/headers/PosixDirectives.java \
- --replace '' '<${zlib.dev}/include/zlib.h>'
- substituteInPlace substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image/CCLinkerInvocation.java \
- --replace 'cmd.add("-v");' 'cmd.add("-v"); cmd.add("-L${zlib}/lib");'
-
- # For debugging native-image build, add this replace statement on CCompilerInvoker.java
- # --replace '(String line : lines) {' '(String line : lines) {System.out.println("DEBUG: " + line);'
- ${if stdenv.isLinux then ''
- substituteInPlace substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/codegen/CCompilerInvoker.java \
- --replace 'command.add(Platform.includedIn(Platform.WINDOWS.class) ? "CL" : "gcc");' \
- 'command.add(Platform.includedIn(Platform.WINDOWS.class) ? "CL" : "${stdenv.cc}/bin/gcc");' ''
- else ''
- substituteInPlace substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/c/codegen/CCompilerInvoker.java \
- --replace 'command.add(Platform.includedIn(Platform.WINDOWS.class) ? "CL" : "gcc");' \
- 'command.add(Platform.includedIn(Platform.WINDOWS.class) ? "CL" : "${gcc.cc}/bin/gcc");
- command.add("-F"); command.add("${CoreFoundation}/Library/Frameworks");
- command.add("-framework"); command.add("CoreFoundation");'
- ''}
-
- # prevent cyclical imports caused by identical names
- substituteInPlace substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image/CCLinkerInvocation.java \
- --replace 'protected String compilerCommand = "cc";' 'protected String compilerCommand = "${stdenv.cc}/bin/cc";'
- # dragonegg can't seem to compile on nix, so let's not require it
- substituteInPlace sulong/mx.sulong/suite.py \
- --replace '"requireDragonegg" : True,' '"requireDragonegg" : False,'
- substituteInPlace truffle/mx.truffle/mx_truffle.py \
- --replace 'os.path.relpath(self.subject.delegate.dir, self.subject.suite.vc_dir)' \
- 'self.subject.delegate.dir'
- substituteInPlace sulong/projects/bootstrap-toolchain-launchers/Makefile \
- --replace /bin/bash ${bash}/bin/bash
- # Patch the native-image template, as it will be run during build
- chmod +x vm/mx.vm/launcher_template.sh && patchShebangs vm/mx.vm
- # Prevent random errors from too low maxRuntimecompilemethods
- substituteInPlace truffle/mx.truffle/macro-truffle.properties \
- --replace '-H:MaxRuntimeCompileMethods=1400' \
- '-H:MaxRuntimeCompileMethods=28000'
- ${lib.optionalString stdenv.isDarwin ''
- substituteInPlace truffle/src/com.oracle.truffle.nfi.test.native/src/object.cc \
- --replace '#include ' ""
- ''}
- ${lib.optionalString stdenv.isLinux ''
- substituteInPlace sulong/projects/com.oracle.truffle.llvm.libraries.bitcode/include/stdlib.h \
- --replace '# include ' '# include "${stdenv.cc.cc}/include/c++/${lib.getVersion stdenv.cc.cc}/cstdlib"'
- ''}
- '';
-
- buildPhase = ''
- export MX_ALT_OUTPUT_ROOT=$NIX_BUILD_TOP/mxbuild
- export MX_GIT_CACHE='refcache'
- export JVMCI_VERSION_CHECK='ignore'
- export JAVA_HOME=$NIX_BUILD_TOP/jvmci8
- export FASTR_RELEASE=true
- export PKG_LDFLAGS_OVERRIDE="-L${pcre.out}/lib -L${zlib}/lib -L${gfortran.cc.lib}/lib64"
- ${lib.optionalString stdenv.isDarwin ''
- export CC="gcc"
- export CPP="gcc -E"
- export NIX_CXXSTDLIB_LINK=""
- export NIX_CXXSTDLIB_LINK_FOR_TARGET=""
- export OPENSSL_PREFIX=$(realpath openssl)
- # this fixes error: impure path 'LibFFIHeaderDirectives' used in link
- export NIX_ENFORCE_PURITY=0
- ''}
- ( cd vm
- mx-internal -v --suite sdk --suite compiler --suite vm --suite tools --suite regex --suite truffle \
- --dynamicimports /substratevm,/sulong,graal-js,graalpython,fastr,truffleruby build
- )
- '';
-
- installPhase =
- (if stdenv.isDarwin then ''
- mkdir -p $out
- rm -rf $MX_ALT_OUTPUT_ROOT/vm/darwin-amd64/GRAALVM_*STAGE1*
- cp -rf $MX_ALT_OUTPUT_ROOT/vm/darwin-amd64/GRAALVM*/graalvm-unknown-${version}/* $out
- ''
- else ''
- mkdir -p $out
- rm -rf $MX_ALT_OUTPUT_ROOT/vm/linux-amd64/GRAALVM_*STAGE1*
- cp -rf $MX_ALT_OUTPUT_ROOT/vm/linux-amd64/GRAALVM*/graalvm-unknown-${version}/* $out
-
- # BUG workaround http://mail.openjdk.java.net/pipermail/graal-dev/2017-December/005141.html
- substituteInPlace $out/jre/lib/security/java.security \
- --replace file:/dev/random file:/dev/./urandom \
- --replace NativePRNGBlocking SHA1PRNG
- # copy static and dynamic libraries needed for static compilation
- cp -rf ${glibc}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/
- cp ${glibc.static}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/
- cp ${zlib.static}/lib/libz.a $out/jre/lib/svm/clibraries/linux-amd64/libz.a
- '');
-
- inherit (jvmci8) preFixup;
- dontStrip = true; # stripped javac crashes with "segmentaion fault"
- doInstallCheck = true;
- installCheckPhase = ''
- echo ${lib.escapeShellArg ''
- public class HelloWorld {
- public static void main(String[] args) {
- System.out.println("Hello World");
- }
- }
- ''} > HelloWorld.java
- $out/bin/javac HelloWorld.java
-
- # run on JVM with Graal Compiler
- $out/bin/java -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler HelloWorld
- $out/bin/java -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler HelloWorld | fgrep 'Hello World'
-
- # Ahead-Of-Time compilation
- $out/bin/native-image --no-server HelloWorld
- ./helloworld
- ./helloworld | fgrep 'Hello World'
-
- ${lib.optionalString stdenv.isLinux
- ''
- # Ahead-Of-Time compilation with --static (supported on linux only)
- $out/bin/native-image --no-server --static HelloWorld
- ./helloworld
- ./helloworld | fgrep 'Hello World'
- ''}
- '';
- enableParallelBuilding = true;
- passthru.home = graalvm8;
-
- meta = with lib; {
- homepage = "https://github.com/oracle/graal";
- description = "High-Performance Polyglot VM";
- license = licenses.gpl2;
- maintainers = with maintainers; [ volth hlolli ];
- platforms = [ "x86_64-linux" "x86_64-darwin" /*"aarch64-linux"*/ ];
- };
- };
-}
diff --git a/third_party/nixpkgs/pkgs/development/compilers/graalvm/truffle.make b/third_party/nixpkgs/pkgs/development/compilers/graalvm/truffle.make
deleted file mode 100644
index ec357446a5..0000000000
--- a/third_party/nixpkgs/pkgs/development/compilers/graalvm/truffle.make
+++ /dev/null
@@ -1,16 +0,0 @@
-# This Makefile is used by mx to bootstrap libffi build.
-
-# `make MX_VERBOSE=y` will report all lines executed. The actual value doesn't
-# matter as long as it's not empty.
-
-QUIETLY$(MX_VERBOSE) = @
-
-.PHONY: default
-
-default:
- sed -i "s|-print-multi-os-directory||g" ../$(SOURCES)/configure
- $(QUIETLY) echo CONFIGURE libffi
- $(QUIETLY) mkdir ../$(OUTPUT)
- $(QUIETLY) cd ../$(OUTPUT) && ../$(SOURCES)/configure $(CONFIGURE_ARGS)
- $(QUIETLY) echo MAKE libffi
- $(QUIETLY) $(MAKE) -C ../$(OUTPUT)
diff --git a/third_party/nixpkgs/pkgs/development/compilers/nextpnr/default.nix b/third_party/nixpkgs/pkgs/development/compilers/nextpnr/default.nix
index bb233e34c1..07d301187a 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/nextpnr/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/nextpnr/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake
-, boost, python3, eigen
+, boost, python3, eigen, python3Packages
, icestorm, trellis
, llvmPackages
@@ -39,17 +39,18 @@ stdenv.mkDerivation rec {
= [ cmake ]
++ (lib.optional enableGui wrapQtAppsHook);
buildInputs
- = [ boostPython python3 eigen ]
+ = [ boostPython python3 eigen python3Packages.apycula ]
++ (lib.optional enableGui qtbase)
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
cmakeFlags =
[ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}"
- "-DARCH=generic;ice40;ecp5"
+ "-DARCH=generic;ice40;ecp5;gowin"
"-DBUILD_TESTS=ON"
"-DICESTORM_INSTALL_PREFIX=${icestorm}"
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
"-DTRELLIS_LIBDIR=${trellis}/lib/trellis"
+ "-DGOWIN_BBA_EXECUTABLE=${python3Packages.apycula}/bin/gowin_bba"
"-DUSE_OPENMP=ON"
# warning: high RAM usage
"-DSERIALIZE_CHIPDBS=OFF"
@@ -74,6 +75,7 @@ stdenv.mkDerivation rec {
wrapQtApp $out/bin/nextpnr-generic
wrapQtApp $out/bin/nextpnr-ice40
wrapQtApp $out/bin/nextpnr-ecp5
+ wrapQtApp $out/bin/nextpnr-gowin
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix b/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
index 7434347f2a..c4be7c27d8 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/nim/default.nix
@@ -72,15 +72,17 @@ let
nimHost = parsePlatform stdenv.hostPlatform;
nimTarget = parsePlatform stdenv.targetPlatform;
- bootstrapCompiler = stdenv.mkDerivation rec {
+ bootstrapCompiler = let
+ revision = "561b417c65791cd8356b5f73620914ceff845d10";
+ in stdenv.mkDerivation {
pname = "nim-bootstrap";
- version = "0.20.0";
+ version = "g${lib.substring 0 7 revision}";
src = fetchgit {
# A Git checkout is much smaller than a GitHub tarball.
- url = "https://github.com/nim-lang/csources.git";
- rev = "v${version}";
- sha256 = "0i6vsfy1sgapx43n226q8m0pvn159sw2mhp50zm3hhb9zfijanis";
+ url = "https://github.com/nim-lang/csources_v1.git";
+ rev = revision;
+ sha256 = "1c2k681knrha1zmf4abhb32i2wwd3nwflzylnqryxk753swla043";
};
enableParallelBuilding = true;
@@ -96,12 +98,12 @@ in {
nim-unwrapped = stdenv.mkDerivation rec {
pname = "nim-unwrapped";
- version = "1.4.8";
+ version = "1.6.0";
strictDeps = true;
src = fetchurl {
url = "https://nim-lang.org/download/nim-${version}.tar.xz";
- hash = "sha256-t5jFd0EdfZW4YxJh27Nnbp0a/Z42dA0ESWagVVtBRBo=";
+ hash = "sha256-UgZdSNcqcnAuwa/l96mDHhFnNTHiec3/nK7AGgfuxj0=";
};
buildInputs = [ boehmgc openssl pcre readline sqlite ];
@@ -112,7 +114,7 @@ in {
./nixbuild.patch
# Load libraries at runtime by absolute path
- ];
+ ] ++ lib.optional (!stdenv.hostPlatform.isWindows) ./toLocation.patch;
configurePhase = ''
runHook preConfigure
diff --git a/third_party/nixpkgs/pkgs/development/compilers/nim/nim.cfg.patch b/third_party/nixpkgs/pkgs/development/compilers/nim/nim.cfg.patch
index a95b672d1c..7195132e52 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/nim/nim.cfg.patch
+++ b/third_party/nixpkgs/pkgs/development/compilers/nim/nim.cfg.patch
@@ -1,5 +1,5 @@
diff --git a/config/nim.cfg b/config/nim.cfg
-index a33a2f0a9..e069193ff 100644
+index 3b964d124..850ed0ed9 100644
--- a/config/nim.cfg
+++ b/config/nim.cfg
@@ -8,26 +8,12 @@
@@ -29,42 +29,3 @@ index a33a2f0a9..e069193ff 100644
path="$lib/deprecated/core"
path="$lib/deprecated/pure"
path="$lib/pure/collections"
-@@ -111,7 +97,7 @@ path="$lib/pure"
- @end
-
- @if unix:
-- @if not bsd or haiku:
-+ @if not bsd or genode or haiku:
- # -fopenmp
- gcc.options.linker = "-ldl"
- gcc.cpp.options.linker = "-ldl"
-@@ -295,29 +281,6 @@ vcc.cpp.options.size = "/O1"
- # Configuration for the Tiny C Compiler:
- tcc.options.always = "-w"
-
--# Configuration for the Genode toolchain
--@if genode:
-- noCppExceptions # avoid std C++
-- tlsEmulation:on # no TLS segment register magic
-- @if i386 or amd64:
-- gcc.exe = "genode-x86-gcc"
-- gcc.cpp.exe = "genode-x86-g++"
-- gcc.cpp.linkerexe = "genode-x86-ld"
-- @elif arm:
-- gcc.exe = "genode-arm-gcc"
-- gcc.cpp.exe = "genode-arm-g++"
-- gcc.cpp.linkerexe = "genode-arm-ld"
-- @elif arm64:
-- gcc.exe = "genode-aarch64-gcc"
-- gcc.cpp.exe = "genode-aarch64-g++"
-- gcc.cpp.linkerexe = "genode-aarch64-ld"
-- @elif riscv64:
-- gcc.exe = "genode-riscv-gcc"
-- gcc.cpp.exe = "genode-riscv-g++"
-- gcc.cpp.linkerexe = "genode-riscv-ld"
-- @end
--@end
--
- @if arm or arm64:
- --define:nimEmulateOverflowChecks
- @end
diff --git a/third_party/nixpkgs/pkgs/development/compilers/nim/toLocation.patch b/third_party/nixpkgs/pkgs/development/compilers/nim/toLocation.patch
new file mode 100644
index 0000000000..a3db460440
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/compilers/nim/toLocation.patch
@@ -0,0 +1,16 @@
+diff --git a/lib/std/private/miscdollars.nim b/lib/std/private/miscdollars.nim
+index 840fedf54..6c3436308 100644
+--- a/lib/std/private/miscdollars.nim
++++ b/lib/std/private/miscdollars.nim
+@@ -6,9 +6,8 @@ template toLocation*(result: var string, file: string | cstring, line: int, col:
+ # it can be done in a single place.
+ result.add file
+ if line > 0:
+- result.add "("
++ result.add ":"
+ addInt(result, line)
+ if col > 0:
+- result.add ", "
++ result.add ":"
+ addInt(result, col)
+- result.add ")"
diff --git a/third_party/nixpkgs/pkgs/development/compilers/tinycc/default.nix b/third_party/nixpkgs/pkgs/development/compilers/tinycc/default.nix
index bb08b113ad..b46dee899a 100644
--- a/third_party/nixpkgs/pkgs/development/compilers/tinycc/default.nix
+++ b/third_party/nixpkgs/pkgs/development/compilers/tinycc/default.nix
@@ -19,12 +19,15 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
- "--cc=cc"
+ "--cc=$CC"
+ "--ar=$AR"
"--crtprefix=${lib.getLib stdenv.cc.libc}/lib"
"--sysincludepaths=${lib.getDev stdenv.cc.libc}/include:{B}/include"
"--libpaths=${lib.getLib stdenv.cc.libc}/lib"
# build cross compilers
"--enable-cross"
+ ] ++ lib.optionals stdenv.hostPlatform.isMusl [
+ "--config-musl"
];
preConfigure = ''
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
index 812029e597..1afa282a17 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
@@ -1272,10 +1272,21 @@ self: super: {
gi-cairo-render = doJailbreak super.gi-cairo-render;
gi-cairo-connector = doJailbreak super.gi-cairo-connector;
- # Remove when https://github.com/gtk2hs/svgcairo/pull/10 gets merged.
- svgcairo = appendPatch super.svgcairo (pkgs.fetchpatch {
- url = "https://github.com/gtk2hs/svgcairo/commit/df6c6172b52ecbd32007529d86ba9913ba001306.patch";
- sha256 = "128qrns56y139vfzg1rbyqfi2xn8gxsmpnxv3zqf4v5spsnprxwh";
+ svgcairo = overrideCabal super.svgcairo (drv: {
+ patches = [
+ # Remove when https://github.com/gtk2hs/svgcairo/pull/10 gets merged.
+ (pkgs.fetchpatch {
+ url = "https://github.com/gtk2hs/svgcairo/commit/df6c6172b52ecbd32007529d86ba9913ba001306.patch";
+ sha256 = "128qrns56y139vfzg1rbyqfi2xn8gxsmpnxv3zqf4v5spsnprxwh";
+ })
+ # The update here breaks svgcairo:
+ # https://github.com/NixOS/nixpkgs/commit/08fcd73d9dc9a28aa901210b259d9bfb3c228018
+ # and updating the call to the header with the correct name fixes it.
+ (pkgs.fetchpatch {
+ url = "https://github.com/dalpd/svgcairo/commit/4dc6d8d3a6c24be0b8c1fd73b282ff247e7b1e6f.patch";
+ sha256 = "1pq9ld9z67zsxj8vqjf82qwckcp69lvvnrjb7wsyb5jc6jaj3q0a";
+ })
+ ];
});
# Missing -Iinclude parameter to doc-tests (pull has been accepted, so should be resolved when 0.5.3 released)
@@ -2039,4 +2050,8 @@ EOT
network = self.network_3_1_2_5;
});
+ # Fixes https://github.com/NixOS/nixpkgs/issues/140613
+ # https://github.com/recursion-schemes/recursion-schemes/issues/128
+ recursion-schemes = appendPatch super.recursion-schemes ./patches/recursion-schemes-128.patch;
+
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
index f8e6cdb819..87cf1c8683 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
@@ -166,7 +166,7 @@ self: super: {
# 2021-09-18: Need path >= 0.9.0 for ghc 9 compat
path = self.path_0_9_0;
# 2021-09-18: Need ormolu >= 0.3.0.0 for ghc 9 compat
- ormolu = doDistribute self.ormolu_0_3_0_1;
+ ormolu = doDistribute self.ormolu_0_3_1_0;
# 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2206
# Restrictive upper bound on ormolu
hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin;
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
index e31771a3e2..ece3daf3b3 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
@@ -67,13 +67,18 @@ self: super: {
postPatch = "sed -i -e 's,<4.16,<4.17,' basement.cabal";
});
+ base16-bytestring = appendPatch super.base16-bytestring (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/base16-bytestring-1.0.1.0.patch";
+ sha256 = "19ajai9y04981zfpcdj1nlz44b12gjj4m1ncciijv43mnz82plji";
+ });
+
# Duplicate Show instances in tests and library cause compiling tests to fail
blaze-builder = appendPatch (dontCheck super.blaze-builder) (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/blaze-builder-0.4.2.1.patch";
sha256 = "1h5ny3mlng69vwaabl3af8hlv4qi24wfw8s14lw2ksw1yjbgi0j8";
});
- cereal = appendPatch super.cereal (pkgs.fetchpatch {
+ cereal = appendPatch (doJailbreak super.cereal) (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/cereal-0.5.8.1.patch";
sha256 = "03v4nxwz9y6viaa8anxcmp4zdf2clczv4pf9fqq6lnpplpz5i128";
});
@@ -91,9 +96,9 @@ self: super: {
sha256 = "1g48lrmqgd88hqvfq3klz7lsrpwrir2v1931myrhh6dy0d9pqj09";
});
- # cabal-install needs more recent versions of Cabal and base16-bytestring.
+ # cabal-install needs more recent versions of Cabal
cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: {
- Cabal = null;
+ Cabal = self.Cabal_3_6_2_0;
});
doctest = appendPatch (dontCheck (doJailbreak super.doctest_0_18_1)) (pkgs.fetchpatch {
@@ -145,8 +150,50 @@ self: super: {
type-equality = doJailbreak super.type-equality;
vector = doJailbreak (dontCheck super.vector);
vector-binary-instances = doJailbreak super.vector-binary-instances;
- vector-th-unbox = doJailbreak super.vector-th-unbox;
zlib = doJailbreak super.zlib;
+ indexed-traversable-instances = doJailbreak super.indexed-traversable-instances;
+
+ hpack = overrideCabal (doJailbreak super.hpack) (drv: {
+ # Cabal 3.6 seems to preserve comments when reading, which makes this test fail
+ # 2021-10-10: 9.2.1 is not yet supported (also no issue)
+ testFlags = [
+ "--skip=/Hpack/renderCabalFile/is inverse to readCabalFile/"
+ ] ++ drv.testFlags or [];
+ });
+
+ # Patch for TH code from head.hackage
+ vector-th-unbox = appendPatch (doJailbreak super.vector-th-unbox) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/vector-th-unbox-0.2.1.9.patch";
+ sha256 = "02bvvy3hx3cf4y4dr64zl5pjvq8giwk4286j5g1n6k8ikyn2403p";
+ });
+
+ # Patch for TH code from head.hackage
+ invariant = appendPatch (doJailbreak super.invariant) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/invariant-0.5.4.patch";
+ sha256 = "17gg8ck4r6qmlbcbpbnqzksgf5q7i891zs6axfzhas6ajncylxvc";
+ });
+
+ # base 4.15 support from head.hackage
+ lens = appendPatch (doJailbreak super.lens_5_0_1) (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/lens-5.0.1.patch";
+ sha256 = "1s8qqg7ymvv94dnfnr1ragx91chh9y7ydc4jx25zn361wbn00pv7";
+ });
+
+ semigroupoids = overrideCabal super.semigroupoids (drv: {
+ # Patch from head.hackage for base 4.15 compat
+ patches = drv.patches or [] ++ [
+ (pkgs.fetchpatch {
+ url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/semigroupoids-5.3.5.patch";
+ sha256 = "0xrn1gv6b2n76522pk2nfp4z69kvp14l2zpif2f8zzz6cwcrx9w8";
+ })
+ ];
+ # acrobatics to make the patch apply
+ prePatch = ''
+ find . -type f | xargs -L 1 ${pkgs.buildPackages.dos2unix}/bin/dos2unix
+ '';
+ editedCabalFile = null;
+ revision = null;
+ });
# Syntax error in tests fixed in https://github.com/simonmar/alex/commit/84b29475e057ef744f32a94bc0d3954b84160760
alex = dontCheck super.alex;
@@ -171,9 +218,6 @@ self: super: {
# The test suite indirectly depends on random, which leads to infinite recursion
random = dontCheck super.random_1_2_1;
- # 5 introduced support for GHC 9.0.x, but hasn't landed in stackage yet
- lens = super.lens_5_0_1;
-
# 0.16.0 introduced support for GHC 9.0.x, stackage has 0.15.0
memory = appendPatch super.memory_0_16_0 (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/memory-0.16.0.patch";
@@ -195,10 +239,12 @@ self: super: {
# https://github.com/Soostone/retry/issues/71
retry = dontCheck super.retry;
- streaming-commons = appendPatch super.streaming-commons (pkgs.fetchpatch {
+ # Disable tests pending resolution of
+ # https://github.com/haskell/text/issues/380 or https://github.com/fpco/streaming-commons/issues/60
+ streaming-commons = dontCheck (appendPatch super.streaming-commons (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/streaming-commons-0.2.2.1.patch";
sha256 = "04wi1jskr3j8ayh88kkx4irvhhgz0i7aj6fblzijy0fygikvidpy";
- });
+ }));
# hlint 3.3 needs a ghc-lib-parser newer than the one from stackage
hlint = super.hlint_3_3_4.overrideScope (self: super: {
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
index 0bd4b31a15..743657a1e3 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
@@ -742,7 +742,6 @@ broken-packages:
- commodities
- commonmark-cli
- commsec
- - compactable
- Compactable
- compact-list
- compact-map
@@ -1435,6 +1434,7 @@ broken-packages:
- flamethrower
- flamingra
- flat-maybe
+ - flatparse
- flay
- flexible-time
- flickr
@@ -2404,6 +2404,7 @@ broken-packages:
- htssets
- http2-client
- http2-grpc-proto-lens
+ - http3
- http-attoparsec
- http-client-lens
- http-client-request-modifiers
@@ -2846,6 +2847,7 @@ broken-packages:
- linear-algebra-cblas
- linear-base
- linear-code
+ - linear-generics
- linear-maps
- linear-opengl
- linearscan
@@ -4717,7 +4719,6 @@ broken-packages:
- SVD2HS
- svfactor
- svg-builder-fork
- - svgcairo
- svgutils
- svm-light-utils
- svm-simple
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
index 2e0fa14b66..e6a1c1e1be 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
@@ -149,6 +149,8 @@ package-maintainers:
- pretty-simple
- spago
- termonad
+ dalpd:
+ - svgcairo
domenkozar:
- cachix
- cachix-api
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
index 7d516aa93d..0b96cad468 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
@@ -331,15 +331,9 @@ dont-distribute-packages:
- Shellac-haskeline
- Shellac-readline
- ShortestPathProblems
- - Shpadoinkle-backend-pardiff
- - Shpadoinkle-backend-static
- - Shpadoinkle-developer-tools
- Shpadoinkle-disembodied
- Shpadoinkle-examples
- - Shpadoinkle-html
- Shpadoinkle-router
- - Shpadoinkle-template
- - Shpadoinkle-widgets
- SimpleGL
- SimpleLog
- SimpleServer
@@ -733,9 +727,9 @@ dont-distribute-packages:
- claferwiki
- clash
- clash-ghc
- - clash-ghc_1_4_4
+ - clash-ghc_1_4_5
- clash-lib
- - clash-lib_1_4_4
+ - clash-lib_1_4_5
- clash-multisignal
- clash-prelude-quickcheck
- clash-shake
@@ -1075,6 +1069,7 @@ dont-distribute-packages:
- every-bit-counts
- exception-monads-fd
- exference
+ - exon
- expand
- expat-enumerator
- expiring-containers
@@ -2313,6 +2308,7 @@ dont-distribute-packages:
- mkbndl
- mlist
- mmark-cli
+ - mmark-cli_0_0_5_1
- mmark-ext
- mmtl-base
- moan
@@ -2631,7 +2627,6 @@ dont-distribute-packages:
- proto3-suite
- protobuf-native
- protocol-buffers-descriptor-fork
- - proton
- psc-ide
- puffytools
- pugs-compat
@@ -3443,6 +3438,7 @@ dont-distribute-packages:
- xml-push
- xml-query-xml-conduit
- xml-query-xml-types
+ - xml-syntax
- xml-tydom-conduit
- xml2x
- xmltv
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix b/third_party/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
index cf6245bf32..0ab3b8de21 100644
--- a/third_party/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
@@ -11730,6 +11730,23 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "JuicyPixels_3_3_6" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl
+ , primitive, transformers, vector, zlib
+ }:
+ mkDerivation {
+ pname = "JuicyPixels";
+ version = "3.3.6";
+ sha256 = "1f8giivsqxma19ax78dr7j4gir12iyfqn2mlsd27zzl8dn7dy6w1";
+ libraryHaskellDepends = [
+ base binary bytestring containers deepseq mtl primitive
+ transformers vector zlib
+ ];
+ description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"JuicyPixels-blp" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring, directory
, filepath, hashable, JuicyPixels, optparse-simple, text-show
@@ -18419,7 +18436,6 @@ self: {
];
description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shpadoinkle-backend-snabbdom" = callPackage
@@ -18450,7 +18466,6 @@ self: {
libraryHaskellDepends = [ base compactable Shpadoinkle text ];
description = "A backend for rendering Shpadoinkle as Text";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shpadoinkle-console" = callPackage
@@ -18496,7 +18511,6 @@ self: {
];
description = "Chrome extension to aide in development";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shpadoinkle-disembodied" = callPackage
@@ -18567,7 +18581,6 @@ self: {
];
description = "A typed, template generated Html DSL, and helpers";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shpadoinkle-isreal" = callPackage
@@ -18662,7 +18675,6 @@ self: {
];
description = "Read standard file formats into Shpadoinkle with Template Haskell";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shpadoinkle-widgets" = callPackage
@@ -18687,7 +18699,6 @@ self: {
];
description = "A collection of common reusable types and components";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"Shrub" = callPackage
@@ -20685,6 +20696,8 @@ self: {
pname = "ValveValueKeyvalue";
version = "1.0.1.0";
sha256 = "05m75nhsz1a2zb59lkdmkv7wznljhr76k7qm2pia37dj8h5zywcy";
+ revision = "1";
+ editedCabalFile = "1d4n0kqypzrcbxaq43aiw5zaq12ncws5c50ckyzvky4cs208g0is";
libraryHaskellDepends = [ base parsec ];
description = "A Valve Value-keyvalue parser for Haskell made with Parsec";
license = lib.licenses.mit;
@@ -20873,8 +20886,8 @@ self: {
({ mkDerivation, base, bytestring, transformers, vector, vulkan }:
mkDerivation {
pname = "VulkanMemoryAllocator";
- version = "0.7.1";
- sha256 = "1h9kz02s7ams9fw9x8k947nzji2b82s9xn2yvqzys14ypzc34qpn";
+ version = "0.7.2";
+ sha256 = "1hdiwm79qmf24rx1wcmc48ykbiy3pfnn0kbg77wfp0rnq7qlcknc";
libraryHaskellDepends = [
base bytestring transformers vector vulkan
];
@@ -24634,6 +24647,19 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "aeson-commit_1_4" = callPackage
+ ({ mkDerivation, aeson, aeson-qq, base, hspec, mtl, text }:
+ mkDerivation {
+ pname = "aeson-commit";
+ version = "1.4";
+ sha256 = "1xbck5hcbfqm2kc3yzrl1dzdmjl9zf84vc33ird3c50ny884amwa";
+ libraryHaskellDepends = [ aeson base mtl text ];
+ testHaskellDepends = [ aeson aeson-qq base hspec text ];
+ description = "Parse Aeson data with commitment";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"aeson-compat" = callPackage
({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base
, base-compat, base-orphans, bytestring, containers, exceptions
@@ -25008,8 +25034,8 @@ self: {
}:
mkDerivation {
pname = "aeson-match-qq";
- version = "1.2.0";
- sha256 = "000dna5xs5ybhr4vyla6ndj7ykk7lphg4dbcp7nn13746fnnggs2";
+ version = "1.3.0";
+ sha256 = "1jxw5rg8sj0913h9ldknhikpq7avlwj0lmqx613zsr9kv4yhz1qh";
libraryHaskellDepends = [
aeson attoparsec base bytestring either haskell-src-meta scientific
template-haskell text unordered-containers vector
@@ -30610,8 +30636,8 @@ self: {
}:
mkDerivation {
pname = "ansi-terminal-game";
- version = "1.2.0.0";
- sha256 = "167zld2dwb1l81w1n8iiqdgxx8805sirr9lsacn1ni8cfzzl2gf6";
+ version = "1.2.1.0";
+ sha256 = "1gzqf0dby0w25nbz6lzlb4b7jgxydv09wqfcvbcfjwn0wg76wfvc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -32885,6 +32911,29 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
+ "argo" = callPackage
+ ({ mkDerivation, array, base, bytestring, deepseq, tasty
+ , tasty-bench, tasty-hunit, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "argo";
+ version = "0.2021.10.13";
+ sha256 = "1jlw1v0kzcapc0ziax15hxgvb86q7cby7dpsqlrygw0y72w05w9q";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ array base bytestring deepseq text ];
+ executableHaskellDepends = [ array base bytestring deepseq text ];
+ testHaskellDepends = [
+ array base bytestring deepseq tasty tasty-hunit tasty-quickcheck
+ text
+ ];
+ benchmarkHaskellDepends = [
+ array base bytestring deepseq tasty-bench text
+ ];
+ description = "Parse and render JSON";
+ license = lib.licenses.mit;
+ }) {};
+
"argon" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal
, containers, directory, docopt, filepath, ghc, ghc-paths
@@ -43803,6 +43852,8 @@ self: {
pname = "bitwise-enum";
version = "1.0.1.0";
sha256 = "0vmdr8csmxwab7s4nmqdfpqdssivh90fddk94i8wkwj1la867y1z";
+ revision = "1";
+ editedCabalFile = "0g4w46bv0pj52v3kfcc41g9m750il67fg78n54s91p6jam6l0r6h";
libraryHaskellDepends = [
aeson array base deepseq mono-traversable vector
];
@@ -44784,6 +44835,8 @@ self: {
pname = "bloodhound";
version = "0.16.0.0";
sha256 = "0g4x2g0qmwgfrz39iwwagrr7p19fmmz1fpfk29bkmvqvbfvsjgqz";
+ revision = "1";
+ editedCabalFile = "129sx2n094p2y7k8hf1cpr84hw2z9lk37l1w515r85n09ckkyb2l";
libraryHaskellDepends = [
aeson base blaze-builder bytestring containers exceptions hashable
http-client http-types mtl network-uri scientific semigroups semver
@@ -45110,6 +45163,8 @@ self: {
pname = "bnb-staking-csvs";
version = "0.2.0.0";
sha256 = "1m2bd6cwlgavq3nri3xwbqim2zikzv1dxqf5a5gxkqra1qgbvm4v";
+ revision = "1";
+ editedCabalFile = "066nk1wjxlwh1dqhgr4yalch45w09p032whbvs5rin18airixyk3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -47418,6 +47473,28 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "bugzilla-redhat_0_3_3" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection
+ , containers, hspec, http-conduit, http-types, iso8601-time
+ , resourcet, text, time, transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "bugzilla-redhat";
+ version = "0.3.3";
+ sha256 = "1nslky0rc868hyx11s0bvlz6r4mvagknhwmnlqvgcnlfbg6xni4d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring connection containers
+ http-conduit http-types iso8601-time resourcet text time
+ transformers unordered-containers vector
+ ];
+ testHaskellDepends = [ aeson base hspec time ];
+ description = "A Haskell interface to the Bugzilla native REST API";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"build" = callPackage
({ mkDerivation, algebraic-graphs, base, containers, extra
, filepath, mtl, random, transformers
@@ -49099,6 +49176,8 @@ self: {
pname = "ca-province-codes";
version = "1.0.0.0";
sha256 = "1lhmmqn83v9bflm4x2nqbxx6pjh393id29syglinaqal4dvl5qq3";
+ revision = "1";
+ editedCabalFile = "0502zw8bbx6761s8dfnmbnw475y9x2ikk8s281j1fd1db3wdv17l";
libraryHaskellDepends = [ aeson base text ];
testHaskellDepends = [ aeson base hspec QuickCheck text ];
description = "ISO 3166-2:CA Province Codes and Names";
@@ -53476,6 +53555,8 @@ self: {
pname = "cereal";
version = "0.5.8.1";
sha256 = "1mqvd1iwzr50az4y24332x3g3wsrzw8j1iwph02vr7jbjfn8i7id";
+ revision = "1";
+ editedCabalFile = "02v1nivac478nzzykjbq3rawnqskxjc4sb54m6s5jcgbigfnb2x0";
libraryHaskellDepends = [
array base bytestring containers ghc-prim
];
@@ -56356,7 +56437,7 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
- "clash-ghc_1_4_4" = callPackage
+ "clash-ghc_1_4_5" = callPackage
({ mkDerivation, array, base, bifunctors, bytestring, Cabal
, clash-lib, clash-prelude, concurrent-supply, containers, deepseq
, directory, exceptions, extra, filepath, ghc, ghc-boot, ghc-prim
@@ -56368,8 +56449,8 @@ self: {
}:
mkDerivation {
pname = "clash-ghc";
- version = "1.4.4";
- sha256 = "0dcyf8q5n37v1arq7dyxbgg80j1dnh3i444v9p1p9rs93l2vfnab";
+ version = "1.4.5";
+ sha256 = "1qss6wic91fwbdjmi8bk5hwv282xs7rfxx4zhp0px5dqp2s8kc6v";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -56430,7 +56511,7 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
- "clash-lib_1_4_4" = callPackage
+ "clash-lib_1_4_5" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array
, attoparsec, base, base16-bytestring, binary, bytestring
, clash-prelude, concurrent-supply, containers, cryptohash-sha256
@@ -56447,8 +56528,8 @@ self: {
}:
mkDerivation {
pname = "clash-lib";
- version = "1.4.4";
- sha256 = "1s04m806mdx12mbg30qrx8w75mavs5r8g7dmf5k1v9jn97jk4gvs";
+ version = "1.4.5";
+ sha256 = "1xbh513l3xg2xh7s9zkqxp2qwf9p2qhmp0xbj91r706av1cilyxi";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson aeson-pretty ansi-terminal array attoparsec base
@@ -56530,7 +56611,7 @@ self: {
broken = true;
}) {};
- "clash-prelude_1_4_4" = callPackage
+ "clash-prelude_1_4_5" = callPackage
({ mkDerivation, array, arrows, base, bifunctors, binary
, bytestring, Cabal, cabal-doctest, constraints, containers
, criterion, data-binary-ieee754, data-default-class, deepseq
@@ -56545,8 +56626,8 @@ self: {
}:
mkDerivation {
pname = "clash-prelude";
- version = "1.4.4";
- sha256 = "14304dc9s91blh8ljv8hd3h6gsz0nr83fzf83xkr6mxkdlhzknd4";
+ version = "1.4.5";
+ sha256 = "0hikw8n0agjq5x4rfnklb9wixdbcn8snfh3rzb4r8j5b187j1brk";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
array arrows base bifunctors binary bytestring constraints
@@ -60744,8 +60825,6 @@ self: {
libraryHaskellDepends = [ base containers transformers vector ];
description = "A typeclass for structures which can be catMaybed, filtered, and partitioned";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- broken = true;
}) {};
"compactmap" = callPackage
@@ -63306,8 +63385,8 @@ self: {
}:
mkDerivation {
pname = "configuration-tools";
- version = "0.6.0";
- sha256 = "1lncsh3dfl8iz1yr2b0mmpcdyww3cbr3jglp85iqmpvzv66m2kbg";
+ version = "0.6.1";
+ sha256 = "1gindjq9vd0fmsw6smwd3syz3k3bfkzsgmchqg6jllr6bhgvykjy";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [
@@ -64052,8 +64131,8 @@ self: {
}:
mkDerivation {
pname = "consumers";
- version = "2.2.0.4";
- sha256 = "0rssm2ygr395djjzkrzcq3vylc83k58flwcpqb4cb3w1id55ph5r";
+ version = "2.2.0.5";
+ sha256 = "1ramqz680xfh47p5kijcp58nby687lm5vacfxpz57a3p01j39y8s";
libraryHaskellDepends = [
base containers exceptions extra hpqtypes lifted-base
lifted-threads log-base monad-control monad-time mtl stm time
@@ -74694,6 +74773,8 @@ self: {
pname = "deriving-aeson";
version = "0.2.7";
sha256 = "02mx8z1cgqn9wgwcp94am2g655hhn7sn12sikmm8jhbldnyv3ziz";
+ revision = "1";
+ editedCabalFile = "0qgkjl7h1d4w119a97wrsznnqys02mlkwv9hic1715swg0cp05ix";
libraryHaskellDepends = [ aeson base ];
testHaskellDepends = [ aeson base bytestring ];
description = "Type driven generic aeson instance customisation";
@@ -79114,8 +79195,8 @@ self: {
}:
mkDerivation {
pname = "distribution-nixpkgs";
- version = "1.6.1";
- sha256 = "136q893in07iw53m9pqr65h3mrnpvfda272bl4rq1b0z3hzpyhkm";
+ version = "1.6.2";
+ sha256 = "0kq4pf5dalifxd8qxz75fazfjspn36q0cmp8d1jd7w9zlzc3c4dz";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring Cabal containers deepseq language-nix lens
@@ -80030,14 +80111,14 @@ self: {
license = lib.licenses.bsd3;
}) {};
- "doclayout_0_3_1" = callPackage
+ "doclayout_0_3_1_1" = callPackage
({ mkDerivation, base, containers, criterion, emojis, mtl, safe
, tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text
}:
mkDerivation {
pname = "doclayout";
- version = "0.3.1";
- sha256 = "0cbb8l1m7w1ycf0pv8y9cbly9qxw3w5ngqbghj6qd5kk02my9zwj";
+ version = "0.3.1.1";
+ sha256 = "1p9kgjlf7y4p1symvkwndgs4lvyw2c45bsgld09y9r4aiqbhdrxp";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base containers emojis mtl safe text ];
testHaskellDepends = [
@@ -83400,6 +83481,8 @@ self: {
pname = "ede";
version = "0.3.2.0";
sha256 = "1y78l8b6wnl621nlfm3jwf9qskfnyd4ian1sxjsmk2jw22z1yp4d";
+ revision = "1";
+ editedCabalFile = "0zgz0d3qj8slkbsg4r7jdhnrr5zlq506hviq6kw20d78mafh16c0";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -89634,6 +89717,7 @@ self: {
];
description = "Monoidal Quasiquote Interpolation";
license = "BSD-2-Clause-Patent";
+ hydraPlatforms = lib.platforms.none;
}) {};
"exotic-list-monads" = callPackage
@@ -95012,23 +95096,26 @@ self: {
}) {};
"flatparse" = callPackage
- ({ mkDerivation, attoparsec, base, bytesmith, bytestring
- , containers, gauge, integer-gmp, megaparsec, parsec, primitive
+ ({ mkDerivation, attoparsec, base, bytestring, containers, gauge
+ , hspec, HUnit, integer-gmp, megaparsec, parsec, primitive
, template-haskell
}:
mkDerivation {
pname = "flatparse";
- version = "0.2.2.0";
- sha256 = "13cm882c2n0p52dwn802cqgfqrgkmlrb1kaxm2l89yfpb6wqynfz";
+ version = "0.3.0.0";
+ sha256 = "0x6q1dwk9zr9s7rx3knm127pjnkpcqmihdzajfcmvi0ayviq984i";
libraryHaskellDepends = [
base bytestring containers integer-gmp template-haskell
];
+ testHaskellDepends = [ base bytestring hspec HUnit ];
benchmarkHaskellDepends = [
- attoparsec base bytesmith bytestring gauge integer-gmp megaparsec
- parsec primitive
+ attoparsec base bytestring gauge integer-gmp megaparsec parsec
+ primitive
];
description = "High-performance parsing from strict bytestrings";
license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
}) {};
"flay" = callPackage
@@ -96689,6 +96776,21 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "forma_1_2_0" = callPackage
+ ({ mkDerivation, aeson, base, containers, hspec, mtl, text }:
+ mkDerivation {
+ pname = "forma";
+ version = "1.2.0";
+ sha256 = "13kyggzlf156d3d3mj453jwmafyz74vk4bim3f30zxyd6syl3m5v";
+ revision = "1";
+ editedCabalFile = "12336x0g41hp6brl4ynw0m32kj3n191945qfgp8xaabm5qrchinj";
+ libraryHaskellDepends = [ aeson base containers mtl text ];
+ testHaskellDepends = [ aeson base containers hspec mtl text ];
+ description = "Parse and validate forms in JSON format";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"formal" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, containers
, directory, file-embed, HTTP, indents, interpolatedstring-perl6
@@ -103078,6 +103180,8 @@ self: {
pname = "geojson";
version = "4.0.2";
sha256 = "0csbg4pdh686bxk689968bi94njx78iv1sm5g6lp915pg6cfnd66";
+ revision = "1";
+ editedCabalFile = "1ry2z0hwacbdwpxjbz1zfwc24094776xqshqdkq23r2gfgyy3m3k";
libraryHaskellDepends = [
aeson base containers deepseq lens scientific semigroups text
transformers validation vector
@@ -103174,18 +103278,20 @@ self: {
}) {inherit (pkgs) geos;};
"gerrit" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, directory
- , http-client, http-client-tls, tasty, tasty-hunit, text
+ ({ mkDerivation, aeson, aeson-casing, base, bytestring, containers
+ , directory, http-client, http-client-openssl, tasty, tasty-hunit
+ , text, time
}:
mkDerivation {
pname = "gerrit";
- version = "0.1.0.0";
- sha256 = "03lcf9xvyhypzkrs6lv7dnwsxnn52vnnl6mhsbbhmpv2bf59whq2";
+ version = "0.1.1.0";
+ sha256 = "0qkrcf0m2rq31sqd3fqij5c0yfp5pnzj2fx3dh9cwi7dqz24jwsg";
libraryHaskellDepends = [
- aeson base bytestring containers http-client http-client-tls text
+ aeson aeson-casing base bytestring containers http-client
+ http-client-openssl text time
];
testHaskellDepends = [
- aeson base bytestring directory tasty tasty-hunit
+ aeson base bytestring directory tasty tasty-hunit time
];
description = "A gerrit client library";
license = lib.licenses.asl20;
@@ -110410,6 +110516,8 @@ self: {
pname = "gogol-core";
version = "0.5.0";
sha256 = "0xvlrx4hzhwp3slinh8apnxlgxmispjjnmwsfbpi4p9n451ilx93";
+ revision = "1";
+ editedCabalFile = "0k6nhsl0jh233ym25fh03nc2gja6q27hcav1kbs9lfpyf0qdvvyl";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit dlist exceptions hashable http-api-data http-client
@@ -117151,6 +117259,8 @@ self: {
pname = "haddock-library";
version = "1.10.0";
sha256 = "15ak06q8yp11xz1hwr0sg2jqi3r78p1n89ik05hicqvxl3awf1pq";
+ revision = "1";
+ editedCabalFile = "1r2mz68415wq3l194ryki8r8p7n7h21033m1ixrpd259s4yq6zdp";
libraryHaskellDepends = [
base bytestring containers parsec text transformers
];
@@ -128639,8 +128749,8 @@ self: {
}:
mkDerivation {
pname = "hercules-ci-cli";
- version = "0.2.2";
- sha256 = "1n0dxpvjxi38whqh37d930rbic96gq13g7x8mi8skw164n9vha4g";
+ version = "0.2.3";
+ sha256 = "10scykaf8kadvgvc5pxjdyn8zvxqmp5gkdy0n82p4mmf2chmdzqz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132844,6 +132954,8 @@ self: {
pname = "hledger-stockquotes";
version = "0.1.2.0";
sha256 = "064q6qz6rrahk9ri5hr1y6n17nmd4l124xb3l8q5rvm81x3hzp3x";
+ revision = "1";
+ editedCabalFile = "1dbcvypi8kcrcy38wbvhaadhs2fwjw1kh3xzzq07ss30a7gg3k8y";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -136479,6 +136591,45 @@ self: {
license = lib.licenses.mit;
}) {};
+ "hpack_0_34_5" = callPackage
+ ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
+ , containers, cryptonite, deepseq, directory, filepath, Glob, hspec
+ , hspec-discover, http-client, http-client-tls, http-types, HUnit
+ , infer-license, interpolate, mockery, pretty, QuickCheck
+ , scientific, template-haskell, temporary, text, transformers
+ , unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "hpack";
+ version = "0.34.5";
+ sha256 = "0gmm6jgi1sgyilphww6apq1x04grqznm7xhyb7g1rj5j7my40ws2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob http-client http-client-tls
+ http-types infer-license pretty scientific text transformers
+ unordered-containers vector yaml
+ ];
+ executableHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob http-client http-client-tls
+ http-types infer-license pretty scientific text transformers
+ unordered-containers vector yaml
+ ];
+ testHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob hspec http-client http-client-tls
+ http-types HUnit infer-license interpolate mockery pretty
+ QuickCheck scientific template-haskell temporary text transformers
+ unordered-containers vector yaml
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "A modern format for Haskell packages";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"hpack-convert" = callPackage
({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring
, Cabal, containers, deepseq, directory, filepath, Glob, hspec
@@ -137065,10 +137216,10 @@ self: {
}:
mkDerivation {
pname = "hpqtypes-extras";
- version = "1.12.0.0";
- sha256 = "0pxidphf0qzfy5zv1q7qhp49bgglf3pqd6r91qq0iawnvgzcyi7z";
- revision = "2";
- editedCabalFile = "0gprlxfjdc6lxf2xazfr1wrna9whw6sh1jpv5rhp8bw0haslzl6j";
+ version = "1.12.0.1";
+ sha256 = "0qpydy2hg6fmwhwg0azgraxhjijfarns3syrv2an4ynfqcxrds9k";
+ revision = "1";
+ editedCabalFile = "1brrz8ddm0hw3c5w1mf1f8a14qk5c9wiav5a0l5fi6p1k86pfv4j";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash exceptions
extra fields-json hpqtypes lifted-base log-base monad-control mtl
@@ -140377,6 +140528,29 @@ self: {
license = lib.licenses.mit;
}) {inherit (pkgs) lua5_3;};
+ "hslua_1_3_0_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, exceptions, lua5_3
+ , mtl, QuickCheck, quickcheck-instances, tasty, tasty-hunit
+ , tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "hslua";
+ version = "1.3.0.2";
+ sha256 = "0p39xm0mmxzs5x6aim11qkb7npn0d9h7li2kwfhry0dijd1vm18i";
+ configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ];
+ libraryHaskellDepends = [
+ base bytestring containers exceptions mtl text
+ ];
+ librarySystemDepends = [ lua5_3 ];
+ testHaskellDepends = [
+ base bytestring containers exceptions mtl QuickCheck
+ quickcheck-instances tasty tasty-hunit tasty-quickcheck text
+ ];
+ description = "Bindings to Lua, an embeddable scripting language";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {inherit (pkgs) lua5_3;};
+
"hslua-aeson" = callPackage
({ mkDerivation, aeson, base, bytestring, hashable, hslua, hspec
, HUnit, ieee754, QuickCheck, quickcheck-instances, scientific
@@ -140478,6 +140652,8 @@ self: {
pname = "hslua-module-text";
version = "0.3.0.1";
sha256 = "1vmd15n905i2pcsx748hz3h9kv5nnv74y663rj57q8mp0b40cbfl";
+ revision = "1";
+ editedCabalFile = "04y4rjfgzsz3q3m2d7ph97ligxlld74v6vhhmncj0riyxdfvy6p9";
libraryHaskellDepends = [ base bytestring hslua text ];
testHaskellDepends = [
base hslua tasty tasty-hunit tasty-lua text
@@ -144668,6 +144844,8 @@ self: {
testToolDepends = [ hspec-discover ];
description = "HTTP/3 library";
license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
}) {};
"httpd-shed" = callPackage
@@ -165556,10 +165734,10 @@ self: {
}:
mkDerivation {
pname = "libarchive";
- version = "3.0.3.0";
- sha256 = "0zf2x317xkp7mnamm8aqp0wmc5xka6p6pljyadz0xbmy7ih55ylh";
+ version = "3.0.3.1";
+ sha256 = "1rkm6n2p41i6lxdfsrvpv5sbz2p3mgyp3xx6g437fcgjjbdsyx3q";
revision = "1";
- editedCabalFile = "0n0s9qfa6b0r2rwz834dlqqm68xz2hvlygzjw084dy85d6xmvl75";
+ editedCabalFile = "0r48nmczidz00l19cbmq05f766wipc9dwkqb3xsvbwwcazapbjkz";
setupHaskellDepends = [ base Cabal chs-cabal ];
libraryHaskellDepends = [
base bytestring composition-prelude deepseq dlist filepath mtl
@@ -167447,6 +167625,25 @@ self: {
broken = true;
}) {};
+ "linear-generics" = callPackage
+ ({ mkDerivation, base, containers, ghc-prim, hspec, hspec-discover
+ , template-haskell, th-abstraction
+ }:
+ mkDerivation {
+ pname = "linear-generics";
+ version = "0.1.0.1";
+ sha256 = "0ck7gx1chrxyyn7lwbv4gn15zxgfgg7ai0i6404jprvvh72j7b8r";
+ libraryHaskellDepends = [
+ base containers ghc-prim template-haskell th-abstraction
+ ];
+ testHaskellDepends = [ base hspec template-haskell ];
+ testToolDepends = [ hspec-discover ];
+ description = "Generic programming library for generalised deriving";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ broken = true;
+ }) {};
+
"linear-grammar" = callPackage
({ mkDerivation, base, containers, hspec, QuickCheck }:
mkDerivation {
@@ -175577,23 +175774,24 @@ self: {
}) {};
"matrix-client" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, base64, bytestring
- , doctest, exceptions, hashable, hspec, http-client
+ ({ mkDerivation, aeson, aeson-casing, aeson-pretty, base, base64
+ , bytestring, containers, exceptions, hashable, hspec, http-client
, http-client-tls, http-types, retry, SHA, text, time
, unordered-containers
}:
mkDerivation {
pname = "matrix-client";
- version = "0.1.1.0";
- sha256 = "13ncklhrwb10g6pki1zsli1gnja01ic9scil4f5nky8hdmaw9jq2";
+ version = "0.1.2.0";
+ sha256 = "18n5il56p3hr6iax2d1m0b7vximc0z4jzj0dav0rhv3yrwy8p5w2";
libraryHaskellDepends = [
- aeson base base64 bytestring exceptions hashable http-client
- http-client-tls http-types retry SHA text time unordered-containers
+ aeson aeson-casing base base64 bytestring containers exceptions
+ hashable http-client http-client-tls http-types retry SHA text time
+ unordered-containers
];
testHaskellDepends = [
- aeson aeson-pretty base base64 bytestring doctest exceptions
- hashable hspec http-client http-client-tls http-types retry SHA
- text time unordered-containers
+ aeson aeson-casing aeson-pretty base base64 bytestring containers
+ exceptions hashable hspec http-client http-client-tls http-types
+ retry SHA text time unordered-containers
];
description = "A matrix client library";
license = lib.licenses.asl20;
@@ -180073,8 +180271,8 @@ self: {
pname = "mmark";
version = "0.0.7.3";
sha256 = "1gfl9jhqm1jaqxi0yxd8r4z3ai5c3f1wv53vjs0ln84qjpcqp30s";
- revision = "1";
- editedCabalFile = "19yg41grkliim428x9cqwcynmjvkh83mqfyxiv2dc6fvid6fmcrk";
+ revision = "2";
+ editedCabalFile = "01cd2k4jz3f2ryhxdya8biypxdl44236mnavfqx7fm7bkjz4j5x0";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base case-insensitive containers deepseq dlist email-validate
@@ -180117,6 +180315,26 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
+ "mmark-cli_0_0_5_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory
+ , ghc-syntax-highlighter, gitrev, lucid, megaparsec, mmark
+ , mmark-ext, optparse-applicative, stache, text
+ }:
+ mkDerivation {
+ pname = "mmark-cli";
+ version = "0.0.5.1";
+ sha256 = "1an1rc7gdl2209d3agxx1dfl61zsc2wg5nx9cwdf50spmlgs3cr0";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson base bytestring directory ghc-syntax-highlighter gitrev lucid
+ megaparsec mmark mmark-ext optparse-applicative stache text
+ ];
+ description = "Command line interface to the MMark markdown processor";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"mmark-ext" = callPackage
({ mkDerivation, base, foldl, ghc-syntax-highlighter, hspec
, hspec-discover, lucid, microlens, mmark, modern-uri, skylighting
@@ -184597,18 +184815,21 @@ self: {
}) {};
"msu" = callPackage
- ({ mkDerivation, base, directory, filepath, mtl, parsec, process
- , xdg-basedir
+ ({ mkDerivation, aeson, aeson-casing, base, bytestring, directory
+ , errors, filepath, hspec, parsec, process, unliftio, yaml
}:
mkDerivation {
pname = "msu";
- version = "0.0.2";
- sha256 = "0bqzzk7y3dj60r02xn3cjlq955jzsrvcbq63pvav0w952bvxvx5c";
- isLibrary = false;
+ version = "0.2.0.0";
+ sha256 = "15a0i7jwcqzl3ajw369xp0d9ixf0hcy9dblhywjrbalnml890sx4";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
- base directory filepath mtl parsec process xdg-basedir
+ libraryHaskellDepends = [
+ aeson aeson-casing base bytestring directory parsec process
+ unliftio yaml
];
+ executableHaskellDepends = [ base directory filepath process ];
+ testHaskellDepends = [ base bytestring errors hspec ];
description = "Monitor Setup Utility";
license = lib.licenses.mit;
}) {};
@@ -186757,6 +186978,8 @@ self: {
pname = "mx-state-codes";
version = "1.0.0.0";
sha256 = "1jxw7hh24rqs1c5y4b7bmllvcwq3gsrrn0rixq9lzhn2915ykaq6";
+ revision = "1";
+ editedCabalFile = "1fl0953329z4an76287q1ic4hygzg3xzv2w0zv7dqgkpdz3qbjx7";
libraryHaskellDepends = [ aeson base text ];
testHaskellDepends = [ aeson base hspec QuickCheck text ];
description = "ISO 3166-2:MX State Codes and Names";
@@ -192897,8 +193120,8 @@ self: {
}:
mkDerivation {
pname = "nri-http";
- version = "0.1.0.1";
- sha256 = "11zrqfljnq922frbsyiwap8ayp8faq7cwbrmk0npg4qgv4gv2pz2";
+ version = "0.1.0.3";
+ sha256 = "1km4jv0g79455m3687cpihzz14pxg3wxw4r5b21mby7c8knzd1vl";
libraryHaskellDepends = [
aeson base bytestring conduit http-client http-client-tls
http-types mime-types network-uri nri-observability nri-prelude
@@ -192920,8 +193143,8 @@ self: {
}:
mkDerivation {
pname = "nri-kafka";
- version = "0.1.0.0";
- sha256 = "0ifdmli7arrlpmh1l4q974rv0bw3xirfk96xrahfab3zp36r4x3y";
+ version = "0.1.0.1";
+ sha256 = "0sybcf7lx0gqhi79h6d1rqx0ckyz38m86h87imrh4grgbikxaic5";
libraryHaskellDepends = [
aeson async base bytestring conduit containers hw-kafka-client
nri-env-parser nri-observability nri-prelude safe-exceptions stm
@@ -192964,23 +193187,50 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "nri-observability_0_1_1_2" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs
+ , bytestring, conduit, directory, hostname, http-client
+ , http-client-tls, nri-env-parser, nri-prelude, random
+ , safe-exceptions, stm, text, time, unordered-containers, uuid
+ }:
+ mkDerivation {
+ pname = "nri-observability";
+ version = "0.1.1.2";
+ sha256 = "0n4ap88ll5q86addjgfv8pf86zbnw1ic6wh7wc929fn4ygc6r2x5";
+ libraryHaskellDepends = [
+ aeson aeson-pretty async base bugsnag-hs bytestring conduit
+ directory hostname http-client http-client-tls nri-env-parser
+ nri-prelude random safe-exceptions stm text time
+ unordered-containers uuid
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty async base bugsnag-hs bytestring conduit
+ directory hostname http-client http-client-tls nri-env-parser
+ nri-prelude random safe-exceptions stm text time
+ unordered-containers uuid
+ ];
+ description = "Report log spans collected by nri-prelude";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"nri-postgresql" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, filepath
- , network, nri-env-parser, nri-observability, nri-prelude
- , postgresql-typed, resource-pool, resourcet, safe-exceptions
- , template-haskell, text, time
+ ({ mkDerivation, attoparsec, base, bytestring, filepath, network
+ , nri-env-parser, nri-observability, nri-prelude, postgresql-typed
+ , resource-pool, resourcet, safe-exceptions, template-haskell, text
+ , time
}:
mkDerivation {
pname = "nri-postgresql";
- version = "0.1.0.1";
- sha256 = "1kl5wriqdshhc2fjaicj60hrwrw2c6y8vrq2pv4fagn0gxa78fvc";
+ version = "0.1.0.2";
+ sha256 = "0rm76z57zvvsswd0dyqmq7m1mrvamiff5kawkcwy4k4xkn4yl3py";
libraryHaskellDepends = [
- aeson attoparsec base bytestring filepath network nri-env-parser
+ attoparsec base bytestring filepath network nri-env-parser
nri-observability nri-prelude postgresql-typed resource-pool
resourcet safe-exceptions template-haskell text time
];
testHaskellDepends = [
- aeson attoparsec base bytestring filepath network nri-env-parser
+ attoparsec base bytestring filepath network nri-env-parser
nri-observability nri-prelude postgresql-typed resource-pool
resourcet safe-exceptions template-haskell text time
];
@@ -193017,6 +193267,34 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "nri-prelude_0_6_0_4" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, async, auto-update, base
+ , bytestring, containers, directory, exceptions, filepath, ghc
+ , hedgehog, junit-xml, pretty-diff, pretty-show, safe-coloured-text
+ , safe-coloured-text-terminfo, safe-exceptions, terminal-size, text
+ , time, unix, vector
+ }:
+ mkDerivation {
+ pname = "nri-prelude";
+ version = "0.6.0.4";
+ sha256 = "0r2jgjrbjbkkvsk8ypg0d7r840qkadwinq0qyhng9bkjqrsrn78c";
+ libraryHaskellDepends = [
+ aeson aeson-pretty async auto-update base bytestring containers
+ directory exceptions filepath ghc hedgehog junit-xml pretty-diff
+ pretty-show safe-coloured-text safe-coloured-text-terminfo
+ safe-exceptions terminal-size text time unix vector
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty async auto-update base bytestring containers
+ directory exceptions filepath ghc hedgehog junit-xml pretty-diff
+ pretty-show safe-coloured-text safe-coloured-text-terminfo
+ safe-exceptions terminal-size text time unix vector
+ ];
+ description = "A Prelude inspired by the Elm programming language";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"nri-redis" = callPackage
({ mkDerivation, aeson, async, base, bytestring, conduit, hedis
, nri-env-parser, nri-observability, nri-prelude, resourcet
@@ -193024,8 +193302,8 @@ self: {
}:
mkDerivation {
pname = "nri-redis";
- version = "0.1.0.2";
- sha256 = "12z515bs17ig8ps1kq2pp1c80r6cn0rldvqa6rzfgc1nrd0p8hc9";
+ version = "0.1.0.3";
+ sha256 = "1mdzqvnx7gzr8j99c8nza40y518jg8ajxfrvdvf90gvbglknimb0";
libraryHaskellDepends = [
aeson async base bytestring conduit hedis nri-env-parser
nri-observability nri-prelude resourcet safe-exceptions text
@@ -193047,8 +193325,8 @@ self: {
}:
mkDerivation {
pname = "nri-test-encoding";
- version = "0.1.1.0";
- sha256 = "0k21hyd0kbgdg3kmfwy20vf21r6963ygybz1v84wjmfzqbc5fcq5";
+ version = "0.1.1.1";
+ sha256 = "07hrkjbyp07p0yryx92q0bjqkkjji4d952sxcm9j2w5mdvlc08mq";
libraryHaskellDepends = [
aeson aeson-pretty base bytestring filepath nri-prelude nri-redis
servant servant-auth-server servant-server text
@@ -198056,7 +198334,7 @@ self: {
license = lib.licenses.bsd3;
}) {};
- "ormolu_0_3_0_1" = callPackage
+ "ormolu_0_3_1_0" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, Cabal, containers
, Diff, directory, dlist, exceptions, filepath, ghc-lib-parser
, gitrev, hspec, hspec-discover, mtl, optparse-applicative, path
@@ -198064,8 +198342,8 @@ self: {
}:
mkDerivation {
pname = "ormolu";
- version = "0.3.0.1";
- sha256 = "1cp543ff0gng6v5l251fklrk73yqfgbymx824ldc7inwybmd6z03";
+ version = "0.3.1.0";
+ sha256 = "1517z6bi8ifzdmfclmqdiipi6zcnxagymf1sxr43sj2ipkglg2rs";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -199879,8 +200157,8 @@ self: {
({ mkDerivation }:
mkDerivation {
pname = "pandora";
- version = "0.4.6";
- sha256 = "0x1wnrdbri1jcpi2iva69rw6bs6i9y192fymjamrab0w69bd9p4y";
+ version = "0.4.7";
+ sha256 = "1kda661i18kzrfj38si48n1shbqxh30p1sz97cb871ni2hlqsarj";
description = "A box of patterns and paradigms";
license = lib.licenses.mit;
}) {};
@@ -204270,6 +204548,45 @@ self: {
maintainers = with lib.maintainers; [ psibi ];
}) {};
+ "persistent_2_13_2_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
+ , blaze-html, bytestring, conduit, containers, criterion, deepseq
+ , fast-logger, file-embed, hspec, http-api-data, lift-type
+ , monad-logger, mtl, path-pieces, QuickCheck, quickcheck-instances
+ , resource-pool, resourcet, scientific, shakespeare, silently
+ , template-haskell, text, th-lift-instances, time, transformers
+ , unliftio, unliftio-core, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "persistent";
+ version = "2.13.2.1";
+ sha256 = "13lp9i94f57qhifdmr1vnsrra34526f7kqa1sybcaj2jh2v3q85k";
+ revision = "1";
+ editedCabalFile = "15lx2kd8ijn91h65nhzxmd50hmmybhs6x6qfg5wnl3ylcmgi6glg";
+ libraryHaskellDepends = [
+ aeson attoparsec base base64-bytestring blaze-html bytestring
+ conduit containers fast-logger http-api-data lift-type monad-logger
+ mtl path-pieces resource-pool resourcet scientific silently
+ template-haskell text th-lift-instances time transformers unliftio
+ unliftio-core unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base base64-bytestring blaze-html bytestring
+ conduit containers fast-logger hspec http-api-data monad-logger mtl
+ path-pieces QuickCheck quickcheck-instances resource-pool resourcet
+ scientific shakespeare silently template-haskell text
+ th-lift-instances time transformers unliftio unliftio-core
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ base criterion deepseq file-embed template-haskell text
+ ];
+ description = "Type-safe, multi-backend data serialization";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ maintainers = with lib.maintainers; [ psibi ];
+ }) {};
+
"persistent-audit" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring
, getopt-generics, hashable, hspec, mongoDB, persistent
@@ -204722,6 +205039,40 @@ self: {
license = lib.licenses.mit;
}) {};
+ "persistent-postgresql_2_13_2_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
+ , conduit, containers, fast-logger, hspec, hspec-expectations
+ , hspec-expectations-lifted, http-api-data, HUnit, monad-logger
+ , mtl, path-pieces, persistent, persistent-qq, persistent-test
+ , postgresql-libpq, postgresql-simple, QuickCheck
+ , quickcheck-instances, resource-pool, resourcet
+ , string-conversions, text, time, transformers, unliftio
+ , unliftio-core, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "persistent-postgresql";
+ version = "2.13.2.1";
+ sha256 = "07pnr8m0nk43jaz6l293lzx4ivyqgnw94fjypazzm008b4irh7ir";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base blaze-builder bytestring conduit containers
+ monad-logger mtl persistent postgresql-libpq postgresql-simple
+ resource-pool resourcet string-conversions text time transformers
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers fast-logger hspec
+ hspec-expectations hspec-expectations-lifted http-api-data HUnit
+ monad-logger path-pieces persistent persistent-qq persistent-test
+ QuickCheck quickcheck-instances resourcet text time transformers
+ unliftio unliftio-core unordered-containers vector
+ ];
+ description = "Backend for the persistent library using postgresql";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"persistent-protobuf" = callPackage
({ mkDerivation, base, bytestring, persistent, protocol-buffers
, protocol-buffers-descriptor, template-haskell, text
@@ -205833,8 +206184,8 @@ self: {
}:
mkDerivation {
pname = "phonetic-languages-simplified-examples-array";
- version = "0.12.1.0";
- sha256 = "1scjdf6k36vqd4cdnsqwwhbb97dsicarrc320w4ybikr1rk42phd";
+ version = "0.13.0.0";
+ sha256 = "1zpbcp3ij8j2vmss511kvrzwzymnjmzqs628hv0n9nnzvgma5nn7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206442,6 +206793,21 @@ self: {
license = lib.licenses.mit;
}) {};
+ "pid1_0_1_3_0" = callPackage
+ ({ mkDerivation, base, directory, process, unix }:
+ mkDerivation {
+ pname = "pid1";
+ version = "0.1.3.0";
+ sha256 = "1m2i03ncgn1y6h2352pnvhcqzif45505vlnxh11xngvjx47f85a1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base directory process unix ];
+ executableHaskellDepends = [ base ];
+ description = "Do signal handling and orphan reaping for Unix PID1 init processes";
+ license = lib.licenses.mit;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"pidfile" = callPackage
({ mkDerivation, base, unix }:
mkDerivation {
@@ -209908,8 +210274,8 @@ self: {
}:
mkDerivation {
pname = "polysemy-check";
- version = "0.3.0.0";
- sha256 = "1m7m1mi7fbf1nj98c91qxhbnhyqxgb8y7ryj7bk1llinmp2lmwaz";
+ version = "0.5.0.0";
+ sha256 = "0ch8dzzap6f6bfdyy8i9xdna9l7d3yvx9m7z3pz9pjb19vjxa3f6";
libraryHaskellDepends = [
base containers kind-generics kind-generics-th polysemy QuickCheck
];
@@ -216875,7 +217241,6 @@ self: {
transformers
];
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
}) {};
"proton-haskell" = callPackage
@@ -217706,25 +218071,26 @@ self: {
"pure-zlib" = callPackage
({ mkDerivation, array, base, base-compat, bytestring
- , bytestring-builder, containers, filepath, fingertree, HUnit
+ , bytestring-builder, containers, criterion, filepath, HUnit
, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, time
}:
mkDerivation {
pname = "pure-zlib";
- version = "0.6.7";
- sha256 = "1ddj88zk94gqqhxiyvkachvhwi5n2la4pfaf5vppkc9ma7sjhyhn";
+ version = "0.6.8";
+ sha256 = "10rlgzq6p93irnhlh8hzj040xbf8gn8swszbkrmaln0b2kk1mncb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array base base-compat bytestring bytestring-builder containers
- fingertree
];
executableHaskellDepends = [ base base-compat bytestring ];
testHaskellDepends = [
base base-compat bytestring filepath HUnit QuickCheck tasty
tasty-hunit tasty-quickcheck
];
- benchmarkHaskellDepends = [ base base-compat bytestring time ];
+ benchmarkHaskellDepends = [
+ base base-compat bytestring criterion time
+ ];
description = "A Haskell-only implementation of zlib / DEFLATE";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
@@ -217751,6 +218117,27 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "pureMD5_2_1_4" = callPackage
+ ({ mkDerivation, base, binary, bytestring, cereal, crypto-api
+ , crypto-api-tests, pretty-hex, QuickCheck, tagged, test-framework
+ , test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "pureMD5";
+ version = "2.1.4";
+ sha256 = "0qwkvxwi9wh6knn69rg2hvc8ngmv1if77kmpcnp0xqr0l30fwavq";
+ libraryHaskellDepends = [
+ base binary bytestring cereal crypto-api tagged
+ ];
+ testHaskellDepends = [
+ base binary bytestring cereal crypto-api-tests pretty-hex
+ QuickCheck test-framework test-framework-quickcheck2
+ ];
+ description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"purebred-email" = callPackage
({ mkDerivation, attoparsec, base, base64-bytestring, bytestring
, case-insensitive, concise, deepseq, hedgehog, lens, QuickCheck
@@ -223316,6 +223703,8 @@ self: {
pname = "reanimate-svg";
version = "0.13.0.1";
sha256 = "1h31r0lrslxqfayh06955p1kv35g42g3drmqp4miydk6zibyn091";
+ revision = "1";
+ editedCabalFile = "1g8cqw8a4vy7pp9ic02d49564vd61px2kld1pin0la9f3vk5f296";
libraryHaskellDepends = [
attoparsec base bytestring containers double-conversion hashable
JuicyPixels lens linear mtl scientific text transformers vector xml
@@ -227575,20 +227964,18 @@ self: {
maintainers = with lib.maintainers; [ maralorn ];
}) {};
- "req_3_9_1" = callPackage
+ "req_3_9_2" = callPackage
({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder
, bytestring, case-insensitive, connection, exceptions, hspec
, hspec-core, hspec-discover, http-api-data, http-client
, http-client-tls, http-types, modern-uri, monad-control, mtl
, QuickCheck, retry, template-haskell, text, time, transformers
- , transformers-base, unliftio-core, unordered-containers
+ , transformers-base, unliftio-core
}:
mkDerivation {
pname = "req";
- version = "3.9.1";
- sha256 = "0468ah4142jrqp5l3pw4izrw6f6kznisan888b30jhif4c6xncr0";
- revision = "3";
- editedCabalFile = "0xx161kb3j1givixs489yhd6zgiscajbn6hdkf00pdkwqdy59k75";
+ version = "3.9.2";
+ sha256 = "17xkj5pypn4k6ncsahjc0h827kg3cyx5iy5q6iv1gvk8dwdiim0g";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson authenticate-oauth base blaze-builder bytestring
@@ -227600,7 +227987,7 @@ self: {
testHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive hspec
hspec-core http-client http-types modern-uri monad-control mtl
- QuickCheck retry template-haskell text time unordered-containers
+ QuickCheck retry template-haskell text time
];
testToolDepends = [ hspec-discover ];
doCheck = false;
@@ -238229,8 +238616,10 @@ self: {
}:
mkDerivation {
pname = "servant-benchmark";
- version = "0.2.0.0";
- sha256 = "0dxyq9n0v09287nz1nqb2m0bdyabdzqig9avpmx4viyf9xzyh6bd";
+ version = "0.1.2.0";
+ sha256 = "0lqqk410nx48g895pfxkbbk85b1ijs4bfl9zr2li2p7wwwc4gyi9";
+ revision = "3";
+ editedCabalFile = "17pj6n143lpk5nsr6j8j1a6fj45y1bv61jcm16m0fwsdmhv01866";
libraryHaskellDepends = [
aeson base base64-bytestring bytestring case-insensitive http-media
http-types QuickCheck servant text yaml
@@ -249245,8 +249634,8 @@ self: {
pname = "solana-staking-csvs";
version = "0.1.1.0";
sha256 = "0ya63vgh0nf4p7hz6fj38m44wr77jj76bf2qxdgra3lpiziqsjd5";
- revision = "1";
- editedCabalFile = "14l72fkvvmiy1hmn2v3nxgx4s5z0zzyi3qf4l1i1cn54a0ln35q6";
+ revision = "2";
+ editedCabalFile = "1f55xdlmfj5g5r7dr71aw878g3ii9zaxj24znc370j2gd182nr13";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -252032,6 +252421,39 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "stache_2_3_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, criterion
+ , deepseq, directory, file-embed, filepath, gitrev, hspec
+ , hspec-discover, hspec-megaparsec, megaparsec, mtl
+ , optparse-applicative, template-haskell, text, vector, yaml
+ }:
+ mkDerivation {
+ pname = "stache";
+ version = "2.3.1";
+ sha256 = "1a26pwg6y90588yf9sp18w4b2ahr64fxdhy1c3zv0c9pw7bv6k6q";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers deepseq directory filepath
+ megaparsec mtl template-haskell text vector
+ ];
+ executableHaskellDepends = [
+ aeson base filepath gitrev optparse-applicative text yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers file-embed hspec hspec-megaparsec
+ megaparsec template-haskell text yaml
+ ];
+ testToolDepends = [ hspec-discover ];
+ benchmarkHaskellDepends = [
+ aeson base criterion deepseq megaparsec text
+ ];
+ description = "Mustache templates for Haskell";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"stack" = callPackage
({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array
, async, attoparsec, base, base64-bytestring, bytestring, Cabal
@@ -258503,8 +258925,7 @@ self: {
libraryPkgconfigDepends = [ librsvg ];
description = "Binding to the libsvg-cairo library";
license = lib.licenses.bsd3;
- hydraPlatforms = lib.platforms.none;
- broken = true;
+ maintainers = with lib.maintainers; [ dalpd ];
}) {inherit (pkgs) librsvg;};
"svgone" = callPackage
@@ -262976,7 +263397,7 @@ self: {
license = lib.licenses.mit;
}) {};
- "tasty-silver_3_3" = callPackage
+ "tasty-silver_3_3_1" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring, containers
, deepseq, directory, filepath, mtl, optparse-applicative, process
, process-extras, regex-tdfa, silently, stm, tagged, tasty
@@ -262984,8 +263405,8 @@ self: {
}:
mkDerivation {
pname = "tasty-silver";
- version = "3.3";
- sha256 = "1glhq2kkgnv5bf2664k7ph9kz9wcak758jb1jszl03wpv5c8idil";
+ version = "3.3.1";
+ sha256 = "1pd83mzx0iv3f396m09rxmgcpcfaya0a9818dl3h4vgw0hnqkmav";
libraryHaskellDepends = [
ansi-terminal async base bytestring containers deepseq directory
filepath mtl optparse-applicative process process-extras regex-tdfa
@@ -270861,8 +271282,8 @@ self: {
pname = "tokyocabinet-haskell";
version = "0.0.7";
sha256 = "1fmj46wvl6ayx30r5r538vnygz32s1877m2f9zf7nb2zyiz5vmcb";
- revision = "1";
- editedCabalFile = "07kx002x3yh1klhxn9fq0bi2pfy4mdqacg3caqklmdl22dkh74lq";
+ revision = "2";
+ editedCabalFile = "0h9lc9cg5iwy9apjz48nwvblsmlkv7r5rvnivshvhys2xi1hfxja";
libraryHaskellDepends = [ base bytestring mtl ];
librarySystemDepends = [ tokyocabinet ];
testHaskellDepends = [ base bytestring directory HUnit mtl ];
@@ -284246,8 +284667,8 @@ self: {
}:
mkDerivation {
pname = "vulkan";
- version = "3.12.2";
- sha256 = "1vypjnwvvvd0rw99qsb00jnwpq792s9x1wi62zdyzq9cwlf47ici";
+ version = "3.13";
+ sha256 = "14cb1fg0x0fy2bvjyjmxvbq2sm56ixzvz9sqacs7nak961yyvdy0";
libraryHaskellDepends = [ base bytestring transformers vector ];
libraryPkgconfigDepends = [ vulkan ];
testHaskellDepends = [
@@ -284279,8 +284700,8 @@ self: {
}:
mkDerivation {
pname = "vulkan-utils";
- version = "0.5.2";
- sha256 = "05h54dzci8ahnxshrcd7l6bpg1q8llnrwycgpbpn12cf6ddmdc59";
+ version = "0.5.3";
+ sha256 = "16p1yn72il988phw4h8ixs0p2dgk96xg26yp9lgbpri1l0da8kiq";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base bytestring containers dependent-map dependent-sum extra
@@ -284832,10 +285253,8 @@ self: {
}:
mkDerivation {
pname = "wai-handler-hal";
- version = "0.1.0.0";
- sha256 = "0sjw01k5dyhdi33ld1pd4mf9plpij0spzxf2b228cjyc8x5zx7rj";
- revision = "2";
- editedCabalFile = "0aj45x1czwd69hd4yxsc607njb1qwxz926izzh79axfkrzgiij9k";
+ version = "0.1.1.0";
+ sha256 = "1l9adjrh0iffph40pqymikr5h52ldlyp2q9l7qclcamwdwkawmz0";
libraryHaskellDepends = [
base base64-bytestring bytestring case-insensitive hal http-types
network text unordered-containers vault wai
@@ -286678,10 +287097,8 @@ self: {
({ mkDerivation, base, mtl, time }:
mkDerivation {
pname = "watchdog";
- version = "0.3";
- sha256 = "0v8jbrnqg48x5ksdacsd0xazpxqv64ggzihg6k2y6pljqznrhn1i";
- revision = "1";
- editedCabalFile = "1hmjlva0pbvbbl3vcngqlqrisx32qzlc9pl96zh2rb6m25riisdg";
+ version = "0.3.1";
+ sha256 = "01zhj464c1lwjgb6zijqjlrzfcrknfmf2v2b2m1pmxy94jly2ww9";
libraryHaskellDepends = [ base mtl time ];
description = "Simple control structure to re-try an action with exponential backoff";
license = lib.licenses.bsd3;
@@ -289107,6 +289524,30 @@ self: {
license = lib.licenses.bsd3;
}) {};
+ "witherable_0_4_2" = callPackage
+ ({ mkDerivation, base, base-orphans, containers, hashable
+ , indexed-traversable, indexed-traversable-instances, QuickCheck
+ , quickcheck-instances, tasty, tasty-quickcheck, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "witherable";
+ version = "0.4.2";
+ sha256 = "0121ic4xkv3k568j23zp22a5lrv0k11h94fq7cbijd18fjr2n3br";
+ libraryHaskellDepends = [
+ base base-orphans containers hashable indexed-traversable
+ indexed-traversable-instances transformers unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ base containers hashable QuickCheck quickcheck-instances tasty
+ tasty-quickcheck transformers unordered-containers vector
+ ];
+ description = "filterable traversable";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"witherable-class" = callPackage
({ mkDerivation, base, witherable }:
mkDerivation {
@@ -292308,6 +292749,27 @@ self: {
hydraPlatforms = lib.platforms.none;
}) {};
+ "xml-syntax" = callPackage
+ ({ mkDerivation, array-builder, array-chunks, base, bytebuild
+ , byteslice, bytesmith, bytestring, primitive, tasty, tasty-hunit
+ , text-short
+ }:
+ mkDerivation {
+ pname = "xml-syntax";
+ version = "0.1.0.0";
+ sha256 = "1dbhh4rxvh0w17f9m2sd01bv6q20mg734wb87w6iqp4pv71mzhn3";
+ libraryHaskellDepends = [
+ array-builder array-chunks base bytebuild byteslice bytesmith
+ bytestring primitive text-short
+ ];
+ testHaskellDepends = [
+ base byteslice bytestring primitive tasty tasty-hunit
+ ];
+ description = "Parse XML from bytes";
+ license = lib.licenses.bsd3;
+ hydraPlatforms = lib.platforms.none;
+ }) {};
+
"xml-to-json" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, curl
, hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix
@@ -299126,14 +299588,16 @@ self: {
}) {};
"zoovisitor" = callPackage
- ({ mkDerivation, base, hspec, uuid, Z-Data, Z-IO, zookeeper_mt }:
+ ({ mkDerivation, async, base, hspec, uuid, Z-Data, Z-IO
+ , zookeeper_mt
+ }:
mkDerivation {
pname = "zoovisitor";
- version = "0.1.4.0";
- sha256 = "163aixwxjnrbd9gzh73mys2zkbni3sjxmjyg7z374fa1k08rrxya";
+ version = "0.1.5.0";
+ sha256 = "0sksa3sjgd2yg2cj6vr9ssk52zlhap45c93cwslk3q788c8krr35";
libraryHaskellDepends = [ base Z-Data Z-IO ];
librarySystemDepends = [ zookeeper_mt ];
- testHaskellDepends = [ base hspec uuid Z-Data ];
+ testHaskellDepends = [ async base hspec uuid Z-Data ];
description = "A haskell binding to Apache Zookeeper C library(mt) using Haskell Z project";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
diff --git a/third_party/nixpkgs/pkgs/development/haskell-modules/patches/recursion-schemes-128.patch b/third_party/nixpkgs/pkgs/development/haskell-modules/patches/recursion-schemes-128.patch
new file mode 100644
index 0000000000..a40efc6f63
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/haskell-modules/patches/recursion-schemes-128.patch
@@ -0,0 +1,24 @@
+diff --git a/recursion-schemes.cabal b/recursion-schemes.cabal
+index c35f2c6..e692ade 100644
+--- a/recursion-schemes.cabal
++++ b/recursion-schemes.cabal
+@@ -93,6 +93,7 @@ library
+ Paths_recursion_schemes
+
+ ghc-options: -Wall
++ ghc-prof-options: -DPROFILING_ENABLED
+ if impl(ghc >= 8.6)
+ ghc-options: -Wno-star-is-type
+ default-language: Haskell2010
+diff --git a/src/Data/Functor/Foldable/TH.hs b/src/Data/Functor/Foldable/TH.hs
+index b3d5ac8..d4ef0e4 100644
+--- a/src/Data/Functor/Foldable/TH.hs
++++ b/src/Data/Functor/Foldable/TH.hs
+@@ -1,4 +1,7 @@
+ {-# LANGUAGE CPP, PatternGuards, Rank2Types #-}
++#if defined(PROFILING_ENABLED)
++{-# OPTIONS_GHC -O0 #-}
++#endif
+ module Data.Functor.Foldable.TH
+ ( MakeBaseFunctor(..)
+ , BaseRules
diff --git a/third_party/nixpkgs/pkgs/development/interpreters/bats/default.nix b/third_party/nixpkgs/pkgs/development/interpreters/bats/default.nix
index 01d1b61cb8..7a6f62a55c 100644
--- a/third_party/nixpkgs/pkgs/development/interpreters/bats/default.nix
+++ b/third_party/nixpkgs/pkgs/development/interpreters/bats/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "bats";
- version = "1.3.0";
+ version = "1.4.1";
src = fetchzip {
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
- hash = "sha256-+dboExOx2YELxV8Cwk9SVwk9G3p8EoP0LdaJ3o7GT6c=";
+ hash = "sha256-bGZXjq6zG9MJgDccpVYATsgYhhb1Zf7Deoa/DoSv8QE=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/development/interpreters/gnudatalanguage/default.nix b/third_party/nixpkgs/pkgs/development/interpreters/gnudatalanguage/default.nix
new file mode 100644
index 0000000000..38f3402330
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/interpreters/gnudatalanguage/default.nix
@@ -0,0 +1,203 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, cmake
+, wrapGAppsHook
+, readline
+, ncurses
+, zlib
+, gsl
+, openmp
+, graphicsmagick
+, fftw
+, fftwFloat
+, fftwLongDouble
+, proj
+, shapelib
+, expat
+, udunits
+, eigen
+, pslib
+, eccodes
+, glpk
+, libpng
+, plplot
+, libtiff
+, libgeotiff
+, libjpeg
+ # We enable it in hdf4 and use libtirpc as a dependency here from the passthru
+ # of hdf4
+, enableLibtirpc ? stdenv.isLinux
+, libtirpc
+, python3
+, enableMPI ? (stdenv.isLinux || stdenv.isDarwin)
+ # Choose MPICH over OpenMPI because it currently builds on AArch and Darwin
+, mpi
+ # Unfree optional dependency for hdf4 and hdf5
+, enableSzip ? false
+, szip
+, enableHDF4 ? true
+, hdf4
+, hdf4-forced ? null
+, enableHDF5 ? true
+ # HDF5 format version (API version) 1.10 and 1.12 is not fully compatible
+ # Specify if the API version should default to 1.10
+ # netcdf currently depends on hdf5 with `usev110Api=true`
+ # If you wish to use HDF5 API version 1.12 (`useHdf5v110Api=false`),
+ # you will need to turn NetCDF off.
+, useHdf5v110Api ? true
+, hdf5
+, hdf5-forced ? null
+, enableNetCDF ? true
+, netcdf
+, netcdf-forced ? null
+, plplot-forced ? null
+ # wxWidgets is preferred over X11 for this project but we only have it on Linux
+ # and Darwin. Also, we use the wxWidgets dependency here from the passthru of
+ # plplot.
+, enableWX ? (stdenv.isLinux || stdenv.isDarwin)
+ # X11: OFF by default for platform consistency. Use X where WX is not available
+, enableXWin ? (!stdenv.isLinux && !stdenv.isDarwin)
+}:
+
+let
+ hdf4-custom =
+ if hdf4-forced != null
+ then hdf4-forced
+ else
+ hdf4.override {
+ uselibtirpc = enableLibtirpc;
+ szipSupport = enableSzip;
+ inherit szip;
+ };
+ hdf5-custom =
+ if hdf5-forced != null
+ then hdf5-forced
+ else
+ hdf5.override {
+ usev110Api = useHdf5v110Api;
+ mpiSupport = enableMPI;
+ inherit mpi;
+ szipSupport = enableSzip;
+ inherit szip;
+ };
+ netcdf-custom =
+ if netcdf-forced != null
+ then netcdf-forced
+ else
+ netcdf.override {
+ hdf5 = hdf5-custom;
+ };
+ enablePlplotDrivers = enableWX || enableXWin;
+ plplot-with-drivers =
+ if plplot-forced != null
+ then plplot-forced
+ else
+ plplot.override {
+ inherit
+ enableWX
+ enableXWin
+ ;
+ };
+in
+stdenv.mkDerivation rec {
+ pname = "gnudatalanguage";
+ version = "1.0.0";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = "gdl";
+ rev = "v${version}";
+ sha256 = "sha256-Y9LVRaWjQqpWqjNngxB406PE/rl/9S8rs0u0CK5ivUA=";
+ };
+
+ buildInputs = [
+ readline
+ ncurses
+ zlib
+ gsl
+ openmp
+ graphicsmagick
+ fftw
+ fftwFloat
+ fftwLongDouble
+ proj
+ shapelib
+ expat
+ mpi
+ udunits
+ eigen
+ pslib
+ eccodes
+ glpk
+ libpng
+ libtiff
+ libgeotiff
+ libjpeg
+ hdf4-custom
+ hdf5-custom
+ netcdf-custom
+ plplot-with-drivers
+ ] ++ lib.optional enableXWin plplot-with-drivers.libX11
+ ++ lib.optional enableWX plplot-with-drivers.wxWidgets
+ ++ lib.optional enableMPI mpi
+ ++ lib.optional enableLibtirpc hdf4-custom.libtirpc
+ ++ lib.optional enableSzip szip;
+
+ propagatedBuildInputs = [
+ (python3.withPackages (ps: with ps; [ numpy ]))
+ ];
+
+ nativeBuildInputs = [
+ cmake
+ ] ++ lib.optional enableWX wrapGAppsHook;
+
+ cmakeFlags = lib.optional (!enableHDF4) "-DHDF=OFF"
+ ++ [ (if enableHDF5 then "-DHDF5DIR=${hdf5-custom}" else "-DHDF5=OFF") ]
+ ++ lib.optional (!enableNetCDF) "-DNETCDF=OFF"
+ ++ lib.optional (!enablePlplotDrivers) "-DINTERACTIVE_GRAPHICS=OFF"
+ ++ lib.optional (!enableWX) "-DWXWIDGETS=OFF"
+ ++ lib.optional enableSzip "-DSZIPDIR=${szip}"
+ ++ lib.optionals enableXWin [ "-DX11=ON" "-DX11DIR=${plplot-with-drivers.libX11}" ]
+ ++ lib.optionals enableMPI [ "-DMPI=ON" "-DMPIDIR=${mpi}" ];
+
+ doCheck = true;
+
+ # Opt-out unstable tests
+ # https://github.com/gnudatalanguage/gdl/issues/482
+ # https://github.com/gnudatalanguage/gdl/issues/1079
+ # https://github.com/gnudatalanguage/gdl/issues/460
+ preCheck = ''
+ checkFlagsArray+=("ARGS=-E 'test_tic_toc.pro|test_byte_conversion.pro|test_bytscl.pro|test_call_external.pro'")
+ '';
+
+ passthru = {
+ hdf4 = hdf4-custom;
+ hdf5 = hdf5-custom;
+ netcdf = netcdf-custom;
+ plplot = plplot-with-drivers;
+ python = python3;
+ inherit
+ enableMPI
+ mpi
+ useHdf5v110Api
+ enableSzip
+ enableWX
+ enableXWin
+ ;
+ };
+
+ meta = with lib; {
+ description = "Free incremental compiler of IDL";
+ longDescription = ''
+ GDL (GNU Data Language) is a free/libre/open source incremental compiler
+ compatible with IDL (Interactive Data Language) and to some extent with PV-WAVE.
+ GDL is aimed as a drop-in replacement for IDL.
+ '';
+ homepage = "https://github.com/gnudatalanguage/gdl";
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ ShamrockLee ];
+ platforms = platforms.all;
+ mainProgram = "gdl";
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix b/third_party/nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix
index e74649cab4..ff93e842ee 100644
--- a/third_party/nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix
+++ b/third_party/nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix
@@ -25,7 +25,6 @@ pname
# propagate build dependencies so in case we have A -> B -> C,
# C can import package A propagated by B
, propagatedBuildInputs ? []
-, propagatedNativeBuildInputs ? []
# used to disable derivation, useful for specific lua versions
# TODO move from this setting meta.broken to a 'disabled' attribute on the
@@ -50,7 +49,7 @@ pname
# The latter is used to work-around luarocks having a problem with
# multiple-output derivations as external deps:
# https://github.com/luarocks/luarocks/issues/766
-, externalDeps ? lib.unique (lib.filter (drv: !drv ? luaModule) (propagatedBuildInputs ++ buildInputs))
+, externalDeps ? []
# Appended to the generated luarocks config
, extraConfig ? ""
@@ -74,7 +73,6 @@ pname
let
generatedRockspecFilename = "${rockspecDir}/${pname}-${version}.rockspec";
-
# TODO fix warnings "Couldn't load rockspec for ..." during manifest
# construction -- from initial investigation, appears it will require
# upstream luarocks changes to fix cleanly (during manifest construction,
@@ -83,7 +81,7 @@ let
luarocks_config = "luarocks-config.lua";
luarocks_content = let
generatedConfig = lua.pkgs.lib.generateLuarocksConfig {
- inherit externalDeps;
+ externalDeps = externalDeps ++ externalDepsGenerated;
inherit extraVariables;
inherit rocksSubdir;
inherit requiredLuaRocks;
@@ -99,12 +97,13 @@ let
# Filter out the lua derivation itself from the Lua module dependency
# closure, as it doesn't have a rock tree :)
requiredLuaRocks = lib.filter (d: d ? luaModule)
- (lua.pkgs.requiredLuaModules propagatedBuildInputs);
+ (lua.pkgs.requiredLuaModules luarocksDrv.propagatedBuildInputs);
# example externalDeps': [ { name = "CRYPTO"; dep = pkgs.openssl; } ]
+ externalDepsGenerated = lib.unique (lib.filter (drv: !drv ? luaModule) (luarocksDrv.propagatedBuildInputs ++ luarocksDrv.buildInputs));
externalDeps' = lib.filter (dep: !lib.isDerivation dep) externalDeps;
-in
-toLuaModule ( lua.stdenv.mkDerivation (
+
+ luarocksDrv = toLuaModule ( lua.stdenv.mkDerivation (
builtins.removeAttrs attrs ["disabled" "checkInputs" "externalDeps" "extraVariables"] // {
name = namePrefix + pname + "-" + version;
@@ -146,13 +145,12 @@ builtins.removeAttrs attrs ["disabled" "checkInputs" "externalDeps" "extraVariab
runHook postConfigure
'';
- # TODO could be moved to configurePhase
buildPhase = ''
runHook preBuild
nix_debug "Using LUAROCKS_CONFIG=$LUAROCKS_CONFIG"
- LUAROCKS=luarocks
+ LUAROCKS=${lua.pkgs.luarocks}/bin/luarocks
if (( ''${NIX_DEBUG:-0} >= 1 )); then
LUAROCKS="$LUAROCKS --verbose"
fi
@@ -195,6 +193,7 @@ builtins.removeAttrs attrs ["disabled" "checkInputs" "externalDeps" "extraVariab
passthru = {
inherit lua; # The lua interpreter
inherit externalDeps;
+ inherit luarocks_content;
} // passthru;
meta = {
@@ -203,4 +202,6 @@ builtins.removeAttrs attrs ["disabled" "checkInputs" "externalDeps" "extraVariab
maintainers = (meta.maintainers or []) ++ [ ];
broken = disabled;
} // meta;
-}))
+}));
+in
+ luarocksDrv
diff --git a/third_party/nixpkgs/pkgs/development/libraries/SDL2_mixer/default.nix b/third_party/nixpkgs/pkgs/development/libraries/SDL2_mixer/default.nix
index 7e1d097ba5..2d1ef98538 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/SDL2_mixer/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/SDL2_mixer/default.nix
@@ -13,6 +13,7 @@
, mpg123
, opusfile
, smpeg2
+, timidity
}:
stdenv.mkDerivation rec {
@@ -42,8 +43,16 @@ stdenv.mkDerivation rec {
mpg123
opusfile
smpeg2
+ # MIDI patterns
+ timidity
];
+ # fix default path to timidity.cfg so MIDI files could be played
+ postPatch = ''
+ substituteInPlace timidity/options.h \
+ --replace "/usr/share/timidity" "${timidity}/share/timidity"
+ '';
+
configureFlags = [
"--disable-music-ogg-shared"
"--disable-music-flac-shared"
diff --git a/third_party/nixpkgs/pkgs/development/libraries/aml/default.nix b/third_party/nixpkgs/pkgs/development/libraries/aml/default.nix
index 899dafde76..ef3ba58e7e 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/aml/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/aml/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "aml";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchFromGitHub {
owner = "any1";
repo = pname;
rev = "v${version}";
- sha256 = "0mxmzlhiv88hm4sf8kyawyrml8qy1xis019hdyb5skl9g95z9yyf";
+ sha256 = "1m911n3rd41ch4yk3k9k1lz29xp3h54k6jx122abq5kmngy9znqw";
};
nativeBuildInputs = [ meson pkg-config ninja ];
diff --git a/third_party/nixpkgs/pkgs/development/libraries/aws-c-common/default.nix b/third_party/nixpkgs/pkgs/development/libraries/aws-c-common/default.nix
index 323b600140..c927ca5333 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/aws-c-common/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/aws-c-common/default.nix
@@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "aws-c-common";
- version = "0.6.12";
+ version = "0.6.14";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Bbb6YbPMpzVy+Pa9OGe62TXihTbUeKTlPS29sa70aQ8=";
+ sha256 = "sha256-JEaRB0k6zyk5UKuB2hEZUAsnp2SuI9mrok/EvwclUJk=";
};
nativeBuildInputs = [ cmake ];
diff --git a/third_party/nixpkgs/pkgs/development/libraries/aws-c-io/default.nix b/third_party/nixpkgs/pkgs/development/libraries/aws-c-io/default.nix
index 938c6c7977..1ff28dccc9 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/aws-c-io/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/aws-c-io/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "aws-c-io";
- version = "0.10.9";
+ version = "0.10.12";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-16MhOQlvFwbiSBNI1NWGjrLh0z/fCnAGmc8JguZQPZM=";
+ sha256 = "sha256-8v38NN9qrgdrshMx3l2wLrl7l77HjsW2GPu8IwkclJQ=";
};
nativeBuildInputs = [ cmake ];
diff --git a/third_party/nixpkgs/pkgs/development/libraries/aws-sdk-cpp/default.nix b/third_party/nixpkgs/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 69cb1cc22a..41603993c7 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -1,4 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, s2n-tls, zlib
+, aws-crt-cpp
, aws-c-cal, aws-c-common, aws-c-event-stream, aws-c-io, aws-checksums
, CoreAudio, AudioToolbox
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
@@ -17,15 +18,23 @@ in
stdenv.mkDerivation rec {
pname = "aws-sdk-cpp";
- version = "1.8.130";
+ version = "1.9.121";
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-sdk-cpp";
rev = version;
- sha256 = "sha256-5T4l0KYB0utFTdEOtYT9trQ/JehQbXxk/IhI6YavErs=";
+ sha256 = "sha256-VQpWauk0tdJ1QU0HmtdTwQdKbiAuTTXXsUo2cqpqmdU=";
};
+ postPatch = ''
+ # Includes aws-c-auth private headers, so only works with submodule build
+ rm aws-cpp-sdk-core-tests/aws/auth/AWSAuthSignerTest.cpp
+ '' + lib.optionalString stdenv.hostPlatform.isMusl ''
+ # TestRandomURLMultiThreaded fails
+ rm aws-cpp-sdk-core-tests/http/HttpClientTest.cpp
+ '';
+
# FIXME: might be nice to put different APIs in different outputs
# (e.g. libaws-cpp-sdk-s3.so in output "s3").
outputs = [ "out" "dev" ];
@@ -40,14 +49,7 @@ stdenv.mkDerivation rec {
[ CoreAudio AudioToolbox ];
# propagation is needed for Security.framework to be available when linking
- propagatedBuildInputs = [
- aws-c-cal
- aws-c-event-stream
- aws-c-io
- aws-c-common
- aws-checksums
- s2n-tls
- ];
+ propagatedBuildInputs = [ aws-crt-cpp ];
cmakeFlags = [
"-DBUILD_DEPS=OFF"
diff --git a/third_party/nixpkgs/pkgs/development/libraries/capnproto/default.nix b/third_party/nixpkgs/pkgs/development/libraries/capnproto/default.nix
index 713a49dbaa..0eaf6eda07 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/capnproto/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/capnproto/default.nix
@@ -1,12 +1,15 @@
-{ lib, stdenv, fetchurl, capnproto, cmake }:
+{ lib, stdenv, fetchFromGitHub, capnproto, cmake }:
stdenv.mkDerivation rec {
pname = "capnproto";
version = "0.9.0";
- src = fetchurl {
- url = "https://capnproto.org/capnproto-c++-${version}.tar.gz";
- sha256 = "sha256-soBUp6K/6kK/w5LI0AljDZTXLozoaiOtbxi15yV0Bk8=";
+ # release tarballs are missing some ekam rules
+ src = fetchFromGitHub {
+ owner = "capnproto";
+ repo = "capnproto";
+ rev = "v${version}";
+ sha256 = "038i40apywn8sg95kwld4mg9p9m08izcw5xj7mwkmshycmqw65na";
};
nativeBuildInputs = [ cmake ]
diff --git a/third_party/nixpkgs/pkgs/development/libraries/flatpak/bubblewrap-paths.patch b/third_party/nixpkgs/pkgs/development/libraries/flatpak/bubblewrap-paths.patch
index 407811736f..e0b6df1958 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/flatpak/bubblewrap-paths.patch
+++ b/third_party/nixpkgs/pkgs/development/libraries/flatpak/bubblewrap-paths.patch
@@ -7,7 +7,7 @@ index 9e885070..d02eeb8c 100644
"--unshare-net",
"--unshare-pid",
- "--ro-bind", "/usr", "/usr",
-- "--ro-bind", "/etc/ld.so.cache", "/etc/ld.so.cache",
+- "--ro-bind-try", "/etc/ld.so.cache", "/etc/ld.so.cache",
+ "--ro-bind", "@storeDir@", "@storeDir@",
+ "--ro-bind", "/run/current-system", "/run/current-system",
"--ro-bind", validate_icon, validate_icon,
diff --git a/third_party/nixpkgs/pkgs/development/libraries/flatpak/default.nix b/third_party/nixpkgs/pkgs/development/libraries/flatpak/default.nix
index 97410fda0d..40e07c5907 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/flatpak/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/flatpak/default.nix
@@ -49,18 +49,19 @@
, dconf
, gsettings-desktop-schemas
, librsvg
+, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "flatpak";
- version = "1.10.2";
+ version = "1.12.2";
# TODO: split out lib once we figure out what to do with triggerdir
outputs = [ "out" "dev" "man" "doc" "devdoc" "installedTests" ];
src = fetchurl {
url = "https://github.com/flatpak/flatpak/releases/download/${version}/${pname}-${version}.tar.xz";
- sha256 = "sha256-2xUnOdBy+P8pnk6IjYljobRTjaexDguGUlvkOPLh3eQ=";
+ sha256 = "df1eb464f9142c11627f99f04f6a5c02c868bbb145489b8902cb6c105e774b75"; # Taken from https://github.com/flatpak/flatpak/releases/
};
patches = [
@@ -90,25 +91,19 @@ stdenv.mkDerivation rec {
# Patch taken from gtk-doc expression.
./respect-xml-catalog-files-var.patch
- # Don’t hardcode flatpak binary path in launchers stored under user’s profile otherwise they will break after Flatpak update.
- # https://github.com/NixOS/nixpkgs/issues/43581
- ./use-flatpak-from-path.patch
-
- # Hardcode flatpak binary path for flatpak-spawn.
- # When calling the portal’s Spawn command with FLATPAK_SPAWN_FLAGS_CLEAR_ENV flag,
- # it will clear environment, including PATH, making the flatpak run fail.
- # https://github.com/flatpak/flatpak/pull/4174
- (fetchpatch {
- url = "https://github.com/flatpak/flatpak/commit/495449daf6d3c072519a36c9e4bc6cc1da4d31db.patch";
- sha256 = "gOX/sGupAE7Yg3MVrMhFXzWHpFn+izVyjtkuPzIckuY=";
- })
-
# Nix environment hacks should not leak into the apps.
# https://github.com/NixOS/nixpkgs/issues/53441
./unset-env-vars.patch
# But we want the GDK_PIXBUF_MODULE_FILE from the wrapper affect the icon validator.
./validate-icon-pixbuf.patch
+
+ # Tests don't respect the FLATPAK_BINARY override that was added, this is a workaround.
+ # https://github.com/flatpak/flatpak/pull/4496 (Can be removed once included).
+ (fetchpatch {
+ url = "https://github.com/flatpak/flatpak/commit/96dbe28cfa96e80b23fa1d8072eb36edad41279c.patch";
+ sha256 = "1jczk06ymfs98h3nsg245g0jwxvml7wg2x6pb7mrfpsdmrpz2czd";
+ })
];
nativeBuildInputs = [
@@ -189,7 +184,14 @@ stdenv.mkDerivation rec {
in ''
patchShebangs buildutil
patchShebangs tests
- PATH=${lib.makeBinPath [vsc-py]}:$PATH patchShebangs --build variant-schema-compiler/variant-schema-compiler
+ PATH=${lib.makeBinPath [vsc-py]}:$PATH patchShebangs --build subprojects/variant-schema-compiler/variant-schema-compiler
+ '';
+
+ preFixup = ''
+ gappsWrapperArgs+=(
+ # Use flatpak from PATH in exported assets (e.g. desktop files).
+ --set FLATPAK_BINARY flatpak
+ )
'';
passthru = {
diff --git a/third_party/nixpkgs/pkgs/development/libraries/flatpak/use-flatpak-from-path.patch b/third_party/nixpkgs/pkgs/development/libraries/flatpak/use-flatpak-from-path.patch
deleted file mode 100644
index 84534b7bc5..0000000000
--- a/third_party/nixpkgs/pkgs/development/libraries/flatpak/use-flatpak-from-path.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c
-index 52b222ea..9489441f 100644
---- a/common/flatpak-dir.c
-+++ b/common/flatpak-dir.c
-@@ -6956,7 +6956,7 @@ export_desktop_file (const char *app,
-
- new_exec = g_string_new ("");
- g_string_append_printf (new_exec,
-- FLATPAK_BINDIR "/flatpak run --branch=%s --arch=%s",
-+ "flatpak run --branch=%s --arch=%s",
- escaped_branch,
- escaped_arch);
-
-@@ -8290,8 +8290,8 @@ flatpak_dir_deploy (FlatpakDir *self,
- error))
- return FALSE;
-
-- bin_data = g_strdup_printf ("#!/bin/sh\nexec %s/flatpak run --branch=%s --arch=%s %s \"$@\"\n",
-- FLATPAK_BINDIR, escaped_branch, escaped_arch, escaped_app);
-+ bin_data = g_strdup_printf ("#!/bin/sh\nexec flatpak run --branch=%s --arch=%s %s \"$@\"\n",
-+ escaped_branch, escaped_arch, escaped_app);
- if (!g_file_replace_contents (wrapper, bin_data, strlen (bin_data), NULL, FALSE,
- G_FILE_CREATE_REPLACE_DESTINATION, NULL, cancellable, error))
- return FALSE;
-diff --git a/tests/test-bundle.sh b/tests/test-bundle.sh
-index d1682344..5e2b9a97 100755
---- a/tests/test-bundle.sh
-+++ b/tests/test-bundle.sh
-@@ -67,7 +67,7 @@ assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/files
- assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/export
- assert_has_file $FL_DIR/exports/share/applications/org.test.Hello.desktop
- # Ensure Exec key is rewritten
--assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=.*/flatpak run --branch=master --arch=$ARCH --command=hello\.sh org\.test\.Hello$"
-+assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=flatpak run --branch=master --arch=$ARCH --command=hello\.sh org\.test\.Hello$"
- assert_has_file $FL_DIR/exports/share/icons/hicolor/64x64/apps/org.test.Hello.png
- assert_has_file $FL_DIR/exports/share/icons/HighContrast/64x64/apps/org.test.Hello.png
-
-diff --git a/tests/test-run.sh b/tests/test-run.sh
-index fecb756e..64043281 100644
---- a/tests/test-run.sh
-+++ b/tests/test-run.sh
-@@ -45,7 +45,7 @@ assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/stable/active/files
- assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/stable/active/export
- assert_has_file $FL_DIR/exports/share/applications/org.test.Hello.desktop
- # Ensure Exec key is rewritten
--assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=.*/flatpak run --branch=stable --arch=$ARCH --command=hello\.sh org\.test\.Hello$"
-+assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=flatpak run --branch=stable --arch=$ARCH --command=hello\.sh org\.test\.Hello$"
- assert_has_file $FL_DIR/exports/share/gnome-shell/search-providers/org.test.Hello.search-provider.ini
- assert_file_has_content $FL_DIR/exports/share/gnome-shell/search-providers/org.test.Hello.search-provider.ini "^DefaultDisabled=true$"
- assert_has_file $FL_DIR/exports/share/icons/hicolor/64x64/apps/org.test.Hello.png
diff --git a/third_party/nixpkgs/pkgs/development/libraries/isa-l/default.nix b/third_party/nixpkgs/pkgs/development/libraries/isa-l/default.nix
new file mode 100644
index 0000000000..1440065969
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/libraries/isa-l/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, nasm }:
+
+stdenv.mkDerivation rec {
+ pname = "isa-l";
+ version = "2.30.0";
+
+ src = fetchFromGitHub {
+ owner = "intel";
+ repo = "isa-l";
+ rev = "v${version}";
+ sha256 = "sha256-AAuSdDQfDW4QFRu0jHwCZ+ZCSjoVqlQiSW1OOFye1Rs=";
+ };
+
+ nativeBuildInputs = [ nasm autoreconfHook ];
+
+ preConfigure = ''
+ export AS=nasm
+ '';
+
+ meta = with lib; {
+ description = "A collection of optimised low-level functions targeting storage applications";
+ license = licenses.bsd3;
+ homepage = "https://github.com/intel/isa-l";
+ maintainers = with maintainers; [ jbedo ];
+ platforms = platforms.all;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libressl/CVE-2021-41581.patch b/third_party/nixpkgs/pkgs/development/libraries/libressl/CVE-2021-41581.patch
new file mode 100644
index 0000000000..2447925671
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/libraries/libressl/CVE-2021-41581.patch
@@ -0,0 +1,53 @@
+Based on upstream https://github.com/openbsd/src/commit/62ceddea5b1d64a1a362bbb7071d9e15adcde6b1
+with paths switched to apply to libressl-portable and CVS header
+hunk removed.
+
+--- a/crypto/x509/x509_constraints.c
++++ b/crypto/x509/x509_constraints.c
+@@ -339,16 +339,16 @@
+ if (c == '.')
+ goto bad;
+ }
+- if (wi > DOMAIN_PART_MAX_LEN)
+- goto bad;
+ if (accept) {
++ if (wi >= DOMAIN_PART_MAX_LEN)
++ goto bad;
+ working[wi++] = c;
+ accept = 0;
+ continue;
+ }
+ if (candidate_local != NULL) {
+ /* We are looking for the domain part */
+- if (wi > DOMAIN_PART_MAX_LEN)
++ if (wi >= DOMAIN_PART_MAX_LEN)
+ goto bad;
+ working[wi++] = c;
+ if (i == len - 1) {
+@@ -363,7 +363,7 @@
+ continue;
+ }
+ /* We are looking for the local part */
+- if (wi > LOCAL_PART_MAX_LEN)
++ if (wi >= LOCAL_PART_MAX_LEN)
+ break;
+
+ if (quoted) {
+@@ -383,6 +383,8 @@
+ */
+ if (c == 9)
+ goto bad;
++ if (wi >= LOCAL_PART_MAX_LEN)
++ goto bad;
+ working[wi++] = c;
+ continue; /* all's good inside our quoted string */
+ }
+@@ -412,6 +414,8 @@
+ }
+ if (!local_part_ok(c))
+ goto bad;
++ if (wi >= LOCAL_PART_MAX_LEN)
++ goto bad;
+ working[wi++] = c;
+ }
+ if (candidate_local == NULL || candidate_domain == NULL)
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libressl/default.nix b/third_party/nixpkgs/pkgs/development/libraries/libressl/default.nix
index fb362ebbad..d70672f63a 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/libressl/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/libressl/default.nix
@@ -1,8 +1,16 @@
-{ stdenv, fetchurl, lib, cmake, cacert, fetchpatch
+{ stdenv
+, fetchurl
+, lib
+, cmake
+, cacert
+, fetchpatch
, buildShared ? !stdenv.hostPlatform.isStatic
}:
let
+ ldLibPathEnvName = if stdenv.isDarwin
+ then "DYLD_LIBRARY_PATH"
+ else "LD_LIBRARY_PATH";
generic = { version, sha256, patches ? [] }: stdenv.mkDerivation rec {
pname = "libressl";
@@ -42,6 +50,15 @@ let
substituteInPlace ./tls/tls_config.c --replace '"/etc/ssl/cert.pem"' '"${cacert}/etc/ssl/certs/ca-bundle.crt"'
'';
+ doCheck = true;
+ preCheck = ''
+ export PREVIOUS_${ldLibPathEnvName}=$${ldLibPathEnvName}
+ export ${ldLibPathEnvName}="$${ldLibPathEnvName}:$(realpath tls/):$(realpath ssl/):$(realpath crypto/)"
+ '';
+ postCheck = ''
+ export ${ldLibPathEnvName}=$PREVIOUS_${ldLibPathEnvName}
+ '';
+
outputs = [ "bin" "dev" "out" "man" "nc" ];
postFixup = ''
@@ -66,5 +83,15 @@ in {
libressl_3_2 = generic {
version = "3.2.5";
sha256 = "1zkwrs3b19s1ybz4q9hrb7pqsbsi8vxcs44qanfy11fkc7ynb2kr";
+ patches = [
+ ./CVE-2021-41581.patch
+ ];
+ };
+ libressl_3_4 = generic {
+ version = "3.4.0";
+ sha256 = "1lhn76nd59p1dfd27b4636zj6wh3f5xsi8b3sxqnl820imsswbp5";
+ patches = [
+ ./CVE-2021-41581.patch
+ ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/libvmaf/default.nix b/third_party/nixpkgs/pkgs/development/libraries/libvmaf/default.nix
index 57a9095dc5..03ca9b0d11 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/libvmaf/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/libvmaf/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libvmaf";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchFromGitHub {
owner = "netflix";
repo = "vmaf";
rev = "v${version}";
- sha256 = "sha256-t1dK4UnperX9YtvmTwIo/03Dxq/Pl+K6kZIL0uX1OcE=";
+ sha256 = "12mwl7vxc3xi0qar386mkhkpah9zzgjb74mzc2qqsgz9zzxp16dm";
};
sourceRoot = "source/libvmaf";
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/Netflix/vmaf";
description = "Perceptual video quality assessment based on multi-method fusion (VMAF)";
- changelog = "https://github.com/Netflix/vmaf/blob/v${version}/CHANGELOG.md";
+ changelog = "https://github.com/Netflix/vmaf/raw/v${version}/CHANGELOG.md";
platforms = platforms.unix;
license = licenses.bsd2Patent;
maintainers = [ maintainers.cfsmp3 maintainers.marsam ];
diff --git a/third_party/nixpkgs/pkgs/development/libraries/netcdf/default.nix b/third_party/nixpkgs/pkgs/development/libraries/netcdf/default.nix
index d24078b91a..7110977572 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/netcdf/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/netcdf/default.nix
@@ -8,8 +8,7 @@
}:
let
- mpiSupport = hdf5.mpiSupport;
- mpi = hdf5.mpi;
+ inherit (hdf5) mpiSupport mpi;
in stdenv.mkDerivation rec {
pname = "netcdf";
version = "4.8.0"; # Remove patch mentioned below on upgrade
@@ -44,8 +43,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ hdf5 curl mpi ];
passthru = {
- mpiSupport = mpiSupport;
- inherit mpi;
+ inherit mpiSupport mpi;
};
configureFlags = [
diff --git a/third_party/nixpkgs/pkgs/development/libraries/plplot/default.nix b/third_party/nixpkgs/pkgs/development/libraries/plplot/default.nix
index 05f12d0148..92d74cab93 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/plplot/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/plplot/default.nix
@@ -1,6 +1,16 @@
-{ lib, stdenv, fetchurl, cmake }:
+{ lib
+, stdenv
+, fetchurl
+, cmake
+, enableWX ? false
+, wxGTK31, wxmac
+, enableXWin ? false
+, libX11
+}:
-stdenv.mkDerivation rec {
+let
+ wxWidgets = (if stdenv.isDarwin then wxmac else wxGTK31);
+in stdenv.mkDerivation rec {
pname = "plplot";
version = "5.15.0";
@@ -11,6 +21,18 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
+ buildInputs = lib.optional enableWX wxWidgets
+ ++ lib.optional enableXWin libX11;
+
+ passthru = {
+ inherit
+ enableWX
+ wxWidgets
+ enableXWin
+ libX11
+ ;
+ };
+
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" "-DBUILD_TEST=ON" ];
doCheck = true;
diff --git a/third_party/nixpkgs/pkgs/development/libraries/qcoro/default.nix b/third_party/nixpkgs/pkgs/development/libraries/qcoro/default.nix
new file mode 100644
index 0000000000..62608e390f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/libraries/qcoro/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, cmake
+, libpthreadstubs
+, qtbase
+}:
+
+mkDerivation rec {
+ pname = "qcoro";
+ version = "0.3.0";
+
+ src = fetchFromGitHub {
+ owner = "danvratil";
+ repo = "qcoro";
+ rev = "v${version}";
+ sha256 = "09543hpy590dndmlxmcm8c58m97blhaii4wbjr655qxdanhhxgzi";
+ };
+
+ outputs = [ "out" "dev" ];
+
+ nativeBuildInputs = [
+ cmake
+ ];
+
+ buildInputs = [
+ qtbase
+ libpthreadstubs
+ ];
+
+ meta = with lib; {
+ description = "Library for using C++20 coroutines in connection with certain asynchronous Qt actions";
+ homepage = "https://github.com/danvratil/qcoro";
+ license = licenses.mit;
+ maintainers = with maintainers; [ smitop ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/randomx/default.nix b/third_party/nixpkgs/pkgs/development/libraries/randomx/default.nix
index 8e99ca1be3..68e81866e1 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/randomx/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/randomx/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "randomX";
- version = "1.1.8";
+ version = "1.1.9";
nativeBuildInputs = [ cmake ];
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
owner = "tevador";
repo = pname;
rev = "v${version}";
- sha256 = "13h2cw8drq7xn3v8fbpxrlsl8zq3fs8gd2pc1pv28ahr9qqjz1gc";
+ sha256 = "188fh4l8wda1y9vxa9asbk8nw35gyapw7gyn4w2p2qspdjhi5mnq";
};
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/default.nix b/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/default.nix
index 3eaeeccc45..f97723bc65 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/default.nix
@@ -2,21 +2,19 @@
, runCommandCC, runCommand, vapoursynth, writeText, patchelf, buildEnv
, zimg, libass, python3, libiconv
, ApplicationServices
-, ocrSupport ? false, tesseract
-, imwriSupport ? true, imagemagick
}:
with lib;
stdenv.mkDerivation rec {
pname = "vapoursynth";
- version = "R55";
+ version = "R57";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = "vapoursynth";
rev = version;
- sha256 = "sha256-91lPknNX3NM3NraIcPAR478paPoYvgjgCOIcdgaR5nE=";
+ sha256 = "sha256-tPQ1SOIpFevOYzL9a8Lc5+dv2egVX1CY3km8yWVv+Sk=";
};
patches = [
@@ -27,14 +25,7 @@ stdenv.mkDerivation rec {
buildInputs = [
zimg libass
(python3.withPackages (ps: with ps; [ sphinx cython ]))
- ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ]
- ++ optional ocrSupport tesseract
- ++ optional imwriSupport imagemagick;
-
- configureFlags = [
- (optionalString (!ocrSupport) "--disable-ocr")
- (optionalString (!imwriSupport) "--disable-imwri")
- ];
+ ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ];
enableParallelBuilding = true;
@@ -54,6 +45,10 @@ stdenv.mkDerivation rec {
postInstall = ''
wrapProgram $out/bin/vspipe \
--prefix PYTHONPATH : $out/${python3.sitePackages}
+
+ # VapourSynth does not include any plugins by default
+ # and emits a warning when the system plugin directory does not exist.
+ mkdir $out/lib/vapoursynth
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/editor.nix b/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/editor.nix
index 5cd4b4608e..bbf65879d1 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/editor.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/vapoursynth/editor.nix
@@ -1,4 +1,4 @@
-{ lib, mkDerivation, fetchFromBitbucket, makeWrapper, runCommand
+{ lib, mkDerivation, fetchFromGitHub, makeWrapper, runCommand
, python3, vapoursynth
, qmake, qtbase, qtwebsockets
}:
@@ -6,13 +6,13 @@
let
unwrapped = mkDerivation rec {
pname = "vapoursynth-editor";
- version = "R19";
+ version = "R19-mod-4";
- src = fetchFromBitbucket {
- owner = "mystery_keeper";
+ src = fetchFromGitHub {
+ owner = "YomikoR";
repo = pname;
rev = lib.toLower version;
- sha256 = "1zlaynkkvizf128ln50yvzz3b764f5a0yryp6993s9fkwa7djb6n";
+ sha256 = "sha256-+/9j9DJDGXbuTvE8ZXIu6wjcof39SyatS36Q6y9hLPg=";
};
nativeBuildInputs = [ qmake ];
@@ -35,7 +35,7 @@ let
meta = with lib; {
description = "Cross-platform editor for VapourSynth scripts";
- homepage = "https://bitbucket.org/mystery_keeper/vapoursynth-editor";
+ homepage = "https://github.com/YomikoR/VapourSynth-Editor";
license = licenses.mit;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
diff --git a/third_party/nixpkgs/pkgs/development/libraries/wlroots/default.nix b/third_party/nixpkgs/pkgs/development/libraries/wlroots/default.nix
index c22999dd6f..cf188756ff 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/wlroots/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/wlroots/default.nix
@@ -1,7 +1,9 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland-scanner
, libGL, wayland, wayland-protocols, libinput, libxkbcommon, pixman
, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa
-, libpng, ffmpeg, xcbutilrenderutil, xwayland, seatd
+, libpng, ffmpeg, xcbutilrenderutil, seatd
+
+, enableXWayland ? true, xwayland ? null
}:
stdenv.mkDerivation rec {
@@ -25,8 +27,14 @@ stdenv.mkDerivation rec {
buildInputs = [
libGL wayland wayland-protocols libinput libxkbcommon pixman
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
- libpng ffmpeg xcbutilrenderutil xwayland seatd
- ];
+ libpng ffmpeg xcbutilrenderutil seatd
+ ]
+ ++ lib.optional enableXWayland xwayland
+ ;
+
+ mesonFlags =
+ lib.optional (!enableXWayland) "-Dxwayland=disabled"
+ ;
postFixup = ''
# Install ALL example programs to $examples:
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/README.txt b/third_party/nixpkgs/pkgs/development/lisp-modules/README.txt
index 46d7208bcd..c16d02594e 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/README.txt
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/README.txt
@@ -7,6 +7,7 @@ Want to add a package? There are 3 simple steps!
specify the native dependencies correctly the first time.
(Might be nice to ensure the cache directories exist)
3. Add native libraries and whatever else is needed to quicklisp-to-nix-overrides.nix.
+ If libraries are needed during package analysis then add them to shell.nix, too.
4. Sometimes there are problems with loading implementation-provided systems.
In this case you might need to add more systems in the implementation's (so
SBCL's) entry into *implementation-systems* in quicklisp-to-nix/system-info.lisp
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/define-package.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/define-package.nix
index ca969ab232..b787e87950 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/define-package.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/define-package.nix
@@ -29,7 +29,9 @@ let
echo "source '$path_config_script'" >> "$config_script"
echo "fi" >> "$config_script"
echo "if test -z \"\''${_''${outhash}_NIX_LISP_PATH_CONFIG:-}\"; then export _''${outhash}_NIX_LISP_PATH_CONFIG=1; " >> "$path_config_script"
- echo "export NIX_LISP_ASDF_PATHS=\"$( ( echo "\''${NIX_LISP_ASDF_PATHS:-}"; echo "$NIX_LISP_ASDF_PATHS"; echo "$out/lib/common-lisp/${args.baseName}" ) | grep . | sort | uniq)\"" >> "$path_config_script"
+ echo "NIX_LISP_ASDF_PATHS=\"$( echo "\''${NIX_LISP_ASDF_PATHS:-}"; echo "$NIX_LISP_ASDF_PATHS"; echo "$out/lib/common-lisp/${args.baseName}" )\"" >> "$path_config_script"
+ echo "export NIX_LISP_ASDF_PATHS=\$((tr ' ' '\n' | sort | uniq | tr '\n' ' ') <<< \$NIX_LISP_ASDF_PATHS)" >> $path_config_script
+
test -n "$LD_LIBRARY_PATH" &&
echo "export LD_LIBRARY_PATH=\"\$LD_LIBRARY_PATH\''${LD_LIBRARY_PATH:+:}\"'$LD_LIBRARY_PATH'" >> "$path_config_script"
test -n "$NIX_LISP_LD_LIBRARY_PATH" &&
@@ -107,6 +109,8 @@ basePackage = {
ASDF_OUTPUT_TRANSLATIONS="${builtins.storeDir}/:${builtins.storeDir}";
+ noAuditTmpDir = true;
+
meta = {
inherit description version;
} // meta;
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/lisp-packages.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/lisp-packages.nix
index e4f623686a..b71ad69a46 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/lisp-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/lisp-packages.nix
@@ -24,8 +24,8 @@ let lispPackages = rec {
quicklispdist = pkgs.fetchurl {
# Will usually be replaced with a fresh version anyway, but needs to be
# a valid distinfo.txt
- url = "https://beta.quicklisp.org/dist/quicklisp/2021-04-11/distinfo.txt";
- sha256 = "sha256:1z7a7m9cm7iv4m9ajvyqphsw30s3qwb0l8g8ayfmkvmvhlj79g86";
+ url = "http://beta.quicklisp.org/dist/quicklisp/2021-08-07/distinfo.txt";
+ sha256 = "sha256:05hby6rbsxk3pisjzr9gqjw0cdk2rq8hc4j544hqf11y6451k37v";
};
buildPhase = "true; ";
postInstall = ''
@@ -205,5 +205,48 @@ let lispPackages = rec {
pkgs.sbcl
];
};
+
+ mgl = buildLispPackage rec {
+ baseName = "mgl";
+ version = "2021-10-07";
+ description = "MGL is a machine learning library for backpropagation neural networks, boltzmann machines, gaussian processes and more";
+ deps = with pkgs.lispPackages; [
+ alexandria closer-mop array-operations lla cl-reexport mgl-mat mgl-pax
+ named-readtables pythonic-string-reader
+ ];
+ src = pkgs.fetchFromGitHub {
+ owner = "melisgl";
+ repo = "mgl";
+ rev = "e697791a9bcad3b6e7b3845246a2aa55238cfef7";
+ sha256 = "sha256:09sf7nq7nmf9q7bh3a5ygl2i2n0nhrx5fk2kv5ili0ckv7g9x72s";
+ # date = 2021-10-18T14:15+02:00
+ };
+ buildSystems = [ "mgl" "mgl/test" ];
+ packageName = "mgl";
+ parasites = [ "mgl/test" ];
+ asdFilesToKeep = [ "mgl.asd" "mgl-example.asd" "gnuplot/mgl-gnuplot.asd" "visuals/mgl-visuals.asd" ];
+ };
+
+ mgl-mat = buildLispPackage rec {
+ baseName = "mgl-mat";
+ version = "2021-10-11";
+ description = "Multi-dimensional arrays with FFI/CUDA support";
+ deps = with pkgs.lispPackages; [
+ alexandria bordeaux-threads cffi cffi-grovel cl-cuda flexi-streams ieee-floats
+ lla mgl-pax static-vectors trivial-garbage
+ ];
+ src = pkgs.fetchFromGitHub {
+ owner = "melisgl";
+ repo = "mgl-mat";
+ rev = "3710858bc876b1b86e50f1db2abe719e92d810e7";
+ sha256 = "sha256:1aa2382mi55rp8pd31dz4d94yhfzh30vkggcvmvdfrr4ngffj0dx";
+ # date = 2021-10-18T14:15+02:00
+ };
+ packageName = "mgl-mat";
+ buildSystems = [ "mgl-mat" "mgl-mat/test" ];
+ parasites = [ "mgl-mat/test" ];
+ asdFilesToKeep = [ "mgl-mat.asd" ];
+ };
+
};
in lispPackages
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/_1am.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/_1am.nix
new file mode 100644
index 0000000000..338c9640c3
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/_1am.nix
@@ -0,0 +1,25 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "_1am";
+ version = "20141106-git";
+
+ description = "A minimal testing framework.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/1am/2014-11-06/1am-20141106-git.tgz";
+ sha256 = "0vnnqd4fiq9z34i1k9gqczg3j6xllwba1f6nx0b82sgsdccmsly6";
+ };
+
+ packageName = "1am";
+
+ asdFilesToKeep = ["1am.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM 1am DESCRIPTION A minimal testing framework. SHA256
+ 0vnnqd4fiq9z34i1k9gqczg3j6xllwba1f6nx0b82sgsdccmsly6 URL
+ http://beta.quicklisp.org/archive/1am/2014-11-06/1am-20141106-git.tgz MD5
+ c5e83c329157518e3ebfeef63e4ac269 NAME 1am FILENAME _1am DEPS NIL
+ DEPENDENCIES NIL VERSION 20141106-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/agutil.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/agutil.nix
index c159b20641..86e195044e 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/agutil.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/agutil.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "agutil";
- version = "20200325-git";
+ version = "20210531-git";
description = "A collection of utility functions not found in other utility libraries.";
- deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+ deps = [ args."alexandria" args."closer-mop" args."optima" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/agutil/2020-03-25/agutil-20200325-git.tgz";
- sha256 = "0jfbb2x3f8sm507r63qwrzx44lyyj98i36yyyaf4kpyqfir35z2k";
+ url = "http://beta.quicklisp.org/archive/agutil/2021-05-31/agutil-20210531-git.tgz";
+ sha256 = "01shs4qbr0bzmx9134cm84zbh8whbi2s5xngapd2fl8ag1rda9q1";
};
packageName = "agutil";
@@ -20,23 +20,10 @@ rec {
}
/* (SYSTEM agutil DESCRIPTION
A collection of utility functions not found in other utility libraries.
- SHA256 0jfbb2x3f8sm507r63qwrzx44lyyj98i36yyyaf4kpyqfir35z2k URL
- http://beta.quicklisp.org/archive/agutil/2020-03-25/agutil-20200325-git.tgz
- MD5 89e47bd15c0f9930a5025d04b9706b60 NAME agutil FILENAME agutil DEPS
+ SHA256 01shs4qbr0bzmx9134cm84zbh8whbi2s5xngapd2fl8ag1rda9q1 URL
+ http://beta.quicklisp.org/archive/agutil/2021-05-31/agutil-20210531-git.tgz
+ MD5 99de7cd320ae2696c1707ca5b55cf40a NAME agutil FILENAME agutil DEPS
((NAME alexandria FILENAME alexandria)
- (NAME closer-mop FILENAME closer-mop)
- (NAME introspect-environment FILENAME introspect-environment)
- (NAME iterate FILENAME iterate)
- (NAME lisp-namespace FILENAME lisp-namespace)
- (NAME trivia FILENAME trivia)
- (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
- (NAME trivia.level0 FILENAME trivia_dot_level0)
- (NAME trivia.level1 FILENAME trivia_dot_level1)
- (NAME trivia.level2 FILENAME trivia_dot_level2)
- (NAME trivia.trivial FILENAME trivia_dot_trivial)
- (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
- DEPENDENCIES
- (alexandria closer-mop introspect-environment iterate lisp-namespace trivia
- trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
- trivia.trivial trivial-cltl2 type-i)
- VERSION 20200325-git SIBLINGS NIL PARASITES NIL) */
+ (NAME closer-mop FILENAME closer-mop) (NAME optima FILENAME optima))
+ DEPENDENCIES (alexandria closer-mop optima) VERSION 20210531-git SIBLINGS
+ NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
index 324831796e..33bb0cc20a 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "alexandria";
- version = "20210411-git";
+ version = "20210807-git";
description = "Alexandria is a collection of portable public domain utilities.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/alexandria/2021-04-11/alexandria-20210411-git.tgz";
- sha256 = "0bd4axr1z1q6khvpyf5xvgybdajs1dc7my6g0rdzhhxbibfcf3yh";
+ url = "http://beta.quicklisp.org/archive/alexandria/2021-08-07/alexandria-20210807-git.tgz";
+ sha256 = "0y2x3xapx06v8083ls4pz12s63gv33d6ix05r61m62h4qqm8qk3j";
};
packageName = "alexandria";
@@ -20,8 +20,8 @@ rec {
}
/* (SYSTEM alexandria DESCRIPTION
Alexandria is a collection of portable public domain utilities. SHA256
- 0bd4axr1z1q6khvpyf5xvgybdajs1dc7my6g0rdzhhxbibfcf3yh URL
- http://beta.quicklisp.org/archive/alexandria/2021-04-11/alexandria-20210411-git.tgz
- MD5 415c43451862b490577b20ee4fb8e8d7 NAME alexandria FILENAME alexandria
- DEPS NIL DEPENDENCIES NIL VERSION 20210411-git SIBLINGS (alexandria-tests)
+ 0y2x3xapx06v8083ls4pz12s63gv33d6ix05r61m62h4qqm8qk3j URL
+ http://beta.quicklisp.org/archive/alexandria/2021-08-07/alexandria-20210807-git.tgz
+ MD5 0193fd1a1d702b4a0fafa19361b1e644 NAME alexandria FILENAME alexandria
+ DEPS NIL DEPENDENCIES NIL VERSION 20210807-git SIBLINGS (alexandria-tests)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-operations.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-operations.nix
new file mode 100644
index 0000000000..28c1a9e843
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-operations.nix
@@ -0,0 +1,32 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "array-operations";
+ version = "20210411-git";
+
+ parasites = [ "array-operations/tests" ];
+
+ description = "Simple array operations library for Common Lisp.";
+
+ deps = [ args."alexandria" args."anaphora" args."clunit2" args."let-plus" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/array-operations/2021-04-11/array-operations-20210411-git.tgz";
+ sha256 = "0l6wxd3a1xdcmcsc93prq8ymainfsy15imiwnaik1i9g94fcbjz8";
+ };
+
+ packageName = "array-operations";
+
+ asdFilesToKeep = ["array-operations.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM array-operations DESCRIPTION
+ Simple array operations library for Common Lisp. SHA256
+ 0l6wxd3a1xdcmcsc93prq8ymainfsy15imiwnaik1i9g94fcbjz8 URL
+ http://beta.quicklisp.org/archive/array-operations/2021-04-11/array-operations-20210411-git.tgz
+ MD5 902c6034c006bc6ca88ef59e7ff2b1aa NAME array-operations FILENAME
+ array-operations DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME clunit2 FILENAME clunit2) (NAME let-plus FILENAME let-plus))
+ DEPENDENCIES (alexandria anaphora clunit2 let-plus) VERSION 20210411-git
+ SIBLINGS NIL PARASITES (array-operations/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binomial-heap.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binomial-heap.nix
new file mode 100644
index 0000000000..a72da04ad7
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binomial-heap.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "binomial-heap";
+ version = "20130420-git";
+
+ description = "A compact binomial heap implementation.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/binomial-heap/2013-04-20/binomial-heap-20130420-git.tgz";
+ sha256 = "0fl062psd0jn94raip46lq342xmsq0xgrql6v5f9j9w0ps0dg2ap";
+ };
+
+ packageName = "binomial-heap";
+
+ asdFilesToKeep = ["binomial-heap.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM binomial-heap DESCRIPTION A compact binomial heap implementation.
+ SHA256 0fl062psd0jn94raip46lq342xmsq0xgrql6v5f9j9w0ps0dg2ap URL
+ http://beta.quicklisp.org/archive/binomial-heap/2013-04-20/binomial-heap-20130420-git.tgz
+ MD5 ca40cb01b88a3fe902cc4cc25fb2d242 NAME binomial-heap FILENAME
+ binomial-heap DEPS NIL DEPENDENCIES NIL VERSION 20130420-git SIBLINGS NIL
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binpack.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binpack.nix
new file mode 100644
index 0000000000..1e7cf06581
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/binpack.nix
@@ -0,0 +1,28 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "binpack";
+ version = "20201220-git";
+
+ parasites = [ "binpack/2" ];
+
+ description = "Rectangle packer for sprite/texture atlases";
+
+ deps = [ args."alexandria" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/binpack/2020-12-20/binpack-20201220-git.tgz";
+ sha256 = "1kyl19kjsii2nrbf229c5fb3bjw7r25736f991g2j8vig991imwm";
+ };
+
+ packageName = "binpack";
+
+ asdFilesToKeep = ["binpack.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM binpack DESCRIPTION Rectangle packer for sprite/texture atlases
+ SHA256 1kyl19kjsii2nrbf229c5fb3bjw7r25736f991g2j8vig991imwm URL
+ http://beta.quicklisp.org/archive/binpack/2020-12-20/binpack-20201220-git.tgz
+ MD5 1ac4eaa76586091edb77111ea033f316 NAME binpack FILENAME binpack DEPS
+ ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION
+ 20201220-git SIBLINGS (binpack-test) PARASITES (binpack/2)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
deleted file mode 100644
index aa4ee83e5c..0000000000
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
+++ /dev/null
@@ -1,87 +0,0 @@
-/* Generated file. */
-args @ { fetchurl, ... }:
-rec {
- baseName = "caveman";
- version = "20200325-git";
-
- description = "Web Application Framework for Common Lisp";
-
- deps = [ args."alexandria" args."anaphora" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."circular-streams" args."cl_plus_ssl" args."cl-annot" args."cl-ansi-text" args."cl-base64" args."cl-colors" args."cl-colors2" args."cl-cookie" args."cl-emb" args."cl-fad" args."cl-ppcre" args."cl-project" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."clack-test" args."clack-v1-compat" args."dexador" args."dissect" args."do-urlencode" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."let-plus" args."local-time" args."map-set" args."marshal" args."md5" args."myway" args."named-readtables" args."proc-parse" args."prove" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."usocket" args."xsubseq" ];
-
- src = fetchurl {
- url = "http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz";
- sha256 = "0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py";
- };
-
- packageName = "caveman";
-
- asdFilesToKeep = ["caveman.asd"];
- overrides = x: x;
-}
-/* (SYSTEM caveman DESCRIPTION Web Application Framework for Common Lisp SHA256
- 0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py URL
- http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz
- MD5 32a7cbce26c77f885a497117c8e94a13 NAME caveman FILENAME caveman DEPS
- ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
- (NAME babel FILENAME babel)
- (NAME bordeaux-threads FILENAME bordeaux-threads)
- (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
- (NAME cffi-toolchain FILENAME cffi-toolchain) (NAME chipz FILENAME chipz)
- (NAME chunga FILENAME chunga)
- (NAME circular-streams FILENAME circular-streams)
- (NAME cl+ssl FILENAME cl_plus_ssl) (NAME cl-annot FILENAME cl-annot)
- (NAME cl-ansi-text FILENAME cl-ansi-text)
- (NAME cl-base64 FILENAME cl-base64) (NAME cl-colors FILENAME cl-colors)
- (NAME cl-colors2 FILENAME cl-colors2) (NAME cl-cookie FILENAME cl-cookie)
- (NAME cl-emb FILENAME cl-emb) (NAME cl-fad FILENAME cl-fad)
- (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-project FILENAME cl-project)
- (NAME cl-reexport FILENAME cl-reexport)
- (NAME cl-syntax FILENAME cl-syntax)
- (NAME cl-syntax-annot FILENAME cl-syntax-annot)
- (NAME cl-utilities FILENAME cl-utilities) (NAME clack FILENAME clack)
- (NAME clack-handler-hunchentoot FILENAME clack-handler-hunchentoot)
- (NAME clack-socket FILENAME clack-socket)
- (NAME clack-test FILENAME clack-test)
- (NAME clack-v1-compat FILENAME clack-v1-compat)
- (NAME dexador FILENAME dexador) (NAME dissect FILENAME dissect)
- (NAME do-urlencode FILENAME do-urlencode)
- (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io)
- (NAME flexi-streams FILENAME flexi-streams)
- (NAME http-body FILENAME http-body)
- (NAME hunchentoot FILENAME hunchentoot) (NAME ironclad FILENAME ironclad)
- (NAME jonathan FILENAME jonathan) (NAME lack FILENAME lack)
- (NAME lack-component FILENAME lack-component)
- (NAME lack-middleware-backtrace FILENAME lack-middleware-backtrace)
- (NAME lack-util FILENAME lack-util) (NAME let-plus FILENAME let-plus)
- (NAME local-time FILENAME local-time) (NAME map-set FILENAME map-set)
- (NAME marshal FILENAME marshal) (NAME md5 FILENAME md5)
- (NAME myway FILENAME myway)
- (NAME named-readtables FILENAME named-readtables)
- (NAME proc-parse FILENAME proc-parse) (NAME prove FILENAME prove)
- (NAME quri FILENAME quri) (NAME rfc2388 FILENAME rfc2388)
- (NAME rove FILENAME rove) (NAME smart-buffer FILENAME smart-buffer)
- (NAME split-sequence FILENAME split-sequence)
- (NAME static-vectors FILENAME static-vectors)
- (NAME trivial-backtrace FILENAME trivial-backtrace)
- (NAME trivial-features FILENAME trivial-features)
- (NAME trivial-garbage FILENAME trivial-garbage)
- (NAME trivial-gray-streams FILENAME trivial-gray-streams)
- (NAME trivial-mimes FILENAME trivial-mimes)
- (NAME trivial-types FILENAME trivial-types)
- (NAME usocket FILENAME usocket) (NAME xsubseq FILENAME xsubseq))
- DEPENDENCIES
- (alexandria anaphora babel bordeaux-threads cffi cffi-grovel cffi-toolchain
- chipz chunga circular-streams cl+ssl cl-annot cl-ansi-text cl-base64
- cl-colors cl-colors2 cl-cookie cl-emb cl-fad cl-ppcre cl-project
- cl-reexport cl-syntax cl-syntax-annot cl-utilities clack
- clack-handler-hunchentoot clack-socket clack-test clack-v1-compat dexador
- dissect do-urlencode fast-http fast-io flexi-streams http-body hunchentoot
- ironclad jonathan lack lack-component lack-middleware-backtrace lack-util
- let-plus local-time map-set marshal md5 myway named-readtables proc-parse
- prove quri rfc2388 rove smart-buffer split-sequence static-vectors
- trivial-backtrace trivial-features trivial-garbage trivial-gray-streams
- trivial-mimes trivial-types usocket xsubseq)
- VERSION 20200325-git SIBLINGS
- (caveman-middleware-dbimanager caveman-test caveman2-db caveman2-test
- caveman2)
- PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix
index b326d625f4..e109904cda 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix
@@ -6,7 +6,7 @@ rec {
description = "The CFFI toolchain";
- deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ];
+ deps = [ args."alexandria" args."asdf" args."babel" args."cffi" args."trivial-features" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz";
@@ -23,10 +23,10 @@ rec {
http://beta.quicklisp.org/archive/cffi/2021-04-11/cffi_0.24.1.tgz MD5
c3df5c460e00e5af8b8bd2cd03a4b5cc NAME cffi-toolchain FILENAME
cffi-toolchain DEPS
- ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
- (NAME cffi FILENAME cffi)
+ ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf)
+ (NAME babel FILENAME babel) (NAME cffi FILENAME cffi)
(NAME trivial-features FILENAME trivial-features))
- DEPENDENCIES (alexandria babel cffi trivial-features) VERSION cffi_0.24.1
- SIBLINGS
+ DEPENDENCIES (alexandria asdf babel cffi trivial-features) VERSION
+ cffi_0.24.1 SIBLINGS
(cffi-examples cffi-grovel cffi-libffi cffi-tests cffi-uffi-compat cffi)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/check-it.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/check-it.nix
new file mode 100644
index 0000000000..989cb5a75c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/check-it.nix
@@ -0,0 +1,32 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "check-it";
+ version = "20150709-git";
+
+ parasites = [ "check-it-test" ];
+
+ description = "A randomized property-based testing tool for Common Lisp.";
+
+ deps = [ args."alexandria" args."closer-mop" args."optima" args."stefil" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/check-it/2015-07-09/check-it-20150709-git.tgz";
+ sha256 = "1bx3ndkkl3w7clkqplhy6c2sz46pcp5w76j610gynzv7scz72iw2";
+ };
+
+ packageName = "check-it";
+
+ asdFilesToKeep = ["check-it.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM check-it DESCRIPTION
+ A randomized property-based testing tool for Common Lisp. SHA256
+ 1bx3ndkkl3w7clkqplhy6c2sz46pcp5w76j610gynzv7scz72iw2 URL
+ http://beta.quicklisp.org/archive/check-it/2015-07-09/check-it-20150709-git.tgz
+ MD5 0baae55e5a9c8c884202cbc51e634c42 NAME check-it FILENAME check-it DEPS
+ ((NAME alexandria FILENAME alexandria)
+ (NAME closer-mop FILENAME closer-mop) (NAME optima FILENAME optima)
+ (NAME stefil FILENAME stefil))
+ DEPENDENCIES (alexandria closer-mop optima stefil) VERSION 20150709-git
+ SIBLINGS NIL PARASITES (check-it-test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
index b6cb67b2c3..a9438deca7 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "chipz";
- version = "20190202-git";
+ version = "20210807-git";
description = "A library for decompressing deflate, zlib, and gzip data";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz";
- sha256 = "1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a";
+ url = "http://beta.quicklisp.org/archive/chipz/2021-08-07/chipz-20210807-git.tgz";
+ sha256 = "0g7xhh4yq9azjq7gnszaq2kbxima2q30apb3rrglc1ign973hr8x";
};
packageName = "chipz";
@@ -20,7 +20,7 @@ rec {
}
/* (SYSTEM chipz DESCRIPTION
A library for decompressing deflate, zlib, and gzip data SHA256
- 1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a URL
- http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz
- MD5 e3533408ca6899fe996eede390e820c7 NAME chipz FILENAME chipz DEPS NIL
- DEPENDENCIES NIL VERSION 20190202-git SIBLINGS NIL PARASITES NIL) */
+ 0g7xhh4yq9azjq7gnszaq2kbxima2q30apb3rrglc1ign973hr8x URL
+ http://beta.quicklisp.org/archive/chipz/2021-08-07/chipz-20210807-git.tgz
+ MD5 11438e3bc60c39294c337cb232ae8040 NAME chipz FILENAME chipz DEPS NIL
+ DEPENDENCIES NIL VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ascii-table.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ascii-table.nix
new file mode 100644
index 0000000000..aae1b84875
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ascii-table.nix
@@ -0,0 +1,27 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-ascii-table";
+ version = "20200610-git";
+
+ description = "Common Lisp library to present tabular data in ascii-art table.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-ascii-table/2020-06-10/cl-ascii-table-20200610-git.tgz";
+ sha256 = "00395cbmjwlywyks3zd4mqp0w7yyms61ywp06knv1gbf847vy7yi";
+ };
+
+ packageName = "cl-ascii-table";
+
+ asdFilesToKeep = ["cl-ascii-table.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-ascii-table DESCRIPTION
+ Common Lisp library to present tabular data in ascii-art table. SHA256
+ 00395cbmjwlywyks3zd4mqp0w7yyms61ywp06knv1gbf847vy7yi URL
+ http://beta.quicklisp.org/archive/cl-ascii-table/2020-06-10/cl-ascii-table-20200610-git.tgz
+ MD5 6f2eaaae3fb03ba719d77ed3ffaeaf4f NAME cl-ascii-table FILENAME
+ cl-ascii-table DEPS NIL DEPENDENCIES NIL VERSION 20200610-git SIBLINGS NIL
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix
index 03e52a9ed0..00345eb2d6 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-async-repl";
- version = "cl-async-20210228-git";
+ version = "cl-async-20210531-git";
description = "REPL integration for CL-ASYNC.";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
- sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
+ url = "http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz";
+ sha256 = "0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw";
};
packageName = "cl-async-repl";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-async-repl DESCRIPTION REPL integration for CL-ASYNC. SHA256
- 08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4 URL
- http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz
- MD5 0954743eb96f941aa27ff09bceff91dc NAME cl-async-repl FILENAME
+ 0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw URL
+ http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz
+ MD5 bf2b1337e09df5ecca329c3e92622376 NAME cl-async-repl FILENAME
cl-async-repl DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -40,5 +40,5 @@ rec {
(alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-async
cl-async-base cl-async-util cl-libuv cl-ppcre fast-io static-vectors
trivial-features trivial-gray-streams vom)
- VERSION cl-async-20210228-git SIBLINGS
+ VERSION cl-async-20210531-git SIBLINGS
(cl-async-ssl cl-async-test cl-async) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix
index eaef8f2bd5..5a6c9052be 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-async-ssl";
- version = "cl-async-20210228-git";
+ version = "cl-async-20210531-git";
description = "SSL Wrapper around cl-async socket implementation.";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
- sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
+ url = "http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz";
+ sha256 = "0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw";
};
packageName = "cl-async-ssl";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM cl-async-ssl DESCRIPTION
SSL Wrapper around cl-async socket implementation. SHA256
- 08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4 URL
- http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz
- MD5 0954743eb96f941aa27ff09bceff91dc NAME cl-async-ssl FILENAME
+ 0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw URL
+ http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz
+ MD5 bf2b1337e09df5ecca329c3e92622376 NAME cl-async-ssl FILENAME
cl-async-ssl DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -41,5 +41,5 @@ rec {
(alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-async
cl-async-base cl-async-util cl-libuv cl-ppcre fast-io static-vectors
trivial-features trivial-gray-streams vom)
- VERSION cl-async-20210228-git SIBLINGS
+ VERSION cl-async-20210531-git SIBLINGS
(cl-async-repl cl-async-test cl-async) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix
index d6dea61e5b..0ef5480397 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-async";
- version = "20210228-git";
+ version = "20210531-git";
parasites = [ "cl-async-base" "cl-async-util" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."uiop" args."vom" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
- sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
+ url = "http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz";
+ sha256 = "0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw";
};
packageName = "cl-async";
@@ -21,9 +21,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-async DESCRIPTION Asynchronous operations for Common Lisp. SHA256
- 08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4 URL
- http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz
- MD5 0954743eb96f941aa27ff09bceff91dc NAME cl-async FILENAME cl-async DEPS
+ 0hvgxkdvz1hz9ysyajlsnckcypfqka6h5payy3chxbnbvis4kkqw URL
+ http://beta.quicklisp.org/archive/cl-async/2021-05-31/cl-async-20210531-git.tgz
+ MD5 bf2b1337e09df5ecca329c3e92622376 NAME cl-async FILENAME cl-async DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
@@ -38,5 +38,5 @@ rec {
(alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain cl-libuv
cl-ppcre fast-io static-vectors trivial-features trivial-gray-streams uiop
vom)
- VERSION 20210228-git SIBLINGS (cl-async-repl cl-async-ssl cl-async-test)
+ VERSION 20210531-git SIBLINGS (cl-async-repl cl-async-ssl cl-async-test)
PARASITES (cl-async-base cl-async-util)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix
index 5fac77896b..a354c564be 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix
@@ -2,17 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-colors2";
- version = "20210411-git";
-
- parasites = [ "cl-colors2/tests" ];
+ version = "20210630-git";
description = "Simple color library for Common Lisp";
- deps = [ args."alexandria" args."cl-ppcre" args."clunit2" ];
+ deps = [ args."alexandria" args."cl-ppcre" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-colors2/2021-04-11/cl-colors2-20210411-git.tgz";
- sha256 = "14kdi214x8rxil27wfbx0csgi7g8dg5wsifpsrdrqph0p7ps8snk";
+ url = "http://beta.quicklisp.org/archive/cl-colors2/2021-06-30/cl-colors2-20210630-git.tgz";
+ sha256 = "00mb239p4r30fm7b0qwfg1vfyp83h2h87igk3hqqgvadp6infi7g";
};
packageName = "cl-colors2";
@@ -21,11 +19,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-colors2 DESCRIPTION Simple color library for Common Lisp SHA256
- 14kdi214x8rxil27wfbx0csgi7g8dg5wsifpsrdrqph0p7ps8snk URL
- http://beta.quicklisp.org/archive/cl-colors2/2021-04-11/cl-colors2-20210411-git.tgz
- MD5 e6b54e76e7d1cfcff45955dbd4752f1d NAME cl-colors2 FILENAME cl-colors2
+ 00mb239p4r30fm7b0qwfg1vfyp83h2h87igk3hqqgvadp6infi7g URL
+ http://beta.quicklisp.org/archive/cl-colors2/2021-06-30/cl-colors2-20210630-git.tgz
+ MD5 50a5885e2b55239d5904b0a0134e0be3 NAME cl-colors2 FILENAME cl-colors2
DEPS
- ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre)
- (NAME clunit2 FILENAME clunit2))
- DEPENDENCIES (alexandria cl-ppcre clunit2) VERSION 20210411-git SIBLINGS
- NIL PARASITES (cl-colors2/tests)) */
+ ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre))
+ DEPENDENCIES (alexandria cl-ppcre) VERSION 20210630-git SIBLINGS NIL
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cuda.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cuda.nix
new file mode 100644
index 0000000000..900baca3d6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cuda.nix
@@ -0,0 +1,45 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-cuda";
+ version = "20210807-git";
+
+ description = "Cl-cuda is a library to use NVIDIA CUDA in Common Lisp programs.";
+
+ deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-pattern" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."external-program" args."named-readtables" args."osicat" args."split-sequence" args."trivial-features" args."trivial-types" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-cuda/2021-08-07/cl-cuda-20210807-git.tgz";
+ sha256 = "0q974qrjxdn7c53frpac0hz9wnxhnf3lf8xngrc8zkphp1windc0";
+ };
+
+ packageName = "cl-cuda";
+
+ asdFilesToKeep = ["cl-cuda.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-cuda DESCRIPTION
+ Cl-cuda is a library to use NVIDIA CUDA in Common Lisp programs. SHA256
+ 0q974qrjxdn7c53frpac0hz9wnxhnf3lf8xngrc8zkphp1windc0 URL
+ http://beta.quicklisp.org/archive/cl-cuda/2021-08-07/cl-cuda-20210807-git.tgz
+ MD5 0502aed4f738192adee742b7757ee8d7 NAME cl-cuda FILENAME cl-cuda DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
+ (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
+ (NAME cffi-toolchain FILENAME cffi-toolchain)
+ (NAME cl-annot FILENAME cl-annot) (NAME cl-pattern FILENAME cl-pattern)
+ (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-reexport FILENAME cl-reexport)
+ (NAME cl-syntax FILENAME cl-syntax)
+ (NAME cl-syntax-annot FILENAME cl-syntax-annot)
+ (NAME external-program FILENAME external-program)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME osicat FILENAME osicat)
+ (NAME split-sequence FILENAME split-sequence)
+ (NAME trivial-features FILENAME trivial-features)
+ (NAME trivial-types FILENAME trivial-types))
+ DEPENDENCIES
+ (alexandria babel cffi cffi-grovel cffi-toolchain cl-annot cl-pattern
+ cl-ppcre cl-reexport cl-syntax cl-syntax-annot external-program
+ named-readtables osicat split-sequence trivial-features trivial-types)
+ VERSION 20210807-git SIBLINGS
+ (cl-cuda-examples cl-cuda-interop-examples cl-cuda-interop cl-cuda-misc)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-digraph.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-digraph.nix
new file mode 100644
index 0000000000..513d4537c1
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-digraph.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-digraph";
+ version = "20210411-hg";
+
+ description = "Simple directed graphs for Common Lisp.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-digraph/2021-04-11/cl-digraph-20210411-hg.tgz";
+ sha256 = "1g9l3dzw4ykvprl3id7xv4brpzz86jk70z4wfw5lkq8vpxv397fi";
+ };
+
+ packageName = "cl-digraph";
+
+ asdFilesToKeep = ["cl-digraph.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-digraph DESCRIPTION Simple directed graphs for Common Lisp.
+ SHA256 1g9l3dzw4ykvprl3id7xv4brpzz86jk70z4wfw5lkq8vpxv397fi URL
+ http://beta.quicklisp.org/archive/cl-digraph/2021-04-11/cl-digraph-20210411-hg.tgz
+ MD5 c7c947fb7471213b24505bff1e9287de NAME cl-digraph FILENAME cl-digraph
+ DEPS NIL DEPENDENCIES NIL VERSION 20210411-hg SIBLINGS
+ (cl-digraph.dot cl-digraph.test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-environments.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-environments.nix
index 803d138b2e..223da7f670 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-environments.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-environments.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-environments";
- version = "20210411-git";
+ version = "20210807-git";
parasites = [ "cl-environments/test" ];
@@ -10,11 +10,11 @@ rec {
for implementations which do not provide the
functionality to the programmer.";
- deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-ppcre" args."closer-mop" args."collectors" args."iterate" args."optima" args."prove" args."prove-asdf" args."symbol-munger" ];
+ deps = [ args."alexandria" args."anaphora" args."closer-mop" args."collectors" args."fiveam" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-environments/2021-04-11/cl-environments-20210411-git.tgz";
- sha256 = "1xs1wwf6fmzq5zxmv5d9f2mfmhc7j2w03519ky6id5md75j68lhk";
+ url = "http://beta.quicklisp.org/archive/cl-environments/2021-08-07/cl-environments-20210807-git.tgz";
+ sha256 = "1i544zz9v49b0mdv96sr17ivnz4s84lgw4vypq9v9w6cmhz5v8am";
};
packageName = "cl-environments";
@@ -26,19 +26,17 @@ rec {
Implements the CLTL2 environment access functionality
for implementations which do not provide the
functionality to the programmer.
- SHA256 1xs1wwf6fmzq5zxmv5d9f2mfmhc7j2w03519ky6id5md75j68lhk URL
- http://beta.quicklisp.org/archive/cl-environments/2021-04-11/cl-environments-20210411-git.tgz
- MD5 87b7c0186d37d30d24df11d021ab4fba NAME cl-environments FILENAME
+ SHA256 1i544zz9v49b0mdv96sr17ivnz4s84lgw4vypq9v9w6cmhz5v8am URL
+ http://beta.quicklisp.org/archive/cl-environments/2021-08-07/cl-environments-20210807-git.tgz
+ MD5 6884f21f315c5082fd6db7233497497d NAME cl-environments FILENAME
cl-environments DEPS
((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
- (NAME cl-ansi-text FILENAME cl-ansi-text)
- (NAME cl-colors FILENAME cl-colors) (NAME cl-ppcre FILENAME cl-ppcre)
(NAME closer-mop FILENAME closer-mop)
- (NAME collectors FILENAME collectors) (NAME iterate FILENAME iterate)
- (NAME optima FILENAME optima) (NAME prove FILENAME prove)
- (NAME prove-asdf FILENAME prove-asdf)
+ (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam)
+ (NAME iterate FILENAME iterate) (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
(NAME symbol-munger FILENAME symbol-munger))
DEPENDENCIES
- (alexandria anaphora cl-ansi-text cl-colors cl-ppcre closer-mop collectors
- iterate optima prove prove-asdf symbol-munger)
- VERSION 20210411-git SIBLINGS NIL PARASITES (cl-environments/test)) */
+ (alexandria anaphora closer-mop collectors fiveam iterate optima
+ parse-declarations-1.0 symbol-munger)
+ VERSION 20210807-git SIBLINGS NIL PARASITES (cl-environments/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-form-types.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-form-types.nix
new file mode 100644
index 0000000000..b2cb1243e6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-form-types.nix
@@ -0,0 +1,42 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-form-types";
+ version = "20210807-git";
+
+ parasites = [ "cl-form-types/test" ];
+
+ description = "Library for determining types of Common Lisp forms.";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."closer-mop" args."collectors" args."fiveam" args."introspect-environment" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-form-types/2021-08-07/cl-form-types-20210807-git.tgz";
+ sha256 = "1hv78ygnzf67f8ww22bmc2nx2gmw3lg7qc3navmd541jivx6v0lp";
+ };
+
+ packageName = "cl-form-types";
+
+ asdFilesToKeep = ["cl-form-types.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-form-types DESCRIPTION
+ Library for determining types of Common Lisp forms. SHA256
+ 1hv78ygnzf67f8ww22bmc2nx2gmw3lg7qc3navmd541jivx6v0lp URL
+ http://beta.quicklisp.org/archive/cl-form-types/2021-08-07/cl-form-types-20210807-git.tgz
+ MD5 1b1415794a4e9cd6716ee3b5eb0f658a NAME cl-form-types FILENAME
+ cl-form-types DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate) (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME symbol-munger FILENAME symbol-munger))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments closer-mop collectors
+ fiveam introspect-environment iterate optima parse-declarations-1.0
+ symbol-munger)
+ VERSION 20210807-git SIBLINGS NIL PARASITES (cl-form-types/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuzz.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuzz.nix
new file mode 100644
index 0000000000..d55859d385
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuzz.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-fuzz";
+ version = "20181018-git";
+
+ description = "A Fuzz Testing Framework";
+
+ deps = [ args."alexandria" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-fuzz/2018-10-18/cl-fuzz-20181018-git.tgz";
+ sha256 = "1kxh73lbnhzzpflab1vpxsmg4qia9n42sij0459iksi29kmjxjpz";
+ };
+
+ packageName = "cl-fuzz";
+
+ asdFilesToKeep = ["cl-fuzz.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-fuzz DESCRIPTION A Fuzz Testing Framework SHA256
+ 1kxh73lbnhzzpflab1vpxsmg4qia9n42sij0459iksi29kmjxjpz URL
+ http://beta.quicklisp.org/archive/cl-fuzz/2018-10-18/cl-fuzz-20181018-git.tgz
+ MD5 22e715b370ea886bbff1e09db20c4e32 NAME cl-fuzz FILENAME cl-fuzz DEPS
+ ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION
+ 20181018-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-geometry.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-geometry.nix
new file mode 100644
index 0000000000..3442df57a1
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-geometry.nix
@@ -0,0 +1,27 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-geometry";
+ version = "20160531-git";
+
+ description = "Library for two dimensional geometry.";
+
+ deps = [ args."iterate" args."trees" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-geometry/2016-05-31/cl-geometry-20160531-git.tgz";
+ sha256 = "0v451w2dx9llvd2kgp3m5jn2n8n0xwynxf8zl436cngh63ag6s7p";
+ };
+
+ packageName = "cl-geometry";
+
+ asdFilesToKeep = ["cl-geometry.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-geometry DESCRIPTION Library for two dimensional geometry. SHA256
+ 0v451w2dx9llvd2kgp3m5jn2n8n0xwynxf8zl436cngh63ag6s7p URL
+ http://beta.quicklisp.org/archive/cl-geometry/2016-05-31/cl-geometry-20160531-git.tgz
+ MD5 c0aaccbb4e2df6c504e6c1cd15155353 NAME cl-geometry FILENAME cl-geometry
+ DEPS ((NAME iterate FILENAME iterate) (NAME trees FILENAME trees))
+ DEPENDENCIES (iterate trees) VERSION 20160531-git SIBLINGS
+ (cl-geometry-tests) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-heap.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-heap.nix
new file mode 100644
index 0000000000..da66b895bf
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-heap.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-heap";
+ version = "0.1.6";
+
+ description = "An implementation of heap and priority queue data structures.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-heap/2013-03-12/cl-heap-0.1.6.tgz";
+ sha256 = "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i";
+ };
+
+ packageName = "cl-heap";
+
+ asdFilesToKeep = ["cl-heap.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-heap DESCRIPTION
+ An implementation of heap and priority queue data structures. SHA256
+ 163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i URL
+ http://beta.quicklisp.org/archive/cl-heap/2013-03-12/cl-heap-0.1.6.tgz MD5
+ a12d71f7bbe22d6acdcc7cf36fb907b0 NAME cl-heap FILENAME cl-heap DEPS NIL
+ DEPENDENCIES NIL VERSION 0.1.6 SIBLINGS (cl-heap-tests) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-num-utils.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-num-utils.nix
new file mode 100644
index 0000000000..8d0a77d85e
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-num-utils.nix
@@ -0,0 +1,34 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-num-utils";
+ version = "20210531-git";
+
+ parasites = [ "cl-num-utils-tests" ];
+
+ description = "Numerical utilities for Common Lisp";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-slice" args."clunit" args."let-plus" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-num-utils/2021-05-31/cl-num-utils-20210531-git.tgz";
+ sha256 = "1snhwhnrkmavkhwd0dx7a958xdiwcc0a84fj0k5xqj99ksd9hp8x";
+ };
+
+ packageName = "cl-num-utils";
+
+ asdFilesToKeep = ["cl-num-utils.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-num-utils DESCRIPTION Numerical utilities for Common Lisp SHA256
+ 1snhwhnrkmavkhwd0dx7a958xdiwcc0a84fj0k5xqj99ksd9hp8x URL
+ http://beta.quicklisp.org/archive/cl-num-utils/2021-05-31/cl-num-utils-20210531-git.tgz
+ MD5 1977251bf552ba82005de0dc2f37d130 NAME cl-num-utils FILENAME
+ cl-num-utils DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME cl-slice FILENAME cl-slice) (NAME clunit FILENAME clunit)
+ (NAME let-plus FILENAME let-plus))
+ DEPENDENCIES
+ (alexandria anaphora array-operations cl-slice clunit let-plus) VERSION
+ 20210531-git SIBLINGS NIL PARASITES (cl-num-utils-tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pattern.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pattern.nix
new file mode 100644
index 0000000000..c53bd98424
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pattern.nix
@@ -0,0 +1,34 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-pattern";
+ version = "20140713-git";
+
+ description = "System lacks description";
+
+ deps = [ args."alexandria" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."named-readtables" args."trivial-types" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-pattern/2014-07-13/cl-pattern-20140713-git.tgz";
+ sha256 = "08z7jccjcq41i3i5zdsgixqnijgyrb4q7hm7gq8l5xb1sr3kj72v";
+ };
+
+ packageName = "cl-pattern";
+
+ asdFilesToKeep = ["cl-pattern.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-pattern DESCRIPTION System lacks description SHA256
+ 08z7jccjcq41i3i5zdsgixqnijgyrb4q7hm7gq8l5xb1sr3kj72v URL
+ http://beta.quicklisp.org/archive/cl-pattern/2014-07-13/cl-pattern-20140713-git.tgz
+ MD5 cf8e74def535c66a358df1ada9d89785 NAME cl-pattern FILENAME cl-pattern
+ DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME cl-annot FILENAME cl-annot)
+ (NAME cl-syntax FILENAME cl-syntax)
+ (NAME cl-syntax-annot FILENAME cl-syntax-annot)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME trivial-types FILENAME trivial-types))
+ DEPENDENCIES
+ (alexandria cl-annot cl-syntax cl-syntax-annot named-readtables
+ trivial-types)
+ VERSION 20140713-git SIBLINGS (cl-pattern-benchmark) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix
index 7af4eaf431..7a697402f2 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-pdf";
- version = "20210228-git";
+ version = "20210531-git";
description = "Common Lisp PDF Generation Library";
deps = [ args."iterate" args."uiop" args."zpb-ttf" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz";
- sha256 = "1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y";
+ url = "http://beta.quicklisp.org/archive/cl-pdf/2021-05-31/cl-pdf-20210531-git.tgz";
+ sha256 = "0f5flqci615ck0ncq4f7x67x31m9715750r0wg3gx6qrdpi0k1cx";
};
packageName = "cl-pdf";
@@ -19,10 +19,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-pdf DESCRIPTION Common Lisp PDF Generation Library SHA256
- 1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y URL
- http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz
- MD5 a0eae40821642fc5287b67bf462b54d9 NAME cl-pdf FILENAME cl-pdf DEPS
+ 0f5flqci615ck0ncq4f7x67x31m9715750r0wg3gx6qrdpi0k1cx URL
+ http://beta.quicklisp.org/archive/cl-pdf/2021-05-31/cl-pdf-20210531-git.tgz
+ MD5 675d3498976f4cb118dc72fa71829f5c NAME cl-pdf FILENAME cl-pdf DEPS
((NAME iterate FILENAME iterate) (NAME uiop FILENAME uiop)
(NAME zpb-ttf FILENAME zpb-ttf))
- DEPENDENCIES (iterate uiop zpb-ttf) VERSION 20210228-git SIBLINGS
+ DEPENDENCIES (iterate uiop zpb-ttf) VERSION 20210531-git SIBLINGS
(cl-pdf-parser) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix
index 5e78f8e98c..1ba3f0f93c 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-postgres";
- version = "postmodern-20210411-git";
+ version = "postmodern-20210807-git";
parasites = [ "cl-postgres/simple-date-tests" "cl-postgres/tests" ];
description = "Low-level client library for PostgreSQL";
- deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-ppcre" args."fiveam" args."ironclad" args."md5" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."usocket" ];
+ deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-ppcre" args."fiveam" args."ironclad" args."md5" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."uiop" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz";
- sha256 = "0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw";
+ url = "http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz";
+ sha256 = "01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp";
};
packageName = "cl-postgres";
@@ -21,9 +21,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-postgres DESCRIPTION Low-level client library for PostgreSQL
- SHA256 0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw URL
- http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz
- MD5 8a75a05ba9e371f672f2620d40724cb2 NAME cl-postgres FILENAME cl-postgres
+ SHA256 01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp URL
+ http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz
+ MD5 aa951f2ad4ce59fce588a62afa34f3ec NAME cl-postgres FILENAME cl-postgres
DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -32,9 +32,10 @@ rec {
(NAME md5 FILENAME md5) (NAME simple-date FILENAME simple-date)
(NAME simple-date/postgres-glue FILENAME simple-date_slash_postgres-glue)
(NAME split-sequence FILENAME split-sequence)
- (NAME uax-15 FILENAME uax-15) (NAME usocket FILENAME usocket))
+ (NAME uax-15 FILENAME uax-15) (NAME uiop FILENAME uiop)
+ (NAME usocket FILENAME usocket))
DEPENDENCIES
(alexandria bordeaux-threads cl-base64 cl-ppcre fiveam ironclad md5
- simple-date simple-date/postgres-glue split-sequence uax-15 usocket)
- VERSION postmodern-20210411-git SIBLINGS (postmodern s-sql simple-date)
+ simple-date simple-date/postgres-glue split-sequence uax-15 uiop usocket)
+ VERSION postmodern-20210807-git SIBLINGS (postmodern s-sql simple-date)
PARASITES (cl-postgres/simple-date-tests cl-postgres/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix
index 333b7ac587..0266eac4e8 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-prevalence";
- version = "20210228-git";
+ version = "20210531-git";
description = "Common Lisp Prevalence Package";
deps = [ args."alexandria" args."bordeaux-threads" args."s-sysdeps" args."s-xml" args."split-sequence" args."usocket" args."usocket-server" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz";
- sha256 = "0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl";
+ url = "http://beta.quicklisp.org/archive/cl-prevalence/2021-05-31/cl-prevalence-20210531-git.tgz";
+ sha256 = "1608xbfyr0id1nwf9845yfaqz5jbi60vz6c36h70bnzkm4b55s1w";
};
packageName = "cl-prevalence";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-prevalence DESCRIPTION Common Lisp Prevalence Package SHA256
- 0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl URL
- http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz
- MD5 d67c661693637b837ef7f6b1d4d47f9f NAME cl-prevalence FILENAME
+ 1608xbfyr0id1nwf9845yfaqz5jbi60vz6c36h70bnzkm4b55s1w URL
+ http://beta.quicklisp.org/archive/cl-prevalence/2021-05-31/cl-prevalence-20210531-git.tgz
+ MD5 4d2ced14365fb45ef97621298fd24501 NAME cl-prevalence FILENAME
cl-prevalence DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -32,4 +32,4 @@ rec {
DEPENDENCIES
(alexandria bordeaux-threads s-sysdeps s-xml split-sequence usocket
usocket-server)
- VERSION 20210228-git SIBLINGS (cl-prevalence-test) PARASITES NIL) */
+ VERSION 20210531-git SIBLINGS (cl-prevalence-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix
index 0281fc3eed..ea1219ae93 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix
@@ -6,7 +6,7 @@ rec {
description = "Protobufs for Common Lisp";
- deps = [ args."alexandria" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ];
+ deps = [ args."alexandria" args."asdf" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz";
@@ -23,9 +23,10 @@ rec {
http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz
MD5 9fb9af8bd53796b3cf8f358762095899 NAME cl-protobufs FILENAME
cl-protobufs DEPS
- ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
- (NAME closer-mop FILENAME closer-mop)
+ ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf)
+ (NAME babel FILENAME babel) (NAME closer-mop FILENAME closer-mop)
(NAME trivial-features FILENAME trivial-features)
(NAME trivial-garbage FILENAME trivial-garbage))
- DEPENDENCIES (alexandria babel closer-mop trivial-features trivial-garbage)
- VERSION 20200325-git SIBLINGS (cl-protobufs-tests) PARASITES NIL) */
+ DEPENDENCIES
+ (alexandria asdf babel closer-mop trivial-features trivial-garbage) VERSION
+ 20200325-git SIBLINGS (cl-protobufs-tests) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-semver.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-semver.nix
new file mode 100644
index 0000000000..d3eae0bc44
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-semver.nix
@@ -0,0 +1,31 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-semver";
+ version = "20201220-git";
+
+ description = "Semantic Version implementation";
+
+ deps = [ args."alexandria" args."esrap" args."named-readtables" args."trivial-with-current-source-form" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-semver/2020-12-20/cl-semver-20201220-git.tgz";
+ sha256 = "02m23kwsz49dh7jq2rgcd1c4asgjj1g7dy321hyr07k5hqmhk92y";
+ };
+
+ packageName = "cl-semver";
+
+ asdFilesToKeep = ["cl-semver.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-semver DESCRIPTION Semantic Version implementation SHA256
+ 02m23kwsz49dh7jq2rgcd1c4asgjj1g7dy321hyr07k5hqmhk92y URL
+ http://beta.quicklisp.org/archive/cl-semver/2020-12-20/cl-semver-20201220-git.tgz
+ MD5 7fcc6938d4618687bf1e18ba40d6ac6e NAME cl-semver FILENAME cl-semver DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME esrap FILENAME esrap)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME trivial-with-current-source-form FILENAME
+ trivial-with-current-source-form))
+ DEPENDENCIES
+ (alexandria esrap named-readtables trivial-with-current-source-form)
+ VERSION 20201220-git SIBLINGS (cl-semver-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix
index 0775433422..0966abf8e1 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-slice";
- version = "20171130-git";
+ version = "20210531-git";
parasites = [ "cl-slice-tests" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."alexandria" args."anaphora" args."clunit" args."let-plus" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz";
- sha256 = "0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn";
+ url = "http://beta.quicklisp.org/archive/cl-slice/2021-05-31/cl-slice-20210531-git.tgz";
+ sha256 = "1jkm8yrnc0x2nx4bwwk56xda1r5h2aw0q4yfbv8lywaiwj92v7hk";
};
packageName = "cl-slice";
@@ -21,10 +21,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-slice DESCRIPTION DSL for array slices in Common Lisp. SHA256
- 0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn URL
- http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz
- MD5 b83a7a9aa503dc01cba43cf1e494e67d NAME cl-slice FILENAME cl-slice DEPS
+ 1jkm8yrnc0x2nx4bwwk56xda1r5h2aw0q4yfbv8lywaiwj92v7hk URL
+ http://beta.quicklisp.org/archive/cl-slice/2021-05-31/cl-slice-20210531-git.tgz
+ MD5 d7be90ed28b5c316b1f31b4f567bd725 NAME cl-slice FILENAME cl-slice DEPS
((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
(NAME clunit FILENAME clunit) (NAME let-plus FILENAME let-plus))
- DEPENDENCIES (alexandria anaphora clunit let-plus) VERSION 20171130-git
+ DEPENDENCIES (alexandria anaphora clunit let-plus) VERSION 20210531-git
SIBLINGS NIL PARASITES (cl-slice-tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-smt-lib.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-smt-lib.nix
new file mode 100644
index 0000000000..62d77dfa7c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-smt-lib.nix
@@ -0,0 +1,31 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-smt-lib";
+ version = "20210630-git";
+
+ description = "SMT object supporting SMT-LIB communication over input and output streams";
+
+ deps = [ args."asdf-package-system" args."named-readtables" args."trivial-gray-streams" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-smt-lib/2021-06-30/cl-smt-lib-20210630-git.tgz";
+ sha256 = "0vrqzp6im2nvq6yfv4ysq4zv3m80v33apggzqq8r8j1zvbjjzrvm";
+ };
+
+ packageName = "cl-smt-lib";
+
+ asdFilesToKeep = ["cl-smt-lib.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-smt-lib DESCRIPTION
+ SMT object supporting SMT-LIB communication over input and output streams
+ SHA256 0vrqzp6im2nvq6yfv4ysq4zv3m80v33apggzqq8r8j1zvbjjzrvm URL
+ http://beta.quicklisp.org/archive/cl-smt-lib/2021-06-30/cl-smt-lib-20210630-git.tgz
+ MD5 a10f913b43ba0ca99ee87a66e2f508ac NAME cl-smt-lib FILENAME cl-smt-lib
+ DEPS
+ ((NAME asdf-package-system FILENAME asdf-package-system)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME trivial-gray-streams FILENAME trivial-gray-streams))
+ DEPENDENCIES (asdf-package-system named-readtables trivial-gray-streams)
+ VERSION 20210630-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-svg.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-svg.nix
new file mode 100644
index 0000000000..71ccef4a15
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-svg.nix
@@ -0,0 +1,25 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "cl-svg";
+ version = "20180228-git";
+
+ description = "Produce Scalable Vector Graphics (SVG) files";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz";
+ sha256 = "1ir299yg7210y1hwqs0di3gznj8ahsw16kf1n4yhfq78jswkrx48";
+ };
+
+ packageName = "cl-svg";
+
+ asdFilesToKeep = ["cl-svg.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM cl-svg DESCRIPTION Produce Scalable Vector Graphics (SVG) files
+ SHA256 1ir299yg7210y1hwqs0di3gznj8ahsw16kf1n4yhfq78jswkrx48 URL
+ http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz
+ MD5 672145ecadef2259a3833886dbe68617 NAME cl-svg FILENAME cl-svg DEPS NIL
+ DEPENDENCIES NIL VERSION 20180228-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix
index 0284b2dfd2..2794c47db9 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-typesetting";
- version = "20210411-git";
+ version = "20210531-git";
description = "Common Lisp Typesetting system";
deps = [ args."cl-pdf" args."iterate" args."zpb-ttf" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-typesetting/2021-04-11/cl-typesetting-20210411-git.tgz";
- sha256 = "1102n049hhg0kqnfvdfcisjq5l9yfvbw090nq0q8vd2bc688ng41";
+ url = "http://beta.quicklisp.org/archive/cl-typesetting/2021-05-31/cl-typesetting-20210531-git.tgz";
+ sha256 = "1gv21dsfghf8y2d7f5w5m8fn0q5l7xb8z7qw11wnnnd7msk11dd5";
};
packageName = "cl-typesetting";
@@ -19,11 +19,11 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-typesetting DESCRIPTION Common Lisp Typesetting system SHA256
- 1102n049hhg0kqnfvdfcisjq5l9yfvbw090nq0q8vd2bc688ng41 URL
- http://beta.quicklisp.org/archive/cl-typesetting/2021-04-11/cl-typesetting-20210411-git.tgz
- MD5 f3fc7a47efb99cf849cb5eeede96dbaf NAME cl-typesetting FILENAME
+ 1gv21dsfghf8y2d7f5w5m8fn0q5l7xb8z7qw11wnnnd7msk11dd5 URL
+ http://beta.quicklisp.org/archive/cl-typesetting/2021-05-31/cl-typesetting-20210531-git.tgz
+ MD5 849e6fb2c4a33f823c005e4e9abb31b5 NAME cl-typesetting FILENAME
cl-typesetting DEPS
((NAME cl-pdf FILENAME cl-pdf) (NAME iterate FILENAME iterate)
(NAME zpb-ttf FILENAME zpb-ttf))
- DEPENDENCIES (cl-pdf iterate zpb-ttf) VERSION 20210411-git SIBLINGS
+ DEPENDENCIES (cl-pdf iterate zpb-ttf) VERSION 20210531-git SIBLINGS
(xml-render cl-pdf-doc) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix
index 84005b13b2..de1f93a8f2 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl-webkit2";
- version = "cl-webkit-20210411-git";
+ version = "cl-webkit-20210807-git";
description = "An FFI binding to WebKit2GTK+";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-webkit/2021-04-11/cl-webkit-20210411-git.tgz";
- sha256 = "10cky5v67s9mx2j96k0z01qbqfyc8w6a8byaamm7al5qkw997brh";
+ url = "http://beta.quicklisp.org/archive/cl-webkit/2021-08-07/cl-webkit-20210807-git.tgz";
+ sha256 = "12n2zjl8kpji5b24jj1jhnlw16ylkxw4czc1dynx3ligj17qf1an";
};
packageName = "cl-webkit2";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl-webkit2 DESCRIPTION An FFI binding to WebKit2GTK+ SHA256
- 10cky5v67s9mx2j96k0z01qbqfyc8w6a8byaamm7al5qkw997brh URL
- http://beta.quicklisp.org/archive/cl-webkit/2021-04-11/cl-webkit-20210411-git.tgz
- MD5 01b52f031fd8742ac9d422e4fcd2a225 NAME cl-webkit2 FILENAME cl-webkit2
+ 12n2zjl8kpji5b24jj1jhnlw16ylkxw4czc1dynx3ligj17qf1an URL
+ http://beta.quicklisp.org/archive/cl-webkit/2021-08-07/cl-webkit-20210807-git.tgz
+ MD5 25b73593e97d7c075cb791a896e5b1d1 NAME cl-webkit2 FILENAME cl-webkit2
DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -41,4 +41,4 @@ rec {
cl-cffi-gtk-gdk cl-cffi-gtk-gdk-pixbuf cl-cffi-gtk-gio cl-cffi-gtk-glib
cl-cffi-gtk-gobject cl-cffi-gtk-pango closer-mop iterate trivial-features
trivial-garbage)
- VERSION cl-webkit-20210411-git SIBLINGS NIL PARASITES NIL) */
+ VERSION cl-webkit-20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix
index 55eb893494..4efee4ae45 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "cl_plus_ssl";
- version = "cl+ssl-20210411-git";
+ version = "cl+ssl-20210807-git";
description = "Common Lisp interface to OpenSSL.";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."flexi-streams" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."uiop" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl+ssl/2021-04-11/cl+ssl-20210411-git.tgz";
- sha256 = "1rc13lc5wwzlkn7yhl3bwl6cmxxldmbfnz52nz5b83v4wlw2zbcw";
+ url = "http://beta.quicklisp.org/archive/cl+ssl/2021-08-07/cl+ssl-20210807-git.tgz";
+ sha256 = "04kk392r7w5xq414vaf3wnkrlhczdn863x3jj3vmrp7ppr9cwy57";
};
packageName = "cl+ssl";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM cl+ssl DESCRIPTION Common Lisp interface to OpenSSL. SHA256
- 1rc13lc5wwzlkn7yhl3bwl6cmxxldmbfnz52nz5b83v4wlw2zbcw URL
- http://beta.quicklisp.org/archive/cl+ssl/2021-04-11/cl+ssl-20210411-git.tgz
- MD5 9ef5b60ac4c8ad4f435a3ef6234897d0 NAME cl+ssl FILENAME cl_plus_ssl DEPS
+ 04kk392r7w5xq414vaf3wnkrlhczdn863x3jj3vmrp7ppr9cwy57 URL
+ http://beta.quicklisp.org/archive/cl+ssl/2021-08-07/cl+ssl-20210807-git.tgz
+ MD5 d2267b96fcd5ee4ad2f9fc11a7a3f0b2 NAME cl+ssl FILENAME cl_plus_ssl DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cffi FILENAME cffi) (NAME flexi-streams FILENAME flexi-streams)
@@ -33,4 +33,4 @@ rec {
DEPENDENCIES
(alexandria babel bordeaux-threads cffi flexi-streams split-sequence
trivial-features trivial-garbage trivial-gray-streams uiop usocket)
- VERSION cl+ssl-20210411-git SIBLINGS (cl+ssl.test) PARASITES NIL) */
+ VERSION cl+ssl-20210807-git SIBLINGS (cl+ssl.test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
index 2fe47652eb..0a19ab43c2 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "clack-socket";
- version = "clack-20210411-git";
+ version = "clack-20210807-git";
description = "System lacks description";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz";
- sha256 = "0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf";
+ url = "http://beta.quicklisp.org/archive/clack/2021-08-07/clack-20210807-git.tgz";
+ sha256 = "00bwpw04d6rri4hww9n1fa9ygvjgr5d18r7iadqwz0ns795p2pva";
};
packageName = "clack-socket";
@@ -19,16 +19,11 @@ rec {
overrides = x: x;
}
/* (SYSTEM clack-socket DESCRIPTION System lacks description SHA256
- 0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf URL
- http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz
- MD5 c47deb6287b72fc9033055914787f3a5 NAME clack-socket FILENAME
- clack-socket DEPS NIL DEPENDENCIES NIL VERSION clack-20210411-git SIBLINGS
+ 00bwpw04d6rri4hww9n1fa9ygvjgr5d18r7iadqwz0ns795p2pva URL
+ http://beta.quicklisp.org/archive/clack/2021-08-07/clack-20210807-git.tgz
+ MD5 a518c42a4d433be7da579b2d46caa438 NAME clack-socket FILENAME
+ clack-socket DEPS NIL DEPENDENCIES NIL VERSION clack-20210807-git SIBLINGS
(clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot
- clack-handler-wookie clack-test clack-v1-compat clack t-clack-handler-fcgi
- t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie
- t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql
- clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth
- clack-middleware-postmodern clack-middleware-rucksack
- clack-session-store-dbi t-clack-middleware-auth-basic
- t-clack-middleware-csrf)
+ clack-handler-wookie clack-test clack t-clack-handler-fcgi
+ t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
deleted file mode 100644
index f93b8e1c9d..0000000000
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
+++ /dev/null
@@ -1,85 +0,0 @@
-/* Generated file. */
-args @ { fetchurl, ... }:
-rec {
- baseName = "clack-v1-compat";
- version = "clack-20210411-git";
-
- description = "System lacks description";
-
- deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."circular-streams" args."cl_plus_ssl" args."cl-annot" args."cl-base64" args."cl-cookie" args."cl-fad" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."clack-test" args."dexador" args."dissect" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."local-time" args."marshal" args."md5" args."named-readtables" args."proc-parse" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."uiop" args."usocket" args."xsubseq" ];
-
- src = fetchurl {
- url = "http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz";
- sha256 = "0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf";
- };
-
- packageName = "clack-v1-compat";
-
- asdFilesToKeep = ["clack-v1-compat.asd"];
- overrides = x: x;
-}
-/* (SYSTEM clack-v1-compat DESCRIPTION System lacks description SHA256
- 0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf URL
- http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz
- MD5 c47deb6287b72fc9033055914787f3a5 NAME clack-v1-compat FILENAME
- clack-v1-compat DEPS
- ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
- (NAME bordeaux-threads FILENAME bordeaux-threads)
- (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
- (NAME cffi-toolchain FILENAME cffi-toolchain) (NAME chipz FILENAME chipz)
- (NAME chunga FILENAME chunga)
- (NAME circular-streams FILENAME circular-streams)
- (NAME cl+ssl FILENAME cl_plus_ssl) (NAME cl-annot FILENAME cl-annot)
- (NAME cl-base64 FILENAME cl-base64) (NAME cl-cookie FILENAME cl-cookie)
- (NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre)
- (NAME cl-reexport FILENAME cl-reexport)
- (NAME cl-syntax FILENAME cl-syntax)
- (NAME cl-syntax-annot FILENAME cl-syntax-annot)
- (NAME cl-utilities FILENAME cl-utilities) (NAME clack FILENAME clack)
- (NAME clack-handler-hunchentoot FILENAME clack-handler-hunchentoot)
- (NAME clack-socket FILENAME clack-socket)
- (NAME clack-test FILENAME clack-test) (NAME dexador FILENAME dexador)
- (NAME dissect FILENAME dissect) (NAME fast-http FILENAME fast-http)
- (NAME fast-io FILENAME fast-io)
- (NAME flexi-streams FILENAME flexi-streams)
- (NAME http-body FILENAME http-body)
- (NAME hunchentoot FILENAME hunchentoot) (NAME ironclad FILENAME ironclad)
- (NAME jonathan FILENAME jonathan) (NAME lack FILENAME lack)
- (NAME lack-component FILENAME lack-component)
- (NAME lack-middleware-backtrace FILENAME lack-middleware-backtrace)
- (NAME lack-util FILENAME lack-util) (NAME local-time FILENAME local-time)
- (NAME marshal FILENAME marshal) (NAME md5 FILENAME md5)
- (NAME named-readtables FILENAME named-readtables)
- (NAME proc-parse FILENAME proc-parse) (NAME quri FILENAME quri)
- (NAME rfc2388 FILENAME rfc2388) (NAME rove FILENAME rove)
- (NAME smart-buffer FILENAME smart-buffer)
- (NAME split-sequence FILENAME split-sequence)
- (NAME static-vectors FILENAME static-vectors)
- (NAME trivial-backtrace FILENAME trivial-backtrace)
- (NAME trivial-features FILENAME trivial-features)
- (NAME trivial-garbage FILENAME trivial-garbage)
- (NAME trivial-gray-streams FILENAME trivial-gray-streams)
- (NAME trivial-mimes FILENAME trivial-mimes)
- (NAME trivial-types FILENAME trivial-types) (NAME uiop FILENAME uiop)
- (NAME usocket FILENAME usocket) (NAME xsubseq FILENAME xsubseq))
- DEPENDENCIES
- (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain chipz
- chunga circular-streams cl+ssl cl-annot cl-base64 cl-cookie cl-fad
- cl-ppcre cl-reexport cl-syntax cl-syntax-annot cl-utilities clack
- clack-handler-hunchentoot clack-socket clack-test dexador dissect
- fast-http fast-io flexi-streams http-body hunchentoot ironclad jonathan
- lack lack-component lack-middleware-backtrace lack-util local-time marshal
- md5 named-readtables proc-parse quri rfc2388 rove smart-buffer
- split-sequence static-vectors trivial-backtrace trivial-features
- trivial-garbage trivial-gray-streams trivial-mimes trivial-types uiop
- usocket xsubseq)
- VERSION clack-20210411-git SIBLINGS
- (clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot
- clack-handler-wookie clack-socket clack-test clack t-clack-handler-fcgi
- t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie
- t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql
- clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth
- clack-middleware-postmodern clack-middleware-rucksack
- clack-session-store-dbi t-clack-middleware-auth-basic
- t-clack-middleware-csrf)
- PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
index 95447ca8ad..1b54ed8caa 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "clack";
- version = "20210411-git";
+ version = "20210807-git";
description = "Web application environment for Common Lisp";
deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."split-sequence" args."uiop" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz";
- sha256 = "0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf";
+ url = "http://beta.quicklisp.org/archive/clack/2021-08-07/clack-20210807-git.tgz";
+ sha256 = "00bwpw04d6rri4hww9n1fa9ygvjgr5d18r7iadqwz0ns795p2pva";
};
packageName = "clack";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM clack DESCRIPTION Web application environment for Common Lisp SHA256
- 0yai9cx1gha684ljr8k1s5n4mi6mpj2wmvv6b9iw7pw1vhw5m8mf URL
- http://beta.quicklisp.org/archive/clack/2021-04-11/clack-20210411-git.tgz
- MD5 c47deb6287b72fc9033055914787f3a5 NAME clack FILENAME clack DEPS
+ 00bwpw04d6rri4hww9n1fa9ygvjgr5d18r7iadqwz0ns795p2pva URL
+ http://beta.quicklisp.org/archive/clack/2021-08-07/clack-20210807-git.tgz
+ MD5 a518c42a4d433be7da579b2d46caa438 NAME clack FILENAME clack DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME ironclad FILENAME ironclad) (NAME lack FILENAME lack)
@@ -33,13 +33,8 @@ rec {
DEPENDENCIES
(alexandria bordeaux-threads ironclad lack lack-component
lack-middleware-backtrace lack-util split-sequence uiop usocket)
- VERSION 20210411-git SIBLINGS
+ VERSION 20210807-git SIBLINGS
(clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot
- clack-handler-wookie clack-socket clack-test clack-v1-compat
- t-clack-handler-fcgi t-clack-handler-hunchentoot t-clack-handler-toot
- t-clack-handler-wookie t-clack-v1-compat clack-middleware-auth-basic
- clack-middleware-clsql clack-middleware-csrf clack-middleware-dbi
- clack-middleware-oauth clack-middleware-postmodern
- clack-middleware-rucksack clack-session-store-dbi
- t-clack-middleware-auth-basic t-clack-middleware-csrf)
+ clack-handler-wookie clack-socket clack-test t-clack-handler-fcgi
+ t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/classowary.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/classowary.nix
new file mode 100644
index 0000000000..375666d6fc
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/classowary.nix
@@ -0,0 +1,30 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "classowary";
+ version = "20191007-git";
+
+ description = "An implementation of the Cassowary linear constraint solver toolkit";
+
+ deps = [ args."documentation-utils" args."trivial-indent" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/classowary/2019-10-07/classowary-20191007-git.tgz";
+ sha256 = "1r3535lgap7218v51k5rn2wlml4mlam3sgjg1lvac1vybiv4c287";
+ };
+
+ packageName = "classowary";
+
+ asdFilesToKeep = ["classowary.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM classowary DESCRIPTION
+ An implementation of the Cassowary linear constraint solver toolkit SHA256
+ 1r3535lgap7218v51k5rn2wlml4mlam3sgjg1lvac1vybiv4c287 URL
+ http://beta.quicklisp.org/archive/classowary/2019-10-07/classowary-20191007-git.tgz
+ MD5 a2587986780a40251b0327686b817cc6 NAME classowary FILENAME classowary
+ DEPS
+ ((NAME documentation-utils FILENAME documentation-utils)
+ (NAME trivial-indent FILENAME trivial-indent))
+ DEPENDENCIES (documentation-utils trivial-indent) VERSION 20191007-git
+ SIBLINGS (classowary-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
index 876681846c..20986c1fdd 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "closer-mop";
- version = "20210411-git";
+ version = "20210807-git";
description = "Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/closer-mop/2021-04-11/closer-mop-20210411-git.tgz";
- sha256 = "0pynql962m2z7wqnmd51a2xm3wsqvgfxcq9maw2br0zs0icys236";
+ url = "http://beta.quicklisp.org/archive/closer-mop/2021-08-07/closer-mop-20210807-git.tgz";
+ sha256 = "1b3h6fw4wh11brmvi9p0j50zynbp7bgbhshcbngmd0ffdpinkh15";
};
packageName = "closer-mop";
@@ -20,7 +20,7 @@ rec {
}
/* (SYSTEM closer-mop DESCRIPTION
Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations.
- SHA256 0pynql962m2z7wqnmd51a2xm3wsqvgfxcq9maw2br0zs0icys236 URL
- http://beta.quicklisp.org/archive/closer-mop/2021-04-11/closer-mop-20210411-git.tgz
- MD5 05b05d98ad294f8bd6f9779d04cc848a NAME closer-mop FILENAME closer-mop
- DEPS NIL DEPENDENCIES NIL VERSION 20210411-git SIBLINGS NIL PARASITES NIL) */
+ SHA256 1b3h6fw4wh11brmvi9p0j50zynbp7bgbhshcbngmd0ffdpinkh15 URL
+ http://beta.quicklisp.org/archive/closer-mop/2021-08-07/closer-mop-20210807-git.tgz
+ MD5 02b29c503d823ca9701b231c23bbd3cd NAME closer-mop FILENAME closer-mop
+ DEPS NIL DEPENDENCIES NIL VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix
index 442acebb4c..576b25062a 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "clunit2";
- version = "20201016-git";
+ version = "20210630-git";
description = "CLUnit is a Common Lisp unit testing framework.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz";
- sha256 = "1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp";
+ url = "http://beta.quicklisp.org/archive/clunit2/2021-06-30/clunit2-20210630-git.tgz";
+ sha256 = "0vrjgf8rcdhvap9fvq4k543276ybjs5jqxj6zxbhrkfw2p26s445";
};
packageName = "clunit2";
@@ -19,7 +19,7 @@ rec {
overrides = x: x;
}
/* (SYSTEM clunit2 DESCRIPTION CLUnit is a Common Lisp unit testing framework.
- SHA256 1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp URL
- http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz
- MD5 7f977b33550c689d1d2cf2c8a4610896 NAME clunit2 FILENAME clunit2 DEPS NIL
- DEPENDENCIES NIL VERSION 20201016-git SIBLINGS NIL PARASITES NIL) */
+ SHA256 0vrjgf8rcdhvap9fvq4k543276ybjs5jqxj6zxbhrkfw2p26s445 URL
+ http://beta.quicklisp.org/archive/clunit2/2021-06-30/clunit2-20210630-git.tgz
+ MD5 d76550549dec0dca9207970919a8b952 NAME clunit2 FILENAME clunit2 DEPS NIL
+ DEPENDENCIES NIL VERSION 20210630-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
index fca6eff797..24d2db0e74 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "clx";
- version = "20200715-git";
+ version = "20210630-git";
parasites = [ "clx/test" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."fiasco" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz";
- sha256 = "1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra";
+ url = "http://beta.quicklisp.org/archive/clx/2021-06-30/clx-20210630-git.tgz";
+ sha256 = "0pr4majs7d6d14p52zapn5knvf7hhwm6s8abkn3xbfxgzi9np556";
};
packageName = "clx";
@@ -22,8 +22,8 @@ rec {
}
/* (SYSTEM clx DESCRIPTION
An implementation of the X Window System protocol in Lisp. SHA256
- 1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra URL
- http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz MD5
- c0e08c88e78587bdbbbea188848dc39d NAME clx FILENAME clx DEPS
- ((NAME fiasco FILENAME fiasco)) DEPENDENCIES (fiasco) VERSION 20200715-git
+ 0pr4majs7d6d14p52zapn5knvf7hhwm6s8abkn3xbfxgzi9np556 URL
+ http://beta.quicklisp.org/archive/clx/2021-06-30/clx-20210630-git.tgz MD5
+ 095657b0f48ff5602525faa2d4ff7a3e NAME clx FILENAME clx DEPS
+ ((NAME fiasco FILENAME fiasco)) DEPENDENCIES (fiasco) VERSION 20210630-git
SIBLINGS NIL PARASITES (clx/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix
index 5e0b877fe8..9ace0471ec 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix
@@ -2,15 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "command-line-arguments";
- version = "20200325-git";
+ version = "20210807-git";
+
+ parasites = [ "command-line-arguments/test" ];
description = "small library to deal with command-line arguments";
- deps = [ ];
+ deps = [ args."alexandria" args."hu_dot_dwim_dot_stefil" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz";
- sha256 = "0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz";
+ url = "http://beta.quicklisp.org/archive/command-line-arguments/2021-08-07/command-line-arguments-20210807-git.tgz";
+ sha256 = "1ggrzdaw79ls7hk629m31z0pikibqi8x1hyi3fwd0zc8w9k3k6wk";
};
packageName = "command-line-arguments";
@@ -20,8 +22,11 @@ rec {
}
/* (SYSTEM command-line-arguments DESCRIPTION
small library to deal with command-line arguments SHA256
- 0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz URL
- http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz
- MD5 5a860667bc3feef212028b90c9e026f8 NAME command-line-arguments FILENAME
- command-line-arguments DEPS NIL DEPENDENCIES NIL VERSION 20200325-git
- SIBLINGS NIL PARASITES NIL) */
+ 1ggrzdaw79ls7hk629m31z0pikibqi8x1hyi3fwd0zc8w9k3k6wk URL
+ http://beta.quicklisp.org/archive/command-line-arguments/2021-08-07/command-line-arguments-20210807-git.tgz
+ MD5 b50ca36f5b2b19d4322ac5b5969fee22 NAME command-line-arguments FILENAME
+ command-line-arguments DEPS
+ ((NAME alexandria FILENAME alexandria)
+ (NAME hu.dwim.stefil FILENAME hu_dot_dwim_dot_stefil))
+ DEPENDENCIES (alexandria hu.dwim.stefil) VERSION 20210807-git SIBLINGS NIL
+ PARASITES (command-line-arguments/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-frame.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-frame.nix
new file mode 100644
index 0000000000..b845e5add6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-frame.nix
@@ -0,0 +1,34 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "data-frame";
+ version = "20210411-git";
+
+ parasites = [ "data-frame/tests" ];
+
+ description = "Data frames for Common Lisp";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."clunit" args."let-plus" args."num-utils" args."select" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/data-frame/2021-04-11/data-frame-20210411-git.tgz";
+ sha256 = "1ycpbhzkc54x4mvghq6ss6s9ya1zn1s6d0cifh20c3b9kfca1xgv";
+ };
+
+ packageName = "data-frame";
+
+ asdFilesToKeep = ["data-frame.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM data-frame DESCRIPTION Data frames for Common Lisp SHA256
+ 1ycpbhzkc54x4mvghq6ss6s9ya1zn1s6d0cifh20c3b9kfca1xgv URL
+ http://beta.quicklisp.org/archive/data-frame/2021-04-11/data-frame-20210411-git.tgz
+ MD5 b376dd3510b55efe93cbcbf8478f94ed NAME data-frame FILENAME data-frame
+ DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME clunit FILENAME clunit) (NAME let-plus FILENAME let-plus)
+ (NAME num-utils FILENAME num-utils) (NAME select FILENAME select))
+ DEPENDENCIES
+ (alexandria anaphora array-operations clunit let-plus num-utils select)
+ VERSION 20210411-git SIBLINGS NIL PARASITES (data-frame/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-table.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-table.nix
new file mode 100644
index 0000000000..06b101d229
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/data-table.nix
@@ -0,0 +1,40 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "data-table";
+ version = "20160208-git";
+
+ parasites = [ "data-table-test" ];
+
+ description = "A library providing a data-table class, and useful functionality around this";
+
+ deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."symbol-munger" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/data-table/2016-02-08/data-table-20160208-git.tgz";
+ sha256 = "0xzjk3jxx11ziw5348ddalygi84wwwcjcxmqvm5rscgzh012h8gm";
+ };
+
+ packageName = "data-table";
+
+ asdFilesToKeep = ["data-table.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM data-table DESCRIPTION
+ A library providing a data-table class, and useful functionality around this
+ SHA256 0xzjk3jxx11ziw5348ddalygi84wwwcjcxmqvm5rscgzh012h8gm URL
+ http://beta.quicklisp.org/archive/data-table/2016-02-08/data-table-20160208-git.tgz
+ MD5 0507150b0fcfdab96e0ef7668d31113c NAME data-table FILENAME data-table
+ DEPS
+ ((NAME alexandria FILENAME alexandria)
+ (NAME cl-interpol FILENAME cl-interpol) (NAME cl-ppcre FILENAME cl-ppcre)
+ (NAME cl-unicode FILENAME cl-unicode)
+ (NAME flexi-streams FILENAME flexi-streams)
+ (NAME iterate FILENAME iterate) (NAME lisp-unit2 FILENAME lisp-unit2)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME symbol-munger FILENAME symbol-munger))
+ DEPENDENCIES
+ (alexandria cl-interpol cl-ppcre cl-unicode flexi-streams iterate
+ lisp-unit2 named-readtables symbol-munger)
+ VERSION 20160208-git SIBLINGS (data-table-clsql) PARASITES
+ (data-table-test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/defclass-std.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/defclass-std.nix
new file mode 100644
index 0000000000..428d14fa95
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/defclass-std.nix
@@ -0,0 +1,29 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "defclass-std";
+ version = "20201220-git";
+
+ description = "A shortcut macro to write DEFCLASS forms quickly.";
+
+ deps = [ args."alexandria" args."anaphora" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/defclass-std/2020-12-20/defclass-std-20201220-git.tgz";
+ sha256 = "1ldivz1zmg0yxja43gj0lcgf10k0kj2bhb0576f0xnhy56sya0w3";
+ };
+
+ packageName = "defclass-std";
+
+ asdFilesToKeep = ["defclass-std.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM defclass-std DESCRIPTION
+ A shortcut macro to write DEFCLASS forms quickly. SHA256
+ 1ldivz1zmg0yxja43gj0lcgf10k0kj2bhb0576f0xnhy56sya0w3 URL
+ http://beta.quicklisp.org/archive/defclass-std/2020-12-20/defclass-std-20201220-git.tgz
+ MD5 b7a3bec06318b10818dc3941d407fe65 NAME defclass-std FILENAME
+ defclass-std DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora))
+ DEPENDENCIES (alexandria anaphora) VERSION 20201220-git SIBLINGS
+ (defclass-std-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
index b035477eda..13aa8f0f7c 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "dexador";
- version = "20210411-git";
+ version = "20210807-git";
description = "Yet another HTTP client for Common Lisp";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-cookie" args."cl-ppcre" args."cl-reexport" args."cl-utilities" args."fast-http" args."fast-io" args."flexi-streams" args."local-time" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."usocket" args."xsubseq" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/dexador/2021-04-11/dexador-20210411-git.tgz";
- sha256 = "1px4llzb6x930cq3dmrkzidydqqc8rd2y4s3nlwpsrv4874cxwx1";
+ url = "http://beta.quicklisp.org/archive/dexador/2021-08-07/dexador-20210807-git.tgz";
+ sha256 = "04x29nr2h70b08yail6mf2pgpcgqwx3zxdizkzrj4mv6mi8pdy29";
};
packageName = "dexador";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM dexador DESCRIPTION Yet another HTTP client for Common Lisp SHA256
- 1px4llzb6x930cq3dmrkzidydqqc8rd2y4s3nlwpsrv4874cxwx1 URL
- http://beta.quicklisp.org/archive/dexador/2021-04-11/dexador-20210411-git.tgz
- MD5 10d59691af3e25e590a2dfff29c91292 NAME dexador FILENAME dexador DEPS
+ 04x29nr2h70b08yail6mf2pgpcgqwx3zxdizkzrj4mv6mi8pdy29 URL
+ http://beta.quicklisp.org/archive/dexador/2021-08-07/dexador-20210807-git.tgz
+ MD5 92b460917f8fa1c668c770fa850de5c7 NAME dexador FILENAME dexador DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
@@ -48,4 +48,4 @@ rec {
fast-http fast-io flexi-streams local-time proc-parse quri smart-buffer
split-sequence static-vectors trivial-features trivial-garbage
trivial-gray-streams trivial-mimes usocket xsubseq)
- VERSION 20210411-git SIBLINGS (dexador-test) PARASITES NIL) */
+ VERSION 20210807-git SIBLINGS (dexador-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dfio.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dfio.nix
new file mode 100644
index 0000000000..6b6fb2646a
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dfio.nix
@@ -0,0 +1,39 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "dfio";
+ version = "20210411-git";
+
+ description = "Common Lisp library for reading data from text files (eg CSV).";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-csv" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."data-frame" args."flexi-streams" args."iterate" args."let-plus" args."named-readtables" args."num-utils" args."select" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/dfio/2021-04-11/dfio-20210411-git.tgz";
+ sha256 = "0r1ljv22mfjlp0khgfbmh9ajp9qmw8lqj2wl6k9abr5cc32vnmi5";
+ };
+
+ packageName = "dfio";
+
+ asdFilesToKeep = ["dfio.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM dfio DESCRIPTION
+ Common Lisp library for reading data from text files (eg CSV). SHA256
+ 0r1ljv22mfjlp0khgfbmh9ajp9qmw8lqj2wl6k9abr5cc32vnmi5 URL
+ http://beta.quicklisp.org/archive/dfio/2021-04-11/dfio-20210411-git.tgz MD5
+ f8d9923e8c2fb095c7dbc1c9f6b68568 NAME dfio FILENAME dfio DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME cl-csv FILENAME cl-csv) (NAME cl-interpol FILENAME cl-interpol)
+ (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-unicode FILENAME cl-unicode)
+ (NAME data-frame FILENAME data-frame)
+ (NAME flexi-streams FILENAME flexi-streams)
+ (NAME iterate FILENAME iterate) (NAME let-plus FILENAME let-plus)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME num-utils FILENAME num-utils) (NAME select FILENAME select))
+ DEPENDENCIES
+ (alexandria anaphora array-operations cl-csv cl-interpol cl-ppcre
+ cl-unicode data-frame flexi-streams iterate let-plus named-readtables
+ num-utils select)
+ VERSION 20210411-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix
index def4eac0ad..aa648cb142 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "dissect";
- version = "20200427-git";
+ version = "20210531-git";
description = "A lib for introspecting the call stack and active restarts.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz";
- sha256 = "1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a";
+ url = "http://beta.quicklisp.org/archive/dissect/2021-05-31/dissect-20210531-git.tgz";
+ sha256 = "07f5sk2nvhj5jjrw5k561dfnwbjcaniqi2z7wgdrw8qb9h8kkkzk";
};
packageName = "dissect";
@@ -20,7 +20,7 @@ rec {
}
/* (SYSTEM dissect DESCRIPTION
A lib for introspecting the call stack and active restarts. SHA256
- 1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a URL
- http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz
- MD5 2cce2469353cac86ee3c0358b9b99f3d NAME dissect FILENAME dissect DEPS NIL
- DEPENDENCIES NIL VERSION 20200427-git SIBLINGS NIL PARASITES NIL) */
+ 07f5sk2nvhj5jjrw5k561dfnwbjcaniqi2z7wgdrw8qb9h8kkkzk URL
+ http://beta.quicklisp.org/archive/dissect/2021-05-31/dissect-20210531-git.tgz
+ MD5 41dfb42dc93aa41d825c167fe173fa89 NAME dissect FILENAME dissect DEPS NIL
+ DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix
index e89255c9ec..34ffaccf16 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "djula";
- version = "20210124-git";
+ version = "20210630-git";
description = "An implementation of Django templates for Common Lisp.";
deps = [ args."access" args."alexandria" args."anaphora" args."arnesi" args."babel" args."cl-annot" args."cl-interpol" args."cl-locale" args."cl-ppcre" args."cl-slice" args."cl-syntax" args."cl-syntax-annot" args."cl-unicode" args."closer-mop" args."collectors" args."flexi-streams" args."gettext" args."iterate" args."let-plus" args."local-time" args."named-readtables" args."parser-combinators" args."split-sequence" args."symbol-munger" args."trivial-backtrace" args."trivial-features" args."trivial-gray-streams" args."trivial-types" args."yacc" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/djula/2021-01-24/djula-20210124-git.tgz";
- sha256 = "0hkyp5himz73r2l3vbwkwsd1as4f75ih6wh7v1wbabpbjwh2j2vx";
+ url = "http://beta.quicklisp.org/archive/djula/2021-06-30/djula-20210630-git.tgz";
+ sha256 = "083psy8x9ni2d5pzmz46pcp0z3kysr8wbnankd656p4ilvajcgbj";
};
packageName = "djula";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM djula DESCRIPTION
An implementation of Django templates for Common Lisp. SHA256
- 0hkyp5himz73r2l3vbwkwsd1as4f75ih6wh7v1wbabpbjwh2j2vx URL
- http://beta.quicklisp.org/archive/djula/2021-01-24/djula-20210124-git.tgz
- MD5 33ab6232122ccb88a53c51517b0c2bba NAME djula FILENAME djula DEPS
+ 083psy8x9ni2d5pzmz46pcp0z3kysr8wbnankd656p4ilvajcgbj URL
+ http://beta.quicklisp.org/archive/djula/2021-06-30/djula-20210630-git.tgz
+ MD5 ec46616b626ece388bba77671d2aa321 NAME djula FILENAME djula DEPS
((NAME access FILENAME access) (NAME alexandria FILENAME alexandria)
(NAME anaphora FILENAME anaphora) (NAME arnesi FILENAME arnesi)
(NAME babel FILENAME babel) (NAME cl-annot FILENAME cl-annot)
@@ -51,4 +51,4 @@ rec {
named-readtables parser-combinators split-sequence symbol-munger
trivial-backtrace trivial-features trivial-gray-streams trivial-types
yacc)
- VERSION 20210124-git SIBLINGS (djula-demo djula-test) PARASITES NIL) */
+ VERSION 20210630-git SIBLINGS (djula-demo djula-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
index 3317af3295..5c1b54b13e 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "drakma";
- version = "v2.0.7";
+ version = "v2.0.8";
description = "Full-featured http/https client based on usocket";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-ppcre" args."flexi-streams" args."puri" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz";
- sha256 = "1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw";
+ url = "http://beta.quicklisp.org/archive/drakma/2021-08-07/drakma-v2.0.8.tgz";
+ sha256 = "07rig1649yxs0n03y2dc9is6cp9lxlyzqlhsb8g02ds8g86czdjf";
};
packageName = "drakma";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM drakma DESCRIPTION Full-featured http/https client based on usocket
- SHA256 1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw URL
- http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz MD5
- f166498aaed67f726060e9e997df10a3 NAME drakma FILENAME drakma DEPS
+ SHA256 07rig1649yxs0n03y2dc9is6cp9lxlyzqlhsb8g02ds8g86czdjf URL
+ http://beta.quicklisp.org/archive/drakma/2021-08-07/drakma-v2.0.8.tgz MD5
+ 948225b3183ab3d46b641ccda3c5fc54 NAME drakma FILENAME drakma DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cffi FILENAME cffi) (NAME chipz FILENAME chipz)
@@ -37,4 +37,4 @@ rec {
(alexandria babel bordeaux-threads cffi chipz chunga cl+ssl cl-base64
cl-ppcre flexi-streams puri split-sequence trivial-features
trivial-garbage trivial-gray-streams usocket)
- VERSION v2.0.7 SIBLINGS (drakma-test) PARASITES NIL) */
+ VERSION v2.0.8 SIBLINGS (drakma-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix
index 9f332bee60..2c3f15396f 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix
@@ -6,7 +6,7 @@ rec {
description = "Basic functions and macros, interfaces, pure and stateful datastructures";
- deps = [ ];
+ deps = [ args."asdf" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz";
@@ -23,5 +23,5 @@ rec {
SHA256 0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq URL
http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz
MD5 6752362d0c7c03df6576ab2dbe807ee2 NAME fare-utils FILENAME fare-utils
- DEPS NIL DEPENDENCIES NIL VERSION 20170124-git SIBLINGS (fare-utils-test)
- PARASITES NIL) */
+ DEPS ((NAME asdf FILENAME asdf)) DEPENDENCIES (asdf) VERSION 20170124-git
+ SIBLINGS (fare-utils-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/file-attributes.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/file-attributes.nix
index 6af2f0f24f..e40f756fdd 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/file-attributes.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/file-attributes.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "file-attributes";
- version = "20210411-git";
+ version = "20210807-git";
description = "Access to file attributes (uid, gid, atime, mtime, mod)";
deps = [ args."alexandria" args."babel" args."cffi" args."documentation-utils" args."trivial-features" args."trivial-indent" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/file-attributes/2021-04-11/file-attributes-20210411-git.tgz";
- sha256 = "0zsqimyzfivr08d6pdg6xxw6cj7q9pjh2wi9c460nh85z7a51yc9";
+ url = "http://beta.quicklisp.org/archive/file-attributes/2021-08-07/file-attributes-20210807-git.tgz";
+ sha256 = "0f2kr886jn83hlsk6a548cd0vdq4f1dsxscnslni0nhlxsbi1gsg";
};
packageName = "file-attributes";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM file-attributes DESCRIPTION
Access to file attributes (uid, gid, atime, mtime, mod) SHA256
- 0zsqimyzfivr08d6pdg6xxw6cj7q9pjh2wi9c460nh85z7a51yc9 URL
- http://beta.quicklisp.org/archive/file-attributes/2021-04-11/file-attributes-20210411-git.tgz
- MD5 75e0f0e2c280c97fe496545e7105fa01 NAME file-attributes FILENAME
+ 0f2kr886jn83hlsk6a548cd0vdq4f1dsxscnslni0nhlxsbi1gsg URL
+ http://beta.quicklisp.org/archive/file-attributes/2021-08-07/file-attributes-20210807-git.tgz
+ MD5 ba0c3667061d97674f5b1666bcbc8506 NAME file-attributes FILENAME
file-attributes DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME cffi FILENAME cffi)
@@ -31,4 +31,4 @@ rec {
(NAME trivial-indent FILENAME trivial-indent))
DEPENDENCIES
(alexandria babel cffi documentation-utils trivial-features trivial-indent)
- VERSION 20210411-git SIBLINGS NIL PARASITES NIL) */
+ VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix
index 625d86ae69..1d6ce02108 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "flexi-streams";
- version = "20200925-git";
+ version = "20210807-git";
parasites = [ "flexi-streams-test" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."trivial-gray-streams" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz";
- sha256 = "1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2";
+ url = "http://beta.quicklisp.org/archive/flexi-streams/2021-08-07/flexi-streams-20210807-git.tgz";
+ sha256 = "1g2cvz0bjigr6lw3gigdwcm1x1w0pcyr3ainnix9wyp1kxc2n2rw";
};
packageName = "flexi-streams";
@@ -21,10 +21,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM flexi-streams DESCRIPTION Flexible bivalent streams for Common Lisp
- SHA256 1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2 URL
- http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz
- MD5 0d7bd1e542fe0a0d9728c45f70a95e36 NAME flexi-streams FILENAME
+ SHA256 1g2cvz0bjigr6lw3gigdwcm1x1w0pcyr3ainnix9wyp1kxc2n2rw URL
+ http://beta.quicklisp.org/archive/flexi-streams/2021-08-07/flexi-streams-20210807-git.tgz
+ MD5 6c026daab0766c11f5aee9cc3df3394e NAME flexi-streams FILENAME
flexi-streams DEPS
((NAME trivial-gray-streams FILENAME trivial-gray-streams)) DEPENDENCIES
- (trivial-gray-streams) VERSION 20200925-git SIBLINGS NIL PARASITES
+ (trivial-gray-streams) VERSION 20210807-git SIBLINGS NIL PARASITES
(flexi-streams-test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl.nix
index 04750febab..3ae2bf9a99 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "generic-cl";
- version = "20201220-git";
+ version = "20210807-git";
parasites = [ "generic-cl/test" ];
description = "Standard Common Lisp functions implemented using generic functions.";
- deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-ansi-text" args."cl-colors" args."cl-custom-hash-table" args."cl-environments" args."cl-ppcre" args."closer-mop" args."collectors" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."prove" args."prove-asdf" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."fiveam" args."generic-cl_dot_arithmetic" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_lazy-seq" args."generic-cl_dot_map" args."generic-cl_dot_math" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."generic-cl_dot_set" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/generic-cl/2020-12-20/generic-cl-20201220-git.tgz";
- sha256 = "02awl64bfykkasv3z9xpiiwq3v9vgcacqagbwvigqdk15hqrknyl";
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
};
packageName = "generic-cl";
@@ -22,23 +22,34 @@ rec {
}
/* (SYSTEM generic-cl DESCRIPTION
Standard Common Lisp functions implemented using generic functions. SHA256
- 02awl64bfykkasv3z9xpiiwq3v9vgcacqagbwvigqdk15hqrknyl URL
- http://beta.quicklisp.org/archive/generic-cl/2020-12-20/generic-cl-20201220-git.tgz
- MD5 76aa19981d3addb9a741fd4705d5d3ff NAME generic-cl FILENAME generic-cl
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl FILENAME generic-cl
DEPS
((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
(NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
- (NAME cl-ansi-text FILENAME cl-ansi-text)
- (NAME cl-colors FILENAME cl-colors)
(NAME cl-custom-hash-table FILENAME cl-custom-hash-table)
(NAME cl-environments FILENAME cl-environments)
- (NAME cl-ppcre FILENAME cl-ppcre) (NAME closer-mop FILENAME closer-mop)
- (NAME collectors FILENAME collectors)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam)
+ (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic)
+ (NAME generic-cl.collector FILENAME generic-cl_dot_collector)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.lazy-seq FILENAME generic-cl_dot_lazy-seq)
+ (NAME generic-cl.map FILENAME generic-cl_dot_map)
+ (NAME generic-cl.math FILENAME generic-cl_dot_math)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence)
+ (NAME generic-cl.set FILENAME generic-cl_dot_set)
(NAME introspect-environment FILENAME introspect-environment)
(NAME iterate FILENAME iterate)
(NAME lisp-namespace FILENAME lisp-namespace)
- (NAME optima FILENAME optima) (NAME prove FILENAME prove)
- (NAME prove-asdf FILENAME prove-asdf)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
(NAME static-dispatch FILENAME static-dispatch)
(NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
(NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
@@ -48,9 +59,18 @@ rec {
(NAME trivia.trivial FILENAME trivia_dot_trivial)
(NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
DEPENDENCIES
- (agutil alexandria anaphora arrows cl-ansi-text cl-colors
- cl-custom-hash-table cl-environments cl-ppcre closer-mop collectors
- introspect-environment iterate lisp-namespace optima prove prove-asdf
- static-dispatch symbol-munger trivia trivia.balland2006 trivia.level0
- trivia.level1 trivia.level2 trivia.trivial trivial-cltl2 type-i)
- VERSION 20201220-git SIBLINGS (generic-cl.util) PARASITES (generic-cl/test)) */
+ (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments
+ cl-form-types closer-mop collectors fiveam generic-cl.arithmetic
+ generic-cl.collector generic-cl.comparison generic-cl.container
+ generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map
+ generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION 20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl.collector generic-cl.comparison
+ generic-cl.container generic-cl.internal generic-cl.iterator
+ generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES (generic-cl/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix
new file mode 100644
index 0000000000..deb7281460
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix
@@ -0,0 +1,60 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_arithmetic";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic arithmetic function interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.arithmetic";
+
+ asdFilesToKeep = ["generic-cl.arithmetic.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.arithmetic DESCRIPTION
+ Generic arithmetic function interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.arithmetic FILENAME
+ generic-cl_dot_arithmetic DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.comparison generic-cl.internal
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl generic-cl.collector generic-cl.comparison generic-cl.container
+ generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map
+ generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set
+ generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_collector.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_collector.nix
new file mode 100644
index 0000000000..483483d303
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_collector.nix
@@ -0,0 +1,62 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_collector";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic collector interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.collector";
+
+ asdFilesToKeep = ["generic-cl.collector.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.collector DESCRIPTION Generic collector interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.collector FILENAME
+ generic-cl_dot_collector DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.object introspect-environment iterate
+ lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger
+ trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.comparison
+ generic-cl.container generic-cl.internal generic-cl.iterator
+ generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_comparison.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_comparison.nix
new file mode 100644
index 0000000000..5e95d58a91
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_comparison.nix
@@ -0,0 +1,57 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_comparison";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic comparison interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.comparison";
+
+ asdFilesToKeep = ["generic-cl.comparison.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.comparison DESCRIPTION Generic comparison interface
+ SHA256 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.comparison FILENAME
+ generic-cl_dot_comparison DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.internal introspect-environment iterate
+ lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger
+ trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector generic-cl.container
+ generic-cl.internal generic-cl.iterator generic-cl.lazy-seq generic-cl.map
+ generic-cl.math generic-cl.object generic-cl.sequence generic-cl.set
+ generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_container.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_container.nix
new file mode 100644
index 0000000000..32e0a82778
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_container.nix
@@ -0,0 +1,60 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_container";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic container interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.container";
+
+ asdFilesToKeep = ["generic-cl.container.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.container DESCRIPTION Generic container interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.container FILENAME
+ generic-cl_dot_container DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.comparison generic-cl.internal generic-cl.object
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.internal generic-cl.iterator
+ generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_internal.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_internal.nix
new file mode 100644
index 0000000000..c80b7d4950
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_internal.nix
@@ -0,0 +1,57 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_internal";
+ version = "generic-cl-20210807-git";
+
+ description = "Utilities used internally by generic-cl";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.internal";
+
+ asdFilesToKeep = ["generic-cl.internal.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.internal DESCRIPTION
+ Utilities used internally by generic-cl SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.internal FILENAME
+ generic-cl_dot_internal DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.iterator
+ generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_iterator.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_iterator.nix
new file mode 100644
index 0000000000..9d53f30f34
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_iterator.nix
@@ -0,0 +1,61 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_iterator";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic iterator interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.iterator";
+
+ asdFilesToKeep = ["generic-cl.iterator.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.iterator DESCRIPTION Generic iterator interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.iterator FILENAME
+ generic-cl_dot_iterator DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.object introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.lazy-seq generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix
new file mode 100644
index 0000000000..b757a54140
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix
@@ -0,0 +1,68 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_lazy-seq";
+ version = "generic-cl-20210807-git";
+
+ description = "Lazy sequences";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.lazy-seq";
+
+ asdFilesToKeep = ["generic-cl.lazy-seq.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.lazy-seq DESCRIPTION Lazy sequences SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.lazy-seq FILENAME
+ generic-cl_dot_lazy-seq DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-custom-hash-table FILENAME cl-custom-hash-table)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.collector FILENAME generic-cl_dot_collector)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.map FILENAME generic-cl_dot_map)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments
+ cl-form-types closer-mop collectors generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.map generic-cl.object generic-cl.sequence
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.map generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_map.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_map.nix
new file mode 100644
index 0000000000..2b908dc7f0
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_map.nix
@@ -0,0 +1,65 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_map";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic map and hash-table interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.map";
+
+ asdFilesToKeep = ["generic-cl.map.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.map DESCRIPTION Generic map and hash-table interface
+ SHA256 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.map FILENAME
+ generic-cl_dot_map DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-custom-hash-table FILENAME cl-custom-hash-table)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.collector FILENAME generic-cl_dot_collector)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments
+ cl-form-types closer-mop collectors generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.object introspect-environment iterate
+ lisp-namespace optima parse-declarations-1.0 static-dispatch symbol-munger
+ trivia trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.lazy-seq generic-cl.math generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_math.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_math.nix
new file mode 100644
index 0000000000..5b03f096f9
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_math.nix
@@ -0,0 +1,60 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_math";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic math function interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_arithmetic" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.math";
+
+ asdFilesToKeep = ["generic-cl.math.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.math DESCRIPTION Generic math function interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.math FILENAME
+ generic-cl_dot_math DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.arithmetic generic-cl.comparison generic-cl.internal
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.object
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_object.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_object.nix
new file mode 100644
index 0000000000..08bbce0d51
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_object.nix
@@ -0,0 +1,60 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_object";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic object copying and type conversion interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_comparison" args."generic-cl_dot_internal" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.object";
+
+ asdFilesToKeep = ["generic-cl.object.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.object DESCRIPTION
+ Generic object copying and type conversion interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.object FILENAME
+ generic-cl_dot_object DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors generic-cl.comparison generic-cl.internal
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math
+ generic-cl.sequence generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_sequence.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_sequence.nix
new file mode 100644
index 0000000000..a4f5e8f2f1
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_sequence.nix
@@ -0,0 +1,67 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_sequence";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic sequence operations";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.sequence";
+
+ asdFilesToKeep = ["generic-cl.sequence.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.sequence DESCRIPTION Generic sequence operations SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.sequence FILENAME
+ generic-cl_dot_sequence DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-custom-hash-table FILENAME cl-custom-hash-table)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.collector FILENAME generic-cl_dot_collector)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.map FILENAME generic-cl_dot_map)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments
+ cl-form-types closer-mop collectors generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.map generic-cl.object
+ introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math
+ generic-cl.object generic-cl.set generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_set.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_set.nix
new file mode 100644
index 0000000000..38c26661f3
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/generic-cl_dot_set.nix
@@ -0,0 +1,69 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "generic-cl_dot_set";
+ version = "generic-cl-20210807-git";
+
+ description = "Generic set interface";
+
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-custom-hash-table" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."generic-cl_dot_arithmetic" args."generic-cl_dot_collector" args."generic-cl_dot_comparison" args."generic-cl_dot_container" args."generic-cl_dot_internal" args."generic-cl_dot_iterator" args."generic-cl_dot_map" args."generic-cl_dot_object" args."generic-cl_dot_sequence" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."parse-declarations-1_dot_0" args."static-dispatch" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz";
+ sha256 = "0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b";
+ };
+
+ packageName = "generic-cl.set";
+
+ asdFilesToKeep = ["generic-cl.set.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM generic-cl.set DESCRIPTION Generic set interface SHA256
+ 0jn1hw0m3906iyyg337kb6dfnmyj95l7s9lx1glvgcas450wkk0b URL
+ http://beta.quicklisp.org/archive/generic-cl/2021-08-07/generic-cl-20210807-git.tgz
+ MD5 38e30f287963d66f4d56b48918f71568 NAME generic-cl.set FILENAME
+ generic-cl_dot_set DEPS
+ ((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
+ (NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
+ (NAME cl-custom-hash-table FILENAME cl-custom-hash-table)
+ (NAME cl-environments FILENAME cl-environments)
+ (NAME cl-form-types FILENAME cl-form-types)
+ (NAME closer-mop FILENAME closer-mop)
+ (NAME collectors FILENAME collectors)
+ (NAME generic-cl.arithmetic FILENAME generic-cl_dot_arithmetic)
+ (NAME generic-cl.collector FILENAME generic-cl_dot_collector)
+ (NAME generic-cl.comparison FILENAME generic-cl_dot_comparison)
+ (NAME generic-cl.container FILENAME generic-cl_dot_container)
+ (NAME generic-cl.internal FILENAME generic-cl_dot_internal)
+ (NAME generic-cl.iterator FILENAME generic-cl_dot_iterator)
+ (NAME generic-cl.map FILENAME generic-cl_dot_map)
+ (NAME generic-cl.object FILENAME generic-cl_dot_object)
+ (NAME generic-cl.sequence FILENAME generic-cl_dot_sequence)
+ (NAME introspect-environment FILENAME introspect-environment)
+ (NAME iterate FILENAME iterate)
+ (NAME lisp-namespace FILENAME lisp-namespace)
+ (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME static-dispatch FILENAME static-dispatch)
+ (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
+ (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
+ (NAME trivia.level0 FILENAME trivia_dot_level0)
+ (NAME trivia.level1 FILENAME trivia_dot_level1)
+ (NAME trivia.level2 FILENAME trivia_dot_level2)
+ (NAME trivia.trivial FILENAME trivia_dot_trivial)
+ (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ DEPENDENCIES
+ (agutil alexandria anaphora arrows cl-custom-hash-table cl-environments
+ cl-form-types closer-mop collectors generic-cl.arithmetic
+ generic-cl.collector generic-cl.comparison generic-cl.container
+ generic-cl.internal generic-cl.iterator generic-cl.map generic-cl.object
+ generic-cl.sequence introspect-environment iterate lisp-namespace optima
+ parse-declarations-1.0 static-dispatch symbol-munger trivia
+ trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
+ trivia.trivial trivial-cltl2 type-i)
+ VERSION generic-cl-20210807-git SIBLINGS
+ (generic-cl.arithmetic generic-cl generic-cl.collector
+ generic-cl.comparison generic-cl.container generic-cl.internal
+ generic-cl.iterator generic-cl.lazy-seq generic-cl.map generic-cl.math
+ generic-cl.object generic-cl.sequence generic-cl.util)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/heap.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/heap.nix
new file mode 100644
index 0000000000..be000574f9
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/heap.nix
@@ -0,0 +1,25 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "heap";
+ version = "20181018-git";
+
+ description = "Binary Heap for Common Lisp.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/heap/2018-10-18/heap-20181018-git.tgz";
+ sha256 = "1376i9vq5kcskzhqfxvsfvxz7kwkp6d3bd7rxn94dgnha988fd77";
+ };
+
+ packageName = "heap";
+
+ asdFilesToKeep = ["heap.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM heap DESCRIPTION Binary Heap for Common Lisp. SHA256
+ 1376i9vq5kcskzhqfxvsfvxz7kwkp6d3bd7rxn94dgnha988fd77 URL
+ http://beta.quicklisp.org/archive/heap/2018-10-18/heap-20181018-git.tgz MD5
+ a2355ef9c113a3335919a45195083951 NAME heap FILENAME heap DEPS NIL
+ DEPENDENCIES NIL VERSION 20181018-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
index af0bc6d848..ad53cdd1e5 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
@@ -6,7 +6,7 @@ rec {
description = "Various ASDF extensions such as attached test and documentation system, explicit development support, etc.";
- deps = [ args."uiop" ];
+ deps = [ args."asdf" args."uiop" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz";
@@ -23,5 +23,7 @@ rec {
SHA256 1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h URL
http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz
MD5 feec747077117dd9850db77ed1919c21 NAME hu.dwim.asdf FILENAME
- hu_dot_dwim_dot_asdf DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop)
- VERSION 20200925-darcs SIBLINGS (hu.dwim.asdf.documentation) PARASITES NIL) */
+ hu_dot_dwim_dot_asdf DEPS
+ ((NAME asdf FILENAME asdf) (NAME uiop FILENAME uiop)) DEPENDENCIES
+ (asdf uiop) VERSION 20200925-darcs SIBLINGS (hu.dwim.asdf.documentation)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix
index 979ecf4ec0..d8e65cbdae 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix
@@ -8,7 +8,7 @@ rec {
description = "spawn local or remote processes and shell pipes";
- deps = [ args."alexandria" args."closer-mop" args."fare-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."hu_dot_dwim_dot_stefil" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+ deps = [ args."alexandria" args."asdf" args."closer-mop" args."fare-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."hu_dot_dwim_dot_stefil" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz";
@@ -26,7 +26,7 @@ rec {
http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz
MD5 7ca5f15446ef80715758610a930bccba NAME inferior-shell FILENAME
inferior-shell DEPS
- ((NAME alexandria FILENAME alexandria)
+ ((NAME alexandria FILENAME alexandria) (NAME asdf FILENAME asdf)
(NAME closer-mop FILENAME closer-mop) (NAME fare-mop FILENAME fare-mop)
(NAME fare-quasiquote FILENAME fare-quasiquote)
(NAME fare-quasiquote-extras FILENAME fare-quasiquote-extras)
@@ -47,7 +47,7 @@ rec {
(NAME trivia.trivial FILENAME trivia_dot_trivial)
(NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
DEPENDENCIES
- (alexandria closer-mop fare-mop fare-quasiquote fare-quasiquote-extras
+ (alexandria asdf closer-mop fare-mop fare-quasiquote fare-quasiquote-extras
fare-quasiquote-optima fare-quasiquote-readtable fare-utils hu.dwim.stefil
introspect-environment iterate lisp-namespace named-readtables trivia
trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix
index ce21348d59..6963f286fb 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "introspect-environment";
- version = "20200715-git";
+ version = "20210807-git";
description = "Small interface to portable but nonstandard introspection of CL environments.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz";
- sha256 = "1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns";
+ url = "http://beta.quicklisp.org/archive/introspect-environment/2021-08-07/introspect-environment-20210807-git.tgz";
+ sha256 = "124rnbcjygw7wm07bpcibsqkvsqxhr8pq42p7phw39kmcp9hns4j";
};
packageName = "introspect-environment";
@@ -20,8 +20,8 @@ rec {
}
/* (SYSTEM introspect-environment DESCRIPTION
Small interface to portable but nonstandard introspection of CL environments.
- SHA256 1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns URL
- http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz
- MD5 d129641b18376741e7106bd13e476cb8 NAME introspect-environment FILENAME
- introspect-environment DEPS NIL DEPENDENCIES NIL VERSION 20200715-git
+ SHA256 124rnbcjygw7wm07bpcibsqkvsqxhr8pq42p7phw39kmcp9hns4j URL
+ http://beta.quicklisp.org/archive/introspect-environment/2021-08-07/introspect-environment-20210807-git.tgz
+ MD5 f9d4e1208146e9435c2ce1b82a87a209 NAME introspect-environment FILENAME
+ introspect-environment DEPS NIL DEPENDENCIES NIL VERSION 20210807-git
SIBLINGS (introspect-environment-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
index 283adb2c07..273d467230 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "iolib";
- version = "v0.8.3";
+ version = "v0.8.4";
- parasites = [ "iolib/multiplex" "iolib/os" "iolib/pathnames" "iolib/sockets" "iolib/streams" "iolib/syscalls" "iolib/trivial-sockets" "iolib/zstreams" ];
+ parasites = [ "iolib/multiplex" "iolib/os" "iolib/pathnames" "iolib/sockets" "iolib/streams" "iolib/syscalls" "iolib/tests" "iolib/trivial-sockets" "iolib/zstreams" ];
description = "I/O library.";
- deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."idna" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."iolib_dot_grovel" args."split-sequence" args."swap-bytes" args."trivial-features" ];
+ deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."idna" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" args."swap-bytes" args."trivial-features" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz";
- sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c";
+ url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz";
+ sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq";
};
packageName = "iolib";
@@ -21,27 +21,27 @@ rec {
overrides = x: x;
}
/* (SYSTEM iolib DESCRIPTION I/O library. SHA256
- 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
- http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5
- fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib FILENAME iolib DEPS
+ 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL
+ http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5
+ 5650165890f8b278b357864f597b377d NAME iolib FILENAME iolib DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
- (NAME cffi FILENAME cffi) (NAME idna FILENAME idna)
+ (NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
+ (NAME cffi-toolchain FILENAME cffi-toolchain)
+ (NAME fiveam FILENAME fiveam) (NAME idna FILENAME idna)
(NAME iolib.asdf FILENAME iolib_dot_asdf)
(NAME iolib.base FILENAME iolib_dot_base)
(NAME iolib.common-lisp FILENAME iolib_dot_common-lisp)
(NAME iolib.conf FILENAME iolib_dot_conf)
- (NAME iolib.grovel FILENAME iolib_dot_grovel)
(NAME split-sequence FILENAME split-sequence)
(NAME swap-bytes FILENAME swap-bytes)
(NAME trivial-features FILENAME trivial-features))
DEPENDENCIES
- (alexandria babel bordeaux-threads cffi idna iolib.asdf iolib.base
- iolib.common-lisp iolib.conf iolib.grovel split-sequence swap-bytes
- trivial-features)
- VERSION v0.8.3 SIBLINGS
- (iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples
- iolib.grovel iolib.tests)
+ (alexandria babel bordeaux-threads cffi cffi-grovel cffi-toolchain fiveam
+ idna iolib.asdf iolib.base iolib.common-lisp iolib.conf split-sequence
+ swap-bytes trivial-features)
+ VERSION v0.8.4 SIBLINGS
+ (iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples)
PARASITES
(iolib/multiplex iolib/os iolib/pathnames iolib/sockets iolib/streams
- iolib/syscalls iolib/trivial-sockets iolib/zstreams)) */
+ iolib/syscalls iolib/tests iolib/trivial-sockets iolib/zstreams)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix
index 717637f145..142d990ddf 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "iolib_dot_asdf";
- version = "iolib-v0.8.3";
+ version = "iolib-v0.8.4";
description = "A few ASDF component classes.";
deps = [ args."alexandria" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz";
- sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c";
+ url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz";
+ sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq";
};
packageName = "iolib.asdf";
@@ -19,11 +19,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM iolib.asdf DESCRIPTION A few ASDF component classes. SHA256
- 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
- http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5
- fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib.asdf FILENAME iolib_dot_asdf
+ 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL
+ http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5
+ 5650165890f8b278b357864f597b377d NAME iolib.asdf FILENAME iolib_dot_asdf
DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria)
- VERSION iolib-v0.8.3 SIBLINGS
- (iolib iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel
- iolib.tests)
- PARASITES NIL) */
+ VERSION iolib-v0.8.4 SIBLINGS
+ (iolib iolib.base iolib.common-lisp iolib.conf iolib.examples) PARASITES
+ NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix
index 82fdc26ecf..b2e0886903 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "iolib_dot_base";
- version = "iolib-v0.8.3";
+ version = "iolib-v0.8.4";
description = "Base IOlib package, used instead of CL.";
deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz";
- sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c";
+ url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz";
+ sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq";
};
packageName = "iolib.base";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM iolib.base DESCRIPTION Base IOlib package, used instead of CL.
- SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
- http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5
- fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib.base FILENAME iolib_dot_base
+ SHA256 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL
+ http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5
+ 5650165890f8b278b357864f597b377d NAME iolib.base FILENAME iolib_dot_base
DEPS
((NAME alexandria FILENAME alexandria)
(NAME iolib.asdf FILENAME iolib_dot_asdf)
@@ -30,7 +30,6 @@ rec {
(NAME split-sequence FILENAME split-sequence))
DEPENDENCIES
(alexandria iolib.asdf iolib.common-lisp iolib.conf split-sequence) VERSION
- iolib-v0.8.3 SIBLINGS
- (iolib iolib.asdf iolib.common-lisp iolib.conf iolib.examples iolib.grovel
- iolib.tests)
- PARASITES NIL) */
+ iolib-v0.8.4 SIBLINGS
+ (iolib iolib.asdf iolib.common-lisp iolib.conf iolib.examples) PARASITES
+ NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
index 2a87869fda..9dcf0781b0 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "iolib_dot_common-lisp";
- version = "iolib-v0.8.3";
+ version = "iolib-v0.8.4";
description = "Slightly modified Common Lisp.";
deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_conf" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz";
- sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c";
+ url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz";
+ sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq";
};
packageName = "iolib.common-lisp";
@@ -19,15 +19,13 @@ rec {
overrides = x: x;
}
/* (SYSTEM iolib.common-lisp DESCRIPTION Slightly modified Common Lisp. SHA256
- 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
- http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5
- fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib.common-lisp FILENAME
+ 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL
+ http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5
+ 5650165890f8b278b357864f597b377d NAME iolib.common-lisp FILENAME
iolib_dot_common-lisp DEPS
((NAME alexandria FILENAME alexandria)
(NAME iolib.asdf FILENAME iolib_dot_asdf)
(NAME iolib.conf FILENAME iolib_dot_conf))
- DEPENDENCIES (alexandria iolib.asdf iolib.conf) VERSION iolib-v0.8.3
- SIBLINGS
- (iolib iolib.asdf iolib.base iolib.conf iolib.examples iolib.grovel
- iolib.tests)
- PARASITES NIL) */
+ DEPENDENCIES (alexandria iolib.asdf iolib.conf) VERSION iolib-v0.8.4
+ SIBLINGS (iolib iolib.asdf iolib.base iolib.conf iolib.examples) PARASITES
+ NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix
index a35f7a0ebb..f3e9816441 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "iolib_dot_conf";
- version = "iolib-v0.8.3";
+ version = "iolib-v0.8.4";
description = "Compile-time configuration for IOLib.";
deps = [ args."alexandria" args."iolib_dot_asdf" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz";
- sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c";
+ url = "http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz";
+ sha256 = "0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq";
};
packageName = "iolib.conf";
@@ -19,13 +19,12 @@ rec {
overrides = x: x;
}
/* (SYSTEM iolib.conf DESCRIPTION Compile-time configuration for IOLib. SHA256
- 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
- http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz MD5
- fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib.conf FILENAME iolib_dot_conf
+ 0vahwswwk3rxkr5wcph5n91sgzlm53d53j8m8sxbqixm8j1ff5vq URL
+ http://beta.quicklisp.org/archive/iolib/2021-06-30/iolib-v0.8.4.tgz MD5
+ 5650165890f8b278b357864f597b377d NAME iolib.conf FILENAME iolib_dot_conf
DEPS
((NAME alexandria FILENAME alexandria)
(NAME iolib.asdf FILENAME iolib_dot_asdf))
- DEPENDENCIES (alexandria iolib.asdf) VERSION iolib-v0.8.3 SIBLINGS
- (iolib iolib.asdf iolib.base iolib.common-lisp iolib.examples iolib.grovel
- iolib.tests)
- PARASITES NIL) */
+ DEPENDENCIES (alexandria iolib.asdf) VERSION iolib-v0.8.4 SIBLINGS
+ (iolib iolib.asdf iolib.base iolib.common-lisp iolib.examples) PARASITES
+ NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix
index ff72add872..ac412031af 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "iterate";
- version = "20210228-git";
+ version = "release-b0f9a9c6-git";
parasites = [ "iterate/tests" ];
@@ -11,8 +11,8 @@ rec {
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/iterate/2021-02-28/iterate-20210228-git.tgz";
- sha256 = "1bd6m1lxmd6an75z7j61sms4v54bfxmg1n1w7zd7fm2kb15vai46";
+ url = "http://beta.quicklisp.org/archive/iterate/2021-05-31/iterate-release-b0f9a9c6-git.tgz";
+ sha256 = "1fqk0iaqg7xjwhdr8q05birlpwh4zvmlranmsmfps3wmldccc4ck";
};
packageName = "iterate";
@@ -22,8 +22,8 @@ rec {
}
/* (SYSTEM iterate DESCRIPTION
Jonathan Amsterdam's iterator/gatherer/accumulator facility SHA256
- 1bd6m1lxmd6an75z7j61sms4v54bfxmg1n1w7zd7fm2kb15vai46 URL
- http://beta.quicklisp.org/archive/iterate/2021-02-28/iterate-20210228-git.tgz
- MD5 16a4d7811ffc0f4a1cc45257c4cefd1d NAME iterate FILENAME iterate DEPS NIL
- DEPENDENCIES NIL VERSION 20210228-git SIBLINGS NIL PARASITES
+ 1fqk0iaqg7xjwhdr8q05birlpwh4zvmlranmsmfps3wmldccc4ck URL
+ http://beta.quicklisp.org/archive/iterate/2021-05-31/iterate-release-b0f9a9c6-git.tgz
+ MD5 0b2661e9b8195f3e5891aa14601e5a69 NAME iterate FILENAME iterate DEPS NIL
+ DEPENDENCIES NIL VERSION release-b0f9a9c6-git SIBLINGS NIL PARASITES
(iterate/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/jsown.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/jsown.nix
new file mode 100644
index 0000000000..08dadf8ea3
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/jsown.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "jsown";
+ version = "20200218-git";
+
+ description = "Fast JSON parsing library. Mainly geared torwards fetching only a few keys of many objects, but efficient for other types of content too";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/jsown/2020-02-18/jsown-20200218-git.tgz";
+ sha256 = "10cn1fkznyq73vxwy95wsd36yfiiakmk278lv7mzzsyqc1jrn2hj";
+ };
+
+ packageName = "jsown";
+
+ asdFilesToKeep = ["jsown.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM jsown DESCRIPTION
+ Fast JSON parsing library. Mainly geared torwards fetching only a few keys of many objects, but efficient for other types of content too
+ SHA256 10cn1fkznyq73vxwy95wsd36yfiiakmk278lv7mzzsyqc1jrn2hj URL
+ http://beta.quicklisp.org/archive/jsown/2020-02-18/jsown-20200218-git.tgz
+ MD5 ecf8bfcc2a2ccbab9baddca6592b34ba NAME jsown FILENAME jsown DEPS NIL
+ DEPENDENCIES NIL VERSION 20200218-git SIBLINGS (jsown-tests) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix
index bfa7ac47fb..71becf9a4e 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "lack-component";
- version = "lack-20201016-git";
+ version = "lack-20210807-git";
description = "System lacks description";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz";
- sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan";
+ url = "http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz";
+ sha256 = "0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn";
};
packageName = "lack-component";
@@ -19,10 +19,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM lack-component DESCRIPTION System lacks description SHA256
- 124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan URL
- http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz MD5
- 8a056801bd99fdd70cdfaf33129f6aeb NAME lack-component FILENAME
- lack-component DEPS NIL DEPENDENCIES NIL VERSION lack-20201016-git SIBLINGS
+ 0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn URL
+ http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz MD5
+ 76b3ab979e6c3d7d33dd2fd3864692ca NAME lack-component FILENAME
+ lack-component DEPS NIL DEPENDENCIES NIL VERSION lack-20210807-git SIBLINGS
(lack-middleware-accesslog lack-middleware-auth-basic
lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount
lack-middleware-session lack-middleware-static lack-request lack-response
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
index d9aba5ac0e..9048abebad 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "lack-middleware-backtrace";
- version = "lack-20201016-git";
+ version = "lack-20210807-git";
description = "System lacks description";
deps = [ args."uiop" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz";
- sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan";
+ url = "http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz";
+ sha256 = "0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn";
};
packageName = "lack-middleware-backtrace";
@@ -19,11 +19,11 @@ rec {
overrides = x: x;
}
/* (SYSTEM lack-middleware-backtrace DESCRIPTION System lacks description
- SHA256 124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan URL
- http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz MD5
- 8a056801bd99fdd70cdfaf33129f6aeb NAME lack-middleware-backtrace FILENAME
+ SHA256 0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn URL
+ http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz MD5
+ 76b3ab979e6c3d7d33dd2fd3864692ca NAME lack-middleware-backtrace FILENAME
lack-middleware-backtrace DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES
- (uiop) VERSION lack-20201016-git SIBLINGS
+ (uiop) VERSION lack-20210807-git SIBLINGS
(lack-component lack-middleware-accesslog lack-middleware-auth-basic
lack-middleware-csrf lack-middleware-mount lack-middleware-session
lack-middleware-static lack-request lack-response lack-session-store-dbi
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
index 4852621563..9cba066f75 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "lack-util";
- version = "lack-20201016-git";
+ version = "lack-20210807-git";
description = "System lacks description";
deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz";
- sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan";
+ url = "http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz";
+ sha256 = "0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn";
};
packageName = "lack-util";
@@ -19,14 +19,14 @@ rec {
overrides = x: x;
}
/* (SYSTEM lack-util DESCRIPTION System lacks description SHA256
- 124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan URL
- http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz MD5
- 8a056801bd99fdd70cdfaf33129f6aeb NAME lack-util FILENAME lack-util DEPS
+ 0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn URL
+ http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz MD5
+ 76b3ab979e6c3d7d33dd2fd3864692ca NAME lack-util FILENAME lack-util DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME ironclad FILENAME ironclad))
DEPENDENCIES (alexandria bordeaux-threads ironclad) VERSION
- lack-20201016-git SIBLINGS
+ lack-20210807-git SIBLINGS
(lack-component lack-middleware-accesslog lack-middleware-auth-basic
lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount
lack-middleware-session lack-middleware-static lack-request lack-response
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
index 427f63cb3d..eb81e9dba4 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "lack";
- version = "20201016-git";
+ version = "20210807-git";
description = "A minimal Clack";
deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack-component" args."lack-util" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz";
- sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan";
+ url = "http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz";
+ sha256 = "0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn";
};
packageName = "lack";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM lack DESCRIPTION A minimal Clack SHA256
- 124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan URL
- http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz MD5
- 8a056801bd99fdd70cdfaf33129f6aeb NAME lack FILENAME lack DEPS
+ 0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn URL
+ http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz MD5
+ 76b3ab979e6c3d7d33dd2fd3864692ca NAME lack FILENAME lack DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME ironclad FILENAME ironclad)
@@ -29,7 +29,7 @@ rec {
(NAME lack-util FILENAME lack-util))
DEPENDENCIES
(alexandria bordeaux-threads ironclad lack-component lack-util) VERSION
- 20201016-git SIBLINGS
+ 20210807-git SIBLINGS
(lack-component lack-middleware-accesslog lack-middleware-auth-basic
lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount
lack-middleware-session lack-middleware-static lack-request lack-response
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-stat.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-stat.nix
new file mode 100644
index 0000000000..e7112f4308
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-stat.nix
@@ -0,0 +1,49 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "lisp-stat";
+ version = "20210411-git";
+
+ parasites = [ "lisp-stat/rdata" ];
+
+ description = "A statistical computing environment for Common Lisp";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."cl-ascii-table" args."cl-csv" args."cl-interpol" args."cl-ppcre" args."cl-semver" args."cl-unicode" args."data-frame" args."dexador" args."dfio" args."esrap" args."flexi-streams" args."iterate" args."let-plus" args."make-hash" args."named-readtables" args."num-utils" args."select" args."split-sequence" args."trivial-with-current-source-form" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/lisp-stat/2021-04-11/lisp-stat-20210411-git.tgz";
+ sha256 = "110cfj1svn9m9xn6l8p5z88knp0idyf0zcbnwi9rrgxssvaiwncg";
+ };
+
+ packageName = "lisp-stat";
+
+ asdFilesToKeep = ["lisp-stat.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM lisp-stat DESCRIPTION
+ A statistical computing environment for Common Lisp SHA256
+ 110cfj1svn9m9xn6l8p5z88knp0idyf0zcbnwi9rrgxssvaiwncg URL
+ http://beta.quicklisp.org/archive/lisp-stat/2021-04-11/lisp-stat-20210411-git.tgz
+ MD5 766777ed3ba44a0835fc02c5b1f13970 NAME lisp-stat FILENAME lisp-stat DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME cl-ascii-table FILENAME cl-ascii-table)
+ (NAME cl-csv FILENAME cl-csv) (NAME cl-interpol FILENAME cl-interpol)
+ (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-semver FILENAME cl-semver)
+ (NAME cl-unicode FILENAME cl-unicode)
+ (NAME data-frame FILENAME data-frame) (NAME dexador FILENAME dexador)
+ (NAME dfio FILENAME dfio) (NAME esrap FILENAME esrap)
+ (NAME flexi-streams FILENAME flexi-streams)
+ (NAME iterate FILENAME iterate) (NAME let-plus FILENAME let-plus)
+ (NAME make-hash FILENAME make-hash)
+ (NAME named-readtables FILENAME named-readtables)
+ (NAME num-utils FILENAME num-utils) (NAME select FILENAME select)
+ (NAME split-sequence FILENAME split-sequence)
+ (NAME trivial-with-current-source-form FILENAME
+ trivial-with-current-source-form))
+ DEPENDENCIES
+ (alexandria anaphora array-operations cl-ascii-table cl-csv cl-interpol
+ cl-ppcre cl-semver cl-unicode data-frame dexador dfio esrap flexi-streams
+ iterate let-plus make-hash named-readtables num-utils select
+ split-sequence trivial-with-current-source-form)
+ VERSION 20210411-git SIBLINGS NIL PARASITES (lisp-stat/rdata)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lla.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lla.nix
new file mode 100644
index 0000000000..a73e28bf3a
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/lla.nix
@@ -0,0 +1,37 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "lla";
+ version = "20180328-git";
+
+ parasites = [ "lla-tests" ];
+
+ description = "Lisp Linear Algebra";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."babel" args."cffi" args."cl-num-utils" args."cl-slice" args."clunit" args."let-plus" args."trivial-features" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/lla/2018-03-28/lla-20180328-git.tgz";
+ sha256 = "0azljp93ap9lh2gfh1vvl99r18s6a03p880c3wvwpf9valb784hj";
+ };
+
+ packageName = "lla";
+
+ asdFilesToKeep = ["lla.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM lla DESCRIPTION Lisp Linear Algebra SHA256
+ 0azljp93ap9lh2gfh1vvl99r18s6a03p880c3wvwpf9valb784hj URL
+ http://beta.quicklisp.org/archive/lla/2018-03-28/lla-20180328-git.tgz MD5
+ 61d583603d5cacf9d81486a0cfcfaf6a NAME lla FILENAME lla DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME babel FILENAME babel) (NAME cffi FILENAME cffi)
+ (NAME cl-num-utils FILENAME cl-num-utils)
+ (NAME cl-slice FILENAME cl-slice) (NAME clunit FILENAME clunit)
+ (NAME let-plus FILENAME let-plus)
+ (NAME trivial-features FILENAME trivial-features))
+ DEPENDENCIES
+ (alexandria anaphora array-operations babel cffi cl-num-utils cl-slice
+ clunit let-plus trivial-features)
+ VERSION 20180328-git SIBLINGS NIL PARASITES (lla-tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/make-hash.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/make-hash.nix
new file mode 100644
index 0000000000..57c5f44607
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/make-hash.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "make-hash";
+ version = "20130615-git";
+
+ description = "System lacks description";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/make-hash/2013-06-15/make-hash-20130615-git.tgz";
+ sha256 = "1ghcyqjhizkbfsvx1cih7d665w8yvbs1xv8pfi3hs1ghbn8njbkw";
+ };
+
+ packageName = "make-hash";
+
+ asdFilesToKeep = ["make-hash.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM make-hash DESCRIPTION System lacks description SHA256
+ 1ghcyqjhizkbfsvx1cih7d665w8yvbs1xv8pfi3hs1ghbn8njbkw URL
+ http://beta.quicklisp.org/archive/make-hash/2013-06-15/make-hash-20130615-git.tgz
+ MD5 4f612ef068411284c88e0381fa4a0c7f NAME make-hash FILENAME make-hash DEPS
+ NIL DEPENDENCIES NIL VERSION 20130615-git SIBLINGS (make-hash-tests)
+ PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
index f42948ae26..c8ae665086 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "md5";
- version = "20180228-git";
+ version = "20210630-git";
description = "The MD5 Message-Digest Algorithm RFC 1321";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz";
- sha256 = "1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4";
+ url = "http://beta.quicklisp.org/archive/md5/2021-06-30/md5-20210630-git.tgz";
+ sha256 = "16kilbw3p68xf5fnj00xpvm4l8ylk5k9z6vbnq244ip0sygfizcv";
};
packageName = "md5";
@@ -19,7 +19,7 @@ rec {
overrides = x: x;
}
/* (SYSTEM md5 DESCRIPTION The MD5 Message-Digest Algorithm RFC 1321 SHA256
- 1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4 URL
- http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz MD5
- 7f250f8a2487e4e0aac1ed9c50b79b4d NAME md5 FILENAME md5 DEPS NIL
- DEPENDENCIES NIL VERSION 20180228-git SIBLINGS NIL PARASITES NIL) */
+ 16kilbw3p68xf5fnj00xpvm4l8ylk5k9z6vbnq244ip0sygfizcv URL
+ http://beta.quicklisp.org/archive/md5/2021-06-30/md5-20210630-git.tgz MD5
+ ecb1fa8eea6848c2f14fdfeb03d47056 NAME md5 FILENAME md5 DEPS NIL
+ DEPENDENCIES NIL VERSION 20210630-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/minheap.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/minheap.nix
new file mode 100644
index 0000000000..2c6df0f066
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/minheap.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "minheap";
+ version = "20160628-git";
+
+ description = "Various heap/priority queue data structures";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/minheap/2016-06-28/minheap-20160628-git.tgz";
+ sha256 = "1zjmxivspywf3nr7a5qwih2vf7w62r8pmyq25qhm3a0v2fdaihzz";
+ };
+
+ packageName = "minheap";
+
+ asdFilesToKeep = ["minheap.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM minheap DESCRIPTION Various heap/priority queue data structures
+ SHA256 1zjmxivspywf3nr7a5qwih2vf7w62r8pmyq25qhm3a0v2fdaihzz URL
+ http://beta.quicklisp.org/archive/minheap/2016-06-28/minheap-20160628-git.tgz
+ MD5 27a57cdd27e91eb767f1377fcbfe2af3 NAME minheap FILENAME minheap DEPS NIL
+ DEPENDENCIES NIL VERSION 20160628-git SIBLINGS (minheap-tests) PARASITES
+ NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix
index 7f2fcc4745..ccbe5caa85 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "named-readtables";
- version = "20210124-git";
+ version = "20210531-git";
parasites = [ "named-readtables/test" ];
@@ -12,8 +12,8 @@ rec {
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/named-readtables/2021-01-24/named-readtables-20210124-git.tgz";
- sha256 = "00lbcv1qdb9ldq2kbf1rkn5sh657px9dgqrcynbwjzvla4czadl4";
+ url = "http://beta.quicklisp.org/archive/named-readtables/2021-05-31/named-readtables-20210531-git.tgz";
+ sha256 = "1z9c02924wqmxmcr1m1fzhw0gib138yllg70j5imiww9dmqbm9wf";
};
packageName = "named-readtables";
@@ -24,8 +24,8 @@ rec {
/* (SYSTEM named-readtables DESCRIPTION
Library that creates a namespace for named readtable
akin to the namespace of packages.
- SHA256 00lbcv1qdb9ldq2kbf1rkn5sh657px9dgqrcynbwjzvla4czadl4 URL
- http://beta.quicklisp.org/archive/named-readtables/2021-01-24/named-readtables-20210124-git.tgz
- MD5 a4f2ae5f9715ec2c42cd164d15a0c918 NAME named-readtables FILENAME
- named-readtables DEPS NIL DEPENDENCIES NIL VERSION 20210124-git SIBLINGS
+ SHA256 1z9c02924wqmxmcr1m1fzhw0gib138yllg70j5imiww9dmqbm9wf URL
+ http://beta.quicklisp.org/archive/named-readtables/2021-05-31/named-readtables-20210531-git.tgz
+ MD5 a79f2cc78e84c4b474f818132c8cc4d8 NAME named-readtables FILENAME
+ named-readtables DEPS NIL DEPENDENCIES NIL VERSION 20210531-git SIBLINGS
NIL PARASITES (named-readtables/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
index 2ddf0b73fb..b030a0ecea 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "nibbles";
- version = "20210124-git";
+ version = "20210531-git";
parasites = [ "nibbles/tests" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."rt" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/nibbles/2021-01-24/nibbles-20210124-git.tgz";
- sha256 = "0y3h4k7665w7b8ivmql9w6rz3ivfa3h8glk45sn6mwix55xmzp26";
+ url = "http://beta.quicklisp.org/archive/nibbles/2021-05-31/nibbles-20210531-git.tgz";
+ sha256 = "1gwk44l86z6yyyn1fqf72rvlh93i61v6430njl9c6cmm05hf8lzz";
};
packageName = "nibbles";
@@ -22,8 +22,8 @@ rec {
}
/* (SYSTEM nibbles DESCRIPTION
A library for accessing octet-addressed blocks of data in big- and little-endian orders
- SHA256 0y3h4k7665w7b8ivmql9w6rz3ivfa3h8glk45sn6mwix55xmzp26 URL
- http://beta.quicklisp.org/archive/nibbles/2021-01-24/nibbles-20210124-git.tgz
- MD5 e37b58da46b4756006e790e658f35ea8 NAME nibbles FILENAME nibbles DEPS
- ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20210124-git SIBLINGS NIL
+ SHA256 1gwk44l86z6yyyn1fqf72rvlh93i61v6430njl9c6cmm05hf8lzz URL
+ http://beta.quicklisp.org/archive/nibbles/2021-05-31/nibbles-20210531-git.tgz
+ MD5 ec4ee1a201aef6325e071a9d9e3f6380 NAME nibbles FILENAME nibbles DEPS
+ ((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20210531-git SIBLINGS NIL
PARASITES (nibbles/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/num-utils.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/num-utils.nix
new file mode 100644
index 0000000000..7160524a2f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/num-utils.nix
@@ -0,0 +1,33 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "num-utils";
+ version = "numerical-utilities-20210411-git";
+
+ parasites = [ "num-utils/tests" ];
+
+ description = "Numerical utilities for Common Lisp";
+
+ deps = [ args."alexandria" args."anaphora" args."array-operations" args."fiveam" args."let-plus" args."select" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/numerical-utilities/2021-04-11/numerical-utilities-20210411-git.tgz";
+ sha256 = "19d1vm9hasgba9l2mwby8izd7pzmisckf52h6fmh170lwkqixqxb";
+ };
+
+ packageName = "num-utils";
+
+ asdFilesToKeep = ["num-utils.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM num-utils DESCRIPTION Numerical utilities for Common Lisp SHA256
+ 19d1vm9hasgba9l2mwby8izd7pzmisckf52h6fmh170lwkqixqxb URL
+ http://beta.quicklisp.org/archive/numerical-utilities/2021-04-11/numerical-utilities-20210411-git.tgz
+ MD5 87fac84d7897071bfa89fc9aeca7b4d0 NAME num-utils FILENAME num-utils DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME array-operations FILENAME array-operations)
+ (NAME fiveam FILENAME fiveam) (NAME let-plus FILENAME let-plus)
+ (NAME select FILENAME select))
+ DEPENDENCIES (alexandria anaphora array-operations fiveam let-plus select)
+ VERSION numerical-utilities-20210411-git SIBLINGS NIL PARASITES
+ (num-utils/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parachute.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parachute.nix
new file mode 100644
index 0000000000..f355b4ba3e
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parachute.nix
@@ -0,0 +1,31 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "parachute";
+ version = "20210807-git";
+
+ description = "An extensible and cross-compatible testing framework.";
+
+ deps = [ args."documentation-utils" args."form-fiddle" args."trivial-indent" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/parachute/2021-08-07/parachute-20210807-git.tgz";
+ sha256 = "0h20f73781qpylhs3v0gywzz3iwkxh1bksl7d674dxdl988ngzbs";
+ };
+
+ packageName = "parachute";
+
+ asdFilesToKeep = ["parachute.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM parachute DESCRIPTION
+ An extensible and cross-compatible testing framework. SHA256
+ 0h20f73781qpylhs3v0gywzz3iwkxh1bksl7d674dxdl988ngzbs URL
+ http://beta.quicklisp.org/archive/parachute/2021-08-07/parachute-20210807-git.tgz
+ MD5 3a25227cffef9f2d9947750490d643ec NAME parachute FILENAME parachute DEPS
+ ((NAME documentation-utils FILENAME documentation-utils)
+ (NAME form-fiddle FILENAME form-fiddle)
+ (NAME trivial-indent FILENAME trivial-indent))
+ DEPENDENCIES (documentation-utils form-fiddle trivial-indent) VERSION
+ 20210807-git SIBLINGS
+ (parachute-fiveam parachute-lisp-unit parachute-prove) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parseq.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parseq.nix
new file mode 100644
index 0000000000..12bd80a6eb
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/parseq.nix
@@ -0,0 +1,28 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "parseq";
+ version = "20210531-git";
+
+ parasites = [ "parseq/test" ];
+
+ description = "A library for parsing sequences such as strings and lists using parsing expression grammars.";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/parseq/2021-05-31/parseq-20210531-git.tgz";
+ sha256 = "1jh362avz2bbjrg9wwnjisa3ikxjxcgbddc0gqx65l6h9s87gqrg";
+ };
+
+ packageName = "parseq";
+
+ asdFilesToKeep = ["parseq.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM parseq DESCRIPTION
+ A library for parsing sequences such as strings and lists using parsing expression grammars.
+ SHA256 1jh362avz2bbjrg9wwnjisa3ikxjxcgbddc0gqx65l6h9s87gqrg URL
+ http://beta.quicklisp.org/archive/parseq/2021-05-31/parseq-20210531-git.tgz
+ MD5 a62fdb0623450f7ef82297e8b23fd343 NAME parseq FILENAME parseq DEPS NIL
+ DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL PARASITES (parseq/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/physical-quantities.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/physical-quantities.nix
new file mode 100644
index 0000000000..0426f67708
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/physical-quantities.nix
@@ -0,0 +1,30 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "physical-quantities";
+ version = "20201220-git";
+
+ parasites = [ "physical-quantities/test" ];
+
+ description = "A library that provides a numeric type with optional unit and/or uncertainty for computations with automatic error propagation.";
+
+ deps = [ args."parseq" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/physical-quantities/2020-12-20/physical-quantities-20201220-git.tgz";
+ sha256 = "0731q6skgnl95jmw82pfkw6y3bdaw5givdlgbk93jql251wfvmf5";
+ };
+
+ packageName = "physical-quantities";
+
+ asdFilesToKeep = ["physical-quantities.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM physical-quantities DESCRIPTION
+ A library that provides a numeric type with optional unit and/or uncertainty for computations with automatic error propagation.
+ SHA256 0731q6skgnl95jmw82pfkw6y3bdaw5givdlgbk93jql251wfvmf5 URL
+ http://beta.quicklisp.org/archive/physical-quantities/2020-12-20/physical-quantities-20201220-git.tgz
+ MD5 428232d463c45259dd2c18fa8ff3dd6e NAME physical-quantities FILENAME
+ physical-quantities DEPS ((NAME parseq FILENAME parseq)) DEPENDENCIES
+ (parseq) VERSION 20201220-git SIBLINGS NIL PARASITES
+ (physical-quantities/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
index fa7d1e047d..51767965a0 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "plump";
- version = "20210411-git";
+ version = "20210630-git";
description = "An XML / XHTML / HTML parser that aims to be as lenient as possible.";
deps = [ args."array-utils" args."documentation-utils" args."trivial-indent" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/plump/2021-04-11/plump-20210411-git.tgz";
- sha256 = "05zs9blznfhapz5yiy08968hw64rzdgqgvfgc9r9da45b45pl6dp";
+ url = "http://beta.quicklisp.org/archive/plump/2021-06-30/plump-20210630-git.tgz";
+ sha256 = "0wx5l2q5hsdshdrmlpnjdlyksw6rl5f2snad18xkmmyiwwn7wv2h";
};
packageName = "plump";
@@ -20,11 +20,11 @@ rec {
}
/* (SYSTEM plump DESCRIPTION
An XML / XHTML / HTML parser that aims to be as lenient as possible. SHA256
- 05zs9blznfhapz5yiy08968hw64rzdgqgvfgc9r9da45b45pl6dp URL
- http://beta.quicklisp.org/archive/plump/2021-04-11/plump-20210411-git.tgz
- MD5 055e30ed07ae793426a48b55c947f9bb NAME plump FILENAME plump DEPS
+ 0wx5l2q5hsdshdrmlpnjdlyksw6rl5f2snad18xkmmyiwwn7wv2h URL
+ http://beta.quicklisp.org/archive/plump/2021-06-30/plump-20210630-git.tgz
+ MD5 b15f7f4f52893ef41ca8a12e6e959dc1 NAME plump FILENAME plump DEPS
((NAME array-utils FILENAME array-utils)
(NAME documentation-utils FILENAME documentation-utils)
(NAME trivial-indent FILENAME trivial-indent))
DEPENDENCIES (array-utils documentation-utils trivial-indent) VERSION
- 20210411-git SIBLINGS (plump-dom plump-lexer plump-parser) PARASITES NIL) */
+ 20210630-git SIBLINGS (plump-dom plump-lexer plump-parser) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix
index 245cb109a3..43658b6e08 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "postmodern";
- version = "20210411-git";
+ version = "20210807-git";
parasites = [ "postmodern/tests" ];
description = "PostgreSQL programming API";
- deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_plus_local-time" args."cl-postgres_slash_tests" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."fiveam" args."flexi-streams" args."global-vars" args."ironclad" args."local-time" args."md5" args."s-sql" args."s-sql_slash_tests" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."usocket" ];
+ deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_plus_local-time" args."cl-postgres_slash_tests" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."fiveam" args."flexi-streams" args."global-vars" args."ironclad" args."local-time" args."md5" args."s-sql" args."s-sql_slash_tests" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."uiop" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz";
- sha256 = "0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw";
+ url = "http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz";
+ sha256 = "01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp";
};
packageName = "postmodern";
@@ -21,9 +21,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM postmodern DESCRIPTION PostgreSQL programming API SHA256
- 0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw URL
- http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz
- MD5 8a75a05ba9e371f672f2620d40724cb2 NAME postmodern FILENAME postmodern
+ 01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp URL
+ http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz
+ MD5 aa951f2ad4ce59fce588a62afa34f3ec NAME postmodern FILENAME postmodern
DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
@@ -40,11 +40,12 @@ rec {
(NAME simple-date FILENAME simple-date)
(NAME simple-date/postgres-glue FILENAME simple-date_slash_postgres-glue)
(NAME split-sequence FILENAME split-sequence)
- (NAME uax-15 FILENAME uax-15) (NAME usocket FILENAME usocket))
+ (NAME uax-15 FILENAME uax-15) (NAME uiop FILENAME uiop)
+ (NAME usocket FILENAME usocket))
DEPENDENCIES
(alexandria bordeaux-threads cl-base64 cl-postgres cl-postgres+local-time
cl-postgres/tests cl-ppcre cl-unicode closer-mop fiveam flexi-streams
global-vars ironclad local-time md5 s-sql s-sql/tests simple-date
- simple-date/postgres-glue split-sequence uax-15 usocket)
- VERSION 20210411-git SIBLINGS (cl-postgres s-sql simple-date) PARASITES
+ simple-date/postgres-glue split-sequence uax-15 uiop usocket)
+ VERSION 20210807-git SIBLINGS (cl-postgres s-sql simple-date) PARASITES
(postmodern/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix
index 48d98ca239..43f0d75e8b 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "quri";
- version = "20210411-git";
+ version = "20210630-git";
description = "Yet another URI library for Common Lisp";
deps = [ args."alexandria" args."babel" args."cl-utilities" args."split-sequence" args."trivial-features" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/quri/2021-04-11/quri-20210411-git.tgz";
- sha256 = "1j4al77bl8awj7755g8zvgvfskdh6gcl3gygbz2fi6lrrk9125d7";
+ url = "http://beta.quicklisp.org/archive/quri/2021-06-30/quri-20210630-git.tgz";
+ sha256 = "0ihgsqdzi9rh8ybc221g46c5h7i4vrz67znwv76rm2z44v8x0wwh";
};
packageName = "quri";
@@ -19,13 +19,13 @@ rec {
overrides = x: x;
}
/* (SYSTEM quri DESCRIPTION Yet another URI library for Common Lisp SHA256
- 1j4al77bl8awj7755g8zvgvfskdh6gcl3gygbz2fi6lrrk9125d7 URL
- http://beta.quicklisp.org/archive/quri/2021-04-11/quri-20210411-git.tgz MD5
- 2727c706f51bef480171c59f6134bba5 NAME quri FILENAME quri DEPS
+ 0ihgsqdzi9rh8ybc221g46c5h7i4vrz67znwv76rm2z44v8x0wwh URL
+ http://beta.quicklisp.org/archive/quri/2021-06-30/quri-20210630-git.tgz MD5
+ 3dcaaa9b94f6e4a0c5f4bd0829a045a7 NAME quri FILENAME quri DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME cl-utilities FILENAME cl-utilities)
(NAME split-sequence FILENAME split-sequence)
(NAME trivial-features FILENAME trivial-features))
DEPENDENCIES
(alexandria babel cl-utilities split-sequence trivial-features) VERSION
- 20210411-git SIBLINGS (quri-test) PARASITES NIL) */
+ 20210630-git SIBLINGS (quri-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix
index aab36e3abc..651c4d20d0 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "rove";
- version = "20200325-git";
+ version = "20210807-git";
description = "Yet another testing framework intended to be a successor of Prove";
deps = [ args."bordeaux-threads" args."dissect" args."trivial-gray-streams" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz";
- sha256 = "0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5";
+ url = "http://beta.quicklisp.org/archive/rove/2021-08-07/rove-20210807-git.tgz";
+ sha256 = "1zg9jch2q8946a1bsjykq0bw86zh9gqvvqbqa8k4njvqbc42kqn8";
};
packageName = "rove";
@@ -20,11 +20,11 @@ rec {
}
/* (SYSTEM rove DESCRIPTION
Yet another testing framework intended to be a successor of Prove SHA256
- 0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5 URL
- http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz MD5
- 7954cb65830d62142babecebf20d0226 NAME rove FILENAME rove DEPS
+ 1zg9jch2q8946a1bsjykq0bw86zh9gqvvqbqa8k4njvqbc42kqn8 URL
+ http://beta.quicklisp.org/archive/rove/2021-08-07/rove-20210807-git.tgz MD5
+ 502337a1120b19d1d70bb06191323ee0 NAME rove FILENAME rove DEPS
((NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME dissect FILENAME dissect)
(NAME trivial-gray-streams FILENAME trivial-gray-streams))
DEPENDENCIES (bordeaux-threads dissect trivial-gray-streams) VERSION
- 20200325-git SIBLINGS NIL PARASITES NIL) */
+ 20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix
index d91ab87d82..5cbfb88a4e 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "s-sql";
- version = "postmodern-20210411-git";
+ version = "postmodern-20210807-git";
parasites = [ "s-sql/tests" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_slash_tests" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."fiveam" args."global-vars" args."ironclad" args."md5" args."postmodern" args."split-sequence" args."uax-15" args."usocket" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz";
- sha256 = "0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw";
+ url = "http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz";
+ sha256 = "01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp";
};
packageName = "s-sql";
@@ -21,9 +21,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM s-sql DESCRIPTION Lispy DSL for SQL SHA256
- 0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw URL
- http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz
- MD5 8a75a05ba9e371f672f2620d40724cb2 NAME s-sql FILENAME s-sql DEPS
+ 01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp URL
+ http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz
+ MD5 aa951f2ad4ce59fce588a62afa34f3ec NAME s-sql FILENAME s-sql DEPS
((NAME alexandria FILENAME alexandria)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cl-base64 FILENAME cl-base64)
@@ -39,5 +39,5 @@ rec {
(alexandria bordeaux-threads cl-base64 cl-postgres cl-postgres/tests
cl-ppcre cl-unicode closer-mop fiveam global-vars ironclad md5 postmodern
split-sequence uax-15 usocket)
- VERSION postmodern-20210411-git SIBLINGS
+ VERSION postmodern-20210807-git SIBLINGS
(cl-postgres postmodern simple-date) PARASITES (s-sql/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/select.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/select.nix
new file mode 100644
index 0000000000..88faf82d63
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/select.nix
@@ -0,0 +1,30 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "select";
+ version = "20210411-git";
+
+ parasites = [ "select/tests" ];
+
+ description = "DSL for array slices.";
+
+ deps = [ args."alexandria" args."anaphora" args."fiveam" args."let-plus" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/select/2021-04-11/select-20210411-git.tgz";
+ sha256 = "02xag0vpnqzfzw2mvrw6nwfhhy0iwq3zcvdh60cvx39labfvfdgb";
+ };
+
+ packageName = "select";
+
+ asdFilesToKeep = ["select.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM select DESCRIPTION DSL for array slices. SHA256
+ 02xag0vpnqzfzw2mvrw6nwfhhy0iwq3zcvdh60cvx39labfvfdgb URL
+ http://beta.quicklisp.org/archive/select/2021-04-11/select-20210411-git.tgz
+ MD5 3e9c06e580f9e3a8911317ae8b95d0da NAME select FILENAME select DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME anaphora FILENAME anaphora)
+ (NAME fiveam FILENAME fiveam) (NAME let-plus FILENAME let-plus))
+ DEPENDENCIES (alexandria anaphora fiveam let-plus) VERSION 20210411-git
+ SIBLINGS NIL PARASITES (select/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix
index e97a639814..75bf3a1358 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "serapeum";
- version = "20210411-git";
+ version = "20210807-git";
description = "Utilities beyond Alexandria.";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."global-vars" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."parse-declarations-1_dot_0" args."parse-number" args."split-sequence" args."string-case" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."trivial-features" args."trivial-file-size" args."trivial-garbage" args."trivial-macroexpand-all" args."type-i" args."uiop" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/serapeum/2021-04-11/serapeum-20210411-git.tgz";
- sha256 = "1zz0sjp2dwy7qg7a3h1asvflkl9z2ajwk9zqfqylm0mhl0mv2c01";
+ url = "http://beta.quicklisp.org/archive/serapeum/2021-08-07/serapeum-20210807-git.tgz";
+ sha256 = "0ddkn6kfmfamnylfcmcix1z8knd7zj6x8x6a7aalk41f91phl93a";
};
packageName = "serapeum";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM serapeum DESCRIPTION Utilities beyond Alexandria. SHA256
- 1zz0sjp2dwy7qg7a3h1asvflkl9z2ajwk9zqfqylm0mhl0mv2c01 URL
- http://beta.quicklisp.org/archive/serapeum/2021-04-11/serapeum-20210411-git.tgz
- MD5 091a7c572d48164ba8499bb44a37a85f NAME serapeum FILENAME serapeum DEPS
+ 0ddkn6kfmfamnylfcmcix1z8knd7zj6x8x6a7aalk41f91phl93a URL
+ http://beta.quicklisp.org/archive/serapeum/2021-08-07/serapeum-20210807-git.tgz
+ MD5 7027ae4f769f0b64ab65afc30811f6ab NAME serapeum FILENAME serapeum DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME closer-mop FILENAME closer-mop)
@@ -60,4 +60,4 @@ rec {
trivia.level2 trivia.quasiquote trivia.trivial trivial-cltl2
trivial-features trivial-file-size trivial-garbage trivial-macroexpand-all
type-i uiop)
- VERSION 20210411-git SIBLINGS NIL PARASITES NIL) */
+ VERSION 20210807-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix
index efe7f6a9ee..2d2774a2af 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "simple-date";
- version = "postmodern-20210411-git";
+ version = "postmodern-20210807-git";
parasites = [ "simple-date/tests" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."fiveam" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz";
- sha256 = "0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw";
+ url = "http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz";
+ sha256 = "01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp";
};
packageName = "simple-date";
@@ -22,9 +22,9 @@ rec {
}
/* (SYSTEM simple-date DESCRIPTION
Simple date library that can be used with postmodern SHA256
- 0q8izkkddmqq5sw55chkx6jrycawgchaknik5i84vynv50zirsbw URL
- http://beta.quicklisp.org/archive/postmodern/2021-04-11/postmodern-20210411-git.tgz
- MD5 8a75a05ba9e371f672f2620d40724cb2 NAME simple-date FILENAME simple-date
+ 01l0zk5f3z1cxb6rspvagjl1fy8v3jwm62p2975cgl45aspp18fp URL
+ http://beta.quicklisp.org/archive/postmodern/2021-08-07/postmodern-20210807-git.tgz
+ MD5 aa951f2ad4ce59fce588a62afa34f3ec NAME simple-date FILENAME simple-date
DEPS ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam) VERSION
- postmodern-20210411-git SIBLINGS (cl-postgres postmodern s-sql) PARASITES
+ postmodern-20210807-git SIBLINGS (cl-postgres postmodern s-sql) PARASITES
(simple-date/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix
index 84f59fef7c..822ea33cbc 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "smart-buffer";
- version = "20160628-git";
+ version = "20210630-git";
description = "Smart octets buffer";
deps = [ args."flexi-streams" args."trivial-gray-streams" args."uiop" args."xsubseq" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz";
- sha256 = "1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s";
+ url = "http://beta.quicklisp.org/archive/smart-buffer/2021-06-30/smart-buffer-20210630-git.tgz";
+ sha256 = "1j90cig9nkh9bim1h0jmgi73q8j3sja6bnn18bb85lalng0p4c2p";
};
packageName = "smart-buffer";
@@ -19,12 +19,12 @@ rec {
overrides = x: x;
}
/* (SYSTEM smart-buffer DESCRIPTION Smart octets buffer SHA256
- 1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s URL
- http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz
- MD5 454d8510618da8111c7ca687549b7035 NAME smart-buffer FILENAME
+ 1j90cig9nkh9bim1h0jmgi73q8j3sja6bnn18bb85lalng0p4c2p URL
+ http://beta.quicklisp.org/archive/smart-buffer/2021-06-30/smart-buffer-20210630-git.tgz
+ MD5 3533a4884c2c7852961377366627727a NAME smart-buffer FILENAME
smart-buffer DEPS
((NAME flexi-streams FILENAME flexi-streams)
(NAME trivial-gray-streams FILENAME trivial-gray-streams)
(NAME uiop FILENAME uiop) (NAME xsubseq FILENAME xsubseq))
DEPENDENCIES (flexi-streams trivial-gray-streams uiop xsubseq) VERSION
- 20160628-git SIBLINGS (smart-buffer-test) PARASITES NIL) */
+ 20210630-git SIBLINGS (smart-buffer-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smug.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smug.nix
new file mode 100644
index 0000000000..0d7b08355a
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/smug.nix
@@ -0,0 +1,27 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "smug";
+ version = "20160421-git";
+
+ description = "SMUG: Simple Monadic Uber Go-into, Parsing made easy.";
+
+ deps = [ args."asdf-package-system" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/smug/2016-04-21/smug-20160421-git.tgz";
+ sha256 = "0f9ig6r0cm1sbhkasx1v27204rmrjbzgwc49d9hy4zn29ffrg0h2";
+ };
+
+ packageName = "smug";
+
+ asdFilesToKeep = ["smug.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM smug DESCRIPTION
+ SMUG: Simple Monadic Uber Go-into, Parsing made easy. SHA256
+ 0f9ig6r0cm1sbhkasx1v27204rmrjbzgwc49d9hy4zn29ffrg0h2 URL
+ http://beta.quicklisp.org/archive/smug/2016-04-21/smug-20160421-git.tgz MD5
+ 8139d7813bb3130497b6da3bb4cb8924 NAME smug FILENAME smug DEPS
+ ((NAME asdf-package-system FILENAME asdf-package-system)) DEPENDENCIES
+ (asdf-package-system) VERSION 20160421-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix
index af13c59c28..d1bb4675ba 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "split-sequence";
- version = "v2.0.0";
+ version = "v2.0.1";
parasites = [ "split-sequence/tests" ];
@@ -12,8 +12,8 @@ rec {
deps = [ args."fiveam" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz";
- sha256 = "09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba";
+ url = "http://beta.quicklisp.org/archive/split-sequence/2021-05-31/split-sequence-v2.0.1.tgz";
+ sha256 = "0x6jdpx5nwby0mjhavqzbfr97725jaryvawjj2f5w9z2s4m9ciya";
};
packageName = "split-sequence";
@@ -24,8 +24,8 @@ rec {
/* (SYSTEM split-sequence DESCRIPTION
Splits a sequence into a list of subsequences
delimited by objects satisfying a test.
- SHA256 09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba URL
- http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz
- MD5 88aadc6c9da23663ebbb39d546991df4 NAME split-sequence FILENAME
+ SHA256 0x6jdpx5nwby0mjhavqzbfr97725jaryvawjj2f5w9z2s4m9ciya URL
+ http://beta.quicklisp.org/archive/split-sequence/2021-05-31/split-sequence-v2.0.1.tgz
+ MD5 871be321b4dbca0a1f958927e9173795 NAME split-sequence FILENAME
split-sequence DEPS ((NAME fiveam FILENAME fiveam)) DEPENDENCIES (fiveam)
- VERSION v2.0.0 SIBLINGS NIL PARASITES (split-sequence/tests)) */
+ VERSION v2.0.1 SIBLINGS NIL PARASITES (split-sequence/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-dispatch.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-dispatch.nix
index 040bf87d30..5ef5c65e22 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-dispatch.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-dispatch.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "static-dispatch";
- version = "20210411-git";
+ version = "20210807-git";
parasites = [ "static-dispatch/test" ];
description = "Static generic function dispatch for Common Lisp.";
- deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-ansi-text" args."cl-colors" args."cl-environments" args."cl-interpol" args."closer-mop" args."collectors" args."introspect-environment" args."iterate" args."lisp-namespace" args."optima" args."prove" args."prove-asdf" args."symbol-munger" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
+ deps = [ args."agutil" args."alexandria" args."anaphora" args."arrows" args."cl-environments" args."cl-form-types" args."closer-mop" args."collectors" args."fiveam" args."introspect-environment" args."iterate" args."optima" args."parse-declarations-1_dot_0" args."symbol-munger" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/static-dispatch/2021-04-11/static-dispatch-20210411-git.tgz";
- sha256 = "0dqkapripvb5qrhpim1b5y2ymn99s2zcwf38vmqyiqk3n3hvjjh1";
+ url = "http://beta.quicklisp.org/archive/static-dispatch/2021-08-07/static-dispatch-20210807-git.tgz";
+ sha256 = "1r5sz45mng0dvl77dv771ji95b9csxc0784b7igrk9bcz8npwc2g";
};
packageName = "static-dispatch";
@@ -22,34 +22,22 @@ rec {
}
/* (SYSTEM static-dispatch DESCRIPTION
Static generic function dispatch for Common Lisp. SHA256
- 0dqkapripvb5qrhpim1b5y2ymn99s2zcwf38vmqyiqk3n3hvjjh1 URL
- http://beta.quicklisp.org/archive/static-dispatch/2021-04-11/static-dispatch-20210411-git.tgz
- MD5 7af665c6a3a1aa3315fe0a651ca559de NAME static-dispatch FILENAME
+ 1r5sz45mng0dvl77dv771ji95b9csxc0784b7igrk9bcz8npwc2g URL
+ http://beta.quicklisp.org/archive/static-dispatch/2021-08-07/static-dispatch-20210807-git.tgz
+ MD5 b9724a680d9802ff690de24193583e20 NAME static-dispatch FILENAME
static-dispatch DEPS
((NAME agutil FILENAME agutil) (NAME alexandria FILENAME alexandria)
(NAME anaphora FILENAME anaphora) (NAME arrows FILENAME arrows)
- (NAME cl-ansi-text FILENAME cl-ansi-text)
- (NAME cl-colors FILENAME cl-colors)
(NAME cl-environments FILENAME cl-environments)
- (NAME cl-interpol FILENAME cl-interpol)
+ (NAME cl-form-types FILENAME cl-form-types)
(NAME closer-mop FILENAME closer-mop)
- (NAME collectors FILENAME collectors)
+ (NAME collectors FILENAME collectors) (NAME fiveam FILENAME fiveam)
(NAME introspect-environment FILENAME introspect-environment)
- (NAME iterate FILENAME iterate)
- (NAME lisp-namespace FILENAME lisp-namespace)
- (NAME optima FILENAME optima) (NAME prove FILENAME prove)
- (NAME prove-asdf FILENAME prove-asdf)
- (NAME symbol-munger FILENAME symbol-munger) (NAME trivia FILENAME trivia)
- (NAME trivia.balland2006 FILENAME trivia_dot_balland2006)
- (NAME trivia.level0 FILENAME trivia_dot_level0)
- (NAME trivia.level1 FILENAME trivia_dot_level1)
- (NAME trivia.level2 FILENAME trivia_dot_level2)
- (NAME trivia.trivial FILENAME trivia_dot_trivial)
- (NAME trivial-cltl2 FILENAME trivial-cltl2) (NAME type-i FILENAME type-i))
+ (NAME iterate FILENAME iterate) (NAME optima FILENAME optima)
+ (NAME parse-declarations-1.0 FILENAME parse-declarations-1_dot_0)
+ (NAME symbol-munger FILENAME symbol-munger))
DEPENDENCIES
- (agutil alexandria anaphora arrows cl-ansi-text cl-colors cl-environments
- cl-interpol closer-mop collectors introspect-environment iterate
- lisp-namespace optima prove prove-asdf symbol-munger trivia
- trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
- trivia.trivial trivial-cltl2 type-i)
- VERSION 20210411-git SIBLINGS NIL PARASITES (static-dispatch/test)) */
+ (agutil alexandria anaphora arrows cl-environments cl-form-types closer-mop
+ collectors fiveam introspect-environment iterate optima
+ parse-declarations-1.0 symbol-munger)
+ VERSION 20210807-git SIBLINGS NIL PARASITES (static-dispatch/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix
index d72311b3a1..3a7f1661ad 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "static-vectors";
- version = "v1.8.6";
+ version = "v1.8.9";
parasites = [ "static-vectors/test" ];
@@ -11,8 +11,8 @@ rec {
deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."trivial-features" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz";
- sha256 = "0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc";
+ url = "http://beta.quicklisp.org/archive/static-vectors/2021-06-30/static-vectors-v1.8.9.tgz";
+ sha256 = "01n4iz6s4n57gmxscnj9aign60kh6gp7ak5waqz5zwhsdklgj0j4";
};
packageName = "static-vectors";
@@ -22,9 +22,9 @@ rec {
}
/* (SYSTEM static-vectors DESCRIPTION
Create vectors allocated in static memory. SHA256
- 0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc URL
- http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz
- MD5 c817377fc6807d9c7bee6bd8996068b5 NAME static-vectors FILENAME
+ 01n4iz6s4n57gmxscnj9aign60kh6gp7ak5waqz5zwhsdklgj0j4 URL
+ http://beta.quicklisp.org/archive/static-vectors/2021-06-30/static-vectors-v1.8.9.tgz
+ MD5 f14b819c0d55e7fbd28e9b4a0bb3bfc9 NAME static-vectors FILENAME
static-vectors DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
@@ -33,4 +33,4 @@ rec {
(NAME trivial-features FILENAME trivial-features))
DEPENDENCIES
(alexandria babel cffi cffi-grovel cffi-toolchain fiveam trivial-features)
- VERSION v1.8.6 SIBLINGS NIL PARASITES (static-vectors/test)) */
+ VERSION v1.8.9 SIBLINGS NIL PARASITES (static-vectors/test)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix
index 11ddf729c3..7c9809cb37 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "str";
- version = "cl-20210411-git";
+ version = "cl-20210531-git";
description = "Modern, consistent and terse Common Lisp string manipulation library.";
deps = [ args."cl-change-case" args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."flexi-streams" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/cl-str/2021-04-11/cl-str-20210411-git.tgz";
- sha256 = "0xyazb3j4j0wsq443fpavv4hxnizkcvhkgz709lnp7cxygpdnl7m";
+ url = "http://beta.quicklisp.org/archive/cl-str/2021-05-31/cl-str-20210531-git.tgz";
+ sha256 = "16z1axfik0s2m74ly4bxlrv4mbd2r923y7nrrrc487fsjs3v23bb";
};
packageName = "str";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM str DESCRIPTION
Modern, consistent and terse Common Lisp string manipulation library.
- SHA256 0xyazb3j4j0wsq443fpavv4hxnizkcvhkgz709lnp7cxygpdnl7m URL
- http://beta.quicklisp.org/archive/cl-str/2021-04-11/cl-str-20210411-git.tgz
- MD5 6c6b4de0886d448155a5cca0dd38a189 NAME str FILENAME str DEPS
+ SHA256 16z1axfik0s2m74ly4bxlrv4mbd2r923y7nrrrc487fsjs3v23bb URL
+ http://beta.quicklisp.org/archive/cl-str/2021-05-31/cl-str-20210531-git.tgz
+ MD5 05144979ce1bf382fdb0b91db932fe6a NAME str FILENAME str DEPS
((NAME cl-change-case FILENAME cl-change-case)
(NAME cl-ppcre FILENAME cl-ppcre)
(NAME cl-ppcre-unicode FILENAME cl-ppcre-unicode)
@@ -30,4 +30,4 @@ rec {
(NAME flexi-streams FILENAME flexi-streams))
DEPENDENCIES
(cl-change-case cl-ppcre cl-ppcre-unicode cl-unicode flexi-streams) VERSION
- cl-20210411-git SIBLINGS (str.test) PARASITES NIL) */
+ cl-20210531-git SIBLINGS (str.test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
index 13b025ea5b..e6f1eab605 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "stumpwm";
- version = "20210411-git";
+ version = "20210807-git";
description = "A tiling, keyboard driven window manager";
deps = [ args."alexandria" args."cl-ppcre" args."clx" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/stumpwm/2021-04-11/stumpwm-20210411-git.tgz";
- sha256 = "0rrhmryfgbjrl04ww107pvm4lzm620xp7a5kwhqbh5d7hpbdk49j";
+ url = "http://beta.quicklisp.org/archive/stumpwm/2021-08-07/stumpwm-20210807-git.tgz";
+ sha256 = "0j9wb6djsyf2r2a4paj2s1f2sbw70wnr999abrsrkljxpayyma82";
};
packageName = "stumpwm";
@@ -19,10 +19,10 @@ rec {
overrides = x: x;
}
/* (SYSTEM stumpwm DESCRIPTION A tiling, keyboard driven window manager SHA256
- 0rrhmryfgbjrl04ww107pvm4lzm620xp7a5kwhqbh5d7hpbdk49j URL
- http://beta.quicklisp.org/archive/stumpwm/2021-04-11/stumpwm-20210411-git.tgz
- MD5 4497670e2aac3038ed5fb87121ff1b7a NAME stumpwm FILENAME stumpwm DEPS
+ 0j9wb6djsyf2r2a4paj2s1f2sbw70wnr999abrsrkljxpayyma82 URL
+ http://beta.quicklisp.org/archive/stumpwm/2021-08-07/stumpwm-20210807-git.tgz
+ MD5 ec6d05208e0899fc929d2ea4ba61de9d NAME stumpwm FILENAME stumpwm DEPS
((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre)
(NAME clx FILENAME clx))
- DEPENDENCIES (alexandria cl-ppcre clx) VERSION 20210411-git SIBLINGS
+ DEPENDENCIES (alexandria cl-ppcre clx) VERSION 20210807-git SIBLINGS
(stumpwm-tests) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/sycamore.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/sycamore.nix
new file mode 100644
index 0000000000..366c1cb0d4
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/sycamore.nix
@@ -0,0 +1,29 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "sycamore";
+ version = "20200610-git";
+
+ description = "A fast, purely functional data structure library";
+
+ deps = [ args."alexandria" args."cl-fuzz" args."cl-ppcre" args."lisp-unit" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/sycamore/2020-06-10/sycamore-20200610-git.tgz";
+ sha256 = "0dn4vmbyz1ix34hjnmzjw8imh2s1p52y6fvgx2ppyqr61vdzn34p";
+ };
+
+ packageName = "sycamore";
+
+ asdFilesToKeep = ["sycamore.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM sycamore DESCRIPTION
+ A fast, purely functional data structure library SHA256
+ 0dn4vmbyz1ix34hjnmzjw8imh2s1p52y6fvgx2ppyqr61vdzn34p URL
+ http://beta.quicklisp.org/archive/sycamore/2020-06-10/sycamore-20200610-git.tgz
+ MD5 7e06bc7db251f8f60231ff966846c7d4 NAME sycamore FILENAME sycamore DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME cl-fuzz FILENAME cl-fuzz)
+ (NAME cl-ppcre FILENAME cl-ppcre) (NAME lisp-unit FILENAME lisp-unit))
+ DEPENDENCIES (alexandria cl-fuzz cl-ppcre lisp-unit) VERSION 20200610-git
+ SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trees.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trees.nix
new file mode 100644
index 0000000000..db500b8eea
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trees.nix
@@ -0,0 +1,28 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "trees";
+ version = "20180131-git";
+
+ parasites = [ "trees-tests" ];
+
+ description = "A library for binary trees in normal and balanced flavors";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/trees/2018-01-31/trees-20180131-git.tgz";
+ sha256 = "1p54j2kav1vggdjw5msdpmfyi7cxh41f4j669rgp0g8fpimmzcfg";
+ };
+
+ packageName = "trees";
+
+ asdFilesToKeep = ["trees.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM trees DESCRIPTION
+ A library for binary trees in normal and balanced flavors SHA256
+ 1p54j2kav1vggdjw5msdpmfyi7cxh41f4j669rgp0g8fpimmzcfg URL
+ http://beta.quicklisp.org/archive/trees/2018-01-31/trees-20180131-git.tgz
+ MD5 a1b156d15d444d114f475f7abc908064 NAME trees FILENAME trees DEPS NIL
+ DEPENDENCIES NIL VERSION 20180131-git SIBLINGS NIL PARASITES (trees-tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix
index 7f1077ed0c..8be725accb 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia";
- version = "20210411-git";
+ version = "20210630-git";
description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase";
deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM trivia DESCRIPTION
NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase
- SHA256 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia FILENAME trivia DEPS
+ SHA256 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia FILENAME trivia DEPS
((NAME alexandria FILENAME alexandria)
(NAME closer-mop FILENAME closer-mop)
(NAME introspect-environment FILENAME introspect-environment)
@@ -38,8 +38,8 @@ rec {
(alexandria closer-mop introspect-environment iterate lisp-namespace
trivia.balland2006 trivia.level0 trivia.level1 trivia.level2
trivia.trivial trivial-cltl2 type-i)
- VERSION 20210411-git SIBLINGS
- (trivia.balland2006 trivia.benchmark trivia.cffi trivia.level0
+ VERSION 20210630-git SIBLINGS
+ (trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset trivia.level0
trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test
trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix
index ce47f1d3df..511790bb48 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_balland2006";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "Optimizer for Trivia based on (Balland 2006)";
deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.balland2006";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM trivia.balland2006 DESCRIPTION
Optimizer for Trivia based on (Balland 2006) SHA256
- 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.balland2006 FILENAME
+ 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.balland2006 FILENAME
trivia_dot_balland2006 DEPS
((NAME alexandria FILENAME alexandria)
(NAME closer-mop FILENAME closer-mop)
@@ -38,7 +38,8 @@ rec {
(alexandria closer-mop introspect-environment iterate lisp-namespace
trivia.level0 trivia.level1 trivia.level2 trivia.trivial trivial-cltl2
type-i)
- VERSION trivia-20210411-git SIBLINGS
- (trivia trivia.benchmark trivia.cffi trivia.level0 trivia.level1
- trivia.level2 trivia.ppcre trivia.quasiquote trivia.test trivia.trivial)
+ VERSION trivia-20210630-git SIBLINGS
+ (trivia trivia.benchmark trivia.cffi trivia.fset trivia.level0
+ trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test
+ trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix
index cfa992935f..b642da9303 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_level0";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "Bootstrapping Pattern Matching Library for implementing Trivia";
deps = [ args."alexandria" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.level0";
@@ -20,11 +20,12 @@ rec {
}
/* (SYSTEM trivia.level0 DESCRIPTION
Bootstrapping Pattern Matching Library for implementing Trivia SHA256
- 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.level0 FILENAME
+ 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.level0 FILENAME
trivia_dot_level0 DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES
- (alexandria) VERSION trivia-20210411-git SIBLINGS
- (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.level1
- trivia.level2 trivia.ppcre trivia.quasiquote trivia.test trivia.trivial)
+ (alexandria) VERSION trivia-20210630-git SIBLINGS
+ (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset
+ trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test
+ trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix
index 5cadfcf572..8d410e676d 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_level1";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "Core patterns of Trivia";
deps = [ args."alexandria" args."trivia_dot_level0" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.level1";
@@ -19,14 +19,15 @@ rec {
overrides = x: x;
}
/* (SYSTEM trivia.level1 DESCRIPTION Core patterns of Trivia SHA256
- 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.level1 FILENAME
+ 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.level1 FILENAME
trivia_dot_level1 DEPS
((NAME alexandria FILENAME alexandria)
(NAME trivia.level0 FILENAME trivia_dot_level0))
- DEPENDENCIES (alexandria trivia.level0) VERSION trivia-20210411-git
+ DEPENDENCIES (alexandria trivia.level0) VERSION trivia-20210630-git
SIBLINGS
- (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.level0
- trivia.level2 trivia.ppcre trivia.quasiquote trivia.test trivia.trivial)
+ (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset
+ trivia.level0 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test
+ trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix
index 9e8ceca1ee..e36e762d61 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_level2";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase";
deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivial-cltl2" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.level2";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM trivia.level2 DESCRIPTION
NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase
- SHA256 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.level2 FILENAME
+ SHA256 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.level2 FILENAME
trivia_dot_level2 DEPS
((NAME alexandria FILENAME alexandria)
(NAME closer-mop FILENAME closer-mop)
@@ -33,7 +33,8 @@ rec {
DEPENDENCIES
(alexandria closer-mop lisp-namespace trivia.level0 trivia.level1
trivial-cltl2)
- VERSION trivia-20210411-git SIBLINGS
- (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.level0
- trivia.level1 trivia.ppcre trivia.quasiquote trivia.test trivia.trivial)
+ VERSION trivia-20210630-git SIBLINGS
+ (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset
+ trivia.level0 trivia.level1 trivia.ppcre trivia.quasiquote trivia.test
+ trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
index bf6b1fb354..b055ac59dc 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_quasiquote";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "fare-quasiquote extension for trivia";
deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.quasiquote";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM trivia.quasiquote DESCRIPTION fare-quasiquote extension for trivia
- SHA256 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.quasiquote FILENAME
+ SHA256 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.quasiquote FILENAME
trivia_dot_quasiquote DEPS
((NAME alexandria FILENAME alexandria)
(NAME closer-mop FILENAME closer-mop)
@@ -39,7 +39,8 @@ rec {
(alexandria closer-mop fare-quasiquote fare-quasiquote-readtable fare-utils
lisp-namespace named-readtables trivia.level0 trivia.level1 trivia.level2
trivia.trivial trivial-cltl2)
- VERSION trivia-20210411-git SIBLINGS
- (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.level0
- trivia.level1 trivia.level2 trivia.ppcre trivia.test trivia.trivial)
+ VERSION trivia-20210630-git SIBLINGS
+ (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset
+ trivia.level0 trivia.level1 trivia.level2 trivia.ppcre trivia.test
+ trivia.trivial)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix
index 3fe1ddbd06..692a875406 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix
@@ -2,7 +2,7 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivia_dot_trivial";
- version = "trivia-20210411-git";
+ version = "trivia-20210630-git";
description = "Base level system of Trivia with a trivial optimizer.
Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system,
@@ -11,8 +11,8 @@ rec {
deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivial-cltl2" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz";
- sha256 = "1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8";
+ url = "http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz";
+ sha256 = "065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas";
};
packageName = "trivia.trivial";
@@ -24,9 +24,9 @@ rec {
Base level system of Trivia with a trivial optimizer.
Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system,
in order to avoid the circular dependency.
- SHA256 1dy35yhjhzcqsq5rwsan1f9x2ss8wcw55n2jzzgymj1vqvzp5mn8 URL
- http://beta.quicklisp.org/archive/trivia/2021-04-11/trivia-20210411-git.tgz
- MD5 3fde6243390481d089cda082573876f6 NAME trivia.trivial FILENAME
+ SHA256 065bfypzahli8pvnbpiwsvxdp2i216gqr1a1algxkpikifrxkjas URL
+ http://beta.quicklisp.org/archive/trivia/2021-06-30/trivia-20210630-git.tgz
+ MD5 e048a0e20ca12904c032d933795c5e31 NAME trivia.trivial FILENAME
trivia_dot_trivial DEPS
((NAME alexandria FILENAME alexandria)
(NAME closer-mop FILENAME closer-mop)
@@ -38,7 +38,8 @@ rec {
DEPENDENCIES
(alexandria closer-mop lisp-namespace trivia.level0 trivia.level1
trivia.level2 trivial-cltl2)
- VERSION trivia-20210411-git SIBLINGS
- (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.level0
- trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote trivia.test)
+ VERSION trivia-20210630-git SIBLINGS
+ (trivia trivia.balland2006 trivia.benchmark trivia.cffi trivia.fset
+ trivia.level0 trivia.level1 trivia.level2 trivia.ppcre trivia.quasiquote
+ trivia.test)
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
index eb2f217f31..dc67ca8c71 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivial-indent";
- version = "20191007-git";
+ version = "20210531-git";
description = "A very simple library to allow indentation hints for SWANK.";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz";
- sha256 = "0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv";
+ url = "http://beta.quicklisp.org/archive/trivial-indent/2021-05-31/trivial-indent-20210531-git.tgz";
+ sha256 = "1nqkay4kwy365q1qlba07q9x5ng0sxrcii4fpjqcd8nwbx3kbm8b";
};
packageName = "trivial-indent";
@@ -20,8 +20,8 @@ rec {
}
/* (SYSTEM trivial-indent DESCRIPTION
A very simple library to allow indentation hints for SWANK. SHA256
- 0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv URL
- http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz
- MD5 d0489ff824d58c03b5c2a9b16279f583 NAME trivial-indent FILENAME
- trivial-indent DEPS NIL DEPENDENCIES NIL VERSION 20191007-git SIBLINGS NIL
+ 1nqkay4kwy365q1qlba07q9x5ng0sxrcii4fpjqcd8nwbx3kbm8b URL
+ http://beta.quicklisp.org/archive/trivial-indent/2021-05-31/trivial-indent-20210531-git.tgz
+ MD5 3bb7d208d9d0614121c1f57fcffe65c7 NAME trivial-indent FILENAME
+ trivial-indent DEPS NIL DEPENDENCIES NIL VERSION 20210531-git SIBLINGS NIL
PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-shell.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-shell.nix
new file mode 100644
index 0000000000..d091d3920b
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-shell.nix
@@ -0,0 +1,27 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "trivial-shell";
+ version = "20180228-git";
+
+ description = "OS and Implementation independent access to the shell";
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/trivial-shell/2018-02-28/trivial-shell-20180228-git.tgz";
+ sha256 = "058gk7fld8v5m84r5fcwl5z8j3pw68xs0jdy9xx6vi1svaxrzngp";
+ };
+
+ packageName = "trivial-shell";
+
+ asdFilesToKeep = ["trivial-shell.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM trivial-shell DESCRIPTION
+ OS and Implementation independent access to the shell SHA256
+ 058gk7fld8v5m84r5fcwl5z8j3pw68xs0jdy9xx6vi1svaxrzngp URL
+ http://beta.quicklisp.org/archive/trivial-shell/2018-02-28/trivial-shell-20180228-git.tgz
+ MD5 d7b93648abd06be95148d43d09fa2ed0 NAME trivial-shell FILENAME
+ trivial-shell DEPS NIL DEPENDENCIES NIL VERSION 20180228-git SIBLINGS
+ (trivial-shell-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-with-current-source-form.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-with-current-source-form.nix
index c3a247e533..b90e9d1020 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-with-current-source-form.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-with-current-source-form.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "trivial-with-current-source-form";
- version = "20200427-git";
+ version = "20210630-git";
description = "Helps macro writers produce better errors for macro users";
deps = [ args."alexandria" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/trivial-with-current-source-form/2020-04-27/trivial-with-current-source-form-20200427-git.tgz";
- sha256 = "05zkj42f071zhg7swfyklg44k0zc893c9li9virkigzmvhids84f";
+ url = "http://beta.quicklisp.org/archive/trivial-with-current-source-form/2021-06-30/trivial-with-current-source-form-20210630-git.tgz";
+ sha256 = "0xa4mmrrkqr8lg74wk04ccgx06r17jskhrfmw23ywpbi2yy1qyhp";
};
packageName = "trivial-with-current-source-form";
@@ -20,9 +20,9 @@ rec {
}
/* (SYSTEM trivial-with-current-source-form DESCRIPTION
Helps macro writers produce better errors for macro users SHA256
- 05zkj42f071zhg7swfyklg44k0zc893c9li9virkigzmvhids84f URL
- http://beta.quicklisp.org/archive/trivial-with-current-source-form/2020-04-27/trivial-with-current-source-form-20200427-git.tgz
- MD5 9a1367a5434664bd1ca2215d06e6d5cf NAME trivial-with-current-source-form
+ 0xa4mmrrkqr8lg74wk04ccgx06r17jskhrfmw23ywpbi2yy1qyhp URL
+ http://beta.quicklisp.org/archive/trivial-with-current-source-form/2021-06-30/trivial-with-current-source-form-20210630-git.tgz
+ MD5 0b4fe9e9a99e0729cc8ecf851df2a6c5 NAME trivial-with-current-source-form
FILENAME trivial-with-current-source-form DEPS
((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION
- 20200427-git SIBLINGS NIL PARASITES NIL) */
+ 20210630-git SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix
index bb97636b59..5e8dc318ca 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix
@@ -2,17 +2,17 @@
args @ { fetchurl, ... }:
rec {
baseName = "uax-15";
- version = "20210228-git";
+ version = "20210531-git";
parasites = [ "uax-15/tests" ];
description = "Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)";
- deps = [ args."cl-ppcre" args."fiveam" args."split-sequence" args."uiop" ];
+ deps = [ args."cl-ppcre" args."parachute" args."split-sequence" args."uiop" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/uax-15/2021-02-28/uax-15-20210228-git.tgz";
- sha256 = "1vf590djzyika6200zqw4mbqrajcmv7g5swydimnvk7xqzpa8ksp";
+ url = "http://beta.quicklisp.org/archive/uax-15/2021-05-31/uax-15-20210531-git.tgz";
+ sha256 = "0yz4zi13iybpwa2bw5r6cjdbkw1njrbb6vgjwmm3msnl1paxr3wg";
};
packageName = "uax-15";
@@ -22,10 +22,10 @@ rec {
}
/* (SYSTEM uax-15 DESCRIPTION
Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)
- SHA256 1vf590djzyika6200zqw4mbqrajcmv7g5swydimnvk7xqzpa8ksp URL
- http://beta.quicklisp.org/archive/uax-15/2021-02-28/uax-15-20210228-git.tgz
- MD5 b801b3b91cdd57cecf086f1fe5fb31d6 NAME uax-15 FILENAME uax-15 DEPS
- ((NAME cl-ppcre FILENAME cl-ppcre) (NAME fiveam FILENAME fiveam)
+ SHA256 0yz4zi13iybpwa2bw5r6cjdbkw1njrbb6vgjwmm3msnl1paxr3wg URL
+ http://beta.quicklisp.org/archive/uax-15/2021-05-31/uax-15-20210531-git.tgz
+ MD5 bceff07d037c7daccbdd5c84683fcddd NAME uax-15 FILENAME uax-15 DEPS
+ ((NAME cl-ppcre FILENAME cl-ppcre) (NAME parachute FILENAME parachute)
(NAME split-sequence FILENAME split-sequence) (NAME uiop FILENAME uiop))
- DEPENDENCIES (cl-ppcre fiveam split-sequence uiop) VERSION 20210228-git
+ DEPENDENCIES (cl-ppcre parachute split-sequence uiop) VERSION 20210531-git
SIBLINGS NIL PARASITES (uax-15/tests)) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
index b2cd8d4aa6..fcc02004ea 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "uiop";
- version = "3.3.4";
+ version = "3.3.5";
description = "System lacks description";
deps = [ ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz";
- sha256 = "0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav";
+ url = "http://beta.quicklisp.org/archive/uiop/2021-08-07/uiop-3.3.5.tgz";
+ sha256 = "19bskbcv413ix2rjqlbj9y62qbm6780s5i7h00rvpd488nnrvaqk";
};
packageName = "uiop";
@@ -19,7 +19,7 @@ rec {
overrides = x: x;
}
/* (SYSTEM uiop DESCRIPTION System lacks description SHA256
- 0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav URL
- http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz MD5
- b13a79a5aede43c97428c1cac86d6c2e NAME uiop FILENAME uiop DEPS NIL
- DEPENDENCIES NIL VERSION 3.3.4 SIBLINGS (asdf-driver) PARASITES NIL) */
+ 19bskbcv413ix2rjqlbj9y62qbm6780s5i7h00rvpd488nnrvaqk URL
+ http://beta.quicklisp.org/archive/uiop/2021-08-07/uiop-3.3.5.tgz MD5
+ 831138297c2ac03189d25bb6b03b919c NAME uiop FILENAME uiop DEPS NIL
+ DEPENDENCIES NIL VERSION 3.3.5 SIBLINGS (asdf-driver) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/vecto.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/vecto.nix
new file mode 100644
index 0000000000..80e8598774
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/vecto.nix
@@ -0,0 +1,29 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "vecto";
+ version = "1.5";
+
+ description = "Create vector graphics in PNG files.";
+
+ deps = [ args."cl-aa" args."cl-paths" args."cl-vectors" args."salza2" args."zpb-ttf" args."zpng" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/vecto/2017-12-27/vecto-1.5.tgz";
+ sha256 = "05pxc6s853f67j57bbzsg2izfl0164bifbvdp2ji870yziz88vls";
+ };
+
+ packageName = "vecto";
+
+ asdFilesToKeep = ["vecto.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM vecto DESCRIPTION Create vector graphics in PNG files. SHA256
+ 05pxc6s853f67j57bbzsg2izfl0164bifbvdp2ji870yziz88vls URL
+ http://beta.quicklisp.org/archive/vecto/2017-12-27/vecto-1.5.tgz MD5
+ 69e6b2f7fa10066d50f9134942afad73 NAME vecto FILENAME vecto DEPS
+ ((NAME cl-aa FILENAME cl-aa) (NAME cl-paths FILENAME cl-paths)
+ (NAME cl-vectors FILENAME cl-vectors) (NAME salza2 FILENAME salza2)
+ (NAME zpb-ttf FILENAME zpb-ttf) (NAME zpng FILENAME zpng))
+ DEPENDENCIES (cl-aa cl-paths cl-vectors salza2 zpb-ttf zpng) VERSION 1.5
+ SIBLINGS (vectometry) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
index e29626da50..d0d04fb537 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
@@ -2,15 +2,15 @@
args @ { fetchurl, ... }:
rec {
baseName = "woo";
- version = "20200427-git";
+ version = "20210630-git";
description = "An asynchronous HTTP server written in Common Lisp";
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."clack-socket" args."fast-http" args."fast-io" args."flexi-streams" args."lev" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."swap-bytes" args."trivial-features" args."trivial-gray-streams" args."trivial-utf-8" args."vom" args."xsubseq" ];
src = fetchurl {
- url = "http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz";
- sha256 = "1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29";
+ url = "http://beta.quicklisp.org/archive/woo/2021-06-30/woo-20210630-git.tgz";
+ sha256 = "0znpjcrw2gskcgf8ipgvqg87b9b2n4x6jkm25rizj6h7bms6v21r";
};
packageName = "woo";
@@ -19,9 +19,9 @@ rec {
overrides = x: x;
}
/* (SYSTEM woo DESCRIPTION An asynchronous HTTP server written in Common Lisp
- SHA256 1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29 URL
- http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz MD5
- 9bbd96692e37dd61195f8bd57a654c65 NAME woo FILENAME woo DEPS
+ SHA256 0znpjcrw2gskcgf8ipgvqg87b9b2n4x6jkm25rizj6h7bms6v21r URL
+ http://beta.quicklisp.org/archive/woo/2021-06-30/woo-20210630-git.tgz MD5
+ f7b2586ed1ab916c43bfab9de5693450 NAME woo FILENAME woo DEPS
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
(NAME bordeaux-threads FILENAME bordeaux-threads)
(NAME cffi FILENAME cffi) (NAME cffi-grovel FILENAME cffi-grovel)
@@ -44,4 +44,4 @@ rec {
cl-utilities clack-socket fast-http fast-io flexi-streams lev proc-parse
quri smart-buffer split-sequence static-vectors swap-bytes
trivial-features trivial-gray-streams trivial-utf-8 vom xsubseq)
- VERSION 20200427-git SIBLINGS (clack-handler-woo woo-test) PARASITES NIL) */
+ VERSION 20210630-git SIBLINGS (clack-handler-woo woo-test) PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/zpng.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/zpng.nix
new file mode 100644
index 0000000000..b76721640d
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/zpng.nix
@@ -0,0 +1,26 @@
+/* Generated file. */
+args @ { fetchurl, ... }:
+rec {
+ baseName = "zpng";
+ version = "1.2.2";
+
+ description = "Create PNG files";
+
+ deps = [ args."salza2" ];
+
+ src = fetchurl {
+ url = "http://beta.quicklisp.org/archive/zpng/2015-04-07/zpng-1.2.2.tgz";
+ sha256 = "0932gq9wncibm1z81gbvdc3ip6n118wwzmjnpxaqdy9hk5bs2w1x";
+ };
+
+ packageName = "zpng";
+
+ asdFilesToKeep = ["zpng.asd"];
+ overrides = x: x;
+}
+/* (SYSTEM zpng DESCRIPTION Create PNG files SHA256
+ 0932gq9wncibm1z81gbvdc3ip6n118wwzmjnpxaqdy9hk5bs2w1x URL
+ http://beta.quicklisp.org/archive/zpng/2015-04-07/zpng-1.2.2.tgz MD5
+ 0a208f4ce0087ef578d477341d5f4078 NAME zpng FILENAME zpng DEPS
+ ((NAME salza2 FILENAME salza2)) DEPENDENCIES (salza2) VERSION 1.2.2
+ SIBLINGS NIL PARASITES NIL) */
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
index dbc57cb8d1..157cf8302c 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
@@ -51,6 +51,8 @@ in
overrides = y: (x.overrides y) // {
prePatch = ''
sed 's|default \"libfixposix\"|default \"${pkgs.libfixposix}/lib/libfixposix\"|' -i src/syscalls/ffi-functions-unix.lisp
+ # Socket tests don't work because they try to access the internet
+ sed 's/(:file "sockets" :depends-on ("pkgdcl" "defsuites"))//' -i iolib.asd
'';
};
@@ -278,5 +280,31 @@ $out/lib/common-lisp/query-fs"
(extraLispDeps (with quicklisp-to-nix-packages; [flexi-streams]));
cl-gobject-introspection = addNativeLibs (with pkgs; [glib gobject-introspection]);
generic-cl = x: { parasites = []; };
- static-dispatch = x: { parasites = []; };
+ static-dispatch = x: {
+ overrides = y: (x.overrides y) // {
+ parasites = [];
+ # workaround for https://github.com/alex-gutev/static-dispatch/issues/12
+ postUnpack = ''
+ sed -e '/^(in-package / a (eval-when (:compile-toplevel :load-toplevel :execute)' \
+ -e '$a)' \
+ -i $sourceRoot/src/combin.lisp
+ '';
+ };
+ };
+ lla = addNativeLibs [ pkgs.openblas ];
+ esrap = x: {
+ overrides = y: (x.overrides y) // {
+ postPatch = ''
+ patch -p1 < ${
+ # Quicklisp 2021-08-07 packages an Esrap that doesn't build with SBCL 2.1.9.
+ # Therefore we pull patches from the Esrap repo to fix this.
+ # See https://github.com/scymtym/parser.common-rules/issues/1
+ pkgs.fetchurl {
+ url = https://github.com/scymtym/esrap/compare/4034df872c2b1b8e91adbccab491645c8138253b...c99c33a33ff58ca85e8ba73912eba45d458eaa72.diff;
+ sha256 = "sha256:1sg2mgzilmwj5kwlmx0s60wk2769c3mpqjl00ga2p74ra5hykvx8";
+ }}
+ '';
+ };
+ };
+# cl-opengl = addNativeLibs [ pkgs.libGL pkgs.glfw ];
}
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
index 99ba085270..00a852b4b9 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
@@ -1,20 +1,24 @@
+1am
3bmd
access
acclimation
alexandria
anaphora
arnesi
+array-operations
array-utils
asdf-system-connections
babel
+binomial-heap
+binpack
blackbird
bordeaux-threads
calispel
-caveman
cffi
cffi-grovel
cffi-uffi-compat
chanl
+check-it
chipz
chunga
circular-streams
@@ -33,14 +37,18 @@ cl-containers
cl-cookie
cl-css
cl-csv
+cl-cuda
cl-custom-hash-table
cl-dbi
+cl-digraph
cl-dot
cl-emb
cl-fad
cl-fuse
cl-fuse-meta-fs
+cl-geometry
cl-gobject-introspection
+cl-heap
cl-hooks
cl-html-diff
cl-html-parse
@@ -54,6 +62,7 @@ cl-locale
cl-markup
cl-mysql
cl-paths-ttf
+cl-pattern
cl-pdf
cl-ppcre
cl-ppcre-template
@@ -63,9 +72,11 @@ cl-protobufs
cl-qprint
cl-reexport
cl-slice
+cl-smt-lib
cl-smtp
cl-speedy-queue
cl-store
+cl-svg
cl-syntax
cl-syntax-annot
cl-syntax-anonfun
@@ -80,7 +91,7 @@ cl-vectors
cl-webkit2
cl-who
clack
-clack-v1-compat
+classowary
clfswm
closer-mop
closure-common
@@ -100,10 +111,12 @@ css-selectors-simple-tree
css-selectors-stp
cxml
cxml-stp
+data-table
dbd-mysql
dbd-postgres
dbd-sqlite3
dbus
+defclass-std
dexador
djula
documentation-utils
@@ -125,6 +138,7 @@ form-fiddle
fset
generic-cl
gettext
+heap
http-body
hu.dwim.asdf
hu.dwim.defclass-star
@@ -136,6 +150,7 @@ iolib
ironclad
iterate
jonathan
+jsown
lack
let-plus
lev
@@ -144,6 +159,7 @@ lfarm-server
lfarm-ssl
lift
lisp-namespace
+lla
local-time
log4cl
lparallel
@@ -152,6 +168,8 @@ marshal
md5
metabang-bind
metatilities-base
+mgl-pax
+minheap
misc-extensions
mk-string-metrics
moptilities
@@ -162,17 +180,20 @@ net-telent-date
nibbles
optima
osicat
+parachute
parenscript
parse-number
parser-combinators
parser.common-rules
pcall
+physical-quantities
plump
postmodern
proc-parse
prove
prove-asdf
puri
+pythonic-string-reader
query-fs
quri
rfc2388
@@ -181,6 +202,7 @@ serapeum
simple-date
simple-date-time
smart-buffer
+smug
split-sequence
sqlite
static-vectors
@@ -188,7 +210,9 @@ str
stumpwm
swank
swap-bytes
+sycamore
symbol-munger
+trees
trivia
trivial-arguments
trivial-backtrace
@@ -200,9 +224,11 @@ trivial-indent
trivial-main-thread
trivial-mimes
trivial-package-local-nicknames
+trivial-shell
trivial-types
trivial-utf-8
uffi
+uiop
unix-options
unix-opts
usocket
@@ -210,6 +236,7 @@ utilities.print-items
utilities.print-tree
uuid
varjo
+vecto
woo
wookie
xembed
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix.nix
index 820d589140..ffde6fbb92 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix.nix
@@ -6,54 +6,14 @@ let quicklisp-to-nix-packages = rec {
buildLispPackage = callPackage ./define-package.nix;
qlOverrides = callPackage ./quicklisp-to-nix-overrides.nix {};
- "lisp-unit" = buildLispPackage
+ "rove" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."lisp-unit" or (x: {}))
- (import ./quicklisp-to-nix-output/lisp-unit.nix {
+ (qlOverrides."rove" or (x: {}))
+ (import ./quicklisp-to-nix-output/rove.nix {
inherit fetchurl;
- }));
-
-
- "pythonic-string-reader" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."pythonic-string-reader" or (x: {}))
- (import ./quicklisp-to-nix-output/pythonic-string-reader.nix {
- inherit fetchurl;
- "named-readtables" = quicklisp-to-nix-packages."named-readtables";
- }));
-
-
- "html-encode" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."html-encode" or (x: {}))
- (import ./quicklisp-to-nix-output/html-encode.nix {
- inherit fetchurl;
- }));
-
-
- "colorize" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."colorize" or (x: {}))
- (import ./quicklisp-to-nix-output/colorize.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "html-encode" = quicklisp-to-nix-packages."html-encode";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- }));
-
-
- "_3bmd-ext-code-blocks" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."_3bmd-ext-code-blocks" or (x: {}))
- (import ./quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix {
- inherit fetchurl;
- "_3bmd" = quicklisp-to-nix-packages."_3bmd";
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "colorize" = quicklisp-to-nix-packages."colorize";
- "esrap" = quicklisp-to-nix-packages."esrap";
- "html-encode" = quicklisp-to-nix-packages."html-encode";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "dissect" = quicklisp-to-nix-packages."dissect";
+ "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
}));
@@ -74,11 +34,31 @@ let quicklisp-to-nix-packages = rec {
}));
- "clunit2" = buildLispPackage
+ "do-urlencode" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."clunit2" or (x: {}))
- (import ./quicklisp-to-nix-output/clunit2.nix {
+ (qlOverrides."do-urlencode" or (x: {}))
+ (import ./quicklisp-to-nix-output/do-urlencode.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ }));
+
+
+ "clack-socket" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."clack-socket" or (x: {}))
+ (import ./quicklisp-to-nix-output/clack-socket.nix {
+ inherit fetchurl;
+ }));
+
+
+ "zpng" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."zpng" or (x: {}))
+ (import ./quicklisp-to-nix-output/zpng.nix {
+ inherit fetchurl;
+ "salza2" = quicklisp-to-nix-packages."salza2";
}));
@@ -134,30 +114,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "mgl-pax" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."mgl-pax" or (x: {}))
- (import ./quicklisp-to-nix-output/mgl-pax.nix {
- inherit fetchurl;
- "_3bmd" = quicklisp-to-nix-packages."_3bmd";
- "_3bmd-ext-code-blocks" = quicklisp-to-nix-packages."_3bmd-ext-code-blocks";
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "cl-fad" = quicklisp-to-nix-packages."cl-fad";
- "colorize" = quicklisp-to-nix-packages."colorize";
- "esrap" = quicklisp-to-nix-packages."esrap";
- "html-encode" = quicklisp-to-nix-packages."html-encode";
- "ironclad" = quicklisp-to-nix-packages."ironclad";
- "named-readtables" = quicklisp-to-nix-packages."named-readtables";
- "pythonic-string-reader" = quicklisp-to-nix-packages."pythonic-string-reader";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "swank" = quicklisp-to-nix-packages."swank";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form";
- }));
-
-
"simple-tasks" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."simple-tasks" or (x: {}))
@@ -170,6 +126,31 @@ let quicklisp-to-nix-packages = rec {
}));
+ "dissect" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."dissect" or (x: {}))
+ (import ./quicklisp-to-nix-output/dissect.nix {
+ inherit fetchurl;
+ }));
+
+
+ "lisp-unit" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lisp-unit" or (x: {}))
+ (import ./quicklisp-to-nix-output/lisp-unit.nix {
+ inherit fetchurl;
+ }));
+
+
+ "cl-fuzz" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-fuzz" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-fuzz.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ }));
+
+
"cl-change-case" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-change-case" or (x: {}))
@@ -201,14 +182,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "parse-declarations-1_dot_0" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."parse-declarations-1_dot_0" or (x: {}))
- (import ./quicklisp-to-nix-output/parse-declarations-1_dot_0.nix {
- inherit fetchurl;
- }));
-
-
"simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date";
@@ -261,15 +234,59 @@ let quicklisp-to-nix-packages = rec {
}));
- "stefil" = buildLispPackage
+ "parseq" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."stefil" or (x: {}))
- (import ./quicklisp-to-nix-output/stefil.nix {
+ (qlOverrides."parseq" or (x: {}))
+ (import ./quicklisp-to-nix-output/parseq.nix {
+ inherit fetchurl;
+ }));
+
+
+ "html-encode" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."html-encode" or (x: {}))
+ (import ./quicklisp-to-nix-output/html-encode.nix {
+ inherit fetchurl;
+ }));
+
+
+ "colorize" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."colorize" or (x: {}))
+ (import ./quicklisp-to-nix-output/colorize.nix {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
- "iterate" = quicklisp-to-nix-packages."iterate";
- "metabang-bind" = quicklisp-to-nix-packages."metabang-bind";
- "swank" = quicklisp-to-nix-packages."swank";
+ "html-encode" = quicklisp-to-nix-packages."html-encode";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ }));
+
+
+ "_3bmd-ext-code-blocks" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."_3bmd-ext-code-blocks" or (x: {}))
+ (import ./quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix {
+ inherit fetchurl;
+ "_3bmd" = quicklisp-to-nix-packages."_3bmd";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "colorize" = quicklisp-to-nix-packages."colorize";
+ "esrap" = quicklisp-to-nix-packages."esrap";
+ "html-encode" = quicklisp-to-nix-packages."html-encode";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form";
+ }));
+
+
+ "cl-num-utils" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-num-utils" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-num-utils.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "array-operations" = quicklisp-to-nix-packages."array-operations";
+ "cl-slice" = quicklisp-to-nix-packages."cl-slice";
+ "clunit" = quicklisp-to-nix-packages."clunit";
+ "let-plus" = quicklisp-to-nix-packages."let-plus";
}));
@@ -288,24 +305,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "iolib_dot_grovel" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."iolib_dot_grovel" or (x: {}))
- (import ./quicklisp-to-nix-output/iolib_dot_grovel.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "cffi" = quicklisp-to-nix-packages."cffi";
- "iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf";
- "iolib_dot_base" = quicklisp-to-nix-packages."iolib_dot_base";
- "iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp";
- "iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "uiop" = quicklisp-to-nix-packages."uiop";
- }));
-
-
"iolib_dot_conf" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."iolib_dot_conf" or (x: {}))
@@ -524,18 +523,64 @@ let quicklisp-to-nix-packages = rec {
"alexandria" = quicklisp-to-nix-packages."alexandria";
"anaphora" = quicklisp-to-nix-packages."anaphora";
"arrows" = quicklisp-to-nix-packages."arrows";
- "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text";
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
"cl-environments" = quicklisp-to-nix-packages."cl-environments";
- "cl-interpol" = quicklisp-to-nix-packages."cl-interpol";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
"collectors" = quicklisp-to-nix-packages."collectors";
+ "fiveam" = quicklisp-to-nix-packages."fiveam";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ }));
+
+
+ "parse-declarations-1_dot_0" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."parse-declarations-1_dot_0" or (x: {}))
+ (import ./quicklisp-to-nix-output/parse-declarations-1_dot_0.nix {
+ inherit fetchurl;
+ }));
+
+
+ "introspect-environment" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."introspect-environment" or (x: {}))
+ (import ./quicklisp-to-nix-output/introspect-environment.nix {
+ inherit fetchurl;
+ }));
+
+
+ "generic-cl_dot_set" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_set" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_set.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic";
+ "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence";
"introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
"iterate" = quicklisp-to-nix-packages."iterate";
"lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
"optima" = quicklisp-to-nix-packages."optima";
- "prove" = quicklisp-to-nix-packages."prove";
- "prove-asdf" = quicklisp-to-nix-packages."prove-asdf";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
"symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
"trivia" = quicklisp-to-nix-packages."trivia";
"trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
@@ -548,11 +593,409 @@ let quicklisp-to-nix-packages = rec {
}));
- "introspect-environment" = buildLispPackage
+ "generic-cl_dot_sequence" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."introspect-environment" or (x: {}))
- (import ./quicklisp-to-nix-output/introspect-environment.nix {
+ (qlOverrides."generic-cl_dot_sequence" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_sequence.nix {
inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_object" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_object" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_object.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_math" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_math" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_math.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_map" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_map" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_map.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_lazy-seq" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_lazy-seq" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_lazy-seq.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_iterator" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_iterator" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_iterator.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_internal" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_internal" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_internal.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_container" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_container" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_container.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_comparison" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_comparison" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_comparison.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_collector" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_collector" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_collector.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "generic-cl_dot_arithmetic" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."generic-cl_dot_arithmetic" or (x: {}))
+ (import ./quicklisp-to-nix-output/generic-cl_dot_arithmetic.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ "trivia" = quicklisp-to-nix-packages."trivia";
+ "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
+ "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
+ "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
+ "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
+ "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
+ "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
+ "type-i" = quicklisp-to-nix-packages."type-i";
+ }));
+
+
+ "cl-form-types" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-form-types" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-form-types.nix {
+ inherit fetchurl;
+ "agutil" = quicklisp-to-nix-packages."agutil";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "arrows" = quicklisp-to-nix-packages."arrows";
+ "cl-environments" = quicklisp-to-nix-packages."cl-environments";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "collectors" = quicklisp-to-nix-packages."collectors";
+ "fiveam" = quicklisp-to-nix-packages."fiveam";
+ "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
}));
@@ -563,15 +1006,12 @@ let quicklisp-to-nix-packages = rec {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
"anaphora" = quicklisp-to-nix-packages."anaphora";
- "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text";
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
"collectors" = quicklisp-to-nix-packages."collectors";
+ "fiveam" = quicklisp-to-nix-packages."fiveam";
"iterate" = quicklisp-to-nix-packages."iterate";
"optima" = quicklisp-to-nix-packages."optima";
- "prove" = quicklisp-to-nix-packages."prove";
- "prove-asdf" = quicklisp-to-nix-packages."prove-asdf";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
"symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
}));
@@ -592,17 +1032,7 @@ let quicklisp-to-nix-packages = rec {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
- "introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
- "iterate" = quicklisp-to-nix-packages."iterate";
- "lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
- "trivia" = quicklisp-to-nix-packages."trivia";
- "trivia_dot_balland2006" = quicklisp-to-nix-packages."trivia_dot_balland2006";
- "trivia_dot_level0" = quicklisp-to-nix-packages."trivia_dot_level0";
- "trivia_dot_level1" = quicklisp-to-nix-packages."trivia_dot_level1";
- "trivia_dot_level2" = quicklisp-to-nix-packages."trivia_dot_level2";
- "trivia_dot_trivial" = quicklisp-to-nix-packages."trivia_dot_trivial";
- "trivial-cltl2" = quicklisp-to-nix-packages."trivial-cltl2";
- "type-i" = quicklisp-to-nix-packages."type-i";
+ "optima" = quicklisp-to-nix-packages."optima";
}));
@@ -630,21 +1060,13 @@ let quicklisp-to-nix-packages = rec {
}));
- "asdf-package-system" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."asdf-package-system" or (x: {}))
- (import ./quicklisp-to-nix-output/asdf-package-system.nix {
- inherit fetchurl;
- }));
-
-
"uax-15" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."uax-15" or (x: {}))
(import ./quicklisp-to-nix-output/uax-15.nix {
inherit fetchurl;
"cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "fiveam" = quicklisp-to-nix-packages."fiveam";
+ "parachute" = quicklisp-to-nix-packages."parachute";
"split-sequence" = quicklisp-to-nix-packages."split-sequence";
"uiop" = quicklisp-to-nix-packages."uiop";
}));
@@ -666,6 +1088,7 @@ let quicklisp-to-nix-packages = rec {
"simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date_slash_postgres-glue";
"split-sequence" = quicklisp-to-nix-packages."split-sequence";
"uax-15" = quicklisp-to-nix-packages."uax-15";
+ "uiop" = quicklisp-to-nix-packages."uiop";
"usocket" = quicklisp-to-nix-packages."usocket";
}));
@@ -797,6 +1220,34 @@ let quicklisp-to-nix-packages = rec {
}));
+ "lack-util" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lack-util" or (x: {}))
+ (import ./quicklisp-to-nix-output/lack-util.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "ironclad" = quicklisp-to-nix-packages."ironclad";
+ }));
+
+
+ "lack-middleware-backtrace" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lack-middleware-backtrace" or (x: {}))
+ (import ./quicklisp-to-nix-output/lack-middleware-backtrace.nix {
+ inherit fetchurl;
+ "uiop" = quicklisp-to-nix-packages."uiop";
+ }));
+
+
+ "lack-component" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lack-component" or (x: {}))
+ (import ./quicklisp-to-nix-output/lack-component.nix {
+ inherit fetchurl;
+ }));
+
+
"cl-aa" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-aa" or (x: {}))
@@ -821,6 +1272,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "asdf-package-system" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."asdf-package-system" or (x: {}))
+ (import ./quicklisp-to-nix-output/asdf-package-system.nix {
+ inherit fetchurl;
+ }));
+
+
"clunit" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."clunit" or (x: {}))
@@ -829,6 +1288,9 @@ let quicklisp-to-nix-packages = rec {
}));
+ "asdf" = quicklisp-to-nix-packages."uiop";
+
+
"usocket-server" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."usocket-server" or (x: {}))
@@ -1097,211 +1559,6 @@ let quicklisp-to-nix-packages = rec {
"cl-async-util" = quicklisp-to-nix-packages."cl-async";
- "uiop" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."uiop" or (x: {}))
- (import ./quicklisp-to-nix-output/uiop.nix {
- inherit fetchurl;
- }));
-
-
- "rove" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."rove" or (x: {}))
- (import ./quicklisp-to-nix-output/rove.nix {
- inherit fetchurl;
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "dissect" = quicklisp-to-nix-packages."dissect";
- "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- }));
-
-
- "myway" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."myway" or (x: {}))
- (import ./quicklisp-to-nix-output/myway.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "cl-utilities" = quicklisp-to-nix-packages."cl-utilities";
- "map-set" = quicklisp-to-nix-packages."map-set";
- "quri" = quicklisp-to-nix-packages."quri";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- }));
-
-
- "map-set" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."map-set" or (x: {}))
- (import ./quicklisp-to-nix-output/map-set.nix {
- inherit fetchurl;
- }));
-
-
- "lack-util" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."lack-util" or (x: {}))
- (import ./quicklisp-to-nix-output/lack-util.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "ironclad" = quicklisp-to-nix-packages."ironclad";
- }));
-
-
- "lack-middleware-backtrace" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."lack-middleware-backtrace" or (x: {}))
- (import ./quicklisp-to-nix-output/lack-middleware-backtrace.nix {
- inherit fetchurl;
- "uiop" = quicklisp-to-nix-packages."uiop";
- }));
-
-
- "lack-component" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."lack-component" or (x: {}))
- (import ./quicklisp-to-nix-output/lack-component.nix {
- inherit fetchurl;
- }));
-
-
- "do-urlencode" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."do-urlencode" or (x: {}))
- (import ./quicklisp-to-nix-output/do-urlencode.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- }));
-
-
- "dissect" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."dissect" or (x: {}))
- (import ./quicklisp-to-nix-output/dissect.nix {
- inherit fetchurl;
- }));
-
-
- "clack-test" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."clack-test" or (x: {}))
- (import ./quicklisp-to-nix-output/clack-test.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "cffi" = quicklisp-to-nix-packages."cffi";
- "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
- "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain";
- "chipz" = quicklisp-to-nix-packages."chipz";
- "chunga" = quicklisp-to-nix-packages."chunga";
- "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl";
- "cl-annot" = quicklisp-to-nix-packages."cl-annot";
- "cl-base64" = quicklisp-to-nix-packages."cl-base64";
- "cl-cookie" = quicklisp-to-nix-packages."cl-cookie";
- "cl-fad" = quicklisp-to-nix-packages."cl-fad";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "cl-reexport" = quicklisp-to-nix-packages."cl-reexport";
- "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
- "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
- "cl-utilities" = quicklisp-to-nix-packages."cl-utilities";
- "clack" = quicklisp-to-nix-packages."clack";
- "clack-handler-hunchentoot" = quicklisp-to-nix-packages."clack-handler-hunchentoot";
- "clack-socket" = quicklisp-to-nix-packages."clack-socket";
- "dexador" = quicklisp-to-nix-packages."dexador";
- "dissect" = quicklisp-to-nix-packages."dissect";
- "fast-http" = quicklisp-to-nix-packages."fast-http";
- "fast-io" = quicklisp-to-nix-packages."fast-io";
- "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
- "http-body" = quicklisp-to-nix-packages."http-body";
- "hunchentoot" = quicklisp-to-nix-packages."hunchentoot";
- "ironclad" = quicklisp-to-nix-packages."ironclad";
- "jonathan" = quicklisp-to-nix-packages."jonathan";
- "lack" = quicklisp-to-nix-packages."lack";
- "lack-component" = quicklisp-to-nix-packages."lack-component";
- "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace";
- "lack-util" = quicklisp-to-nix-packages."lack-util";
- "local-time" = quicklisp-to-nix-packages."local-time";
- "md5" = quicklisp-to-nix-packages."md5";
- "named-readtables" = quicklisp-to-nix-packages."named-readtables";
- "proc-parse" = quicklisp-to-nix-packages."proc-parse";
- "quri" = quicklisp-to-nix-packages."quri";
- "rfc2388" = quicklisp-to-nix-packages."rfc2388";
- "rove" = quicklisp-to-nix-packages."rove";
- "smart-buffer" = quicklisp-to-nix-packages."smart-buffer";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "static-vectors" = quicklisp-to-nix-packages."static-vectors";
- "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
- "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes";
- "trivial-types" = quicklisp-to-nix-packages."trivial-types";
- "usocket" = quicklisp-to-nix-packages."usocket";
- "xsubseq" = quicklisp-to-nix-packages."xsubseq";
- }));
-
-
- "clack-socket" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."clack-socket" or (x: {}))
- (import ./quicklisp-to-nix-output/clack-socket.nix {
- inherit fetchurl;
- }));
-
-
- "clack-handler-hunchentoot" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."clack-handler-hunchentoot" or (x: {}))
- (import ./quicklisp-to-nix-output/clack-handler-hunchentoot.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "cffi" = quicklisp-to-nix-packages."cffi";
- "chunga" = quicklisp-to-nix-packages."chunga";
- "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl";
- "cl-base64" = quicklisp-to-nix-packages."cl-base64";
- "cl-fad" = quicklisp-to-nix-packages."cl-fad";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "clack-socket" = quicklisp-to-nix-packages."clack-socket";
- "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
- "hunchentoot" = quicklisp-to-nix-packages."hunchentoot";
- "md5" = quicklisp-to-nix-packages."md5";
- "rfc2388" = quicklisp-to-nix-packages."rfc2388";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
- "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- "usocket" = quicklisp-to-nix-packages."usocket";
- }));
-
-
- "cl-project" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."cl-project" or (x: {}))
- (import ./quicklisp-to-nix-output/cl-project.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "anaphora" = quicklisp-to-nix-packages."anaphora";
- "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text";
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
- "cl-colors2" = quicklisp-to-nix-packages."cl-colors2";
- "cl-emb" = quicklisp-to-nix-packages."cl-emb";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "let-plus" = quicklisp-to-nix-packages."let-plus";
- "local-time" = quicklisp-to-nix-packages."local-time";
- "prove" = quicklisp-to-nix-packages."prove";
- "uiop" = quicklisp-to-nix-packages."uiop";
- }));
-
-
"cl-colors2" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-colors2" or (x: {}))
@@ -1309,7 +1566,18 @@ let quicklisp-to-nix-packages = rec {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
"cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "clunit2" = quicklisp-to-nix-packages."clunit2";
+ }));
+
+
+ "stefil" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."stefil" or (x: {}))
+ (import ./quicklisp-to-nix-output/stefil.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "metabang-bind" = quicklisp-to-nix-packages."metabang-bind";
+ "swank" = quicklisp-to-nix-packages."swank";
}));
@@ -1319,6 +1587,7 @@ let quicklisp-to-nix-packages = rec {
(import ./quicklisp-to-nix-output/cffi-toolchain.nix {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
+ "asdf" = quicklisp-to-nix-packages."asdf";
"babel" = quicklisp-to-nix-packages."babel";
"cffi" = quicklisp-to-nix-packages."cffi";
"trivial-features" = quicklisp-to-nix-packages."trivial-features";
@@ -1363,6 +1632,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "clunit2" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."clunit2" or (x: {}))
+ (import ./quicklisp-to-nix-output/clunit2.nix {
+ inherit fetchurl;
+ }));
+
+
"rt" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."rt" or (x: {}))
@@ -1536,6 +1813,20 @@ let quicklisp-to-nix-packages = rec {
}));
+ "vecto" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."vecto" or (x: {}))
+ (import ./quicklisp-to-nix-output/vecto.nix {
+ inherit fetchurl;
+ "cl-aa" = quicklisp-to-nix-packages."cl-aa";
+ "cl-paths" = quicklisp-to-nix-packages."cl-paths";
+ "cl-vectors" = quicklisp-to-nix-packages."cl-vectors";
+ "salza2" = quicklisp-to-nix-packages."salza2";
+ "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf";
+ "zpng" = quicklisp-to-nix-packages."zpng";
+ }));
+
+
"varjo" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."varjo" or (x: {}))
@@ -1614,6 +1905,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "uiop" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."uiop" or (x: {}))
+ (import ./quicklisp-to-nix-output/uiop.nix {
+ inherit fetchurl;
+ }));
+
+
"uffi" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."uffi" or (x: {}))
@@ -1639,6 +1938,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "trivial-shell" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."trivial-shell" or (x: {}))
+ (import ./quicklisp-to-nix-output/trivial-shell.nix {
+ inherit fetchurl;
+ }));
+
+
"trivial-package-local-nicknames" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."trivial-package-local-nicknames" or (x: {}))
@@ -1747,6 +2054,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "trees" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."trees" or (x: {}))
+ (import ./quicklisp-to-nix-output/trees.nix {
+ inherit fetchurl;
+ }));
+
+
"symbol-munger" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."symbol-munger" or (x: {}))
@@ -1757,6 +2072,18 @@ let quicklisp-to-nix-packages = rec {
}));
+ "sycamore" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."sycamore" or (x: {}))
+ (import ./quicklisp-to-nix-output/sycamore.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "cl-fuzz" = quicklisp-to-nix-packages."cl-fuzz";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "lisp-unit" = quicklisp-to-nix-packages."lisp-unit";
+ }));
+
+
"swap-bytes" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."swap-bytes" or (x: {}))
@@ -1836,6 +2163,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "smug" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."smug" or (x: {}))
+ (import ./quicklisp-to-nix-output/smug.nix {
+ inherit fetchurl;
+ "asdf-package-system" = quicklisp-to-nix-packages."asdf-package-system";
+ }));
+
+
"smart-buffer" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."smart-buffer" or (x: {}))
@@ -1960,6 +2296,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "pythonic-string-reader" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."pythonic-string-reader" or (x: {}))
+ (import ./quicklisp-to-nix-output/pythonic-string-reader.nix {
+ inherit fetchurl;
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ }));
+
+
"puri" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."puri" or (x: {}))
@@ -2030,6 +2375,7 @@ let quicklisp-to-nix-packages = rec {
"simple-date_slash_postgres-glue" = quicklisp-to-nix-packages."simple-date_slash_postgres-glue";
"split-sequence" = quicklisp-to-nix-packages."split-sequence";
"uax-15" = quicklisp-to-nix-packages."uax-15";
+ "uiop" = quicklisp-to-nix-packages."uiop";
"usocket" = quicklisp-to-nix-packages."usocket";
}));
@@ -2045,6 +2391,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "physical-quantities" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."physical-quantities" or (x: {}))
+ (import ./quicklisp-to-nix-output/physical-quantities.nix {
+ inherit fetchurl;
+ "parseq" = quicklisp-to-nix-packages."parseq";
+ }));
+
+
"pcall" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."pcall" or (x: {}))
@@ -2101,6 +2456,17 @@ let quicklisp-to-nix-packages = rec {
}));
+ "parachute" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."parachute" or (x: {}))
+ (import ./quicklisp-to-nix-output/parachute.nix {
+ inherit fetchurl;
+ "documentation-utils" = quicklisp-to-nix-packages."documentation-utils";
+ "form-fiddle" = quicklisp-to-nix-packages."form-fiddle";
+ "trivial-indent" = quicklisp-to-nix-packages."trivial-indent";
+ }));
+
+
"osicat" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."osicat" or (x: {}))
@@ -2196,6 +2562,38 @@ let quicklisp-to-nix-packages = rec {
}));
+ "minheap" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."minheap" or (x: {}))
+ (import ./quicklisp-to-nix-output/minheap.nix {
+ inherit fetchurl;
+ }));
+
+
+ "mgl-pax" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."mgl-pax" or (x: {}))
+ (import ./quicklisp-to-nix-output/mgl-pax.nix {
+ inherit fetchurl;
+ "_3bmd" = quicklisp-to-nix-packages."_3bmd";
+ "_3bmd-ext-code-blocks" = quicklisp-to-nix-packages."_3bmd-ext-code-blocks";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "cl-fad" = quicklisp-to-nix-packages."cl-fad";
+ "colorize" = quicklisp-to-nix-packages."colorize";
+ "esrap" = quicklisp-to-nix-packages."esrap";
+ "html-encode" = quicklisp-to-nix-packages."html-encode";
+ "ironclad" = quicklisp-to-nix-packages."ironclad";
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ "pythonic-string-reader" = quicklisp-to-nix-packages."pythonic-string-reader";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ "swank" = quicklisp-to-nix-packages."swank";
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ "trivial-with-current-source-form" = quicklisp-to-nix-packages."trivial-with-current-source-form";
+ }));
+
+
"metatilities-base" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."metatilities-base" or (x: {}))
@@ -2273,6 +2671,24 @@ let quicklisp-to-nix-packages = rec {
}));
+ "lla" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lla" or (x: {}))
+ (import ./quicklisp-to-nix-output/lla.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "array-operations" = quicklisp-to-nix-packages."array-operations";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ "cl-num-utils" = quicklisp-to-nix-packages."cl-num-utils";
+ "cl-slice" = quicklisp-to-nix-packages."cl-slice";
+ "clunit" = quicklisp-to-nix-packages."clunit";
+ "let-plus" = quicklisp-to-nix-packages."let-plus";
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ }));
+
+
"lisp-namespace" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."lisp-namespace" or (x: {}))
@@ -2380,6 +2796,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "jsown" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."jsown" or (x: {}))
+ (import ./quicklisp-to-nix-output/jsown.nix {
+ inherit fetchurl;
+ }));
+
+
"jonathan" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."jonathan" or (x: {}))
@@ -2432,12 +2856,14 @@ let quicklisp-to-nix-packages = rec {
"babel" = quicklisp-to-nix-packages."babel";
"bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
"cffi" = quicklisp-to-nix-packages."cffi";
+ "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
+ "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain";
+ "fiveam" = quicklisp-to-nix-packages."fiveam";
"idna" = quicklisp-to-nix-packages."idna";
"iolib_dot_asdf" = quicklisp-to-nix-packages."iolib_dot_asdf";
"iolib_dot_base" = quicklisp-to-nix-packages."iolib_dot_base";
"iolib_dot_common-lisp" = quicklisp-to-nix-packages."iolib_dot_common-lisp";
"iolib_dot_conf" = quicklisp-to-nix-packages."iolib_dot_conf";
- "iolib_dot_grovel" = quicklisp-to-nix-packages."iolib_dot_grovel";
"split-sequence" = quicklisp-to-nix-packages."split-sequence";
"swap-bytes" = quicklisp-to-nix-packages."swap-bytes";
"trivial-features" = quicklisp-to-nix-packages."trivial-features";
@@ -2450,6 +2876,7 @@ let quicklisp-to-nix-packages = rec {
(import ./quicklisp-to-nix-output/inferior-shell.nix {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
+ "asdf" = quicklisp-to-nix-packages."asdf";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
"fare-mop" = quicklisp-to-nix-packages."fare-mop";
"fare-quasiquote" = quicklisp-to-nix-packages."fare-quasiquote";
@@ -2537,6 +2964,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."hu_dot_dwim_dot_asdf" or (x: {}))
(import ./quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix {
inherit fetchurl;
+ "asdf" = quicklisp-to-nix-packages."asdf";
"uiop" = quicklisp-to-nix-packages."uiop";
}));
@@ -2573,6 +3001,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "heap" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."heap" or (x: {}))
+ (import ./quicklisp-to-nix-output/heap.nix {
+ inherit fetchurl;
+ }));
+
+
"gettext" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."gettext" or (x: {}))
@@ -2594,19 +3030,29 @@ let quicklisp-to-nix-packages = rec {
"alexandria" = quicklisp-to-nix-packages."alexandria";
"anaphora" = quicklisp-to-nix-packages."anaphora";
"arrows" = quicklisp-to-nix-packages."arrows";
- "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text";
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
"cl-custom-hash-table" = quicklisp-to-nix-packages."cl-custom-hash-table";
"cl-environments" = quicklisp-to-nix-packages."cl-environments";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-form-types" = quicklisp-to-nix-packages."cl-form-types";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
"collectors" = quicklisp-to-nix-packages."collectors";
+ "fiveam" = quicklisp-to-nix-packages."fiveam";
+ "generic-cl_dot_arithmetic" = quicklisp-to-nix-packages."generic-cl_dot_arithmetic";
+ "generic-cl_dot_collector" = quicklisp-to-nix-packages."generic-cl_dot_collector";
+ "generic-cl_dot_comparison" = quicklisp-to-nix-packages."generic-cl_dot_comparison";
+ "generic-cl_dot_container" = quicklisp-to-nix-packages."generic-cl_dot_container";
+ "generic-cl_dot_internal" = quicklisp-to-nix-packages."generic-cl_dot_internal";
+ "generic-cl_dot_iterator" = quicklisp-to-nix-packages."generic-cl_dot_iterator";
+ "generic-cl_dot_lazy-seq" = quicklisp-to-nix-packages."generic-cl_dot_lazy-seq";
+ "generic-cl_dot_map" = quicklisp-to-nix-packages."generic-cl_dot_map";
+ "generic-cl_dot_math" = quicklisp-to-nix-packages."generic-cl_dot_math";
+ "generic-cl_dot_object" = quicklisp-to-nix-packages."generic-cl_dot_object";
+ "generic-cl_dot_sequence" = quicklisp-to-nix-packages."generic-cl_dot_sequence";
+ "generic-cl_dot_set" = quicklisp-to-nix-packages."generic-cl_dot_set";
"introspect-environment" = quicklisp-to-nix-packages."introspect-environment";
"iterate" = quicklisp-to-nix-packages."iterate";
"lisp-namespace" = quicklisp-to-nix-packages."lisp-namespace";
"optima" = quicklisp-to-nix-packages."optima";
- "prove" = quicklisp-to-nix-packages."prove";
- "prove-asdf" = quicklisp-to-nix-packages."prove-asdf";
+ "parse-declarations-1_dot_0" = quicklisp-to-nix-packages."parse-declarations-1_dot_0";
"static-dispatch" = quicklisp-to-nix-packages."static-dispatch";
"symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
"trivia" = quicklisp-to-nix-packages."trivia";
@@ -2713,6 +3159,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."fare-utils" or (x: {}))
(import ./quicklisp-to-nix-output/fare-utils.nix {
inherit fetchurl;
+ "asdf" = quicklisp-to-nix-packages."asdf";
}));
@@ -2896,6 +3343,16 @@ let quicklisp-to-nix-packages = rec {
}));
+ "defclass-std" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."defclass-std" or (x: {}))
+ (import ./quicklisp-to-nix-output/defclass-std.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ }));
+
+
"dbus" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."dbus" or (x: {}))
@@ -2970,6 +3427,23 @@ let quicklisp-to-nix-packages = rec {
}));
+ "data-table" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."data-table" or (x: {}))
+ (import ./quicklisp-to-nix-output/data-table.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "cl-interpol" = quicklisp-to-nix-packages."cl-interpol";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-unicode" = quicklisp-to-nix-packages."cl-unicode";
+ "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "lisp-unit2" = quicklisp-to-nix-packages."lisp-unit2";
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ "symbol-munger" = quicklisp-to-nix-packages."symbol-munger";
+ }));
+
+
"cxml-stp" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cxml-stp" or (x: {}))
@@ -3115,6 +3589,8 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."command-line-arguments" or (x: {}))
(import ./quicklisp-to-nix-output/command-line-arguments.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "hu_dot_dwim_dot_stefil" = quicklisp-to-nix-packages."hu_dot_dwim_dot_stefil";
}));
@@ -3248,67 +3724,13 @@ let quicklisp-to-nix-packages = rec {
}));
- "clack-v1-compat" = buildLispPackage
+ "classowary" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."clack-v1-compat" or (x: {}))
- (import ./quicklisp-to-nix-output/clack-v1-compat.nix {
+ (qlOverrides."classowary" or (x: {}))
+ (import ./quicklisp-to-nix-output/classowary.nix {
inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "babel" = quicklisp-to-nix-packages."babel";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "cffi" = quicklisp-to-nix-packages."cffi";
- "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
- "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain";
- "chipz" = quicklisp-to-nix-packages."chipz";
- "chunga" = quicklisp-to-nix-packages."chunga";
- "circular-streams" = quicklisp-to-nix-packages."circular-streams";
- "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl";
- "cl-annot" = quicklisp-to-nix-packages."cl-annot";
- "cl-base64" = quicklisp-to-nix-packages."cl-base64";
- "cl-cookie" = quicklisp-to-nix-packages."cl-cookie";
- "cl-fad" = quicklisp-to-nix-packages."cl-fad";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "cl-reexport" = quicklisp-to-nix-packages."cl-reexport";
- "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
- "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
- "cl-utilities" = quicklisp-to-nix-packages."cl-utilities";
- "clack" = quicklisp-to-nix-packages."clack";
- "clack-handler-hunchentoot" = quicklisp-to-nix-packages."clack-handler-hunchentoot";
- "clack-socket" = quicklisp-to-nix-packages."clack-socket";
- "clack-test" = quicklisp-to-nix-packages."clack-test";
- "dexador" = quicklisp-to-nix-packages."dexador";
- "dissect" = quicklisp-to-nix-packages."dissect";
- "fast-http" = quicklisp-to-nix-packages."fast-http";
- "fast-io" = quicklisp-to-nix-packages."fast-io";
- "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
- "http-body" = quicklisp-to-nix-packages."http-body";
- "hunchentoot" = quicklisp-to-nix-packages."hunchentoot";
- "ironclad" = quicklisp-to-nix-packages."ironclad";
- "jonathan" = quicklisp-to-nix-packages."jonathan";
- "lack" = quicklisp-to-nix-packages."lack";
- "lack-component" = quicklisp-to-nix-packages."lack-component";
- "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace";
- "lack-util" = quicklisp-to-nix-packages."lack-util";
- "local-time" = quicklisp-to-nix-packages."local-time";
- "marshal" = quicklisp-to-nix-packages."marshal";
- "md5" = quicklisp-to-nix-packages."md5";
- "named-readtables" = quicklisp-to-nix-packages."named-readtables";
- "proc-parse" = quicklisp-to-nix-packages."proc-parse";
- "quri" = quicklisp-to-nix-packages."quri";
- "rfc2388" = quicklisp-to-nix-packages."rfc2388";
- "rove" = quicklisp-to-nix-packages."rove";
- "smart-buffer" = quicklisp-to-nix-packages."smart-buffer";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "static-vectors" = quicklisp-to-nix-packages."static-vectors";
- "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
- "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes";
- "trivial-types" = quicklisp-to-nix-packages."trivial-types";
- "uiop" = quicklisp-to-nix-packages."uiop";
- "usocket" = quicklisp-to-nix-packages."usocket";
- "xsubseq" = quicklisp-to-nix-packages."xsubseq";
+ "documentation-utils" = quicklisp-to-nix-packages."documentation-utils";
+ "trivial-indent" = quicklisp-to-nix-packages."trivial-indent";
}));
@@ -3489,6 +3911,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-svg" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-svg" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-svg.nix {
+ inherit fetchurl;
+ }));
+
+
"cl-store" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-store" or (x: {}))
@@ -3526,6 +3956,17 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-smt-lib" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-smt-lib" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-smt-lib.nix {
+ inherit fetchurl;
+ "asdf-package-system" = quicklisp-to-nix-packages."asdf-package-system";
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
+ }));
+
+
"cl-slice" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-slice" or (x: {}))
@@ -3563,6 +4004,7 @@ let quicklisp-to-nix-packages = rec {
(import ./quicklisp-to-nix-output/cl-protobufs.nix {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
+ "asdf" = quicklisp-to-nix-packages."asdf";
"babel" = quicklisp-to-nix-packages."babel";
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
"trivial-features" = quicklisp-to-nix-packages."trivial-features";
@@ -3627,6 +4069,20 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-pattern" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-pattern" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-pattern.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "cl-annot" = quicklisp-to-nix-packages."cl-annot";
+ "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
+ "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ "trivial-types" = quicklisp-to-nix-packages."trivial-types";
+ }));
+
+
"cl-paths-ttf" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-paths-ttf" or (x: {}))
@@ -3789,6 +4245,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-heap" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-heap" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-heap.nix {
+ inherit fetchurl;
+ }));
+
+
"cl-gobject-introspection" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-gobject-introspection" or (x: {}))
@@ -3803,6 +4267,16 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-geometry" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-geometry" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-geometry.nix {
+ inherit fetchurl;
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "trees" = quicklisp-to-nix-packages."trees";
+ }));
+
+
"cl-fuse-meta-fs" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-fuse-meta-fs" or (x: {}))
@@ -3874,6 +4348,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-digraph" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-digraph" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-digraph.nix {
+ inherit fetchurl;
+ }));
+
+
"cl-dbi" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-dbi" or (x: {}))
@@ -3895,6 +4377,31 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-cuda" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-cuda" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-cuda.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
+ "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain";
+ "cl-annot" = quicklisp-to-nix-packages."cl-annot";
+ "cl-pattern" = quicklisp-to-nix-packages."cl-pattern";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-reexport" = quicklisp-to-nix-packages."cl-reexport";
+ "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
+ "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
+ "external-program" = quicklisp-to-nix-packages."external-program";
+ "named-readtables" = quicklisp-to-nix-packages."named-readtables";
+ "osicat" = quicklisp-to-nix-packages."osicat";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ "trivial-types" = quicklisp-to-nix-packages."trivial-types";
+ }));
+
+
"cl-csv" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-csv" or (x: {}))
@@ -4147,6 +4654,18 @@ let quicklisp-to-nix-packages = rec {
}));
+ "check-it" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."check-it" or (x: {}))
+ (import ./quicklisp-to-nix-output/check-it.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "closer-mop" = quicklisp-to-nix-packages."closer-mop";
+ "optima" = quicklisp-to-nix-packages."optima";
+ "stefil" = quicklisp-to-nix-packages."stefil";
+ }));
+
+
"chanl" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."chanl" or (x: {}))
@@ -4197,81 +4716,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "caveman" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."caveman" or (x: {}))
- (import ./quicklisp-to-nix-output/caveman.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "anaphora" = quicklisp-to-nix-packages."anaphora";
- "babel" = quicklisp-to-nix-packages."babel";
- "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
- "cffi" = quicklisp-to-nix-packages."cffi";
- "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
- "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain";
- "chipz" = quicklisp-to-nix-packages."chipz";
- "chunga" = quicklisp-to-nix-packages."chunga";
- "circular-streams" = quicklisp-to-nix-packages."circular-streams";
- "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl";
- "cl-annot" = quicklisp-to-nix-packages."cl-annot";
- "cl-ansi-text" = quicklisp-to-nix-packages."cl-ansi-text";
- "cl-base64" = quicklisp-to-nix-packages."cl-base64";
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
- "cl-colors2" = quicklisp-to-nix-packages."cl-colors2";
- "cl-cookie" = quicklisp-to-nix-packages."cl-cookie";
- "cl-emb" = quicklisp-to-nix-packages."cl-emb";
- "cl-fad" = quicklisp-to-nix-packages."cl-fad";
- "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
- "cl-project" = quicklisp-to-nix-packages."cl-project";
- "cl-reexport" = quicklisp-to-nix-packages."cl-reexport";
- "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
- "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
- "cl-utilities" = quicklisp-to-nix-packages."cl-utilities";
- "clack" = quicklisp-to-nix-packages."clack";
- "clack-handler-hunchentoot" = quicklisp-to-nix-packages."clack-handler-hunchentoot";
- "clack-socket" = quicklisp-to-nix-packages."clack-socket";
- "clack-test" = quicklisp-to-nix-packages."clack-test";
- "clack-v1-compat" = quicklisp-to-nix-packages."clack-v1-compat";
- "dexador" = quicklisp-to-nix-packages."dexador";
- "dissect" = quicklisp-to-nix-packages."dissect";
- "do-urlencode" = quicklisp-to-nix-packages."do-urlencode";
- "fast-http" = quicklisp-to-nix-packages."fast-http";
- "fast-io" = quicklisp-to-nix-packages."fast-io";
- "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
- "http-body" = quicklisp-to-nix-packages."http-body";
- "hunchentoot" = quicklisp-to-nix-packages."hunchentoot";
- "ironclad" = quicklisp-to-nix-packages."ironclad";
- "jonathan" = quicklisp-to-nix-packages."jonathan";
- "lack" = quicklisp-to-nix-packages."lack";
- "lack-component" = quicklisp-to-nix-packages."lack-component";
- "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace";
- "lack-util" = quicklisp-to-nix-packages."lack-util";
- "let-plus" = quicklisp-to-nix-packages."let-plus";
- "local-time" = quicklisp-to-nix-packages."local-time";
- "map-set" = quicklisp-to-nix-packages."map-set";
- "marshal" = quicklisp-to-nix-packages."marshal";
- "md5" = quicklisp-to-nix-packages."md5";
- "myway" = quicklisp-to-nix-packages."myway";
- "named-readtables" = quicklisp-to-nix-packages."named-readtables";
- "proc-parse" = quicklisp-to-nix-packages."proc-parse";
- "prove" = quicklisp-to-nix-packages."prove";
- "quri" = quicklisp-to-nix-packages."quri";
- "rfc2388" = quicklisp-to-nix-packages."rfc2388";
- "rove" = quicklisp-to-nix-packages."rove";
- "smart-buffer" = quicklisp-to-nix-packages."smart-buffer";
- "split-sequence" = quicklisp-to-nix-packages."split-sequence";
- "static-vectors" = quicklisp-to-nix-packages."static-vectors";
- "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
- "trivial-features" = quicklisp-to-nix-packages."trivial-features";
- "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
- "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes";
- "trivial-types" = quicklisp-to-nix-packages."trivial-types";
- "usocket" = quicklisp-to-nix-packages."usocket";
- "xsubseq" = quicklisp-to-nix-packages."xsubseq";
- }));
-
-
"calispel" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."calispel" or (x: {}))
@@ -4304,6 +4748,23 @@ let quicklisp-to-nix-packages = rec {
}));
+ "binpack" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."binpack" or (x: {}))
+ (import ./quicklisp-to-nix-output/binpack.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ }));
+
+
+ "binomial-heap" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."binomial-heap" or (x: {}))
+ (import ./quicklisp-to-nix-output/binomial-heap.nix {
+ inherit fetchurl;
+ }));
+
+
"babel" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."babel" or (x: {}))
@@ -4330,6 +4791,18 @@ let quicklisp-to-nix-packages = rec {
}));
+ "array-operations" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."array-operations" or (x: {}))
+ (import ./quicklisp-to-nix-output/array-operations.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "clunit2" = quicklisp-to-nix-packages."clunit2";
+ "let-plus" = quicklisp-to-nix-packages."let-plus";
+ }));
+
+
"arnesi" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."arnesi" or (x: {}))
@@ -4400,6 +4873,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "_1am" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."_1am" or (x: {}))
+ (import ./quicklisp-to-nix-output/_1am.nix {
+ inherit fetchurl;
+ }));
+
+
};
in
quicklisp-to-nix-packages
diff --git a/third_party/nixpkgs/pkgs/development/lisp-modules/shell.nix b/third_party/nixpkgs/pkgs/development/lisp-modules/shell.nix
index 9fc0c0b2aa..dcec6db8ed 100644
--- a/third_party/nixpkgs/pkgs/development/lisp-modules/shell.nix
+++ b/third_party/nixpkgs/pkgs/development/lisp-modules/shell.nix
@@ -25,6 +25,7 @@ self = rec {
libfixposix
libmysqlclient
libuv
+ openblas
openssl
openssl_lib_marked
pango
diff --git a/third_party/nixpkgs/pkgs/development/lua-modules/default.nix b/third_party/nixpkgs/pkgs/development/lua-modules/default.nix
index e4927ee304..0c8bc1814b 100644
--- a/third_party/nixpkgs/pkgs/development/lua-modules/default.nix
+++ b/third_party/nixpkgs/pkgs/development/lua-modules/default.nix
@@ -15,7 +15,7 @@ let
overridenPackages = import ./overrides.nix { inherit pkgs; };
generatedPackages = if (builtins.pathExists ./generated-packages.nix) then
- pkgs.callPackage ./generated-packages.nix { } else (final: prev: {});
+ (final: prev: pkgs.callPackage ./generated-packages.nix { inherit (final) callPackage; } final prev) else (final: prev: {});
extensible-self = lib.makeExtensible
(extends overrides
diff --git a/third_party/nixpkgs/pkgs/development/lua-modules/generated-packages.nix b/third_party/nixpkgs/pkgs/development/lua-modules/generated-packages.nix
index 441f83d10c..983efa4329 100644
--- a/third_party/nixpkgs/pkgs/development/lua-modules/generated-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/lua-modules/generated-packages.nix
@@ -1,4 +1,3 @@
-
/* pkgs/development/lua-modules/generated-packages.nix is an auto-generated file -- DO NOT EDIT!
Regenerate it with:
nixpkgs$ ./maintainers/scripts/update-luarocks-packages
@@ -6,11 +5,13 @@ nixpkgs$ ./maintainers/scripts/update-luarocks-packages
You can customize the generated packages in pkgs/development/lua-modules/overrides.nix
*/
-{ self, stdenv, lib, fetchurl, fetchgit, ... } @ args:
-self: super:
-with self;
+{ self, stdenv, lib, fetchurl, fetchgit, callPackage, ... } @ args:
+final: prev:
{
-alt-getopt = buildLuarocksPackage {
+alt-getopt = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "alt-getopt";
version = "0.8.0-1";
knownRockspec = (fetchurl {
@@ -30,7 +31,7 @@ alt-getopt = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -39,9 +40,12 @@ alt-getopt = buildLuarocksPackage {
maintainers = with lib.maintainers; [ arobyn ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-argparse = buildLuarocksPackage {
+argparse = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "argparse";
version = "scm-2";
@@ -58,7 +62,7 @@ argparse = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -66,9 +70,12 @@ argparse = buildLuarocksPackage {
description = "A feature-rich command-line argument parser";
license.fullName = "MIT";
};
-};
+}) {};
-basexx = buildLuarocksPackage {
+basexx = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "basexx";
version = "scm-0";
rockspecDir = "dist";
@@ -78,7 +85,7 @@ basexx = buildLuarocksPackage {
sha256 = "1x0d24aaj4zld4ifr7mi8zwrym5shsfphmwx5jzw2zg22r6xzlz1";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -86,9 +93,12 @@ basexx = buildLuarocksPackage {
description = "A base2, base16, base32, base64 and base85 library for Lua";
license.fullName = "MIT";
};
-};
+}) {};
-binaryheap = buildLuarocksPackage {
+binaryheap = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "binaryheap";
version = "0.4-1";
@@ -97,7 +107,7 @@ binaryheap = buildLuarocksPackage {
sha256 = "0f5l4nb5s7dycbkgh3rrl7pf0npcf9k6m2gr2bsn09fjyb3bdc8h";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -106,9 +116,12 @@ binaryheap = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-bit32 = buildLuarocksPackage {
+bit32 = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "bit32";
version = "5.3.0-1";
knownRockspec = (fetchurl {
@@ -128,7 +141,7 @@ bit32 = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -137,9 +150,12 @@ bit32 = buildLuarocksPackage {
maintainers = with lib.maintainers; [ lblasc ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-busted = buildLuarocksPackage {
+busted = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, lua_cliargs, luafilesystem, luasystem, dkjson, say, luassert, lua-term, penlight, mediator_lua
+}:
+buildLuarocksPackage {
pname = "busted";
version = "2.0.0-1";
knownRockspec = (fetchurl {
@@ -151,7 +167,7 @@ busted = buildLuarocksPackage {
sha256 = "1ps7b3f4diawfj637mibznaw4x08gn567pyni0m2s50hrnw4v8zx";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua lua_cliargs luafilesystem luasystem dkjson say luassert lua-term penlight mediator_lua ];
meta = {
@@ -159,13 +175,16 @@ busted = buildLuarocksPackage {
description = "Elegant Lua unit testing.";
license.fullName = "MIT ";
};
-};
+}) {};
-cassowary = buildLuarocksPackage {
+cassowary = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, penlight
+}:
+buildLuarocksPackage {
pname = "cassowary";
version = "2.3.1-2";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/cassowary-2.3.1-2.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cassowary-2.3.1-2.rockspec";
sha256 = "04y882f9ai1jhk0zwla2g0fvl56a75rwnxhsl9r3m0qa5i0ia1i5";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -181,7 +200,7 @@ cassowary = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua penlight ];
meta = {
@@ -190,9 +209,12 @@ cassowary = buildLuarocksPackage {
maintainers = with lib.maintainers; [ marsam alerque ];
license.fullName = "Apache 2";
};
-};
+}) {};
-compat53 = buildLuarocksPackage {
+compat53 = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "compat53";
version = "0.7-1";
knownRockspec = (fetchurl {
@@ -204,7 +226,7 @@ compat53 = buildLuarocksPackage {
sha256 = "1x3wv1qx7b2zlf3fh4q9pmi2xxkcdm024g7bf11rpv0yacnhran3";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -213,9 +235,12 @@ compat53 = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT";
};
-};
+}) {};
-cosmo = buildLuarocksPackage {
+cosmo = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lpeg
+}:
+buildLuarocksPackage {
pname = "cosmo";
version = "16.06.04-1";
knownRockspec = (fetchurl {
@@ -243,9 +268,11 @@ cosmo = buildLuarocksPackage {
maintainers = with lib.maintainers; [ marsam ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-coxpcall = buildLuarocksPackage {
+coxpcall = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit}:
+buildLuarocksPackage {
pname = "coxpcall";
version = "1.17.0-1";
knownRockspec = (fetchurl {
@@ -271,9 +298,12 @@ coxpcall = buildLuarocksPackage {
description = "Coroutine safe xpcall and pcall";
license.fullName = "MIT/X11";
};
-};
+}) {};
-cqueues = buildLuarocksPackage {
+cqueues = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "cqueues";
version = "20200726.52-0";
knownRockspec = (fetchurl {
@@ -285,7 +315,7 @@ cqueues = buildLuarocksPackage {
sha256 = "0lhd02ag3r1sxr2hx847rdjkddm04l1vf5234v5cz9bd4kfjw4cy";
};
- disabled = (lua.luaversion != "5.2");
+ disabled = with lua; (luaversion != "5.2");
propagatedBuildInputs = [ lua ];
meta = {
@@ -294,9 +324,12 @@ cqueues = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-cyrussasl = buildLuarocksPackage {
+cyrussasl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "cyrussasl";
version = "1.1.0-1";
@@ -313,7 +346,7 @@ cyrussasl = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -321,18 +354,21 @@ cyrussasl = buildLuarocksPackage {
description = "Cyrus SASL library for Lua 5.1+";
license.fullName = "BSD";
};
-};
+}) {};
-digestif = buildLuarocksPackage {
+digestif = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, lpeg
+}:
+buildLuarocksPackage {
pname = "digestif";
version = "dev-1";
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/astoff/digestif",
- "rev": "9f8f299cf7094d72edbd32a455869751246028b7",
- "date": "2021-09-25T14:32:42+02:00",
- "path": "/nix/store/ln1zx9cw2b7q4x5vzd6hv5nd01c1gsy3-digestif",
- "sha256": "1cf14m03jvfs1mwaywfgv759jh0ha3pxrnyj7jxjxlsj6cim89v0",
+ "rev": "505ca88a54012be5534654238baaa457f8446fed",
+ "date": "2021-10-06T21:27:45+02:00",
+ "path": "/nix/store/6wvpy0nsr5yf78by3dg8m2m0h0kf9xk4-digestif",
+ "sha256": "1prv5nqskvilyyx3z9b2jiz72lwpz2xcas57qjpbv6qq5l2si1xm",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -340,7 +376,7 @@ digestif = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.3");
+ disabled = with lua; (luaOlder "5.3");
propagatedBuildInputs = [ lua lpeg ];
meta = {
@@ -348,13 +384,16 @@ digestif = buildLuarocksPackage {
description = "A code analyzer for TeX";
license.fullName = "MIT";
};
-};
+}) {};
-dkjson = buildLuarocksPackage {
+dkjson = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "dkjson";
version = "2.5-3";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/dkjson-2.5-3.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/dkjson-2.5-3.rockspec";
sha256 = "18xngdzl2q207cil64aj81qi6qvj1g269pf07j5x4pbvamd6a1l3";
}).outPath;
src = fetchurl {
@@ -362,7 +401,7 @@ dkjson = buildLuarocksPackage {
sha256 = "14wanday1l7wj2lnpabbxw8rcsa0zbvcdi1w88rdr5gbsq3xwasm";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -370,13 +409,16 @@ dkjson = buildLuarocksPackage {
description = "David Kolf's JSON module for Lua";
license.fullName = "MIT/X11";
};
-};
+}) {};
-fifo = buildLuarocksPackage {
+fifo = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "fifo";
version = "0.2-0";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/fifo-0.2-0.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/fifo-0.2-0.rockspec";
sha256 = "0vr9apmai2cyra2n573nr3dyk929gzcs4nm1096jdxcixmvh2ymq";
}).outPath;
src = fetchurl {
@@ -391,18 +433,21 @@ fifo = buildLuarocksPackage {
description = "A lua library/'class' that implements a FIFO";
license.fullName = "MIT/X11";
};
-};
+}) {};
-gitsigns-nvim = buildLuarocksPackage {
+gitsigns-nvim = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, plenary-nvim
+}:
+buildLuarocksPackage {
pname = "gitsigns.nvim";
version = "scm-1";
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/lewis6991/gitsigns.nvim",
- "rev": "7e5c1a831f555dc398dd1564489e2b8a5c867754",
- "date": "2021-09-25T16:49:34+01:00",
- "path": "/nix/store/a1h8xxb9w4kvvmq7q30m1ny2pq3zbmin-gitsigns.nvim",
- "sha256": "02kssw0lpprf9k3il6gfd00gj9fbjbksipa4f6xqkgfdq5c9l9fr",
+ "rev": "552f114caeaec4ce97822cb55dfa7c7e5368136b",
+ "date": "2021-10-15T13:31:44+01:00",
+ "path": "/nix/store/40vkv3sc4h6gh9ac88k7pilszxmy38yv-gitsigns.nvim",
+ "sha256": "0qdafm3arjf8bcqpvv085dwzbikad3sr3xzvrn3gfa0dsls8pg6q",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -410,7 +455,7 @@ gitsigns-nvim = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (lua.luaversion != "5.1");
+ disabled = with lua; (luaversion != "5.1");
propagatedBuildInputs = [ lua plenary-nvim ];
meta = {
@@ -418,9 +463,12 @@ gitsigns-nvim = buildLuarocksPackage {
description = "Git signs written in pure lua";
license.fullName = "MIT/X11";
};
-};
+}) {};
-http = buildLuarocksPackage {
+http = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, compat53, bit32, cqueues, luaossl, basexx, lpeg, lpeg_patterns, binaryheap, fifo
+}:
+buildLuarocksPackage {
pname = "http";
version = "0.3-0";
knownRockspec = (fetchurl {
@@ -432,7 +480,7 @@ http = buildLuarocksPackage {
sha256 = "13xyj8qx42mzn1z4lwwdfd7ha06a720q4b7d04ir6vvp2fwp3s4q";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua compat53 bit32 cqueues luaossl basexx lpeg lpeg_patterns binaryheap fifo ];
meta = {
@@ -441,9 +489,12 @@ http = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vcunat ];
license.fullName = "MIT";
};
-};
+}) {};
-inspect = buildLuarocksPackage {
+inspect = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "inspect";
version = "3.1.1-0";
knownRockspec = (fetchurl {
@@ -455,7 +506,7 @@ inspect = buildLuarocksPackage {
sha256 = "1nz0yqhkd0nkymghrj99gb2id40g50drh4a96g3v5k7h1sbg94h2";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -463,9 +514,12 @@ inspect = buildLuarocksPackage {
description = "Lua table visualizer, ideal for debugging";
license.fullName = "MIT ";
};
-};
+}) {};
-ldbus = buildLuarocksPackage {
+ldbus = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "ldbus";
version = "scm-0";
knownRockspec = (fetchurl {
@@ -485,7 +539,7 @@ ldbus = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -493,9 +547,12 @@ ldbus = buildLuarocksPackage {
description = "A Lua library to access dbus.";
license.fullName = "MIT/X11";
};
-};
+}) {};
-ldoc = buildLuarocksPackage {
+ldoc = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, penlight, markdown
+}:
+buildLuarocksPackage {
pname = "ldoc";
version = "scm-3";
@@ -519,9 +576,12 @@ ldoc = buildLuarocksPackage {
description = "A Lua Documentation Tool";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lgi = buildLuarocksPackage {
+lgi = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lgi";
version = "0.9.2-1";
knownRockspec = (fetchurl {
@@ -541,7 +601,7 @@ lgi = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -549,9 +609,12 @@ lgi = buildLuarocksPackage {
description = "Lua bindings to GObject libraries";
license.fullName = "MIT/X11";
};
-};
+}) {};
-linenoise = buildLuarocksPackage {
+linenoise = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "linenoise";
version = "0.9-1";
@@ -560,7 +623,7 @@ linenoise = buildLuarocksPackage {
sha256 = "177h6gbq89arwiwxah9943i8hl5gvd9wivnd1nhmdl7d8x0dn76c";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -568,9 +631,12 @@ linenoise = buildLuarocksPackage {
description = "A binding for the linenoise command line library";
license.fullName = "MIT/X11";
};
-};
+}) {};
-ljsyscall = buildLuarocksPackage {
+ljsyscall = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "ljsyscall";
version = "0.12-1";
knownRockspec = (fetchurl {
@@ -582,7 +648,7 @@ ljsyscall = buildLuarocksPackage {
sha256 = "1w9g36nhxv92cypjia7igg1xpfrn3dbs3hfy6gnnz5mx14v50abf";
};
- disabled = (lua.luaversion != "5.1");
+ disabled = with lua; (luaversion != "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -591,13 +657,16 @@ ljsyscall = buildLuarocksPackage {
maintainers = with lib.maintainers; [ lblasc ];
license.fullName = "MIT";
};
-};
+}) {};
-lpeg = buildLuarocksPackage {
+lpeg = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lpeg";
version = "1.0.2-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lpeg-1.0.2-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lpeg-1.0.2-1.rockspec";
sha256 = "08a8p5cwlwpjawk8sczb7bq2whdsng4mmhphahyklf1bkvl2li89";
}).outPath;
src = fetchurl {
@@ -605,7 +674,7 @@ lpeg = buildLuarocksPackage {
sha256 = "1zjzl7acvcdavmcg5l7wi12jd4rh95q9pl5aiww7hv0v0mv6bmj8";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -614,9 +683,12 @@ lpeg = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vyp ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-lpeg_patterns = buildLuarocksPackage {
+lpeg_patterns = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, lpeg
+}:
+buildLuarocksPackage {
pname = "lpeg_patterns";
version = "0.5-0";
knownRockspec = (fetchurl {
@@ -635,9 +707,12 @@ lpeg_patterns = buildLuarocksPackage {
description = "a collection of LPEG patterns";
license.fullName = "MIT";
};
-};
+}) {};
-lpeglabel = buildLuarocksPackage {
+lpeglabel = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lpeglabel";
version = "1.6.0-1";
knownRockspec = (fetchurl {
@@ -649,7 +724,7 @@ lpeglabel = buildLuarocksPackage {
sha256 = "1i02lsxj20iygqm8fy6dih1gh21lqk5qj1mv14wlrkaywnv35wcv";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -657,13 +732,16 @@ lpeglabel = buildLuarocksPackage {
description = "Parsing Expression Grammars For Lua with Labeled Failures";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lpty = buildLuarocksPackage {
+lpty = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lpty";
version = "1.2.2-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/lpty-1.2.2-1.rockspec";
+ url = "https://luarocks.org/lpty-1.2.2-1.rockspec";
sha256 = "04af4mhiqrw3br4qzz7yznw9zy2m50wddwzgvzkvhd99ng71fkzg";
}).outPath;
src = fetchurl {
@@ -671,7 +749,7 @@ lpty = buildLuarocksPackage {
sha256 = "071mvz79wi9vr6hvrnb1rv19lqp1bh2fi742zkpv2sm1r9gy5rav";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -679,9 +757,12 @@ lpty = buildLuarocksPackage {
description = "A simple facility for lua to control other programs via PTYs.";
license.fullName = "MIT";
};
-};
+}) {};
-lrexlib-gnu = buildLuarocksPackage {
+lrexlib-gnu = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lrexlib-gnu";
version = "2.9.1-1";
knownRockspec = (fetchurl {
@@ -701,7 +782,7 @@ lrexlib-gnu = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -709,9 +790,12 @@ lrexlib-gnu = buildLuarocksPackage {
description = "Regular expression library binding (GNU flavour).";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lrexlib-pcre = buildLuarocksPackage {
+lrexlib-pcre = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lrexlib-pcre";
version = "2.9.1-1";
knownRockspec = (fetchurl {
@@ -731,7 +815,7 @@ lrexlib-pcre = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -740,9 +824,12 @@ lrexlib-pcre = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vyp ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-lrexlib-posix = buildLuarocksPackage {
+lrexlib-posix = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lrexlib-posix";
version = "2.9.1-1";
knownRockspec = (fetchurl {
@@ -762,7 +849,7 @@ lrexlib-posix = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -770,9 +857,12 @@ lrexlib-posix = buildLuarocksPackage {
description = "Regular expression library binding (POSIX flavour).";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lua-cjson = buildLuarocksPackage {
+lua-cjson = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-cjson";
version = "2.1.0.6-1";
knownRockspec = (fetchurl {
@@ -792,7 +882,7 @@ lua-cjson = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -800,9 +890,12 @@ lua-cjson = buildLuarocksPackage {
description = "A fast JSON encoding/parsing module";
license.fullName = "MIT";
};
-};
+}) {};
-lua-cmsgpack = buildLuarocksPackage {
+lua-cmsgpack = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-cmsgpack";
version = "0.4.0-0";
knownRockspec = (fetchurl {
@@ -822,7 +915,7 @@ lua-cmsgpack = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -830,9 +923,12 @@ lua-cmsgpack = buildLuarocksPackage {
description = "MessagePack C implementation and bindings for Lua 5.1/5.2/5.3";
license.fullName = "Two-clause BSD";
};
-};
+}) {};
-lua-iconv = buildLuarocksPackage {
+lua-iconv = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lua-iconv";
version = "7-3";
knownRockspec = (fetchurl {
@@ -844,7 +940,7 @@ lua-iconv = buildLuarocksPackage {
sha256 = "02dg5x79fg5mwsycr0fj6w04zykdpiki9xjswkkwzdalqwaikny1";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -852,9 +948,12 @@ lua-iconv = buildLuarocksPackage {
description = "Lua binding to the iconv";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lua-lsp = buildLuarocksPackage {
+lua-lsp = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, dkjson, lpeglabel, inspect
+}:
+buildLuarocksPackage {
pname = "lua-lsp";
version = "0.1.0-2";
knownRockspec = (fetchurl {
@@ -874,7 +973,7 @@ lua-lsp = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua dkjson lpeglabel inspect ];
meta = {
@@ -882,9 +981,12 @@ lua-lsp = buildLuarocksPackage {
description = "A Language Server implementation for lua, the language";
license.fullName = "MIT";
};
-};
+}) {};
-lua-messagepack = buildLuarocksPackage {
+lua-messagepack = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lua-messagepack";
version = "0.5.2-1";
knownRockspec = (fetchurl {
@@ -896,7 +998,7 @@ lua-messagepack = buildLuarocksPackage {
sha256 = "1jgi944d0vx4zs9lrphys9pw0wrsibip93sh141qjwymrjyjg1nc";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -904,9 +1006,12 @@ lua-messagepack = buildLuarocksPackage {
description = "a pure Lua implementation of the MessagePack serialization format";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lua-resty-http = buildLuarocksPackage {
+lua-resty-http = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-resty-http";
version = "0.16.1-0";
knownRockspec = (fetchurl {
@@ -926,7 +1031,7 @@ lua-resty-http = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -934,9 +1039,12 @@ lua-resty-http = buildLuarocksPackage {
description = "Lua HTTP client cosocket driver for OpenResty / ngx_lua.";
license.fullName = "2-clause BSD";
};
-};
+}) {};
-lua-resty-jwt = buildLuarocksPackage {
+lua-resty-jwt = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, lua-resty-openssl
+}:
+buildLuarocksPackage {
pname = "lua-resty-jwt";
version = "0.2.3-0";
knownRockspec = (fetchurl {
@@ -956,7 +1064,7 @@ lua-resty-jwt = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua lua-resty-openssl ];
meta = {
@@ -964,9 +1072,12 @@ lua-resty-jwt = buildLuarocksPackage {
description = "JWT for ngx_lua and LuaJIT.";
license.fullName = "Apache License Version 2";
};
-};
+}) {};
-lua-resty-openidc = buildLuarocksPackage {
+lua-resty-openidc = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, lua-resty-http, lua-resty-session, lua-resty-jwt
+}:
+buildLuarocksPackage {
pname = "lua-resty-openidc";
version = "1.7.4-1";
knownRockspec = (fetchurl {
@@ -986,7 +1097,7 @@ lua-resty-openidc = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua lua-resty-http lua-resty-session lua-resty-jwt ];
meta = {
@@ -994,13 +1105,15 @@ lua-resty-openidc = buildLuarocksPackage {
description = "A library for NGINX implementing the OpenID Connect Relying Party (RP) and the OAuth 2.0 Resource Server (RS) functionality";
license.fullName = "Apache 2.0";
};
-};
+}) {};
-lua-resty-openssl = buildLuarocksPackage {
+lua-resty-openssl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit}:
+buildLuarocksPackage {
pname = "lua-resty-openssl";
version = "0.7.5-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/lua-resty-openssl-0.7.5-1.rockspec";
+ url = "https://luarocks.org/lua-resty-openssl-0.7.5-1.rockspec";
sha256 = "13v14in9cgmjgarmy6br9629ns1qlhw7a30c061y6gncjannnv6y";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1022,9 +1135,12 @@ lua-resty-openssl = buildLuarocksPackage {
description = "No summary";
license.fullName = "BSD";
};
-};
+}) {};
-lua-resty-session = buildLuarocksPackage {
+lua-resty-session = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-resty-session";
version = "3.8-1";
knownRockspec = (fetchurl {
@@ -1044,7 +1160,7 @@ lua-resty-session = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1052,13 +1168,15 @@ lua-resty-session = buildLuarocksPackage {
description = "Session Library for OpenResty – Flexible and Secure";
license.fullName = "BSD";
};
-};
+}) {};
-lua-term = buildLuarocksPackage {
+lua-term = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl}:
+buildLuarocksPackage {
pname = "lua-term";
version = "0.7-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lua-term-0.7-1.rockspec";
+ url = "https://luafr.org/luarocks/lua-term-0.7-1.rockspec";
sha256 = "0r9g5jw7pqr1dyj6w58dqlr7y7l0jp077n8nnji4phf10biyrvg2";
}).outPath;
src = fetchurl {
@@ -1072,9 +1190,12 @@ lua-term = buildLuarocksPackage {
description = "Terminal functions for Lua";
license.fullName = "MIT/X11";
};
-};
+}) {};
-lua-toml = buildLuarocksPackage {
+lua-toml = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-toml";
version = "2.0-1";
knownRockspec = (fetchurl {
@@ -1094,7 +1215,7 @@ lua-toml = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1102,13 +1223,16 @@ lua-toml = buildLuarocksPackage {
description = "toml decoder/encoder for Lua";
license.fullName = "MIT";
};
-};
+}) {};
-lua-yajl = buildLuarocksPackage {
+lua-yajl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-yajl";
version = "2.0-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lua-yajl-2.0-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lua-yajl-2.0-1.rockspec";
sha256 = "0h600zgq5qc9z3cid1kr35q3qb98alg0m3qf0a3mfj33hya6pcxp";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1124,7 +1248,7 @@ lua-yajl = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1133,9 +1257,12 @@ lua-yajl = buildLuarocksPackage {
maintainers = with lib.maintainers; [ pstn ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-lua-zlib = buildLuarocksPackage {
+lua-zlib = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "lua-zlib";
version = "1.2-1";
knownRockspec = (fetchurl {
@@ -1155,7 +1282,7 @@ lua-zlib = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1164,9 +1291,12 @@ lua-zlib = buildLuarocksPackage {
maintainers = with lib.maintainers; [ koral ];
license.fullName = "MIT";
};
-};
+}) {};
-lua_cliargs = buildLuarocksPackage {
+lua_cliargs = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lua_cliargs";
version = "3.0-2";
@@ -1175,7 +1305,7 @@ lua_cliargs = buildLuarocksPackage {
sha256 = "0vhpgmy9a8wlxp8a15pnfqfk0aj7pyyb5m41nnfxynx580a6y7cp";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1183,9 +1313,12 @@ lua_cliargs = buildLuarocksPackage {
description = "A command-line argument parser.";
license.fullName = "MIT ";
};
-};
+}) {};
-luabitop = buildLuarocksPackage {
+luabitop = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luabitop";
version = "1.0.2-3";
@@ -1202,7 +1335,7 @@ luabitop = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.3");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.3");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1210,21 +1343,24 @@ luabitop = buildLuarocksPackage {
description = "Lua Bit Operations Module";
license.fullName = "MIT/X license";
};
-};
+}) {};
-luacheck = buildLuarocksPackage {
+luacheck = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, argparse, luafilesystem
+}:
+buildLuarocksPackage {
pname = "luacheck";
- version = "0.24.0-2";
+ version = "0.25.0-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/luacheck-0.24.0-2.rockspec";
- sha256 = "1x8n7w1mdr1bmmbw38syzi2612yyd7bbv4j2hnlk2k76qfcvkhf3";
+ url = "https://luarocks.org/luacheck-0.25.0-1.rockspec";
+ sha256 = "11mvbpnykibg0dx9sdh5x9gpvrhkmvrw76qvjz337x83f8gmvy91";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/luarocks/luacheck.git",
- "rev": "6651c20d8495c380a49ca81662fcfd1ade6b2411",
- "date": "2020-08-20T19:21:52-03:00",
- "path": "/nix/store/8r4x8snxp0kjabn9bsxwh62pfczd8wma-luacheck",
- "sha256": "08jsqibksdvpl6mvf8d6rlh5pii78hqm3fkhbkgzrs6k8kk5a7lf",
+ "rev": "abf7386a892df4ce566fef9e4640ddbf9af78411",
+ "date": "2021-08-10T12:19:20-03:00",
+ "path": "/nix/store/9cdlf6c3y0087qwh48ky8ysxxx3lirlj-luacheck",
+ "sha256": "1ymfkr0qmg6idrrxf9x6mfq14skag8h09kl2qlalwiykicrdljs1",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -1232,7 +1368,7 @@ luacheck = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua argparse luafilesystem ];
meta = {
@@ -1240,13 +1376,16 @@ luacheck = buildLuarocksPackage {
description = "A static analyzer and a linter for Lua";
license.fullName = "MIT";
};
-};
+}) {};
-luacov = buildLuarocksPackage {
+luacov = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luacov";
version = "0.15.0-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luacov-0.15.0-1.rockspec";
+ url = "https://luafr.org/luarocks/luacov-0.15.0-1.rockspec";
sha256 = "18byfl23c73pazi60hsx0vd74hqq80mzixab76j36cyn8k4ni9db";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1262,7 +1401,7 @@ luacov = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1270,9 +1409,12 @@ luacov = buildLuarocksPackage {
description = "Coverage analysis tool for Lua scripts";
license.fullName = "MIT";
};
-};
+}) {};
-luadbi = buildLuarocksPackage {
+luadbi = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luadbi";
version = "0.7.2-1";
knownRockspec = (fetchurl {
@@ -1292,7 +1434,7 @@ luadbi = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1300,13 +1442,16 @@ luadbi = buildLuarocksPackage {
description = "Database abstraction layer";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luadbi-mysql = buildLuarocksPackage {
+luadbi-mysql = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luadbi
+}:
+buildLuarocksPackage {
pname = "luadbi-mysql";
version = "0.7.2-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luadbi-mysql-0.7.2-1.rockspec";
+ url = "https://luarocks.org/luadbi-mysql-0.7.2-1.rockspec";
sha256 = "0gnyqnvcfif06rzzrdw6w6hchp4jrjiwm0rmfx2r8ljchj2bvml5";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1322,7 +1467,7 @@ luadbi-mysql = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua luadbi ];
meta = {
@@ -1330,13 +1475,16 @@ luadbi-mysql = buildLuarocksPackage {
description = "Database abstraction layer";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luadbi-postgresql = buildLuarocksPackage {
+luadbi-postgresql = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luadbi
+}:
+buildLuarocksPackage {
pname = "luadbi-postgresql";
version = "0.7.2-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/luadbi-postgresql-0.7.2-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luadbi-postgresql-0.7.2-1.rockspec";
sha256 = "07rx4agw4hjyzf8157apdwfqh9s26nqndmkr3wm7v09ygjvdjiix";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1352,7 +1500,7 @@ luadbi-postgresql = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua luadbi ];
meta = {
@@ -1360,9 +1508,12 @@ luadbi-postgresql = buildLuarocksPackage {
description = "Database abstraction layer";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luadbi-sqlite3 = buildLuarocksPackage {
+luadbi-sqlite3 = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luadbi
+}:
+buildLuarocksPackage {
pname = "luadbi-sqlite3";
version = "0.7.2-1";
knownRockspec = (fetchurl {
@@ -1382,7 +1533,7 @@ luadbi-sqlite3 = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua luadbi ];
meta = {
@@ -1390,9 +1541,12 @@ luadbi-sqlite3 = buildLuarocksPackage {
description = "Database abstraction layer";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luaepnf = buildLuarocksPackage {
+luaepnf = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, lpeg
+}:
+buildLuarocksPackage {
pname = "luaepnf";
version = "0.3-2";
knownRockspec = (fetchurl {
@@ -1412,7 +1566,7 @@ luaepnf = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua lpeg ];
meta = {
@@ -1420,9 +1574,12 @@ luaepnf = buildLuarocksPackage {
description = "Extended PEG Notation Format (easy grammars for LPeg)";
license.fullName = "MIT";
};
-};
+}) {};
-luaevent = buildLuarocksPackage {
+luaevent = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luaevent";
version = "0.4.6-1";
knownRockspec = (fetchurl {
@@ -1434,7 +1591,7 @@ luaevent = buildLuarocksPackage {
sha256 = "0pbh315d3p7hxgzmbhphkcldxv2dadbka96131b8j5914nxvl4nx";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1442,9 +1599,12 @@ luaevent = buildLuarocksPackage {
description = "libevent binding for Lua";
license.fullName = "MIT";
};
-};
+}) {};
-luaexpat = buildLuarocksPackage {
+luaexpat = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luaexpat";
version = "1.3.0-1";
knownRockspec = (fetchurl {
@@ -1456,7 +1616,7 @@ luaexpat = buildLuarocksPackage {
sha256 = "1hvxqngn0wf5642i5p3vcyhg3pmp102k63s9ry4jqyyqc1wkjq6h";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1465,9 +1625,12 @@ luaexpat = buildLuarocksPackage {
maintainers = with lib.maintainers; [ arobyn flosse ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-luaffi = buildLuarocksPackage {
+luaffi = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luaffi";
version = "scm-1";
knownRockspec = (fetchurl {
@@ -1487,7 +1650,7 @@ luaffi = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1495,9 +1658,12 @@ luaffi = buildLuarocksPackage {
description = "FFI library for calling C functions from lua";
license.fullName = "BSD";
};
-};
+}) {};
-luafilesystem = buildLuarocksPackage {
+luafilesystem = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luafilesystem";
version = "1.7.0-2";
knownRockspec = (fetchurl {
@@ -1517,7 +1683,7 @@ luafilesystem = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1526,9 +1692,12 @@ luafilesystem = buildLuarocksPackage {
maintainers = with lib.maintainers; [ flosse ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-lualogging = buildLuarocksPackage {
+lualogging = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, luasocket
+}:
+buildLuarocksPackage {
pname = "lualogging";
version = "1.5.2-1";
knownRockspec = (fetchurl {
@@ -1555,9 +1724,12 @@ lualogging = buildLuarocksPackage {
description = "A simple API to use logging features";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luaossl = buildLuarocksPackage {
+luaossl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luaossl";
version = "20200709-0";
knownRockspec = (fetchurl {
@@ -1576,9 +1748,12 @@ luaossl = buildLuarocksPackage {
description = "Most comprehensive OpenSSL module in the Lua universe.";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luaposix = buildLuarocksPackage {
+luaposix = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, bit32, lua
+}:
+buildLuarocksPackage {
pname = "luaposix";
version = "34.1.1-1";
knownRockspec = (fetchurl {
@@ -1590,7 +1765,7 @@ luaposix = buildLuarocksPackage {
sha256 = "1xqx764ji054jphxdhkynsmwzqzkfgxqfizxkf70za6qfrvnl3yh";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ bit32 lua ];
meta = {
@@ -1599,9 +1774,12 @@ luaposix = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vyp lblasc ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-luarepl = buildLuarocksPackage {
+luarepl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luarepl";
version = "0.9-1";
knownRockspec = (fetchurl {
@@ -1613,7 +1791,7 @@ luarepl = buildLuarocksPackage {
sha256 = "04xka7b84d9mrz3gyf8ywhw08xp65v8jrnzs8ry8k9540aqs721w";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1621,9 +1799,12 @@ luarepl = buildLuarocksPackage {
description = "A reusable REPL component for Lua, written in Lua";
license.fullName = "MIT/X11";
};
-};
+}) {};
-luasec = buildLuarocksPackage {
+luasec = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luasocket
+}:
+buildLuarocksPackage {
pname = "luasec";
version = "1.0.2-1";
knownRockspec = (fetchurl {
@@ -1643,7 +1824,7 @@ luasec = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua luasocket ];
meta = {
@@ -1652,13 +1833,16 @@ luasec = buildLuarocksPackage {
maintainers = with lib.maintainers; [ flosse ];
license.fullName = "MIT";
};
-};
+}) {};
-luasocket = buildLuarocksPackage {
+luasocket = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luasocket";
version = "3.0rc1-2";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/luasocket-3.0rc1-2.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luasocket-3.0rc1-2.rockspec";
sha256 = "17fbkihp4zypv5wwgxz8dnghj37pf5bhpi2llg4gbljp1bl2f42c";
}).outPath;
src = fetchurl {
@@ -1666,7 +1850,7 @@ luasocket = buildLuarocksPackage {
sha256 = "0x0fg07cg08ybgkpzif7zmzaaq5ga979rxwd9rj95kfws9bbrl0y";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1674,9 +1858,12 @@ luasocket = buildLuarocksPackage {
description = "Network support for the Lua language";
license.fullName = "MIT";
};
-};
+}) {};
-luasql-sqlite3 = buildLuarocksPackage {
+luasql-sqlite3 = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luasql-sqlite3";
version = "2.6.0-1";
knownRockspec = (fetchurl {
@@ -1685,10 +1872,10 @@ luasql-sqlite3 = buildLuarocksPackage {
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/keplerproject/luasql.git",
- "rev": "69f68a858134d6adbe9b65a902dcd3f60cd6a7ce",
- "date": "2021-08-27T15:17:22-03:00",
- "path": "/nix/store/2374agarn72cnlnk2vripfy1zz2y50la-luasql",
- "sha256": "13xs1g67d2p69x4wzxk1h97xh25388h0kkh9bjgw3l1yss9zlxhx",
+ "rev": "ce22164f63783afac9c644fd37c231e56fc097cb",
+ "date": "2021-10-14T09:38:24-03:00",
+ "path": "/nix/store/h8r8axcc76x7y6gwc2jzsmr7h2lqgbxa-luasql",
+ "sha256": "10gq3x7vqkafvfk9fs4039rl1xhnqpl2v60z4qpd96wbcy205gnk",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -1696,7 +1883,7 @@ luasql-sqlite3 = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1705,9 +1892,12 @@ luasql-sqlite3 = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vyp ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-luassert = buildLuarocksPackage {
+luassert = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, say
+}:
+buildLuarocksPackage {
pname = "luassert";
version = "1.8.0-0";
knownRockspec = (fetchurl {
@@ -1719,7 +1909,7 @@ luassert = buildLuarocksPackage {
sha256 = "0xlwlb32215524bg33svp1ci8mdvh9wykchl8dkhihpxcd526mar";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua say ];
meta = {
@@ -1727,9 +1917,12 @@ luassert = buildLuarocksPackage {
description = "Lua Assertions Extension";
license.fullName = "MIT ";
};
-};
+}) {};
-luasystem = buildLuarocksPackage {
+luasystem = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luasystem";
version = "0.2.1-0";
knownRockspec = (fetchurl {
@@ -1741,7 +1934,7 @@ luasystem = buildLuarocksPackage {
sha256 = "150bbklchh02gsvpngv56xrrlxxvwpqwrh0yy6z95fnvks7gd0qb";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1749,9 +1942,12 @@ luasystem = buildLuarocksPackage {
description = "Platform independent system calls for Lua.";
license.fullName = "MIT ";
};
-};
+}) {};
-luautf8 = buildLuarocksPackage {
+luautf8 = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luautf8";
version = "0.1.3-1";
knownRockspec = (fetchurl {
@@ -1763,7 +1959,7 @@ luautf8 = buildLuarocksPackage {
sha256 = "02rf8jmazmi8rp3i5v4jsz0d7mrf1747qszsl8i2hv1sl0ik92r0";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1772,9 +1968,12 @@ luautf8 = buildLuarocksPackage {
maintainers = with lib.maintainers; [ pstn ];
license.fullName = "MIT";
};
-};
+}) {};
-luazip = buildLuarocksPackage {
+luazip = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "luazip";
version = "1.2.7-1";
knownRockspec = (fetchurl {
@@ -1794,7 +1993,7 @@ luazip = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1802,9 +2001,12 @@ luazip = buildLuarocksPackage {
description = "Library for reading files inside zip files";
license.fullName = "MIT";
};
-};
+}) {};
-luuid = buildLuarocksPackage {
+luuid = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luuid";
version = "20120509-2";
knownRockspec = (fetchurl {
@@ -1816,7 +2018,7 @@ luuid = buildLuarocksPackage {
sha256 = "1bfkj613d05yps3fivmz0j1bxf2zkg9g1yl0ifffgw0vy00hpnvm";
};
- disabled = (luaOlder "5.2") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.2") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1824,9 +2026,12 @@ luuid = buildLuarocksPackage {
description = "A library for UUID generation";
license.fullName = "Public domain";
};
-};
+}) {};
-luv = buildLuarocksPackage {
+luv = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "luv";
version = "1.42.0-0";
knownRockspec = (fetchurl {
@@ -1838,7 +2043,7 @@ luv = buildLuarocksPackage {
sha256 = "0dkzjkkm0h516ag6sfz5iji761y9slrcfw325f39zkda1sfql8mm";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1846,13 +2051,16 @@ luv = buildLuarocksPackage {
description = "Bare libuv bindings for lua";
license.fullName = "Apache 2.0";
};
-};
+}) {};
-lyaml = buildLuarocksPackage {
+lyaml = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "lyaml";
version = "6.2.7-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lyaml-6.2.7-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lyaml-6.2.7-1.rockspec";
sha256 = "0m5bnzg24nyk35gcn4rydgzk0ysk1f6rslxwxd0w3drl1bg64zja";
}).outPath;
src = fetchurl {
@@ -1860,7 +2068,7 @@ lyaml = buildLuarocksPackage {
sha256 = "165mr3krf8g8070j4ax9z0j2plfbdwb8x2zk2hydpqaqa0kcdb0c";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1869,9 +2077,12 @@ lyaml = buildLuarocksPackage {
maintainers = with lib.maintainers; [ lblasc ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-markdown = buildLuarocksPackage {
+markdown = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "markdown";
version = "0.33-1";
knownRockspec = (fetchurl {
@@ -1891,7 +2102,7 @@ markdown = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1899,9 +2110,12 @@ markdown = buildLuarocksPackage {
description = "Markdown text-to-html markup system.";
license.fullName = "MIT/X11";
};
-};
+}) {};
-mediator_lua = buildLuarocksPackage {
+mediator_lua = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "mediator_lua";
version = "1.1.2-0";
knownRockspec = (fetchurl {
@@ -1913,7 +2127,7 @@ mediator_lua = buildLuarocksPackage {
sha256 = "16zzzhiy3y35v8advmlkzpryzxv5vji7727vwkly86q8sagqbxgs";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -1921,9 +2135,12 @@ mediator_lua = buildLuarocksPackage {
description = "Event handling through channels";
license.fullName = "MIT ";
};
-};
+}) {};
-moonscript = buildLuarocksPackage {
+moonscript = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, lpeg, alt-getopt, luafilesystem
+}:
+buildLuarocksPackage {
pname = "moonscript";
version = "0.5.0-1";
knownRockspec = (fetchurl {
@@ -1943,7 +2160,7 @@ moonscript = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua lpeg alt-getopt luafilesystem ];
meta = {
@@ -1952,29 +2169,34 @@ moonscript = buildLuarocksPackage {
maintainers = with lib.maintainers; [ arobyn ];
license.fullName = "MIT";
};
-};
+}) {};
-mpack = buildLuarocksPackage {
+mpack = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl}:
+buildLuarocksPackage {
pname = "mpack";
- version = "1.0.8-0";
+ version = "1.0.9-0";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/mpack-1.0.8-0.rockspec";
- sha256 = "0hhpamw2bydnfrild274faaan6v48918nhslnw3kvi9y36b4i5ha";
+ url = "https://luarocks.org/mpack-1.0.9-0.rockspec";
+ sha256 = "1v10kmw3qw559bbm142z40ib26bwvcyi64qjrk0vf8v6n1mx8wcn";
}).outPath;
src = fetchurl {
- url = "https://github.com/libmpack/libmpack-lua/releases/download/1.0.8/libmpack-lua-1.0.8.tar.gz";
- sha256 = "1sf93ffx7a3y1waknc4994l2yrxilrlf3hcp2cj2cvxmpm5inszd";
+ url = "https://github.com/libmpack/libmpack-lua/releases/download/1.0.9/libmpack-lua-1.0.9.tar.gz";
+ sha256 = "17lyjmnbychacwahqgs128nb00xky777g7zw5wf20vrzkiq7xl0g";
};
meta = {
- homepage = "https://github.com/libmpack/libmpack-lua/releases/download/1.0.8/libmpack-lua-1.0.8.tar.gz";
+ homepage = "https://github.com/libmpack/libmpack-lua";
description = "Lua binding to libmpack";
license.fullName = "MIT";
};
-};
+}) {};
-nvim-client = buildLuarocksPackage {
+nvim-client = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, mpack, luv, coxpcall
+}:
+buildLuarocksPackage {
pname = "nvim-client";
version = "0.2.2-1";
@@ -1983,7 +2205,7 @@ nvim-client = buildLuarocksPackage {
sha256 = "1h736im524lq0vwlpihv9b317jarpkf3j13a25xl5qq8y8asm8mr";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua mpack luv coxpcall ];
meta = {
@@ -1991,9 +2213,12 @@ nvim-client = buildLuarocksPackage {
description = "Lua client to Nvim";
license.fullName = "Apache";
};
-};
+}) {};
-penlight = buildLuarocksPackage {
+penlight = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luafilesystem
+}:
+buildLuarocksPackage {
pname = "penlight";
version = "dev-1";
@@ -2010,10 +2235,8 @@ penlight = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua luafilesystem ];
- checkInputs = [ busted busted ];
- doCheck = false;
meta = {
homepage = "https://lunarmodules.github.io/penlight";
@@ -2021,18 +2244,21 @@ penlight = buildLuarocksPackage {
maintainers = with lib.maintainers; [ alerque ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-plenary-nvim = buildLuarocksPackage {
+plenary-nvim = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, luassert
+}:
+buildLuarocksPackage {
pname = "plenary.nvim";
version = "scm-1";
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/nvim-lua/plenary.nvim",
- "rev": "8c6cc07a68b65eb707be44598f0084647d495978",
- "date": "2021-09-26T16:13:25+02:00",
- "path": "/nix/store/j8hmr48blm4brq8rqv7b9m08vmalg8sp-plenary.nvim",
- "sha256": "05h5n7jj33y9vs6gc8hqlfd628j6i33s3c8fmfl6ahxwfygx2wpd",
+ "rev": "80bb2b9bb74bdca38a46480b6f2e15af990406e4",
+ "date": "2021-10-06T19:20:08+02:00",
+ "path": "/nix/store/mw4r562qxr7giy1n43iylp3qb8ch0jqs-plenary.nvim",
+ "sha256": "11akcpxcp4m997a2y76ajknnmsifac2hj4nq9i4a8b1j08bxinim",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -2040,7 +2266,7 @@ plenary-nvim = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua luassert ];
meta = {
@@ -2048,9 +2274,12 @@ plenary-nvim = buildLuarocksPackage {
description = "lua functions you don't want to write ";
license.fullName = "MIT/X11";
};
-};
+}) {};
-rapidjson = buildLuarocksPackage {
+rapidjson = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "rapidjson";
version = "0.7.1-1";
@@ -2067,7 +2296,7 @@ rapidjson = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -2075,9 +2304,12 @@ rapidjson = buildLuarocksPackage {
description = "Json module based on the very fast RapidJSON.";
license.fullName = "MIT";
};
-};
+}) {};
-readline = buildLuarocksPackage {
+readline = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua, luaposix
+}:
+buildLuarocksPackage {
pname = "readline";
version = "3.0-0";
knownRockspec = (fetchurl {
@@ -2089,7 +2321,7 @@ readline = buildLuarocksPackage {
sha256 = "1rr2b7q8w3i4bm1i634sd6kzhw6v1fpnh53mj09af6xdq1rfhr5n";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua luaposix ];
meta = {
@@ -2097,9 +2329,12 @@ readline = buildLuarocksPackage {
description = "Interface to the readline library";
license.fullName = "MIT/X11";
};
-};
+}) {};
-say = buildLuarocksPackage {
+say = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "say";
version = "1.3-1";
@@ -2108,7 +2343,7 @@ say = buildLuarocksPackage {
sha256 = "1jh76mxq9dcmv7kps2spwcc6895jmj2sf04i4y9idaxlicvwvs13";
};
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
@@ -2116,9 +2351,12 @@ say = buildLuarocksPackage {
description = "Lua String Hashing/Indexing Library";
license.fullName = "MIT ";
};
-};
+}) {};
-std-_debug = buildLuarocksPackage {
+std-_debug = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "std._debug";
version = "git-1";
@@ -2135,7 +2373,7 @@ std-_debug = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -2143,9 +2381,12 @@ std-_debug = buildLuarocksPackage {
description = "Debug Hints Library";
license.fullName = "MIT/X11";
};
-};
+}) {};
-std-normalize = buildLuarocksPackage {
+std-normalize = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua, std-_debug
+}:
+buildLuarocksPackage {
pname = "std.normalize";
version = "git-1";
@@ -2162,7 +2403,7 @@ std-normalize = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua std-_debug ];
meta = {
@@ -2170,9 +2411,12 @@ std-normalize = buildLuarocksPackage {
description = "Normalized Lua Functions";
license.fullName = "MIT/X11";
};
-};
+}) {};
-stdlib = buildLuarocksPackage {
+stdlib = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchurl, lua
+}:
+buildLuarocksPackage {
pname = "stdlib";
version = "41.2.2-1";
knownRockspec = (fetchurl {
@@ -2184,7 +2428,7 @@ stdlib = buildLuarocksPackage {
sha256 = "0is8i8lk4qq4afnan0vj1bwr8brialyrva7cjy43alzgwdphwynx";
};
- disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -2193,9 +2437,12 @@ stdlib = buildLuarocksPackage {
maintainers = with lib.maintainers; [ vyp ];
license.fullName = "MIT/X11";
};
-};
+}) {};
-vstruct = buildLuarocksPackage {
+vstruct = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
+, fetchgit, lua
+}:
+buildLuarocksPackage {
pname = "vstruct";
version = "2.1.1-1";
@@ -2212,14 +2459,14 @@ vstruct = buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = (luaOlder "5.1");
+ disabled = with lua; (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = {
homepage = "https://github.com/ToxicFrog/vstruct";
description = "Lua library to manipulate binary data";
};
-};
+}) {};
}
diff --git a/third_party/nixpkgs/pkgs/development/lua-modules/lib.nix b/third_party/nixpkgs/pkgs/development/lua-modules/lib.nix
index 0d429b3ba6..bd952e7b8c 100644
--- a/third_party/nixpkgs/pkgs/development/lua-modules/lib.nix
+++ b/third_party/nixpkgs/pkgs/development/lua-modules/lib.nix
@@ -5,8 +5,20 @@ let
in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules));
# Check whether a derivation provides a lua module.
hasLuaModule = drv: drv ? luaModule;
+
+
+ /*
+ Use this to override the arguments passed to buildLuarocksPackage
+ */
+ overrideLuarocks = drv: f: (drv.override (args: args // {
+ buildLuarocksPackage = drv: (args.buildLuarocksPackage drv).override f;
+ })) // {
+ overrideScope = scope: overrideLuarocks (drv.overrideScope scope) f;
+ };
+
in
rec {
+ inherit overrideLuarocks;
inherit hasLuaModule requiredLuaModules;
luaPathList = [
diff --git a/third_party/nixpkgs/pkgs/development/lua-modules/overrides.nix b/third_party/nixpkgs/pkgs/development/lua-modules/overrides.nix
index 399dbd8269..f01fb7df11 100644
--- a/third_party/nixpkgs/pkgs/development/lua-modules/overrides.nix
+++ b/third_party/nixpkgs/pkgs/development/lua-modules/overrides.nix
@@ -1,11 +1,11 @@
-{ pkgs, ... }:
-self: super:
-with super;
+{ pkgs }:
+final: prev:
+with prev;
{
##########################################3
#### manual fixes for generated packages
##########################################3
- bit32 = super.bit32.override({
+ bit32 = prev.bit32.overrideAttrs(oa: {
# Small patch in order to no longer redefine a Lua 5.2 function that Luajit
# 2.1 also provides, see https://github.com/LuaJIT/LuaJIT/issues/325 for
# more
@@ -14,7 +14,7 @@ with super;
];
});
- busted = super.busted.override({
+ busted = prev.busted.overrideAttrs(oa: {
postConfigure = ''
substituteInPlace ''${rockspecFilename} \
--replace "'lua_cliargs = 3.0-1'," "'lua_cliargs >= 3.0-1',"
@@ -25,14 +25,7 @@ with super;
'';
});
- cqueues = super.cqueues.override(rec {
- # Parse out a version number without the Lua version inserted
- version = with pkgs.lib; let
- version' = super.cqueues.version;
- rel = splitVersion version';
- date = head rel;
- rev = last (splitString "-" (last rel));
- in "${date}-${rev}";
+ cqueues = (prev.lib.overrideLuarocks prev.cqueues (drv: {
nativeBuildInputs = [
pkgs.gnum4
];
@@ -41,9 +34,17 @@ with super;
{ name = "OPENSSL"; dep = pkgs.openssl; }
];
disabled = luaOlder "5.1" || luaAtLeast "5.4";
+ })).overrideAttrs(oa: rec {
+ # Parse out a version number without the Lua version inserted
+ version = with pkgs.lib; let
+ version' = prev.cqueues.version;
+ rel = splitVersion version';
+ date = head rel;
+ rev = last (splitString "-" (last rel));
+ in "${date}-${rev}";
# Upstream rockspec is pointlessly broken into separate rockspecs, per Lua
# version, which doesn't work well for us, so modify it
- postConfigure = let inherit (super.cqueues) pname; in ''
+ postConfigure = let inherit (prev.cqueues) pname; in ''
# 'all' target auto-detects correct Lua version, which is fine for us as
# we only have the right one available :)
sed -Ei ''${rockspecFilename} \
@@ -56,13 +57,13 @@ with super;
'';
});
- cyrussasl = super.cyrussasl.override({
+ cyrussasl = prev.lib.overrideLuarocks prev.cyrussasl (drv: {
externalDeps = [
{ name = "LIBSASL"; dep = pkgs.cyrus_sasl; }
];
});
- http = super.http.override({
+ http = prev.http.overrideAttrs(oa: {
patches = [
(pkgs.fetchpatch {
name = "invalid-state-progression.patch";
@@ -76,7 +77,7 @@ with super;
*/
});
- ldbus = super.ldbus.override({
+ ldbus = prev.lib.overrideLuarocks prev.ldbus (drv: {
extraVariables = {
DBUS_DIR="${pkgs.dbus.lib}";
DBUS_ARCH_INCDIR="${pkgs.dbus.lib}/lib/dbus-1.0/include";
@@ -87,7 +88,7 @@ with super;
];
});
- ljsyscall = super.ljsyscall.override(rec {
+ ljsyscall = prev.ljsyscall.overrideAttrs(oa: rec {
version = "unstable-20180515";
# package hasn't seen any release for a long time
src = pkgs.fetchFromGitHub {
@@ -106,7 +107,7 @@ with super;
propagatedBuildInputs = with pkgs.lib; optional (!isLuaJIT) luaffi;
});
- lgi = super.lgi.override({
+ lgi = prev.lib.overrideLuarocks prev.lgi (drv: {
nativeBuildInputs = [
pkgs.pkg-config
];
@@ -128,31 +129,31 @@ with super;
'';
});
- lrexlib-gnu = super.lrexlib-gnu.override({
+ lrexlib-gnu = prev.lib.overrideLuarocks prev.lrexlib-gnu (drv: {
buildInputs = [
pkgs.gnulib
];
});
- lrexlib-pcre = super.lrexlib-pcre.override({
+ lrexlib-pcre = prev.lib.overrideLuarocks prev.lrexlib-pcre (drv: {
externalDeps = [
{ name = "PCRE"; dep = pkgs.pcre; }
];
});
- lrexlib-posix = super.lrexlib-posix.override({
+ lrexlib-posix = prev.lib.overrideLuarocks prev.lrexlib-posix (drv: {
buildInputs = [
pkgs.glibc.dev
];
});
- lua-iconv = super.lua-iconv.override({
+ lua-iconv = prev.lib.overrideLuarocks prev.lua-iconv (drv: {
buildInputs = [
pkgs.libiconv
];
});
- lua-lsp = super.lua-lsp.override({
+ lua-lsp = prev.lua-lsp.overrideAttrs(oa: {
# until Alloyed/lua-lsp#28
postConfigure = ''
substituteInPlace ''${rockspecFilename} \
@@ -160,14 +161,14 @@ with super;
'';
});
- lua-zlib = super.lua-zlib.override({
+ lua-zlib = prev.lib.overrideLuarocks prev.lua-zlib (drv: {
buildInputs = [
pkgs.zlib.dev
];
disabled = luaOlder "5.1" || luaAtLeast "5.4";
});
- luadbi-mysql = super.luadbi-mysql.override({
+ luadbi-mysql = prev.lib.overrideLuarocks prev.luadbi-mysql (drv: {
extraVariables = {
# Can't just be /include and /lib, unfortunately needs the trailing 'mysql'
MYSQL_INCDIR="${pkgs.libmysqlclient.dev}/include/mysql";
@@ -179,19 +180,19 @@ with super;
];
});
- luadbi-postgresql = super.luadbi-postgresql.override({
+ luadbi-postgresql = prev.lib.overrideLuarocks prev.luadbi-postgresql (drv: {
buildInputs = [
pkgs.postgresql
];
});
- luadbi-sqlite3 = super.luadbi-sqlite3.override({
+ luadbi-sqlite3 = prev.lib.overrideLuarocks prev.luadbi-sqlite3 (drv: {
externalDeps = [
{ name = "SQLITE"; dep = pkgs.sqlite; }
];
});
- luaevent = super.luaevent.override({
+ luaevent = prev.lib.overrideLuarocks prev.luaevent (drv: {
propagatedBuildInputs = [
luasocket
];
@@ -201,7 +202,7 @@ with super;
disabled = luaOlder "5.1" || luaAtLeast "5.4";
});
- luaexpat = super.luaexpat.override({
+ luaexpat = prev.lib.overrideLuarocks prev.luaexpat (drv: {
externalDeps = [
{ name = "EXPAT"; dep = pkgs.expat; }
];
@@ -212,59 +213,57 @@ with super;
# TODO Somehow automatically amend buildInputs for things that need luaffi
# but are in luajitPackages?
- luaffi = super.luaffi.override({
+ luaffi = prev.lib.overrideLuarocks prev.luaffi (drv: {
# The packaged .src.rock version is pretty old, and doesn't work with Lua 5.3
src = pkgs.fetchFromGitHub {
owner = "facebook"; repo = "luaffifb";
rev = "532c757e51c86f546a85730b71c9fef15ffa633d";
sha256 = "1nwx6sh56zfq99rcs7sph0296jf6a9z72mxknn0ysw9fd7m1r8ig";
};
- knownRockspec = with super.luaffi; "${pname}-${version}.rockspec";
+ knownRockspec = with prev.luaffi; "${pname}-${version}.rockspec";
disabled = luaOlder "5.1" || luaAtLeast "5.4" || isLuaJIT;
});
- luaossl = super.luaossl.override({
+ luaossl = prev.lib.overrideLuarocks prev.luaossl (drv: {
externalDeps = [
{ name = "CRYPTO"; dep = pkgs.openssl; }
{ name = "OPENSSL"; dep = pkgs.openssl; }
];
});
- luasec = super.luasec.override({
+ luasec = prev.lib.overrideLuarocks prev.luasec (drv: {
externalDeps = [
{ name = "OPENSSL"; dep = pkgs.openssl; }
];
});
- luasql-sqlite3 = super.luasql-sqlite3.override({
+ luasql-sqlite3 = prev.lib.overrideLuarocks prev.luasql-sqlite3 (drv: {
externalDeps = [
{ name = "SQLITE"; dep = pkgs.sqlite; }
];
});
- luasystem = super.luasystem.override({
- buildInputs = pkgs.lib.optionals pkgs.stdenv.isLinux [
- pkgs.glibc
- ];
- });
+ luasystem = prev.lib.overrideLuarocks prev.luasystem (drv: { buildInputs = [ pkgs.glibc.out ]; });
- luazip = super.luazip.override({
+ luazip = prev.lib.overrideLuarocks prev.luazip (drv: {
buildInputs = [
pkgs.zziplib
];
});
- lua-yajl = super.lua-yajl.override({
+ lua-yajl = prev.lib.overrideLuarocks prev.lua-yajl (drv: {
buildInputs = [
pkgs.yajl
];
});
- luuid = super.luuid.override(old: {
+ luuid = (prev.lib.overrideLuarocks prev.luuid (drv: {
externalDeps = [
{ name = "LIBUUID"; dep = pkgs.libuuid; }
];
- meta = old.meta // {
+ disabled = luaOlder "5.1" || (luaAtLeast "5.4");
+ })).overrideAttrs(oa: {
+ meta = oa.meta // {
platforms = pkgs.lib.platforms.linux;
};
# Trivial patch to make it work in both 5.1 and 5.2. Basically just the
@@ -276,13 +275,12 @@ with super;
patches = [
./luuid.patch
];
- postConfigure = let inherit (super.luuid) version pname; in ''
+ postConfigure = let inherit (prev.luuid) version pname; in ''
sed -Ei ''${rockspecFilename} -e 's|lua >= 5.2|lua >= 5.1,|'
'';
- disabled = luaOlder "5.1" || (luaAtLeast "5.4");
});
- luv = super.luv.override({
+ luv = prev.lib.overrideLuarocks prev.luv (drv: {
# Use system libuv instead of building local and statically linking
# This is a hacky way to specify -DWITH_SHARED_LIBUV=ON which
# is not possible with luarocks and the current luv rockspec
@@ -296,8 +294,8 @@ with super;
buildInputs = [ pkgs.libuv ];
passthru = {
- libluv = self.luv.override ({
- preBuild = self.luv.preBuild + ''
+ libluv = final.luv.overrideAttrs (oa: {
+ preBuild = final.luv.preBuild + ''
sed -i 's,\(option(BUILD_MODULE.*\)ON,\1OFF,' CMakeLists.txt
sed -i 's,\(option(BUILD_SHARED_LIBS.*\)OFF,\1ON,' CMakeLists.txt
sed -i 's,${"\${.*INSTALL_INC_DIR}"},${placeholder "out"}/include/luv,' CMakeLists.txt
@@ -312,32 +310,32 @@ with super;
};
});
- lyaml = super.lyaml.override({
+ lyaml = prev.lib.overrideLuarocks prev.lyaml (oa: {
buildInputs = [
pkgs.libyaml
];
});
- mpack = super.mpack.override({
+ mpack = prev.lib.overrideLuarocks prev.mpack (drv: {
buildInputs = [ pkgs.libmpack ];
# the rockspec doesn't use the makefile so you may need to export more flags
USE_SYSTEM_LUA = "yes";
USE_SYSTEM_MPACK = "yes";
});
- rapidjson = super.rapidjson.override({
+ rapidjson = prev.rapidjson.overrideAttrs(oa: {
preBuild = ''
sed -i '/set(CMAKE_CXX_FLAGS/d' CMakeLists.txt
sed -i '/set(CMAKE_C_FLAGS/d' CMakeLists.txt
'';
});
- readline = (super.readline.override ({
+ readline = (prev.lib.overrideLuarocks prev.readline (drv: {
unpackCmd = ''
unzip "$curSrc"
tar xf *.tar.gz
'';
- propagatedBuildInputs = super.readline.propagatedBuildInputs ++ [ pkgs.readline ];
+ propagatedBuildInputs = prev.readline.propagatedBuildInputs ++ [ pkgs.readline.out ];
extraVariables = rec {
READLINE_INCDIR = "${pkgs.readline.dev}/include";
HISTORY_INCDIR = READLINE_INCDIR;
@@ -349,14 +347,14 @@ with super;
'';
});
- std-_debug = super.std-_debug.overrideAttrs(oa: {
+ std-_debug = prev.std-_debug.overrideAttrs(oa: {
# run make to generate lib/std/_debug/version.lua
preConfigure = ''
make all
'';
});
- std-normalize = super.std-normalize.overrideAttrs(oa: {
+ std-normalize = prev.std-normalize.overrideAttrs(oa: {
# run make to generate lib/std/_debug/version.lua
preConfigure = ''
make all
@@ -365,10 +363,10 @@ with super;
# TODO just while testing, remove afterwards
# toVimPlugin should do it instead
- gitsigns-nvim = super.gitsigns-nvim.overrideAttrs(oa: {
+ gitsigns-nvim = prev.gitsigns-nvim.overrideAttrs(oa: {
nativeBuildInputs = oa.nativeBuildInputs or [] ++ [ pkgs.vimUtils.vimGenDocHook ];
});
# aliases
- cjson = super.lua-cjson;
+ cjson = prev.lua-cjson;
}
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/default.nix b/third_party/nixpkgs/pkgs/development/node-packages/default.nix
index ccd0b19e1a..63f909b5d6 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/default.nix
+++ b/third_party/nixpkgs/pkgs/development/node-packages/default.nix
@@ -91,6 +91,22 @@ let
'';
};
+ mdctl-cli = super."@medable/mdctl-cli".override {
+ nativeBuildInputs = with pkgs; with darwin.apple_sdk.frameworks; [
+ glib
+ libsecret
+ pkg-config
+ ] ++ lib.optionals stdenv.isDarwin [
+ AppKit
+ Security
+ ];
+ buildInputs = with pkgs; [
+ nodePackages.node-gyp-build
+ nodePackages.node-pre-gyp
+ nodejs
+ ];
+ };
+
coc-imselect = super.coc-imselect.override {
meta.broken = since "10";
};
@@ -319,14 +335,6 @@ let
'';
};
- netlify-cli =
- super.netlify-cli.override {
- preRebuild = ''
- export ESBUILD_BINARY_PATH="${pkgs.esbuild_netlify}/bin/esbuild"
- '';
- meta.maintainers = with lib.maintainers; [ roberth ];
- };
-
ssb-server = super.ssb-server.override {
buildInputs = [ pkgs.automake pkgs.autoconf self.node-gyp-build ];
meta.broken = since "10";
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
index 2c9654d1b8..3f3bd8d4fe 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
@@ -6,6 +6,7 @@
, "@commitlint/cli"
, "@commitlint/config-conventional"
, "@hyperspace/cli"
+, "@medable/mdctl-cli"
, "@nerdwallet/shepherd"
, "@nestjs/cli"
, "@squoosh/cli"
@@ -184,7 +185,6 @@
, "multi-file-swagger"
, "musescore-downloader"
, "neovim"
-, "netlify-cli"
, "nijs"
, "node-gyp"
, "node-gyp-build"
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
index fe931f671a..c63936112f 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
@@ -49,13 +49,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1202.8" = {
+ "@angular-devkit/architect-0.1202.10" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1202.8";
+ version = "0.1202.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.8.tgz";
- sha512 = "aPzwO3coRIuSjZa8FwFHy2y8OJarXG+afsqOk3muR6anvbdl+Av+m2RT8jjwj5J3D4N2eKZ7ob2q9HDUiHi4Pg==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.10.tgz";
+ sha512 = "/sLgtXaFsNouxub5M/bQ2sBkiMIlPubuz6QMh+pA2jia82vJ3hcRMt4AnJTXuXpVY+aew4FiG0i9nt/8HETQsw==";
};
};
"@angular-devkit/core-12.0.5" = {
@@ -67,6 +67,15 @@ let
sha512 = "zVSQV+8/vjUjsUKGlj8Kf5LioA6AXJTGI0yhHW9q1dFX4dPpbW63k0R1UoIB2wJ0F/AbYVgpnPGPe9BBm2fvZA==";
};
};
+ "@angular-devkit/core-12.2.10" = {
+ name = "_at_angular-devkit_slash_core";
+ packageName = "@angular-devkit/core";
+ version = "12.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.10.tgz";
+ sha512 = "0qhmS7Qvl0hiRVTHxEC/ipFAfzYofPstw0ZITDpEMw+pgHlOZolOlnFrv8LyOXWNqlSIH5fS9D3WF7Hpm7ApYA==";
+ };
+ };
"@angular-devkit/core-12.2.7" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
@@ -76,15 +85,6 @@ let
sha512 = "WeLlDZaudpx10OGDPfVcWu/CaEWiWzAaLTUQz0Ww/yM+01FxR/P8yeH1sYAV1MS6d6KHvXGw7Lpf8PV7IA/zHA==";
};
};
- "@angular-devkit/core-12.2.8" = {
- name = "_at_angular-devkit_slash_core";
- packageName = "@angular-devkit/core";
- version = "12.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.8.tgz";
- sha512 = "N13N1Lm7qllBXSVZYz4Khw75rnQnS3lu5QiJqlsaNklWgVfVz8jt99AAeGGvNGSLEbmZjlr35YLxu8ugD267Ug==";
- };
- };
"@angular-devkit/schematics-12.0.5" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
@@ -94,6 +94,15 @@ let
sha512 = "iW3XuDHScr3TXuunlEjF5O01zBpwpLgfr1oEny8PvseFGDlHK4Nj8zNIoIn3Yg936aiFO4GJAC/UXsT8g5vKxQ==";
};
};
+ "@angular-devkit/schematics-12.2.10" = {
+ name = "_at_angular-devkit_slash_schematics";
+ packageName = "@angular-devkit/schematics";
+ version = "12.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.10.tgz";
+ sha512 = "oQ2EWdkEDE+eAttHeviXsvBi85PsntQT+IffjKUZdbQU+Leuk/pKUpTeea1YosU1p4Cz3PKYF+P/Nl5Jy3B7IQ==";
+ };
+ };
"@angular-devkit/schematics-12.2.7" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
@@ -103,15 +112,6 @@ let
sha512 = "E0hCFyyfbixjerf0Okt4ynC6F1dsT2Wl7MwAePe+wzPTHCnKIRTa2PQTxJzdWeTlSkQMkSK6ft2iyWOD/FODng==";
};
};
- "@angular-devkit/schematics-12.2.8" = {
- name = "_at_angular-devkit_slash_schematics";
- packageName = "@angular-devkit/schematics";
- version = "12.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.8.tgz";
- sha512 = "SPiMFoCi1TpFXY6h1xGCakgdwT25gGHdbis1MuHE5yMcPLvhl/yr7EQVY1GY00/iMrgeslTHg/UPp4D6xHyQxA==";
- };
- };
"@angular-devkit/schematics-cli-12.2.7" = {
name = "_at_angular-devkit_slash_schematics-cli";
packageName = "@angular-devkit/schematics-cli";
@@ -346,13 +346,13 @@ let
sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==";
};
};
- "@babel/code-frame-7.14.5" = {
+ "@babel/code-frame-7.15.8" = {
name = "_at_babel_slash_code-frame";
packageName = "@babel/code-frame";
- version = "7.14.5";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz";
- sha512 = "9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==";
+ url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz";
+ sha512 = "2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==";
};
};
"@babel/compat-data-7.15.0" = {
@@ -373,13 +373,13 @@ let
sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
- "@babel/core-7.15.5" = {
+ "@babel/core-7.15.8" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.15.5";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz";
- sha512 = "pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz";
+ sha512 = "3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==";
};
};
"@babel/core-7.9.0" = {
@@ -391,13 +391,13 @@ let
sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==";
};
};
- "@babel/generator-7.15.4" = {
+ "@babel/generator-7.15.8" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.15.4";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz";
- sha512 = "d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz";
+ sha512 = "ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==";
};
};
"@babel/helper-annotate-as-pure-7.15.4" = {
@@ -508,13 +508,13 @@ let
sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==";
};
};
- "@babel/helper-module-transforms-7.15.7" = {
+ "@babel/helper-module-transforms-7.15.8" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.15.7";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.7.tgz";
- sha512 = "ZNqjjQG/AuFfekFTY+7nY4RgBSklgTu970c7Rj3m/JOhIu5KPBUuTA9AY6zaKcUvk4g6EbDXdBnhi35FAssdSw==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz";
+ sha512 = "DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==";
};
};
"@babel/helper-optimise-call-expression-7.15.4" = {
@@ -634,13 +634,13 @@ let
sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==";
};
};
- "@babel/node-7.15.4" = {
+ "@babel/node-7.15.8" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.15.4";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.15.4.tgz";
- sha512 = "UZue+j8p5aKTaVjvy5psYmqLHqmz+9cIboAFoa97S1xeZyUr0gT6KzXB8ZkfBIsP/u79biOdjGHVXBXnW3rVfw==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.15.8.tgz";
+ sha512 = "JbgTCrnx6IUECznEbQ7e2rbVYtrXKixSbEG2bxxbMkV648WdUf3tdc+ZUW2++dvnnAswcpwc76cRwf0xEQqsrw==";
};
};
"@babel/parser-7.13.13" = {
@@ -652,13 +652,13 @@ let
sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==";
};
};
- "@babel/parser-7.15.7" = {
+ "@babel/parser-7.15.8" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.15.7";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.7.tgz";
- sha512 = "rycZXvQ+xS9QyIcJ9HXeDWf1uxqlbVFAUq0Rq0dbc50Zb/+wUe/ehyfzGfm9KZZF0kBejYgxltBXocP+gKdL2g==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz";
+ sha512 = "BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==";
};
};
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = {
@@ -679,13 +679,13 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.15.4" = {
+ "@babel/plugin-proposal-async-generator-functions-7.15.8" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.15.4";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz";
- sha512 = "2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz";
+ sha512 = "2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==";
};
};
"@babel/plugin-proposal-class-properties-7.14.5" = {
@@ -1318,13 +1318,13 @@ let
sha512 = "cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==";
};
};
- "@babel/plugin-transform-runtime-7.15.0" = {
+ "@babel/plugin-transform-runtime-7.15.8" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.15.0";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.15.0.tgz";
- sha512 = "sfHYkLGjhzWTq6xsuQ01oEsUYjkHRux9fW1iUA68dC7Qd8BS1Unq4aZ8itmQp95zUzIcyR2EbNMTzAicFj+guw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.15.8.tgz";
+ sha512 = "+6zsde91jMzzvkzuEA3k63zCw+tm/GvuuabkpisgbDMTPQsIMHllE3XczJFFtEHLjjhKQFZmGQVRdELetlWpVw==";
};
};
"@babel/plugin-transform-shorthand-properties-7.14.5" = {
@@ -1336,13 +1336,13 @@ let
sha512 = "xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==";
};
};
- "@babel/plugin-transform-spread-7.14.6" = {
+ "@babel/plugin-transform-spread-7.15.8" = {
name = "_at_babel_slash_plugin-transform-spread";
packageName = "@babel/plugin-transform-spread";
- version = "7.14.6";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz";
- sha512 = "Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz";
+ sha512 = "/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==";
};
};
"@babel/plugin-transform-sticky-regex-7.14.5" = {
@@ -1372,13 +1372,13 @@ let
sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==";
};
};
- "@babel/plugin-transform-typescript-7.15.4" = {
+ "@babel/plugin-transform-typescript-7.15.8" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.15.4";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz";
- sha512 = "sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.8.tgz";
+ sha512 = "ZXIkJpbaf6/EsmjeTbiJN/yMxWPFWvlr7sEG1P95Xb4S4IBcrf2n7s/fItIhsAmOf8oSh3VJPDppO6ExfAfKRQ==";
};
};
"@babel/plugin-transform-unicode-escapes-7.14.5" = {
@@ -1399,13 +1399,13 @@ let
sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==";
};
};
- "@babel/preset-env-7.15.6" = {
+ "@babel/preset-env-7.15.8" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.15.6";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.6.tgz";
- sha512 = "L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz";
+ sha512 = "rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==";
};
};
"@babel/preset-flow-7.14.5" = {
@@ -1498,13 +1498,22 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/standalone-7.15.7" = {
+ "@babel/runtime-corejs3-7.15.4" = {
+ name = "_at_babel_slash_runtime-corejs3";
+ packageName = "@babel/runtime-corejs3";
+ version = "7.15.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz";
+ sha512 = "lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==";
+ };
+ };
+ "@babel/standalone-7.15.8" = {
name = "_at_babel_slash_standalone";
packageName = "@babel/standalone";
- version = "7.15.7";
+ version = "7.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.7.tgz";
- sha512 = "1dPLi+eQEJE0g1GnUM0Ik2GcS5SMXivoxt6meQxQxGWEd/DCdSBRJClUVlQ25Vbqe49g1HG5Ej0ULhmsqtSMmg==";
+ url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.8.tgz";
+ sha512 = "EF2uQLeuwflnPRGetWH2Z400ITOSK7YbkXIKxY91EWSiOJ8xsbupT3sx3sFRwVyQgjsHSILFDzLcSo/rGspLhQ==";
};
};
"@babel/template-7.15.4" = {
@@ -1552,13 +1561,13 @@ let
sha512 = "dC98U54yUC/20GON74ToqMYk9/PKdLuI7tFSNVscAtaexMV6ETqpOcJEXB8FNwh/pot0sBCdPPevQiZtXvHNmQ==";
};
};
- "@blueprintjs/core-3.50.4" = {
+ "@blueprintjs/core-3.51.1" = {
name = "_at_blueprintjs_slash_core";
packageName = "@blueprintjs/core";
- version = "3.50.4";
+ version = "3.51.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.50.4.tgz";
- sha512 = "FYGr1ZMH1si2acdZaTI4gqhvwgb0yOWcv7otYdi/tvC4ReId2gsm2i+bDw/eBMYsH+OSFYZT0C6hFvHV3HrkPA==";
+ url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.51.1.tgz";
+ sha512 = "DYwnfoXspCWlBFNnp79OalXHXKMnBNHKFjHSM/VnVwHNRRiwqdGNfT8GrVBZdOTiZsJqQfzUBxN7illjeR/TPA==";
};
};
"@blueprintjs/icons-3.30.2" = {
@@ -1579,22 +1588,22 @@ let
sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg==";
};
};
- "@bugsnag/browser-7.11.0" = {
+ "@bugsnag/browser-7.13.2" = {
name = "_at_bugsnag_slash_browser";
packageName = "@bugsnag/browser";
- version = "7.11.0";
+ version = "7.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.11.0.tgz";
- sha512 = "iOKXJcZzdl9XsjJnL62S+T4OQZJ21mUMCXXOiMRlLnDCrw30BwD4BoAZ5s3oQ0VE0azrv/CUsXQzU63NUcsb+Q==";
+ url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.13.2.tgz";
+ sha512 = "TNt6QhJxIqxvZ6wviLfwHu31V48EW+VnySxki0J2s4F++AF/lxCQ2o4ygFSQjOAHRMRChPI5jFM8OKDkx2q7mA==";
};
};
- "@bugsnag/core-7.11.0" = {
+ "@bugsnag/core-7.13.2" = {
name = "_at_bugsnag_slash_core";
packageName = "@bugsnag/core";
- version = "7.11.0";
+ version = "7.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.11.0.tgz";
- sha512 = "xCaaONqQEAewifrvHC8v+yqN+Is4WNUcmK+sdeLcSb+ghLQ52y3BQ9nEDYzQxGuJRpv1zW3edCVIB4RN5eunSQ==";
+ url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.13.2.tgz";
+ sha512 = "nAQ0WNaI5Zf745ERFXbcwFmWAvrbm9Njtkk7ay45UxtlkINodP85SyV2XaktHRYCHJFjt0NQ9hbdNPeL4nTNGA==";
};
};
"@bugsnag/cuid-3.0.0" = {
@@ -1606,22 +1615,22 @@ let
sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg==";
};
};
- "@bugsnag/js-7.11.0" = {
+ "@bugsnag/js-7.13.2" = {
name = "_at_bugsnag_slash_js";
packageName = "@bugsnag/js";
- version = "7.11.0";
+ version = "7.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.11.0.tgz";
- sha512 = "2KQZdiBUQRayrTweMrH8LuT+YFcZSYxPVb+RaAx5J1z3vWWFar7Lw3II34zA4e+zs/7wMSTKll5p+O7Wuz60/A==";
+ url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.13.2.tgz";
+ sha512 = "yXEhiVAiHgpzlP/luA3lDTo+pLgxa3TDl6cSXJtUTOvVqcgzA30k+SHG8h0KwSjXQ0MJWiQFwzPPVENdLAB5nA==";
};
};
- "@bugsnag/node-7.11.0" = {
+ "@bugsnag/node-7.13.2" = {
name = "_at_bugsnag_slash_node";
packageName = "@bugsnag/node";
- version = "7.11.0";
+ version = "7.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.11.0.tgz";
- sha512 = "hwIG7LTE2lwaIjAes1JxYbjSoih9Eu07MSf+QJoMILY6tJoHMgxJ6v0/8AfldJeEAb753qBtlQLO8Rtr2LKHBA==";
+ url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.13.2.tgz";
+ sha512 = "/JexaiCDmN2f54StyvwgxkMbOSRL58kNPy1GHwlQL7zAPoEiMe9Jq0LOeHIVMLzgB/i0n7gULjLIuYKDT5udfQ==";
};
};
"@bugsnag/safe-json-stringify-6.0.0" = {
@@ -1723,13 +1732,13 @@ let
sha512 = "5XYkh0e9ehHjA7BxAHFpjPgr1qqbFY8OFG1wpBiAhycbYBtJnQmculA2wcwqTM40YCUBqEvWFdq86jTG8fbkMw==";
};
};
- "@commitlint/load-13.2.0" = {
+ "@commitlint/load-13.2.1" = {
name = "_at_commitlint_slash_load";
packageName = "@commitlint/load";
- version = "13.2.0";
+ version = "13.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/load/-/load-13.2.0.tgz";
- sha512 = "Nhkv+hwWCCxWGjmE9jd1U8kfGGCkZVpwzlTtdKxpY+Aj2VCFg3BjY+qA81pMF3oAsIpxchSaZG5llb8kduVjYg==";
+ url = "https://registry.npmjs.org/@commitlint/load/-/load-13.2.1.tgz";
+ sha512 = "qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ==";
};
};
"@commitlint/message-13.2.0" = {
@@ -2191,6 +2200,15 @@ let
sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==";
};
};
+ "@eslint/eslintrc-1.0.3" = {
+ name = "_at_eslint_slash_eslintrc";
+ packageName = "@eslint/eslintrc";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.3.tgz";
+ sha512 = "DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==";
+ };
+ };
"@exodus/schemasafe-1.0.0-rc.6" = {
name = "_at_exodus_slash_schemasafe";
packageName = "@exodus/schemasafe";
@@ -2578,13 +2596,13 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/import-6.5.0" = {
+ "@graphql-tools/import-6.5.4" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.5.0";
+ version = "6.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.5.0.tgz";
- sha512 = "q0zP95TVCVEQ1rfBxSDkPVgZAg5/7LptmPih9R4V0XZGY7aL1Hd4A1oe+Sr4B3sFy7OyWJpxhZek84nQBWNKmw==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.5.4.tgz";
+ sha512 = "2I3m/RFisxMoRQAAsZi807Kqc4i8Ih/RoliqVBU08nYSkMg/TH67/BbV54pVUrlRF44o9GYjGaHlr5p2mwDoIQ==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -2695,13 +2713,13 @@ let
sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==";
};
};
- "@graphql-tools/utils-8.2.4" = {
+ "@graphql-tools/utils-8.3.0" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "8.2.4";
+ version = "8.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.4.tgz";
- sha512 = "uB+JL7CqTKJ2Q5zXA+a2la1cA8YYPcc0RHO/3mK54hxlZa2Z5/9k9XrNfMof4LZQefTaBM7M6QWtaxGklJln4A==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.3.0.tgz";
+ sha512 = "ksE0RxS0AFllo6KIJjvQsRgcUAzoyZUgUrDbCngv4SaQwyX9YxTfddTLN4uQmbiZB9h25fPp/Xgeyaa3ARCzgg==";
};
};
"@graphql-tools/wrap-7.0.8" = {
@@ -2740,6 +2758,15 @@ let
sha512 = "CKQVuwuSPh40tgOkR7c0ZisxYRiN05PcKPW72mQL5y++qd7CwBRoaJZvU5xfXnCJDFBmS3qZGQ71Frx6Ofo2XA==";
};
};
+ "@grpc/grpc-js-1.3.8" = {
+ name = "_at_grpc_slash_grpc-js";
+ packageName = "@grpc/grpc-js";
+ version = "1.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.8.tgz";
+ sha512 = "4qJqqn+CU/nBydz9ePJP+oa8dz0U42Ut/GejlbyaQ1xTkynCc+ndNHHnISlNeHawDsv4MOAyP3mV/EnDNUw2zA==";
+ };
+ };
"@grpc/proto-loader-0.6.2" = {
name = "_at_grpc_slash_proto-loader";
packageName = "@grpc/proto-loader";
@@ -2884,6 +2911,15 @@ let
sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==";
};
};
+ "@humanwhocodes/config-array-0.6.0" = {
+ name = "_at_humanwhocodes_slash_config-array";
+ packageName = "@humanwhocodes/config-array";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.6.0.tgz";
+ sha512 = "JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==";
+ };
+ };
"@humanwhocodes/object-schema-1.2.0" = {
name = "_at_humanwhocodes_slash_object-schema";
packageName = "@humanwhocodes/object-schema";
@@ -3109,13 +3145,13 @@ let
sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==";
};
};
- "@jcubic/lily-0.2.0" = {
+ "@jcubic/lily-0.3.0" = {
name = "_at_jcubic_slash_lily";
packageName = "@jcubic/lily";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jcubic/lily/-/lily-0.2.0.tgz";
- sha512 = "KV+CBO6epprxj0AHBDOUI5vfcJZPfhuK5Bdf+AqoJFIVBapSJjuHlZsMGLGLTHCQW48oYvwv8wCC/olzRC/Ndw==";
+ url = "https://registry.npmjs.org/@jcubic/lily/-/lily-0.3.0.tgz";
+ sha512 = "4z6p4jLGSthc8gQ7wu4nHfGYn/IgCKFr+7hjuf80VdXUs7sm029mZGGDpS8sb29PVZWUBvMMTBCVGFhH2nN4Vw==";
};
};
"@jest/transform-25.5.1" = {
@@ -3217,22 +3253,22 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/check-node-1.36.0" = {
+ "@jsii/check-node-1.39.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.36.0.tgz";
- sha512 = "/WgRJ93hg7a6H/VTOhE9366VjvrW5HU0wGtO/i3zskxBpK6LmpnYhw69AiGvmAZHyBaUuJ2KGCSa7TEge62NwA==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.39.0.tgz";
+ sha512 = "tqx5o0Zw6WrVKmB9S1X0E8AajfXjWu9yoOUtUdYVCR6NAdi8mY/NQ3uYJ8II0AF1MtC0PdASOjb/6i3h02komw==";
};
};
- "@jsii/spec-1.36.0" = {
+ "@jsii/spec-1.39.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.36.0.tgz";
- sha512 = "CZrol5FphC3WZdaEYWRyCysbc6IRvaXjHOlFgjin4RJ9MrAdskcH0/x/Hyez1PwFkZl1f2qWFwVG3L9eA5+Fsg==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.39.0.tgz";
+ sha512 = "NbCmAYOB938uyWHwXj6fhdeIzznhHbxLmvl4Jtwe08Nrz5Gs4n79snV29XWIQulDMa4HYkNh1yqhBXOHkd+GAg==";
};
};
"@kwsites/file-exists-1.1.1" = {
@@ -3973,13 +4009,13 @@ let
sha512 = "7AQsO0hMmpqDledV7AhBuSYqYPFsKP9PaltMecX9nlnsyFxqtsqUg9/pvB2L/jxvskrDrNkdKYz2KTbQznCtng==";
};
};
- "@mdn/browser-compat-data-4.0.2" = {
+ "@mdn/browser-compat-data-4.0.5" = {
name = "_at_mdn_slash_browser-compat-data";
packageName = "@mdn/browser-compat-data";
- version = "4.0.2";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.0.2.tgz";
- sha512 = "XGLqWi1uOil0L4TJs9KOTMRl9FdEtRQLvBDaB7++AFnFf9G0QYihiUNRJ4eXZa53KI9VORsEi3Fj8p3N+m/Gdw==";
+ url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.0.5.tgz";
+ sha512 = "KPSNaHUl5aikqsQU7LpBntFzaPbhm5OJxD88Wv00OKDc4wudyid2wDFqLeb7VcYT9x5bND8PPFloWdK5DY0pHA==";
};
};
"@mdx-js/util-2.0.0-next.8" = {
@@ -3991,6 +4027,132 @@ let
sha512 = "T0BcXmNzEunFkuxrO8BFw44htvTPuAoKbLvTG41otyZBDV1Rs+JMddcUuaP5vXpTWtgD3grhcrPEwyx88RUumQ==";
};
};
+ "@medable/mdctl-api-1.0.62" = {
+ name = "_at_medable_slash_mdctl-api";
+ packageName = "@medable/mdctl-api";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-api/-/mdctl-api-1.0.62.tgz";
+ sha512 = "kXyaE+UH34LIR0AiO4nve/byQGARc9N/Q9Opf9wsbHgChHBUvv67/2i04eQs5N2CauLBVfI6H8UoXqzLUm7qAA==";
+ };
+ };
+ "@medable/mdctl-core-1.0.62" = {
+ name = "_at_medable_slash_mdctl-core";
+ packageName = "@medable/mdctl-core";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-core/-/mdctl-core-1.0.62.tgz";
+ sha512 = "1lRrAZw7gfaQF9iAlV5MgnOVzujetX7K5n/11wzCaIEZct9vBTSVNtI/zHNjWgyoud0LMC6w8qtRcjbgSgjcfQ==";
+ };
+ };
+ "@medable/mdctl-core-schemas-1.0.62" = {
+ name = "_at_medable_slash_mdctl-core-schemas";
+ packageName = "@medable/mdctl-core-schemas";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-core-schemas/-/mdctl-core-schemas-1.0.62.tgz";
+ sha512 = "nyq59XISru4gnueEk5mpU77TxuR9hsqtzpSo/I2IhA/ZbIjDoBatm+/HK3ttX9UA+rkueK1bngRLEanZFHjUeg==";
+ };
+ };
+ "@medable/mdctl-core-utils-1.0.60" = {
+ name = "_at_medable_slash_mdctl-core-utils";
+ packageName = "@medable/mdctl-core-utils";
+ version = "1.0.60";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-core-utils/-/mdctl-core-utils-1.0.60.tgz";
+ sha512 = "1l53ieD4cukz/P4Y3COsWov4mVK/+StI0lcdMUJ50jKalpFZP6kOPBMD1HzqQ1zak59ebIACKWneAH19HGET2w==";
+ };
+ };
+ "@medable/mdctl-credentials-provider-keychain-1.0.62" = {
+ name = "_at_medable_slash_mdctl-credentials-provider-keychain";
+ packageName = "@medable/mdctl-credentials-provider-keychain";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-keychain/-/mdctl-credentials-provider-keychain-1.0.62.tgz";
+ sha512 = "pUG/9Ar7H2BGxoZl0SP2Z5y3WXFb600E7/YMY68SLYwR1Tp5a7whf4ttclAZyB73ukJ8cs7HcpAvg52Btd1vmg==";
+ };
+ };
+ "@medable/mdctl-credentials-provider-pouchdb-1.0.62" = {
+ name = "_at_medable_slash_mdctl-credentials-provider-pouchdb";
+ packageName = "@medable/mdctl-credentials-provider-pouchdb";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-pouchdb/-/mdctl-credentials-provider-pouchdb-1.0.62.tgz";
+ sha512 = "yed0zon0Smo80UmfkhVezcsehgM6w3XMmLtkyxRVUK0xQOVXfJQZloWZtG75Be2VA0RITbdHKstzE2raGdx1tw==";
+ };
+ };
+ "@medable/mdctl-docs-1.0.60" = {
+ name = "_at_medable_slash_mdctl-docs";
+ packageName = "@medable/mdctl-docs";
+ version = "1.0.60";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-docs/-/mdctl-docs-1.0.60.tgz";
+ sha512 = "9ytd1YTnsLd/hu9mGKYgsPGrTnR+5GzdbRNKFDnfBPwUsMwB1CCGE3nhb1hdjQAje9ggA4/1otnIrO/4mw8IWg==";
+ };
+ };
+ "@medable/mdctl-export-adapter-console-1.0.60" = {
+ name = "_at_medable_slash_mdctl-export-adapter-console";
+ packageName = "@medable/mdctl-export-adapter-console";
+ version = "1.0.60";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-export-adapter-console/-/mdctl-export-adapter-console-1.0.60.tgz";
+ sha512 = "k9KZqkV3d/2/8uYnt9/jMdF9jCNb1w/R6q2LPDZ0hNrt7UpvKKSF5RegRysW21p/xT6bvdjJhTphxXzO0qurVw==";
+ };
+ };
+ "@medable/mdctl-export-adapter-tree-1.0.62" = {
+ name = "_at_medable_slash_mdctl-export-adapter-tree";
+ packageName = "@medable/mdctl-export-adapter-tree";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-export-adapter-tree/-/mdctl-export-adapter-tree-1.0.62.tgz";
+ sha512 = "2LlmAm3kaqL2DUy1ZUzEV7hwR1vDNKQc0ySlvmRY1WR3aFsEEfJJA6hJEfjhzsE03A1jZZpW6m7KUIbosqLYWQ==";
+ };
+ };
+ "@medable/mdctl-import-adapter-1.0.62" = {
+ name = "_at_medable_slash_mdctl-import-adapter";
+ packageName = "@medable/mdctl-import-adapter";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-import-adapter/-/mdctl-import-adapter-1.0.62.tgz";
+ sha512 = "mjf0sx9dzZVpKCotYBZyWZopeOdyu2VnwQmIVI8oxwdVRIEN5LR0ohThs9Ca/aQT4rwlL2uvAPde5dXB3kRzuQ==";
+ };
+ };
+ "@medable/mdctl-manifest-1.0.62" = {
+ name = "_at_medable_slash_mdctl-manifest";
+ packageName = "@medable/mdctl-manifest";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-manifest/-/mdctl-manifest-1.0.62.tgz";
+ sha512 = "PDmfThH3tb3XQo2ot5UJR2hHtFODcQb7PAFNWbx7kfu7Vjg6g8XHYOsWGwSzFzKn+78V6+ksC8kBBcBQJus+1g==";
+ };
+ };
+ "@medable/mdctl-node-utils-1.0.62" = {
+ name = "_at_medable_slash_mdctl-node-utils";
+ packageName = "@medable/mdctl-node-utils";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-node-utils/-/mdctl-node-utils-1.0.62.tgz";
+ sha512 = "FtJId1P5hmZED6xv2SjMFb+wMswW2/7gjp4bRe21DmoCkcf4ryYUVUBzXRtfZmeMYh9zo71zRi485PHLpDylGw==";
+ };
+ };
+ "@medable/mdctl-sandbox-1.0.62" = {
+ name = "_at_medable_slash_mdctl-sandbox";
+ packageName = "@medable/mdctl-sandbox";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-sandbox/-/mdctl-sandbox-1.0.62.tgz";
+ sha512 = "xuRma0dvrtP0Su8BdWrZtdNVLeDAUIpwJ75mNAqNLK4vjxC6BJgFVHyD8pTgaDn/KYQoOZBLaY7LiMYXh8BSJw==";
+ };
+ };
+ "@medable/mdctl-secrets-1.0.60" = {
+ name = "_at_medable_slash_mdctl-secrets";
+ packageName = "@medable/mdctl-secrets";
+ version = "1.0.60";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-secrets/-/mdctl-secrets-1.0.60.tgz";
+ sha512 = "WgNIC0g3bGsy5u3a2tqdv+7RbsfmFr76vSlnkbsr/ZR4lzcXJes3qM37pvSqEZD+WN6HOPFRWTHQ0vO8biKqTw==";
+ };
+ };
"@medv/blessed-2.0.1" = {
name = "_at_medv_slash_blessed";
packageName = "@medv/blessed";
@@ -4009,13 +4171,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.217" = {
+ "@microsoft/load-themed-styles-1.10.225" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.217";
+ version = "1.10.225";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.217.tgz";
- sha512 = "r3iwLv8SwlJ/3V+4veN/evjtSqm9q1vH7jiu2bnMcpGUflZ10r1JBS6uZOQWicKx4kgoWrpyTorHc3y1FWnFjg==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.225.tgz";
+ sha512 = "ARu2FwDnA5VcWHGpzGUnn5eB1K6lXmqCGHis7UoBKAW0uS2Asuo9Y7scblA2Fg/6lIFHLobWg4LGbzi0maYKpQ==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -4090,13 +4252,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-18.13.7" = {
+ "@netlify/build-18.17.2" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "18.13.7";
+ version = "18.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-18.13.7.tgz";
- sha512 = "maeTnUJ/onAtWDQfyx4OpgJ21W9CUuUMuwMgVXyqNxiH7n6hL0/cneSJ/rla5P4xcaoWOKKP1Uc16zRUNm6Zhw==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-18.17.2.tgz";
+ sha512 = "K4wmbfwQEtwB/ke/haibfhjZnesNP3j4MjtTUoUBHc/MXEBa1uFqb/7fchXMFZSbbmU+r/Ra8Fbt3NAIS15K5Q==";
};
};
"@netlify/cache-utils-2.0.4" = {
@@ -4108,13 +4270,13 @@ let
sha512 = "P6tomPTt5tdyFrrYbBWHIGBHTwiuewrElxVRMnYW1W4GfTP4Me4+iV5lOyU/Yw9OuTPg7dPzah2J0GA6cA1YCw==";
};
};
- "@netlify/config-15.6.4" = {
+ "@netlify/config-15.7.2" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "15.6.4";
+ version = "15.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-15.6.4.tgz";
- sha512 = "E3vRhsaSe3dZsGpwNxRWIX0Ebq9aE7GAW8X+CztobOg+/HY4Hi/5RoA9ek99VheaPwkyyguVf+Tlxd/uL+nVsQ==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-15.7.2.tgz";
+ sha512 = "hZO+vSJa+m1vpJjuTXSLh7ZyFMs8AIfElLZtllL4OTM7VMuLiC7+m7HHKWNX+xbW27lCox1G5jpUpGajtH0ajA==";
};
};
"@netlify/esbuild-0.13.6" = {
@@ -4126,13 +4288,13 @@ let
sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw==";
};
};
- "@netlify/framework-info-5.9.2" = {
+ "@netlify/framework-info-5.11.0" = {
name = "_at_netlify_slash_framework-info";
packageName = "@netlify/framework-info";
- version = "5.9.2";
+ version = "5.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.9.2.tgz";
- sha512 = "2mzH9iOc57rUx698oIjOvw5wLRJJBHTgNBqLU6ZhUSn14Nj02jej5F2POeH4Zwi48u45YpTnJ0nnSIUjNExNWg==";
+ url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.11.0.tgz";
+ sha512 = "B6MW05c8vUuakO8x/ucp99ocpdYeikusCzPANqD0O1JamdLyDsDbhL7Z3j0QUhZjpY+bm+4g91Gaq7ynpX0ICg==";
};
};
"@netlify/functions-utils-2.0.2" = {
@@ -4270,13 +4432,13 @@ let
sha512 = "VCBXBJWBujVxyo5f+3r8ovLc9I7wJqpmgDn3ixs1fvdrER5Ac+SzYwYH4mUug9HI08mzTSAKZErzKeuadSez3w==";
};
};
- "@netlify/open-api-2.5.0" = {
+ "@netlify/open-api-2.5.1" = {
name = "_at_netlify_slash_open-api";
packageName = "@netlify/open-api";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.5.0.tgz";
- sha512 = "KiXfYPO/X24p7EYQjcjBTizoyfY3U8zPv68Rte0EtayW2ZSqIslLLpNNd2gteqdh0Q83mzSiESdhlQHd0Ckjjg==";
+ url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.5.1.tgz";
+ sha512 = "FBBgWU+09Xi4bxzPBtYiWB8p34NcGRvmUM+rxLDGus68U1r0M2+oFF+CIlfVvLMCJ+qJVTk6WV1R3+g4NrhYmg==";
};
};
"@netlify/plugin-edge-handlers-1.11.22" = {
@@ -4288,22 +4450,22 @@ let
sha512 = "tFb7J6+YEtZP0OYpS/b9Rjp1lm02XfhAQR6KRHAaeRlHp98/zgd0hhubfwXUCppP2BLfn+imkeVS0FnANh5B3g==";
};
};
- "@netlify/plugins-list-4.0.0" = {
+ "@netlify/plugins-list-4.0.1" = {
name = "_at_netlify_slash_plugins-list";
packageName = "@netlify/plugins-list";
- version = "4.0.0";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-4.0.0.tgz";
- sha512 = "qF1KWhFzA0hQhavIeH1wMao1vtv3cg+h9sdbxhiOVt1H/fBww7miSCJTp8JTXE5hAS9V0/O2GWTpCYUPIK5z8Q==";
+ url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-4.0.1.tgz";
+ sha512 = "5SNHrs6dfW8YlyTmJvLGTIZsdxtADuYRMn8mlRapBLLDazd99yDokzMfC8oigACyu553ghn/dtetPHHxsdGuXQ==";
};
};
- "@netlify/routing-local-proxy-0.33.2" = {
+ "@netlify/routing-local-proxy-0.34.1" = {
name = "_at_netlify_slash_routing-local-proxy";
packageName = "@netlify/routing-local-proxy";
- version = "0.33.2";
+ version = "0.34.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.33.2.tgz";
- sha512 = "0y8PMy5f73PSttizvmxGk1MbrdZL6qKRZr9jH2Rk+OB29EhNlcsdJT56DHSjnIUxRAmeZVY0JnXDhHNI2cDapQ==";
+ url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.34.1.tgz";
+ sha512 = "FuzgxdxC7wJXUT08qPTtHiKwjFDHh3ViCDZwxwjm8CjOKYz+9NjhmIffkbEFl6R+uH6IV/3R6gVDL5Fb5hwRbQ==";
};
};
"@netlify/run-utils-2.0.1" = {
@@ -4315,13 +4477,13 @@ let
sha512 = "F1YcF2kje0Ttj+t5Cn5d6ojGQcKj4i/GMWgQuoZGVjQ31ToNcDXIbBm5SBKIkMMpNejtR1wF+1a0Q+aBPWiZVQ==";
};
};
- "@netlify/zip-it-and-ship-it-4.23.3" = {
+ "@netlify/zip-it-and-ship-it-4.25.0" = {
name = "_at_netlify_slash_zip-it-and-ship-it";
packageName = "@netlify/zip-it-and-ship-it";
- version = "4.23.3";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.23.3.tgz";
- sha512 = "Va40JVTeisKb6ryLWWhLm5sEVjZlLoJZeoEZlUXfzMsncgwZZqY5sGcVxlk6b8iMS1A93jLR7qWbuiMqwo+WWg==";
+ url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.25.0.tgz";
+ sha512 = "4KhFSO7QWyNXVlQzFVCAmTEgdOnPnQGbkaX+Wo/5NS1boH6IvbKAzZKFqrP8fE2Vl4wIWrt9srPpQA3HpyO3NQ==";
};
};
"@node-red/editor-api-2.0.6" = {
@@ -4423,13 +4585,13 @@ let
sha512 = "CLnD+zXG9oijEEzViimz8fbOoFVb7hoypiaf7p6giJhvYtrxLAyY3cZAMPIFQvsG731+02eMDp3LqVBNo7BaZA==";
};
};
- "@npmcli/ci-detect-1.3.0" = {
+ "@npmcli/ci-detect-1.4.0" = {
name = "_at_npmcli_slash_ci-detect";
packageName = "@npmcli/ci-detect";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz";
- sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==";
+ url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz";
+ sha512 = "3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q==";
};
};
"@npmcli/fs-1.0.0" = {
@@ -4684,13 +4846,13 @@ let
sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==";
};
};
- "@octokit/openapi-types-10.6.4" = {
+ "@octokit/openapi-types-11.2.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "10.6.4";
+ version = "11.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.6.4.tgz";
- sha512 = "JVmwWzYTIs6jACYOwD6zu5rdrqGIYsiAsLzTCxdrWIPNKNVjEF6vPTL20shmgJ4qZsq7WPBcLXLsaQD+NLChfg==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz";
+ sha512 = "PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4702,13 +4864,13 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-2.16.7" = {
+ "@octokit/plugin-paginate-rest-2.17.0" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "2.16.7";
+ version = "2.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.7.tgz";
- sha512 = "TMlyVhMPx6La1Ud4PSY4YxqAvb9YPEMs/7R1nBSbsw4wNqG73aBqls0r0dRRCWe5Pm0ZUGS9a94N46iAxlOR8A==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz";
+ sha512 = "tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -4720,13 +4882,13 @@ let
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
};
};
- "@octokit/plugin-rest-endpoint-methods-5.11.4" = {
+ "@octokit/plugin-rest-endpoint-methods-5.13.0" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.11.4";
+ version = "5.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.11.4.tgz";
- sha512 = "iS+GYTijrPUiEiLoDsGJhrbXIvOPfm2+schvr+FxNMs7PeE9Nl4bAMhE8ftfNX3Z1xLxSKwEZh0O7GbWurX5HQ==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz";
+ sha512 = "uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==";
};
};
"@octokit/plugin-retry-3.0.9" = {
@@ -4756,22 +4918,22 @@ let
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
};
};
- "@octokit/rest-18.11.4" = {
+ "@octokit/rest-18.12.0" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "18.11.4";
+ version = "18.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.11.4.tgz";
- sha512 = "QplypCyYxqMK05JdMSm/bDWZO8VWWaBdzQ9tbF9rEV9rIEiICh+v6q+Vu/Y5hdze8JJaxfUC+PBC7vrnEkZvZg==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz";
+ sha512 = "gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==";
};
};
- "@octokit/types-6.31.3" = {
+ "@octokit/types-6.34.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.31.3";
+ version = "6.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.31.3.tgz";
- sha512 = "IUG3uMpsLHrtEL6sCVXbxCgnbKcgpkS4K7gVEytLDvYYalkK3XcuMCHK1YPD8xJglSJAOAbL4MgXp47rS9G49w==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz";
+ sha512 = "s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==";
};
};
"@opencensus/core-0.0.8" = {
@@ -4819,310 +4981,328 @@ let
sha512 = "a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA==";
};
};
- "@ot-builder/bin-composite-types-1.1.2" = {
+ "@ot-builder/bin-composite-types-1.2.0" = {
name = "_at_ot-builder_slash_bin-composite-types";
packageName = "@ot-builder/bin-composite-types";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.1.2.tgz";
- sha512 = "o6dWvUCn6+kZbohKEe91vbiIXEjzSApv9mM9/B9p6s+aHdbCLu94/lch6Mwvc5FVPiDb8F5WIBKXz1/VCyOKWw==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.2.0.tgz";
+ sha512 = "AN2d2sVtQLq/2vrfzqIXhgOfmrXn/LeLIwqGkhGIAaqdFJt1shUAP0SMMjoNyA+27uQcBi6Cu9WqSVgUVvbNmw==";
};
};
- "@ot-builder/bin-util-1.1.2" = {
+ "@ot-builder/bin-util-1.2.0" = {
name = "_at_ot-builder_slash_bin-util";
packageName = "@ot-builder/bin-util";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.1.2.tgz";
- sha512 = "zo7cq3gYB+ajwKi+mYp3ocXEzApE/8BYVCO5wz5BbeCm9wMLW/TmjxG2+415BW7b+nJi0he3jfFdBkHP5eUnKQ==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.2.0.tgz";
+ sha512 = "0WNGJALiIKSMP54FtInc+WXPn0QyfHrQZfgpjUNb1EQjfk51uG0H1044mYqOAXginhxcm8yxH6m1/I4L7nmObQ==";
};
};
- "@ot-builder/cli-help-shower-1.1.2" = {
+ "@ot-builder/cli-help-shower-1.2.0" = {
name = "_at_ot-builder_slash_cli-help-shower";
packageName = "@ot-builder/cli-help-shower";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.1.2.tgz";
- sha512 = "h7LudXn+nZjDZZcmNmmd9CoHzl88mpoXuWMC8LewkwYbJlhUGUr95L9V+yfHzA+hWlQb+H9jNk1bXfGwXGVfOA==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.2.0.tgz";
+ sha512 = "oXLxLsX0NQnXE86T6WlStGdWLiBq0MirxZLR11mtBtU9FqWTIHxRQwaVA9UzvuwMRiwYC5ZL6MkYfdUBf1043w==";
};
};
- "@ot-builder/cli-proc-1.1.2" = {
+ "@ot-builder/cli-proc-1.2.0" = {
name = "_at_ot-builder_slash_cli-proc";
packageName = "@ot-builder/cli-proc";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.1.2.tgz";
- sha512 = "ob8T1LigHyd7efypJZ7GuGdRZ0cEDgJmT/VN1CoGzCJAy6EupMAmuTONp545l6ijoWZsausJov1TvVdJLsXjxA==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.2.0.tgz";
+ sha512 = "HeWBcJqRlrR8BT4GxV6BSeLajdr0J6sgKi9rU7eS1OQU06I85/DyQZMtMJecLYgaQ1tPFapxV3XH454/JGHnMQ==";
};
};
- "@ot-builder/cli-shared-1.1.2" = {
+ "@ot-builder/cli-shared-1.2.0" = {
name = "_at_ot-builder_slash_cli-shared";
packageName = "@ot-builder/cli-shared";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.1.2.tgz";
- sha512 = "jIOqlkvrCpbXyla0g0Rnn3goaAjDn9Rl189UMmI3lhsvt3LX+Dvh5DoGdZxgET8cJdRwmpxETwQFGDOk+GNB/A==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.2.0.tgz";
+ sha512 = "0qtfGBnID4RIg7jGfc0Cs4VhB9w6FhAvIzidUTWr4xdLubI4NqiKdxR44jfakP1SX4jMOyAG5ppNthUjpW8Xlg==";
};
};
- "@ot-builder/common-impl-1.1.2" = {
+ "@ot-builder/common-impl-1.2.0" = {
name = "_at_ot-builder_slash_common-impl";
packageName = "@ot-builder/common-impl";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.1.2.tgz";
- sha512 = "b5djcK7F9+31lDp3l/CK6xYhdbaXRNIbNVPyPCccD8FWEWc+rdHMw64cuDqCpvvTYYxeJ4MsTiB1Wu6FGip7/w==";
+ url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.2.0.tgz";
+ sha512 = "vOGP77F2lFx+ssf6uvZFh7E4TAiXeTPkU8JyfxZYAfnVMuKVcj0yZdgUs2tr5Akg/oxfbSo3MVWCz4hHALWXHQ==";
};
};
- "@ot-builder/errors-1.1.2" = {
+ "@ot-builder/errors-1.2.0" = {
name = "_at_ot-builder_slash_errors";
packageName = "@ot-builder/errors";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.1.2.tgz";
- sha512 = "/ISTVXtFkRppPABUvdCOa/Qvk2epPcsWuqwBsonXJjseSOKwJOpAqZ8GeGyoUkGITsl15RM6xQGRT+yhRyrmhw==";
+ url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.2.0.tgz";
+ sha512 = "bMVw+leFX8OhcAy72K5Eyn35LVz5TqTeUPzyZC8VXqf4xr+6o2PRPdmdIkDlxrB9HG0ZX3OQu4urT4m6eonNOw==";
};
};
- "@ot-builder/io-bin-cff-1.1.2" = {
+ "@ot-builder/io-bin-cff-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-cff";
packageName = "@ot-builder/io-bin-cff";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.1.2.tgz";
- sha512 = "XVNr5pE0p7tNNud1mkAYtPIK8is2a7mkw3O09sj4/hzpA/GwZ3oCxQBqzjqj/EnmzZsfiGQNOzE7C6bPF6w88A==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.2.0.tgz";
+ sha512 = "O9Snj8A7W/UI6jxcZ4cvcGhLv6Zia82BQVAZwjqaGagsyadaoVgBhd9EgHR4Pa0FFEdpG4JqC/JaP4c2Rj+I6A==";
};
};
- "@ot-builder/io-bin-encoding-1.1.2" = {
+ "@ot-builder/io-bin-encoding-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-encoding";
packageName = "@ot-builder/io-bin-encoding";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.1.2.tgz";
- sha512 = "+1L50dhuhPZbkoX8NRyiYta7Pwo7oaXD98ZHR5ViUbkeqAbBU+XtITq3kVQalawD/Y67QnvcvwPucsrNAcmkbA==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.2.0.tgz";
+ sha512 = "WjjghUL45GEB+23u0fgmaoCbapT7x7GzbkjcWbWFzshFOIjDyR+IFP+gicsgP5C3BQr4RGV8t/H/QfdjvjxnZA==";
};
};
- "@ot-builder/io-bin-ext-private-1.1.2" = {
+ "@ot-builder/io-bin-ext-private-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-ext-private";
packageName = "@ot-builder/io-bin-ext-private";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.1.2.tgz";
- sha512 = "70yML2r9T3MihFyzyx90l1yE/rA4PtWmQeInGwKb/3pijgMg8m/Qcdfwmgl2sx50wd4bEGLiTxXo8PJ1CDeVug==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.2.0.tgz";
+ sha512 = "xZBEeXf+2DEMoBnloVv7GQ603IbeCNV5kcyLf6VtjyHpDF0Gwh4wtVM6eTR3vLjfy56BEf50Gp4xjMaTR98eyw==";
};
};
- "@ot-builder/io-bin-font-1.1.2" = {
+ "@ot-builder/io-bin-font-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-font";
packageName = "@ot-builder/io-bin-font";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.1.2.tgz";
- sha512 = "CY4VlN9N2GgwYo1s3TEe03JcEC7M+IXVtwern4RBueYBU8i03DYcaLRykXXKBUEM9KGuA4CcpafhlxJdLrKcHw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.2.0.tgz";
+ sha512 = "R09LJQpAY33wJroy5dFUjggncXFC9hwTcE3rriIT0HjwAOQUd7NtRMtts7nAwTpPimGMhl4dDl9DWw9OPfsgXw==";
};
};
- "@ot-builder/io-bin-glyph-store-1.1.2" = {
+ "@ot-builder/io-bin-glyph-store-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-glyph-store";
packageName = "@ot-builder/io-bin-glyph-store";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.1.2.tgz";
- sha512 = "qw3GRaYN6fepIEOpELNQTxZSIrhFtisE2QhY+bj7Rg4OG0L8Mu+tR+AqbHidvaAFQaMleFY6s7vEk79/5ZCMdg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.2.0.tgz";
+ sha512 = "pxJj4OtcRaMYvwSWAJEYvVyrug3S7XuRlSBvBLcl0lQ7jCADQBnQnSXGkUBRDWsIjM/t/EFBvCKeCfbS04HHFQ==";
};
};
- "@ot-builder/io-bin-layout-1.1.2" = {
+ "@ot-builder/io-bin-layout-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-layout";
packageName = "@ot-builder/io-bin-layout";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.1.2.tgz";
- sha512 = "LJvm+XshKqMEdMVM2MbILGtpTlo+izUPqmiWVpeDEtkzDKuKcES6zvb3VJLt550Ug7neJbE/k6wq+PUt+20wJw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.2.0.tgz";
+ sha512 = "0HkF8xGSHozP8uof5GrgHtif5ahkHKsDKFz0O8KTRQEEEaZmN/4K76E18msa72EC/wDGFRdfSvoiapaQopUZGg==";
};
};
- "@ot-builder/io-bin-metadata-1.1.2" = {
+ "@ot-builder/io-bin-metadata-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-metadata";
packageName = "@ot-builder/io-bin-metadata";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.1.2.tgz";
- sha512 = "UAJzjPsDUtQozQJvVpGSPhCnKZiuoA0o4od74pnqRY7f6gDx0tHYM5fpv4ZIcQRS5ORG6XVxtRq3kLndDb4+3A==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.2.0.tgz";
+ sha512 = "dPb9w9IxjEv0McQN3E8zufxml8YyGV1/mSiT6x2yAhYQpuoef/cHfF1HJHpYhnqyzI2vlM5JP2UUr7XyuDvmsg==";
};
};
- "@ot-builder/io-bin-metric-1.1.2" = {
+ "@ot-builder/io-bin-metric-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-metric";
packageName = "@ot-builder/io-bin-metric";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.1.2.tgz";
- sha512 = "bKR4L7V2jnOaL7Ait0WIYLDM4vDgp/MbB9wDSXCquFWxdjOww7GBrVuOs6Dw4Aldp68wNre9OnwKB5oj3IKyIw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.2.0.tgz";
+ sha512 = "SP5Rwv7yyptMvRErMPQLolt+96RSBFPY4ctsUvyolG61Jrz9Se6/FflCcBnSK79Xy1+9XepMMGaWvxTl57jwYQ==";
};
};
- "@ot-builder/io-bin-name-1.1.2" = {
+ "@ot-builder/io-bin-name-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-name";
packageName = "@ot-builder/io-bin-name";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.1.2.tgz";
- sha512 = "UtLy1XOcF03jhR31C1NXesjoZEc9MeGJTwtYU/hXzN0KKPxhl9ZDUjzTI7zWJ4K0tDYuS+LUcgJj1gdG21NnAA==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.2.0.tgz";
+ sha512 = "zMsPafrJC3fOEc/HmIBDB9ULn++QhcO5nXS7UTynW6t9ddgllaCGfBwqNdrCLYmBP1Sy0HTTL7kda/R5mfZVhg==";
};
};
- "@ot-builder/io-bin-sfnt-1.1.2" = {
+ "@ot-builder/io-bin-sfnt-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-sfnt";
packageName = "@ot-builder/io-bin-sfnt";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.1.2.tgz";
- sha512 = "hfAsJXdIyZuxu1tzjIVjH4hfLVLAmipsaRJXEJwf5VtvpyOheV0wUCJ57Fq0zSSQlMBEyPFDJ0ubDT6Z9tKJBg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.2.0.tgz";
+ sha512 = "g0E0ltjDvBnsog7gIqMPEmlRmgs7tbIurYbDd1QmorGNmmcxaCQxbyKSiZF6tcHzDmSC9vLprdymbFKzzudFPQ==";
};
};
- "@ot-builder/io-bin-ttf-1.1.2" = {
+ "@ot-builder/io-bin-ttf-1.2.0" = {
name = "_at_ot-builder_slash_io-bin-ttf";
packageName = "@ot-builder/io-bin-ttf";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.1.2.tgz";
- sha512 = "G/40yZStFXTAHjR5iQ7ZyoH7USJU6IMVbn8sEAMbvQc3GzDeHxhPADoyuxRn/nFzwaa0z6ut6ef85ebOgkFuww==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.2.0.tgz";
+ sha512 = "VyZgZbycG8fwXweQ8hMBQTBHyMGg6J94lgg3eWmBJnxRWiI/odBtvQJZvFlgkgJCALOvWlMFQkftmFVn8lWpDw==";
};
};
- "@ot-builder/ot-1.1.2" = {
+ "@ot-builder/io-bin-vtt-private-1.2.0" = {
+ name = "_at_ot-builder_slash_io-bin-vtt-private";
+ packageName = "@ot-builder/io-bin-vtt-private";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.2.0.tgz";
+ sha512 = "W7PXVXigsCtAlxtzTlz1fd1CCc5s2rhJfCeOcJYMpH4BfYekE1e/0gM/eAR3QVP9k9a6L/tKICsJD+AHm4NmNw==";
+ };
+ };
+ "@ot-builder/ot-1.2.0" = {
name = "_at_ot-builder_slash_ot";
packageName = "@ot-builder/ot";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.1.2.tgz";
- sha512 = "hAQIxPEbElfXGydy5sYqSl7kzM5eHbTaDBN23RlUbgTwF3OCDdUYUXwCEOfh4pDebFRNLn/C7sue8pud62lp2Q==";
+ url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.2.0.tgz";
+ sha512 = "0lnFEXwOXy+HvzAHTnOhPiY04c0sgLkQ3z6UbtScapP7ppmowyJsoMCSnMzuuNNCxgPu+9E1/r6pdxY4SZV4fw==";
};
};
- "@ot-builder/ot-encoding-1.1.2" = {
+ "@ot-builder/ot-encoding-1.2.0" = {
name = "_at_ot-builder_slash_ot-encoding";
packageName = "@ot-builder/ot-encoding";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.1.2.tgz";
- sha512 = "E+NYgSUpRLOWe+Iua/9WzfXSMZtJUdFBuJcAXdIaZoyUaGDPyEEvnc4PVYMH0dNuU8O+8D19ruX39L4OXiAH2Q==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.2.0.tgz";
+ sha512 = "HE8UEBbFR2yj2YK4tmFPyC7I2JPCcxgQStS6Z6McwfXcVCY+QLIubhUO9vpDXps52jc+/OxGjuMtcksGOiTEIw==";
};
};
- "@ot-builder/ot-ext-private-1.1.2" = {
+ "@ot-builder/ot-ext-private-1.2.0" = {
name = "_at_ot-builder_slash_ot-ext-private";
packageName = "@ot-builder/ot-ext-private";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.1.2.tgz";
- sha512 = "SLMlVkiWo36+5k2XpUfxOP9bHxlhEQbZ86ZXE3C7g9B7c/fCDKcOR6SaTSd66syc32WDNPEmeJWZ9OCW6Yh4cw==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.2.0.tgz";
+ sha512 = "Ha5VyFKLTj5wletYzbKXuieRr0w9QvjkpNzHdCuh7D1SVQfhuqF6s2F7adIVJLoaHx3zrDISO6LeO2wO8gqqZA==";
};
};
- "@ot-builder/ot-glyphs-1.1.2" = {
+ "@ot-builder/ot-glyphs-1.2.0" = {
name = "_at_ot-builder_slash_ot-glyphs";
packageName = "@ot-builder/ot-glyphs";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.1.2.tgz";
- sha512 = "s+NXHOMl+p4uWtUwfL7qFUCyYSGbIpa0/MQsE2d8T1Gt1LhICpupiCc8yvbHntXjyD7FvQxHwbtdqz9uWIpn+A==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.2.0.tgz";
+ sha512 = "+XbeTewi1eNrKXEuyBxfhiYFmYGXdRhHefv+gmUrwV8YPHtMiMsjtTp0WB+1rRySJ6IYTI38su2qunK5pmHmeg==";
};
};
- "@ot-builder/ot-layout-1.1.2" = {
+ "@ot-builder/ot-layout-1.2.0" = {
name = "_at_ot-builder_slash_ot-layout";
packageName = "@ot-builder/ot-layout";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.1.2.tgz";
- sha512 = "Ur/4xpO8FMdANPOIDi30M0vXo7ZyegUQjfEfFlUBtTdFqxrqS/1G5Wn0/f0Z0vmjItfFMSgPrS8zkmT9eTds1Q==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.2.0.tgz";
+ sha512 = "VjDs3UPfUEKBLxpVekQMZboLUXxZ2+uG4mZD9EtE/fD6r7jrm3jf7wAT8eGbLGbEW0iH+U0Ta1dQWm2Sc4Q9TA==";
};
};
- "@ot-builder/ot-metadata-1.1.2" = {
+ "@ot-builder/ot-metadata-1.2.0" = {
name = "_at_ot-builder_slash_ot-metadata";
packageName = "@ot-builder/ot-metadata";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.1.2.tgz";
- sha512 = "lsoAhFl0C2DM/xei5T9ITH1LakKyEjGJHYbvn6fQ1UR73JRK+Zr9696jcuRSB1iodCuHwpjDxcIb3u11NVNx3Q==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.2.0.tgz";
+ sha512 = "xFd9MKcgKIwE7WlbgJPhxT/8urRuLTb0PfcxLgvwBB8LD7MSS13ji93ZNqDBwk0TfKrOUgh+ZW53fH4/lOGf7g==";
};
};
- "@ot-builder/ot-name-1.1.2" = {
+ "@ot-builder/ot-name-1.2.0" = {
name = "_at_ot-builder_slash_ot-name";
packageName = "@ot-builder/ot-name";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.1.2.tgz";
- sha512 = "jpDfDbPkwgeHqKmf8XjP5WYMrElEZAwwbbwTEdsxC4BrWg1q0q5wVZ/xIxClRwUlMOBv1IdE16CiP0i/Ly4WCg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.2.0.tgz";
+ sha512 = "vVO6uKDiI9mEOEcpvHxDriFiK4CcdMWMghE4BOgJ8BBq97IydJ5KpdbMiJnYSmOed+FMXHkUevJ46yBHpvmPEg==";
};
};
- "@ot-builder/ot-sfnt-1.1.2" = {
+ "@ot-builder/ot-sfnt-1.2.0" = {
name = "_at_ot-builder_slash_ot-sfnt";
packageName = "@ot-builder/ot-sfnt";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.1.2.tgz";
- sha512 = "3WTPo5zEn5hCqi5aC8eKSLthsExQiGU/B9mgMLtDtBd1bIpjeFsLfqo7Ug//DGf9tW0DT7PXt8VZkDISmAoYBw==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.2.0.tgz";
+ sha512 = "An8mfyqo6QyHhnIE4n3TiWo8Y2hHPhk+ahQWEW4Ydw475WXAye/l5XhpC9/fORWjlniL55ouTfvM31VBEimzow==";
};
};
- "@ot-builder/ot-standard-glyph-namer-1.1.2" = {
+ "@ot-builder/ot-standard-glyph-namer-1.2.0" = {
name = "_at_ot-builder_slash_ot-standard-glyph-namer";
packageName = "@ot-builder/ot-standard-glyph-namer";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.1.2.tgz";
- sha512 = "lzR22ycw2dF4QzMi26CU2Ezb2udwrayas9nM0KTNayN3Fqp5+7A5r8RmjCLdsT3I5aqQVzNQkyRAKdK6B7id3A==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.2.0.tgz";
+ sha512 = "1kkw1qdVJBuWegIjlGK/ZLWCoaZFPP+PhVowya4XTb0qP/EqgthZaP2uQ6+N5BMyVXn8XnaCyzjtBFZRspY37g==";
};
};
- "@ot-builder/prelude-1.1.2" = {
+ "@ot-builder/ot-vtt-private-1.2.0" = {
+ name = "_at_ot-builder_slash_ot-vtt-private";
+ packageName = "@ot-builder/ot-vtt-private";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.2.0.tgz";
+ sha512 = "/LgrrD2sdW6mbGWJtrKBKgaFrV8/Kgzs83FsqgC8YVvpRm2Ncb06XHs02MHCVztkTiBt7QN6MnNfZwycojGLMw==";
+ };
+ };
+ "@ot-builder/prelude-1.2.0" = {
name = "_at_ot-builder_slash_prelude";
packageName = "@ot-builder/prelude";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.1.2.tgz";
- sha512 = "NJ6bIfXqE752DJfIwjZbGM9hwBE8TKThHBb7wZO7EJ9EKy36RnDsOim8w/dO+e8XysYdhng/kl/qaF8dHFmQJw==";
+ url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.2.0.tgz";
+ sha512 = "Df7L2UqUbzimN5vODcdRAwsIwU4fDkUp8SObTsVsYlLWN8qtG+F5IltYw2BNVerufI5qiA1145WpSi+1Dr3J7g==";
};
};
- "@ot-builder/primitive-1.1.2" = {
+ "@ot-builder/primitive-1.2.0" = {
name = "_at_ot-builder_slash_primitive";
packageName = "@ot-builder/primitive";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.1.2.tgz";
- sha512 = "sjWQytHNlW9WALbm1m77ue/om+8/4uWOOMXa9839nJU7VNg4CepwPEs4BgDbpQSAUiwSakGrsZqu8DYIGURndg==";
+ url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.2.0.tgz";
+ sha512 = "aiKTWfI91wrN2FMslnPi/gHQrnjyPpxtOWrxIY49rKBWNJKytnWLZf5qPc5r6CsFpywIqj/hOA0cIO+MTJCy9Q==";
};
};
- "@ot-builder/rectify-1.1.2" = {
+ "@ot-builder/rectify-1.2.0" = {
name = "_at_ot-builder_slash_rectify";
packageName = "@ot-builder/rectify";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.1.2.tgz";
- sha512 = "Q/IzyHLV/LO68zWn0/DkpCTnf8uozVKOjUKEqT0ACawN2iFr6CM/YvOPu6lXhjv4Z+L4AoypJYeRgWEwT5Y9Bw==";
+ url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.2.0.tgz";
+ sha512 = "S341nLIehPw2BJWYau6sbunvymB+FZW94cPYhOubQqwMteURkKGleJrkVyCD2zVa04luZvcFJgGtUYNhcGPOzg==";
};
};
- "@ot-builder/stat-glyphs-1.1.2" = {
+ "@ot-builder/stat-glyphs-1.2.0" = {
name = "_at_ot-builder_slash_stat-glyphs";
packageName = "@ot-builder/stat-glyphs";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.1.2.tgz";
- sha512 = "samD/GuqydGxLB67hkizsDrFb+RxeV5EuaW2Y3rhw4fkq9SkcBIjMf1qp7O5PyDTeWugZKE8Rnf0tNcmx6cAtg==";
+ url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.2.0.tgz";
+ sha512 = "tVTpC1Qwp5CZDHLmgiRjvn5NEmgo9uYgLKzj704orNvM6ptM4M9IADk8AYa1gXYkRezJgV8xfFyEMTXQdjFuyQ==";
};
};
- "@ot-builder/trace-1.1.2" = {
+ "@ot-builder/trace-1.2.0" = {
name = "_at_ot-builder_slash_trace";
packageName = "@ot-builder/trace";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.1.2.tgz";
- sha512 = "8MDMqqhprb0H8pt8Oprn3WqmeTwBLsEW+GeZkdfU6qxPlH80ukZQy5dDzaARUaGHdNwl1I4uKpFnxlKHdx9csQ==";
+ url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.2.0.tgz";
+ sha512 = "UJSOfGjo9QkC/+3XU5DrLFl9H7J09TCJtRWdReTauFqiINSpoGtVS+7Qbc8M+eVvQ6KI0OdpjdXq9uKI3dKF0g==";
};
};
- "@ot-builder/var-store-1.1.2" = {
+ "@ot-builder/var-store-1.2.0" = {
name = "_at_ot-builder_slash_var-store";
packageName = "@ot-builder/var-store";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.1.2.tgz";
- sha512 = "+uV8qPP3/ZPofaUMkfJZPy+aMzkzSpMT9Yp5POmNiwM8hbxBKvSZFCvZJGvwdTv+W68Tf3aT7EOzPYF3pPpRRA==";
+ url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.2.0.tgz";
+ sha512 = "nQYv0Ym67BnApIXSNtLnmTdfZxEGY9tihq0nFtlbh44BQQnlLVKhKQD3iKcJyPkZvV6NzPdNSLmBs99cT9YE0Q==";
};
};
- "@ot-builder/variance-1.1.2" = {
+ "@ot-builder/variance-1.2.0" = {
name = "_at_ot-builder_slash_variance";
packageName = "@ot-builder/variance";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.1.2.tgz";
- sha512 = "gUgBg/WsZMDZDkg/6iRGjclbSL+IJGqpcgTLto5A5GSgyo8uj1m5/JsxE9RP6J4PCYU+70s2RsHgjy7KjYtV7g==";
+ url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.2.0.tgz";
+ sha512 = "B32KgSa8zM7ZTq7EQB1GsXQmQ+IRDYuAE2W/v5+BYqzcY2B448F8QmZVK0GCYDVdDzG61c8kb2kiOViSNz5bag==";
};
};
"@parcel/fs-1.11.0" = {
@@ -5215,13 +5395,13 @@ let
sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA==";
};
};
- "@prisma/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f" = {
+ "@prisma/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c" = {
name = "_at_prisma_slash_engines";
packageName = "@prisma/engines";
- version = "3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f";
+ version = "3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f.tgz";
- sha512 = "6NEp0VlLho3hVtIvj2P4h0e19AYqQSXtFGts8gSIXDnV+l5pRFZaDMfGo2RiLMR0Kfrs8c3ZYxYX0sWmVL0tWw==";
+ url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c.tgz";
+ sha512 = "wnHODKLQGKkE2ZCHxHQEf/4Anq/EP0ZCvX++D5w34033mwZ94iZiOsEKZZ31fgki7MTh28F1VNF5ZSFdnRjgvQ==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -5377,13 +5557,13 @@ let
sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w==";
};
};
- "@redocly/openapi-core-1.0.0-beta.62" = {
+ "@redocly/openapi-core-1.0.0-beta.63" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.62";
+ version = "1.0.0-beta.63";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.62.tgz";
- sha512 = "g4iPB7qpSNFCOpf/FgKiic+QCaCn4mdNQOWVEPuwpN7l72hlQ7J3YUa9cssJomkJXXxZ1zdP4h208s12LkhwVA==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.63.tgz";
+ sha512 = "ZnIoUyZ6BJZ4wnkGM9YAHe8MqHNcgEHVTjM1IsZkvwoDQ6TTV/B7P7gHOKCcgkyBb/sQNShgSAO5Y+lIfKU2+g==";
};
};
"@redocly/react-dropdown-aria-2.0.12" = {
@@ -5476,13 +5656,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-12.2.8" = {
+ "@schematics/angular-12.2.10" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "12.2.8";
+ version = "12.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.8.tgz";
- sha512 = "xkVcX6lTHC5JzDOjGdRAZutVVpxkRkT84vXtVlJwojyhNjAZg5dm/GC84+gVGfmVnO9vkUIYo/vGoN+/ydcSdA==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.10.tgz";
+ sha512 = "hjOWrC/RlZ97oYWO92f5VRu6LDzPHnowDcyGDGvI9wCrfipL4Y7Is6LgFAiVZxCHdRz71MCnES1IXSj5w6UuBA==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -5530,13 +5710,13 @@ let
sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ==";
};
};
- "@serverless/dashboard-plugin-5.4.5" = {
+ "@serverless/dashboard-plugin-5.4.8" = {
name = "_at_serverless_slash_dashboard-plugin";
packageName = "@serverless/dashboard-plugin";
- version = "5.4.5";
+ version = "5.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.5.tgz";
- sha512 = "/GC25lNFBcUQ/jK4ArDkx7yJk8a+QVXPHa7jakb8zXYDUy1s9XbXW5R8Lj0X1s1e8NG52+rCh6y1gy53hGqvbQ==";
+ url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.8.tgz";
+ sha512 = "vAXlfM33fRsYDeHTjFLlgA6VCxeXEkB8rx/mqQv5kv48KO4gwRsmgV4/xzEnk2fSQVPlyHL66DG0IvgFyEeC3Q==";
};
};
"@serverless/event-mocks-1.1.1" = {
@@ -5593,13 +5773,13 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-5.17.0" = {
+ "@serverless/utils-5.18.0" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "5.17.0";
+ version = "5.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.17.0.tgz";
- sha512 = "Xnkg1xPjXFCiXXvsIi+inl9lgWSyEyG6tUpGzaKbpPcPo16xruBUX+aRKtMd53QXe3WJVe7+1+MOzjiXbRzE1A==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.18.0.tgz";
+ sha512 = "vq6tzG3RilZVugbJBvBOU5XBVRTzGce1XH6zvivMM8c+a6wmMUcRRfTD0SPTCWxD2hSdv4WrH3Yz27Ez55vrSA==";
};
};
"@serverless/utils-china-1.1.4" = {
@@ -6115,6 +6295,15 @@ let
sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==";
};
};
+ "@tootallnate/once-2.0.0" = {
+ name = "_at_tootallnate_slash_once";
+ packageName = "@tootallnate/once";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz";
+ sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==";
+ };
+ };
"@trysound/sax-0.2.0" = {
name = "_at_trysound_slash_sax";
packageName = "@trysound/sax";
@@ -6304,13 +6493,13 @@ let
sha512 = "20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==";
};
};
- "@types/component-emitter-1.2.10" = {
+ "@types/component-emitter-1.2.11" = {
name = "_at_types_slash_component-emitter";
packageName = "@types/component-emitter";
- version = "1.2.10";
+ version = "1.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz";
- sha512 = "bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==";
+ url = "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz";
+ sha512 = "SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==";
};
};
"@types/connect-3.4.35" = {
@@ -6448,13 +6637,13 @@ let
sha512 = "qNjVXcrp+1sS8YpRUa714r0pgzOwESdW5UjHL7D/2ZFdBX0BXUXtg1LUrp+ylvqbvMcMWUy73YpRoxPN2VoKAQ==";
};
};
- "@types/eslint-7.28.0" = {
+ "@types/eslint-7.28.1" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "7.28.0";
+ version = "7.28.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz";
- sha512 = "07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.1.tgz";
+ sha512 = "XhZKznR3i/W5dXqUhgU9fFdJekufbeBd5DALmkuXoeFcjbQcPk+2cL+WLHf6Q81HWAnM2vrslIHpGVyCAviRwg==";
};
};
"@types/eslint-scope-3.7.1" = {
@@ -6709,13 +6898,13 @@ let
sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==";
};
};
- "@types/jquery-3.5.6" = {
+ "@types/jquery-3.5.7" = {
name = "_at_types_slash_jquery";
packageName = "@types/jquery";
- version = "3.5.6";
+ version = "3.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.6.tgz";
- sha512 = "SmgCQRzGPId4MZQKDj9Hqc6kSXFNWZFHpELkyK8AQhf8Zr6HKfCzFv9ZC1Fv3FyQttJZOlap3qYb12h61iZAIg==";
+ url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.7.tgz";
+ sha512 = "Why+9t1KuqWtIqYKtbk6wgWbE1PjyXJOyGkpmTUh0RX5p4HL7nnRuBkjAO9P2r9tGQP6bLWxl77jRLew3V5xXg==";
};
};
"@types/js-yaml-3.12.5" = {
@@ -6979,13 +7168,13 @@ let
sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==";
};
};
- "@types/node-12.20.27" = {
+ "@types/node-12.20.33" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.20.27";
+ version = "12.20.33";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.20.27.tgz";
- sha512 = "qZdePUDSLAZRXXV234bLBEUM0nAQjoxbcSwp1rqSMUe1rZ47mwU6OjciR/JvF1Oo8mc0ys6GE0ks0HGgqAZoGg==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.20.33.tgz";
+ sha512 = "5XmYX2GECSa+CxMYaFsr2mrql71Q4EvHjKS+ox/SiwSdaASMoBIWE6UmZqFO+VX1jIcsYLStI4FFoB6V7FeIYw==";
};
};
"@types/node-14.11.1" = {
@@ -6997,13 +7186,13 @@ let
sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==";
};
};
- "@types/node-14.17.20" = {
+ "@types/node-14.17.27" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.17.20";
+ version = "14.17.27";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.17.20.tgz";
- sha512 = "gI5Sl30tmhXsqkNvopFydP7ASc4c2cLfGNQrVKN3X90ADFWFsPEsotm/8JHSUJQKTHbwowAHtcJPeyVhtKv0TQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz";
+ sha512 = "94+Ahf9IcaDuJTle/2b+wzvjmutxXAEXU6O81JHblYXUg2BDG+dnBy7VxIPHKAyEEDHzCMQydTJuWvrE+Aanzw==";
};
};
"@types/node-15.14.9" = {
@@ -7024,22 +7213,31 @@ let
sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA==";
};
};
- "@types/node-16.10.2" = {
+ "@types/node-16.10.3" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.10.2";
+ version = "16.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.10.2.tgz";
- sha512 = "zCclL4/rx+W5SQTzFs9wyvvyCwoK9QtBpratqz2IYJ3O8Umrn0m3nsTv0wQBk9sRGpvUe9CwPDrQFB10f1FIjQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz";
+ sha512 = "ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ==";
};
};
- "@types/node-16.6.1" = {
+ "@types/node-16.10.4" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.6.1";
+ version = "16.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.6.1.tgz";
- sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.10.4.tgz";
+ sha512 = "EITwVTX5B4nDjXjGeQAfXOrm+Jn+qNjDmyDRtWoD+wZsl/RDPRTFRKivs4Mt74iOFlLOrE5+Kf+p5yjyhm3+cA==";
+ };
+ };
+ "@types/node-16.11.0" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "16.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.0.tgz";
+ sha512 = "8MLkBIYQMuhRBQzGN9875bYsOhPnf/0rgXGo66S2FemHkhbn9qtsz9ywV1iCG+vbjigE4WUNVvw37Dx+L0qsPg==";
};
};
"@types/node-16.7.3" = {
@@ -7222,13 +7420,13 @@ let
sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ==";
};
};
- "@types/react-16.14.16" = {
+ "@types/react-16.14.17" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "16.14.16";
+ version = "16.14.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-16.14.16.tgz";
- sha512 = "7waDQ0h1TkAk99S04wV0LUiiSXpT02lzrdDF4WZFqn2W0XE5ICXLBMtqXWZ688aX2dJislQ3knmZX/jH53RluQ==";
+ url = "https://registry.npmjs.org/@types/react/-/react-16.14.17.tgz";
+ sha512 = "pMLc/7+7SEdQa9A+hN9ujI8blkjFqYAZVqh3iNXqdZ0cQ8TIR502HMkNJniaOGv9SAgc47jxVKoiBJ7c0AakvQ==";
};
};
"@types/react-dom-16.9.14" = {
@@ -7447,6 +7645,15 @@ let
sha512 = "FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==";
};
};
+ "@types/tough-cookie-2.3.8" = {
+ name = "_at_types_slash_tough-cookie";
+ packageName = "@types/tough-cookie";
+ version = "2.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.8.tgz";
+ sha512 = "7axfYN8SW9pWg78NgenHasSproWQee5rzyPVLC9HpaQSDgNArsnKJD88EaMfi4Pl48AyciO3agYCFqpHS1gLpg==";
+ };
+ };
"@types/tough-cookie-4.0.1" = {
name = "_at_types_slash_tough-cookie";
packageName = "@types/tough-cookie";
@@ -7519,13 +7726,13 @@ let
sha512 = "ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==";
};
};
- "@types/vscode-1.60.0" = {
+ "@types/vscode-1.61.0" = {
name = "_at_types_slash_vscode";
packageName = "@types/vscode";
- version = "1.60.0";
+ version = "1.61.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.60.0.tgz";
- sha512 = "wZt3VTmzYrgZ0l/3QmEbCq4KAJ71K3/hmMQ/nfpv84oH8e81KKwPEoQ5v8dNCxfHFVJ1JabHKmCvqdYOoVm1Ow==";
+ url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.61.0.tgz";
+ sha512 = "9k5Nwq45hkRwdfCFY+eKXeQQSbPoA114mF7U/4uJXRBJeGIO7MuJdhF1PnaDN+lllL9iKGQtd6FFXShBXMNaFg==";
};
};
"@types/webpack-4.41.31" = {
@@ -7852,6 +8059,15 @@ let
sha512 = "BZCHRz43Qfr0DwZlZQCcofR+3cr+H+HK72/ZPkZy1Uq0NYjJMlmZ3ahuMgvJxT9lfC1RA6eOEUlUsZ+gqKcMCg==";
};
};
+ "@vercel/nft-0.15.1" = {
+ name = "_at_vercel_slash_nft";
+ packageName = "@vercel/nft";
+ version = "0.15.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.15.1.tgz";
+ sha512 = "ehD1bgCG9sZliAHku2fc1L+jKLad4wS+9HHWiIs4HT4SysA/JFSXRrfWuA+INumzuaFqrOKs3vQeLVhZ4o8lTw==";
+ };
+ };
"@vercel/node-1.12.1" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
@@ -7879,67 +8095,67 @@ let
sha512 = "ZG2VxMHHSKocL57UWsfNc9UsblwYGm55/ujqGIBnkNUURnRgtUrwtWlEts1eJ4VHD754Lc/0/R1pfJXoN5SbRw==";
};
};
- "@vue/cli-shared-utils-4.5.13" = {
+ "@vue/cli-shared-utils-4.5.14" = {
name = "_at_vue_slash_cli-shared-utils";
packageName = "@vue/cli-shared-utils";
- version = "4.5.13";
+ version = "4.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.13.tgz";
- sha512 = "HpnOrkLg42RFUsQGMJv26oTG3J3FmKtO2WSRhKIIL+1ok3w9OjGCtA3nMMXN27f9eX14TqO64M36DaiSZ1fSiw==";
+ url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.14.tgz";
+ sha512 = "OJeabPep8yvQ7n2lgbsw6lzBXmjaBHlCt7k9wnsPiXKtNAnHsv40ejARRnj4HTOuMaW6i1QQ17X3WaozI0zaMw==";
};
};
- "@vue/cli-ui-4.5.13" = {
+ "@vue/cli-ui-4.5.14" = {
name = "_at_vue_slash_cli-ui";
packageName = "@vue/cli-ui";
- version = "4.5.13";
+ version = "4.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.13.tgz";
- sha512 = "kXsmK+KAX9A2ribCJ+JuFcJ9ICEKluWuFtJEwUMOvo85O/l5UNupA7XoCrXeHoItdVtw32hAOv+bEV+KmyPyuQ==";
+ url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.14.tgz";
+ sha512 = "1bK/GvUH6vND8YH2ByTZwxAYgJ1azDwgUkmGDsedzwpeZC5Z6pjkOCp97eE3gcJaFqC4ABS6vWuCLq8Q4Ih3Jw==";
};
};
- "@vue/cli-ui-addon-webpack-4.5.13" = {
+ "@vue/cli-ui-addon-webpack-4.5.14" = {
name = "_at_vue_slash_cli-ui-addon-webpack";
packageName = "@vue/cli-ui-addon-webpack";
- version = "4.5.13";
+ version = "4.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.13.tgz";
- sha512 = "mtk174vPRza0aMqMvx80U/BBmprlOq8ngHr5v3+MYIC1tqzB7co5fCJvyGI/QJ4DjO6O0MaaTGBsxOp/YsqRaQ==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.14.tgz";
+ sha512 = "DOe0+CZ2MKu8CDHplRwl9Nl9ubA7FvSV/wthdcHUZZuNP8UdAeD/Rst9ns5Nn3WnwEfgVgzWVLlhosJjC7IRow==";
};
};
- "@vue/cli-ui-addon-widgets-4.5.13" = {
+ "@vue/cli-ui-addon-widgets-4.5.14" = {
name = "_at_vue_slash_cli-ui-addon-widgets";
packageName = "@vue/cli-ui-addon-widgets";
- version = "4.5.13";
+ version = "4.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.13.tgz";
- sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.14.tgz";
+ sha512 = "ejMRJG/YBlns22mFsCZGF127ZjORbsMhfTiK9Op2js8YTIYnDWyqd+ANS4M4erpRFM+P9nTJtn3/dhwusbGTKw==";
};
};
- "@vue/compiler-core-3.2.19" = {
+ "@vue/compiler-core-3.2.20" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.2.19";
+ version = "3.2.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.19.tgz";
- sha512 = "8dOPX0YOtaXol0Zf2cfLQ4NU/yHYl2H7DCKsLEZ7gdvPK6ZSEwGLJ7IdghhY2YEshEpC5RB9QKdC5I07z8Dtjg==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.20.tgz";
+ sha512 = "vcEXlKXoPwBXFP5aUTHN9GTZaDfwCofa9Yu9bbW2C5O/QSa9Esdt7OG4+0RRd3EHEMxUvEdj4RZrd/KpQeiJbA==";
};
};
- "@vue/compiler-dom-3.2.19" = {
+ "@vue/compiler-dom-3.2.20" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.2.19";
+ version = "3.2.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.19.tgz";
- sha512 = "WzQoE8rfkFjPtIioc7SSgTsnz9g2oG61DU8KHnzPrRS7fW/lji6H2uCYJfp4Z6kZE8GjnHc1Ljwl3/gxDes0cw==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.20.tgz";
+ sha512 = "QnI77ec/JtV7R0YBbcVayYTDCRcI9OCbxiUQK6izVyqQO0658n0zQuoNwe+bYgtqnvGAIqTR3FShTd5y4oOjdg==";
};
};
- "@vue/shared-3.2.19" = {
+ "@vue/shared-3.2.20" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.2.19";
+ version = "3.2.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.19.tgz";
- sha512 = "Knqhx7WieLdVgwCAZgTVrDCXZ50uItuecLh9JdLC8O+a5ayaSyIQYveUK3hCRNC7ws5zalHmZwfdLMGaS8r4Ew==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.20.tgz";
+ sha512 = "FbpX+hD5BvXCQerEYO7jtAGHlhAkhTQ4KIV73kmLWNlawWhTiVuQxizgVb0BOkX5oG9cIRZ42EG++d/k/Efp0w==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -8437,31 +8653,31 @@ let
sha512 = "2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==";
};
};
- "@webpack-cli/configtest-1.0.4" = {
+ "@webpack-cli/configtest-1.1.0" = {
name = "_at_webpack-cli_slash_configtest";
packageName = "@webpack-cli/configtest";
- version = "1.0.4";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.4.tgz";
- sha512 = "cs3XLy+UcxiP6bj0A6u7MLLuwdXJ1c3Dtc0RkKg+wiI1g/Ti1om8+/2hc2A2B60NbBNAbMgyBMHvyymWm/j4wQ==";
+ url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz";
+ sha512 = "ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==";
};
};
- "@webpack-cli/info-1.3.0" = {
+ "@webpack-cli/info-1.4.0" = {
name = "_at_webpack-cli_slash_info";
packageName = "@webpack-cli/info";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.3.0.tgz";
- sha512 = "ASiVB3t9LOKHs5DyVUcxpraBXDOKubYu/ihHhU+t1UPpxsivg6Od2E2qU4gJCekfEddzRBzHhzA/Acyw/mlK/w==";
+ url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz";
+ sha512 = "F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==";
};
};
- "@webpack-cli/serve-1.5.2" = {
+ "@webpack-cli/serve-1.6.0" = {
name = "_at_webpack-cli_slash_serve";
packageName = "@webpack-cli/serve";
- version = "1.5.2";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.5.2.tgz";
- sha512 = "vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw==";
+ url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz";
+ sha512 = "ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==";
};
};
"@wry/context-0.6.1" = {
@@ -8977,6 +9193,15 @@ let
sha1 = "4d74628fc431b09cdcaa1fb2b23d1ec83c5d2f32";
};
};
+ "acorn-1.2.2" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
+ sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ };
+ };
"acorn-2.7.0" = {
name = "acorn";
packageName = "acorn";
@@ -9049,6 +9274,15 @@ let
sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==";
};
};
+ "acorn-class-fields-1.0.0" = {
+ name = "acorn-class-fields";
+ packageName = "acorn-class-fields";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-1.0.0.tgz";
+ sha512 = "l+1FokF34AeCXGBHkrXFmml9nOIRI+2yBnBpO5MaVAaTIJ96irWLtcCxX+7hAp6USHFCe+iyyBB4ZhxV807wmA==";
+ };
+ };
"acorn-globals-1.0.9" = {
name = "acorn-globals";
packageName = "acorn-globals";
@@ -9130,6 +9364,24 @@ let
sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==";
};
};
+ "acorn-private-class-elements-1.0.0" = {
+ name = "acorn-private-class-elements";
+ packageName = "acorn-private-class-elements";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-1.0.0.tgz";
+ sha512 = "zYNcZtxKgVCg1brS39BEou86mIao1EV7eeREG+6WMwKbuYTeivRRs6S2XdWnboRde6G9wKh2w+WBydEyJsJ6mg==";
+ };
+ };
+ "acorn-static-class-features-1.0.0" = {
+ name = "acorn-static-class-features";
+ packageName = "acorn-static-class-features";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-1.0.0.tgz";
+ sha512 = "XZJECjbmMOKvMHiNzbiPXuXpLAJfN3dAKtfIYbk1eHiWdsutlek+gS7ND4B8yJ3oqvHo1NxfafnezVmq7NXK0A==";
+ };
+ };
"acorn-walk-6.2.0" = {
name = "acorn-walk";
packageName = "acorn-walk";
@@ -9202,22 +9454,31 @@ let
sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa";
};
};
- "addons-linter-3.14.0" = {
+ "addons-linter-3.20.0" = {
name = "addons-linter";
packageName = "addons-linter";
- version = "3.14.0";
+ version = "3.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.14.0.tgz";
- sha512 = "vtumbG5Ma50K3JkQerx7Q03CfIYy4qZLl4jgwx42tdU8rSFy0vOWqr3t6pOnWD94r1dHAxcDoVglz2YcUrhBuQ==";
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.20.0.tgz";
+ sha512 = "rHaahIZ34HSL1D7ZYCMs/QQPOp0pAnsOMqtNSy/zDSrkgVtlCQvSeMpx1a3ZnE2pGRVHjMIO506KWUmrN1lPRw==";
};
};
- "addons-scanner-utils-4.10.0" = {
+ "addons-moz-compare-1.2.0" = {
+ name = "addons-moz-compare";
+ packageName = "addons-moz-compare";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addons-moz-compare/-/addons-moz-compare-1.2.0.tgz";
+ sha512 = "COG8qk2/dubPqabfcoJW4E7pm2EQDI43iMrHnhlobvq/uRMEzx/PYJ1KaUZ97Vgg44R3QdRG5CvDsTRbMUHcDw==";
+ };
+ };
+ "addons-scanner-utils-5.0.0" = {
name = "addons-scanner-utils";
packageName = "addons-scanner-utils";
- version = "4.10.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-4.10.0.tgz";
- sha512 = "QVpmVvcKuHHNEqz2aUKKqb5hA65xFSUP2aitkR8OSD2Fh1DGIBrVvjXP41nef3f2hLDJ+2oWrEK7toEK1wk2dQ==";
+ url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-5.0.0.tgz";
+ sha512 = "uENKmGryUeR07I1c8RonDZY/bkAG+zKfZ3T61JFusgY5wiARQJ5+8hI33m8sctXxPopjfxiIjHsG/g7cQzn4Yw==";
};
};
"addr-to-ip-port-1.5.4" = {
@@ -9238,13 +9499,13 @@ let
sha512 = "aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==";
};
};
- "adm-zip-0.5.7" = {
+ "adm-zip-0.5.9" = {
name = "adm-zip";
packageName = "adm-zip";
- version = "0.5.7";
+ version = "0.5.9";
src = fetchurl {
- url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.7.tgz";
- sha512 = "QLEo3eoC2B0i3+g/G5nNzKbGoVOjW2ingZ4TXl7/YeDM+FAl3SiHSNnokTZLFEuVHBn5CbZ42KJcIIsRji1EgQ==";
+ url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.9.tgz";
+ sha512 = "s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==";
};
};
"adverb-where-0.2.5" = {
@@ -9319,6 +9580,15 @@ let
sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==";
};
};
+ "aggregate-error-4.0.0" = {
+ name = "aggregate-error";
+ packageName = "aggregate-error";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.0.tgz";
+ sha512 = "8DGp7zUt1E9k0NE2q4jlXHk+V3ORErmwolEdRz9iV+LKJ40WhMHh92cxAvhqV2I+zEn/gotIoqoMs0NjF3xofg==";
+ };
+ };
"aglfn-1.0.2" = {
name = "aglfn";
packageName = "aglfn";
@@ -9886,6 +10156,15 @@ let
sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==";
};
};
+ "ansi-styles-6.1.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz";
+ sha512 = "VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==";
+ };
+ };
"ansi-term-0.0.2" = {
name = "ansi-term";
packageName = "ansi-term";
@@ -10030,13 +10309,13 @@ let
sha512 = "y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA==";
};
};
- "apollo-datasource-3.1.0" = {
+ "apollo-datasource-3.2.0" = {
name = "apollo-datasource";
packageName = "apollo-datasource";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.1.0.tgz";
- sha512 = "ywcVjuWNo84eMB9uBOYygQI+00+Ne4ShyPIxJzT//sn1j1Fu3J+KStMNd6s1jyERWgjGZzxkiLn6nLmwsGymBg==";
+ url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.2.0.tgz";
+ sha512 = "2PK+p6dRFuQQM8F4JbBivGetnJxvb8ggQkY7XLeCSl4qVkBeBjX+mRtsiudk28NUTH3JEll7AgmKj2fHfxYpGQ==";
};
};
"apollo-graphql-0.9.3" = {
@@ -10075,13 +10354,13 @@ let
sha512 = "B3XmnkH6Y458iV6OsA7AhfwvTgeZnFq9nPVjbxmLKnvfkEl8hYADtz724uPa0WeBiD7DSFcnLtqg9yGmCkBohg==";
};
};
- "apollo-reporting-protobuf-3.0.0" = {
+ "apollo-reporting-protobuf-3.1.0" = {
name = "apollo-reporting-protobuf";
packageName = "apollo-reporting-protobuf";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.0.0.tgz";
- sha512 = "jmCD+6gECt8KS7PxP460hztT/5URTbv2Kg0zgnR6iWPGce88IBmSUjcqf1Z6wJJq7Teb8Hu7WbyyMhn0vN5TxQ==";
+ url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.1.0.tgz";
+ sha512 = "IP7SHrTQEGc1/RYzOihfcLLF56ALxxORywJj5ba/p1SX99y+Stt+6D5+3DA7XFF00C1BhXkIU+EkFHzPmypz0w==";
};
};
"apollo-server-caching-0.7.0" = {
@@ -10093,13 +10372,13 @@ let
sha512 = "MsVCuf/2FxuTFVhGLK13B+TZH9tBd2qkyoXKKILIiGcZ5CDUEBO14vIV63aNkMkS1xxvK2U4wBcuuNj/VH2Mkw==";
};
};
- "apollo-server-caching-3.1.0" = {
+ "apollo-server-caching-3.2.0" = {
name = "apollo-server-caching";
packageName = "apollo-server-caching";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-3.1.0.tgz";
- sha512 = "bZ4bo0kSAsax9LbMQPlpuMTkQ657idF2ehOYe4Iw+8vj7vfAYa39Ii9IlaVAFMC1FxCYzLNFz+leZBm/Stn/NA==";
+ url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-3.2.0.tgz";
+ sha512 = "kR92WjoQVe1Z/EXyh365w6Vz8egkRCKmd3mE7KJvKgk+f0+AGO1LPPrez5IhbCXxAgChqzpHhq2FIyfOqEuLFQ==";
};
};
"apollo-server-core-2.25.2" = {
@@ -10111,13 +10390,13 @@ let
sha512 = "lrohEjde2TmmDTO7FlOs8x5QQbAS0Sd3/t0TaK2TWaodfzi92QAvIsq321Mol6p6oEqmjm8POIDHW1EuJd7XMA==";
};
};
- "apollo-server-core-3.3.0" = {
+ "apollo-server-core-3.4.0" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.3.0.tgz";
- sha512 = "KmkzKVG3yjybouDyUX6Melv39u1EOFipvAKP17IlPis/TjVbubJmb6hkE0am/g2RipyhRvlpxAjHqPaCTXR1dQ==";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.4.0.tgz";
+ sha512 = "CbQTgoeijCdfaTFq3DHBrnWtat1M/SlPxS365iy2fb2/p4zbYatOA/S0RON7PMGp2gcMnopvOtokJIOxbNN/YA==";
};
};
"apollo-server-env-3.1.0" = {
@@ -10129,13 +10408,13 @@ let
sha512 = "iGdZgEOAuVop3vb0F2J3+kaBVi4caMoxefHosxmgzAbbSpvWehB8Y1QiSyyMeouYC38XNVk5wnZl+jdGSsWsIQ==";
};
};
- "apollo-server-env-4.0.3" = {
+ "apollo-server-env-4.1.0" = {
name = "apollo-server-env";
packageName = "apollo-server-env";
- version = "4.0.3";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.0.3.tgz";
- sha512 = "B32+RUOM4GUJAwnQqQE1mT1BG7+VfW3a0A87Bp3gv/q8iNnhY2BIWe74Qn03pX8n27g3EGVCt0kcBuHhjG5ltA==";
+ url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.1.0.tgz";
+ sha512 = "pJIqIN7UXYDHcNY/IRi7H9AvdV+aHi96gv/nPmnLsP/LbWMJvMuQY3jQ2obW0P+rO3bx05oYHLsVjwHHaXlEQA==";
};
};
"apollo-server-errors-2.5.0" = {
@@ -10147,13 +10426,13 @@ let
sha512 = "lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA==";
};
};
- "apollo-server-errors-3.1.0" = {
+ "apollo-server-errors-3.2.0" = {
name = "apollo-server-errors";
packageName = "apollo-server-errors";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.1.0.tgz";
- sha512 = "bUmobPEvtcBFt+OVHYqD390gacX/Cm5s5OI5gNZho8mYKAA6OjgnRlkm/Lti6NzniXVxEQyD5vjkC6Ox30mGFg==";
+ url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.2.0.tgz";
+ sha512 = "Y7YH3JVAaR1199ao4dae3j1UrF9D/6AJwHpsORTjI3BvrwjU1X7Nk1VvEHn9bZfZF6ONaqUM+uCLm5c8GPhffQ==";
};
};
"apollo-server-express-2.25.2" = {
@@ -10165,13 +10444,13 @@ let
sha512 = "A2gF2e85vvDugPlajbhr0A14cDFDIGX0mteNOJ8P3Z3cIM0D4hwrWxJidI+SzobefDIyIHu1dynFedJVhV0euQ==";
};
};
- "apollo-server-express-3.3.0" = {
+ "apollo-server-express-3.4.0" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.3.0.tgz";
- sha512 = "qJedh77IxbfT+HpYsDraC2CGdy08wiWTwoKYXjRK4S/DHbe94A4957/1blw4boYO4n44xRKQd1k6zxiixCp+XQ==";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.4.0.tgz";
+ sha512 = "+J7Nu+I+JLCEnBQrQAzKmZfguHo9GQNb6XJZYuNlg9jdcomAvJpEJW5SKujXiGCT9CCIB6jvf8s102pJvBC9TQ==";
};
};
"apollo-server-plugin-base-0.13.0" = {
@@ -10183,13 +10462,13 @@ let
sha512 = "L3TMmq2YE6BU6I4Tmgygmd0W55L+6XfD9137k+cWEBFu50vRY4Re+d+fL5WuPkk5xSPKd/PIaqzidu5V/zz8Kg==";
};
};
- "apollo-server-plugin-base-3.2.0" = {
+ "apollo-server-plugin-base-3.3.0" = {
name = "apollo-server-plugin-base";
packageName = "apollo-server-plugin-base";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.2.0.tgz";
- sha512 = "anjyiw79wxU4Cj2bYZFWQqZPjuaZ4mVJvxCoyvkFrNvjPua9dovCOfpng43C5NwdsqJpz78Vqs236eFM2QoeaA==";
+ url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.3.0.tgz";
+ sha512 = "4a4KpePhoU9FAIN2YjWm1Cfl7Y3AyRXLH8ZncSRCDcQFWww8gc/ZGqWZ+udRo4ejKvzLjnTwVyxfrd80sf9sHw==";
};
};
"apollo-server-types-0.9.0" = {
@@ -10201,13 +10480,13 @@ let
sha512 = "qk9tg4Imwpk732JJHBkhW0jzfG0nFsLqK2DY6UhvJf7jLnRePYsPxWfPiNkxni27pLE2tiNlCwoDFSeWqpZyBg==";
};
};
- "apollo-server-types-3.2.0" = {
+ "apollo-server-types-3.3.0" = {
name = "apollo-server-types";
packageName = "apollo-server-types";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.2.0.tgz";
- sha512 = "Fh7QP84ufDZHbLzoLyyxyzznlW8cpgEZYYkGsS1i36zY4VaAt5OUOp1f+FxWdLGehq0Arwb6D1W7y712IoZ/JQ==";
+ url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.3.0.tgz";
+ sha512 = "m+GyuXyuZ7YdZO1NIMJdJoOKsocCPx/WRVzBjDegYxNcAa/lDvNYU3hFyX87UGXt8Xsd9VIHxdhO88S6jkgCmw==";
};
};
"apollo-tracing-0.15.0" = {
@@ -10462,6 +10741,15 @@ let
sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==";
};
};
+ "argsarray-0.0.1" = {
+ name = "argsarray";
+ packageName = "argsarray";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argsarray/-/argsarray-0.0.1.tgz";
+ sha1 = "6e7207b4ecdb39b0af88303fa5ae22bda8df61cb";
+ };
+ };
"aribts-1.3.5" = {
name = "aribts";
packageName = "aribts";
@@ -10921,6 +11209,15 @@ let
sha512 = "3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==";
};
};
+ "arrify-3.0.0" = {
+ name = "arrify";
+ packageName = "arrify";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz";
+ sha512 = "tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==";
+ };
+ };
"as-array-1.0.0" = {
name = "as-array";
packageName = "as-array";
@@ -11146,6 +11443,15 @@ let
sha512 = "O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==";
};
};
+ "ast-types-0.8.15" = {
+ name = "ast-types";
+ packageName = "ast-types";
+ version = "0.8.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.8.15.tgz";
+ sha1 = "8eef0827f04dff0ec8857ba925abe3fea6194e52";
+ };
+ };
"ast-types-0.9.6" = {
name = "ast-types";
packageName = "ast-types";
@@ -11272,13 +11578,13 @@ let
sha512 = "XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg==";
};
};
- "async-append-only-log-3.1.0" = {
+ "async-append-only-log-3.1.1" = {
name = "async-append-only-log";
packageName = "async-append-only-log";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.1.0.tgz";
- sha512 = "vEnzpbpfnMvWK7xweZ4mX+Y4H6eYMtEvVLctsLleXjN3lWewCcGxPxSAscBq05MxH3Veh7q9JHnOfuOIoeJYVw==";
+ url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.1.1.tgz";
+ sha512 = "lYRaqf2GHt5ojw/jyGZqiHUSG3MJ3sZTUOPTsDUSVsuZhdJkIBL6jSowM437dqFnWtj7VXqYXZxl7E9SiVv+WA==";
};
};
"async-done-1.3.2" = {
@@ -11596,13 +11902,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.1000.0" = {
+ "aws-sdk-2.1009.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1000.0";
+ version = "2.1009.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1000.0.tgz";
- sha512 = "PhL4WPIJ5fyOBbmWdEaskD6+qvu9VD4kVLEBK/SchcZXmivUKhED3POR6dbfskhwTksxwkrwa6G4NNI3yY7d1g==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1009.0.tgz";
+ sha512 = "qKbmt+vzQ7ZSnfEvA+u6d7CkV09AcAGnxZAiNgOAEn8GFFEtERy6C39VoAuWfON/B2avJDYvtRocjVmAxWpgjQ==";
};
};
"aws-sdk-2.920.0" = {
@@ -11668,6 +11974,24 @@ let
sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==";
};
};
+ "axios-0.22.0" = {
+ name = "axios";
+ packageName = "axios";
+ version = "0.22.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axios/-/axios-0.22.0.tgz";
+ sha512 = "Z0U3uhqQeg1oNcihswf4ZD57O3NrR1+ZXhxaROaWpDmsDTx7T2HNBV2ulBtie2hwJptu8UvgnJoK+BIqdzh/1w==";
+ };
+ };
+ "axios-cookiejar-support-0.5.1" = {
+ name = "axios-cookiejar-support";
+ packageName = "axios-cookiejar-support";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axios-cookiejar-support/-/axios-cookiejar-support-0.5.1.tgz";
+ sha512 = "mmMbNDjpkAKlyxVOYjkpvV6rDRoSjBXwHbfkWvnsplRTGYCergbHvZInRB1G3lqumllUQwo0A4uPoqEsYfzq3A==";
+ };
+ };
"azure-devops-node-api-11.0.1" = {
name = "azure-devops-node-api";
packageName = "azure-devops-node-api";
@@ -12361,6 +12685,15 @@ let
sha1 = "7b4174c2f94449753b11c2651c083da841a7b084";
};
};
+ "base62-1.2.8" = {
+ name = "base62";
+ packageName = "base62";
+ version = "1.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base62/-/base62-1.2.8.tgz";
+ sha512 = "V6YHUbjLxN1ymqNLb1DPHoU1CpfdL7d2YTIp5W3U4hhoG4hhxNmsFDs66M9EXxBiSEke5Bt5dwdfMwwZF70iLA==";
+ };
+ };
"base64-arraybuffer-0.1.2" = {
name = "base64-arraybuffer";
packageName = "base64-arraybuffer";
@@ -12388,6 +12721,15 @@ let
sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8";
};
};
+ "base64-arraybuffer-1.0.1" = {
+ name = "base64-arraybuffer";
+ packageName = "base64-arraybuffer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.1.tgz";
+ sha512 = "vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA==";
+ };
+ };
"base64-js-0.0.2" = {
name = "base64-js";
packageName = "base64-js";
@@ -12514,13 +12856,13 @@ let
sha1 = "dc34314f4e679318093fc760272525f94bf25c16";
};
};
- "bcfg-0.1.6" = {
+ "bcfg-0.1.7" = {
name = "bcfg";
packageName = "bcfg";
- version = "0.1.6";
+ version = "0.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/bcfg/-/bcfg-0.1.6.tgz";
- sha512 = "BR2vwQZwu24aRm588XHOnPVjjQtbK8sF0RopRFgMuke63/REJMWnePTa2YHKDBefuBYiVdgkowuB1/e4K7Ue3g==";
+ url = "https://registry.npmjs.org/bcfg/-/bcfg-0.1.7.tgz";
+ sha512 = "+4beq5bXwfmxdcEoHYQsaXawh1qFzjLcRvPe5k5ww/NEWzZTm56Jk8LuPmfeGB7X584jZ8xGq6UgMaZnNDa5Ww==";
};
};
"bcrypt-5.0.1" = {
@@ -12793,13 +13135,13 @@ let
sha512 = "j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==";
};
};
- "big-integer-1.6.49" = {
+ "big-integer-1.6.50" = {
name = "big-integer";
packageName = "big-integer";
- version = "1.6.49";
+ version = "1.6.50";
src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.49.tgz";
- sha512 = "KJ7VhqH+f/BOt9a3yMwJNmcZjG53ijWMTjSAGMveQWyLwqIiwkjNP5PFgDob3Snnx86SjDj6I89fIbv0dkQeNw==";
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.50.tgz";
+ sha512 = "+O2uoQWFRo8ysZNo/rjtri2jIwjr3XfeAgRjAUADRqGG+ZITvyn8J1kvXLTaKVr3hhGXk+f23tKfdzmklVM9vQ==";
};
};
"big.js-3.2.0" = {
@@ -12856,13 +13198,13 @@ let
sha1 = "dd3a862b2fedf66fee8471320069428d0d84427a";
};
};
- "bin-links-2.2.1" = {
+ "bin-links-2.3.0" = {
name = "bin-links";
packageName = "bin-links";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bin-links/-/bin-links-2.2.1.tgz";
- sha512 = "wFzVTqavpgCCYAh8SVBdnZdiQMxTkGR+T3b14CNpBXIBe2neJWaMGAZ55XWWHELJJ89dscuq0VCBqcVaIOgCMg==";
+ url = "https://registry.npmjs.org/bin-links/-/bin-links-2.3.0.tgz";
+ sha512 = "JzrOLHLwX2zMqKdyYZjkDgQGT+kHDkIhv2/IK2lJ00qLxV4TmFoHi8drDBb6H5Zrz1YfgHkai4e2MGPqnoUhqA==";
};
};
"bin-version-3.1.0" = {
@@ -13270,13 +13612,13 @@ let
sha512 = "S3jE7riCbWnAK8OT+ta4Z8RX/X6nfISxzn0SDIMFYuY90qUwqx7w7e9fIsc2m2ODwma7dFcXNwGSjyayfKd1DQ==";
};
};
- "blgr-0.1.9" = {
+ "blgr-0.2.0" = {
name = "blgr";
packageName = "blgr";
- version = "0.1.9";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/blgr/-/blgr-0.1.9.tgz";
- sha512 = "ikJQoiQlhbJVIqcJ+CZxXXLD/et4bQ47/pdGpjdTq1p43qF5jfXtbWygZyWm05MInFruUicnw+U0oaoDgLx3PA==";
+ url = "https://registry.npmjs.org/blgr/-/blgr-0.2.0.tgz";
+ sha512 = "2jZdqajYCGD5rwGdOooQpxgjKsiAAV2g8LapwSnbTjAYTZAqmqBAS+GsVGFi+/y7t1Pspidv/5HsWBbJrsEuFw==";
};
};
"blob-0.0.2" = {
@@ -13468,13 +13810,13 @@ let
sha1 = "e16661697452d436bf9886238cc791b08d66a61a";
};
};
- "bns-0.14.0" = {
+ "bns-0.15.0" = {
name = "bns";
packageName = "bns";
- version = "0.14.0";
+ version = "0.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bns/-/bns-0.14.0.tgz";
- sha512 = "lqxDpj9gX7OtihwAzMhlMk0w38ObZu+aRSF9fzG/wUfF6RfocFSFDGHA+KVbLNXudiTStzhWVGc8cJmcL4IHYw==";
+ url = "https://registry.npmjs.org/bns/-/bns-0.15.0.tgz";
+ sha512 = "iJWQVE399vQzPfhalFMJGEQ7k5Ot2D6Mz8dkoPeLO8huWAMOiJNJ1tHzOu5j+ZyNNew6ITgG/LsSyaRPxvkXuw==";
};
};
"bodec-0.1.0" = {
@@ -14062,13 +14404,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.17.3" = {
+ "browserslist-4.17.4" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.17.3";
+ version = "4.17.4";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.3.tgz";
- sha512 = "59IqHJV5VGdcJZ+GZ2hU5n4Kv3YiASzW6Xk5g9tf5a/MAzGeFwgGWU39fVzNIOVcgB3+Gp+kiQu0HEfTVU/3VQ==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz";
+ sha512 = "Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==";
};
};
"brq-0.1.8" = {
@@ -14378,6 +14720,24 @@ let
sha512 = "RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==";
};
};
+ "buffer-from-1.1.0" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz";
+ sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==";
+ };
+ };
+ "buffer-from-1.1.1" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
+ sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
+ };
+ };
"buffer-from-1.1.2" = {
name = "buffer-from";
packageName = "buffer-from";
@@ -14495,13 +14855,13 @@ let
sha1 = "69fdf13ad9d91222baee109945faadc431534f86";
};
};
- "bufferutil-4.0.4" = {
+ "bufferutil-4.0.5" = {
name = "bufferutil";
packageName = "bufferutil";
- version = "4.0.4";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.4.tgz";
- sha512 = "VNxjXUCrF3LvbLgwfkTb5LsFvk6pGIn7OBb9x+3o+iJ6mKw0JTUp4chBFc88hi1aspeZGeZG9jAIbpFYPQSLZw==";
+ url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.5.tgz";
+ sha512 = "HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A==";
};
};
"bufferview-1.0.1" = {
@@ -15080,6 +15440,15 @@ let
sha512 = "YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==";
};
};
+ "camelcase-keys-7.0.1" = {
+ name = "camelcase-keys";
+ packageName = "camelcase-keys";
+ version = "7.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.1.tgz";
+ sha512 = "P331lEls98pW8JLyodNWfzuz91BEDVA4VpW2/SwXnyv2K495tq1N777xzDbFgnEigfA7UIY0xa6PwR/H9jijjA==";
+ };
+ };
"camelize-1.0.0" = {
name = "camelize";
packageName = "camelize";
@@ -15098,13 +15467,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001264" = {
+ "caniuse-lite-1.0.30001267" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001264";
+ version = "1.0.30001267";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001264.tgz";
- sha512 = "Ftfqqfcs/ePiUmyaySsQ4PUsdcYyXG2rfoBVsk3iY1ahHaJEw65vfb7Suzqm+cEkwwPIv/XWkg27iCpRavH4zA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz";
+ sha512 = "r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg==";
};
};
"canvas-2.8.0" = {
@@ -15116,13 +15485,13 @@ let
sha512 = "gLTi17X8WY9Cf5GZ2Yns8T5lfBOcGgFehDFb+JQwDqdOoBOcECS9ZWMEAqMSVcMYwXD659J8NyzjRY/2aE+C2Q==";
};
};
- "canvg-3.0.9" = {
+ "canvg-3.0.7" = {
name = "canvg";
packageName = "canvg";
- version = "3.0.9";
+ version = "3.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/canvg/-/canvg-3.0.9.tgz";
- sha512 = "rDXcnRPuz4QHoCilMeoTxql+fvGqNAxp+qV/KHD8rOiJSAfVjFclbdUNHD2Uqfthr+VMg17bD2bVuk6F07oLGw==";
+ url = "https://registry.npmjs.org/canvg/-/canvg-3.0.7.tgz";
+ sha512 = "4sq6iL5Q4VOXS3PL1BapiXIZItpxYyANVzsAKpTPS5oq4u3SKbGfUcbZh2gdLCQ3jWpG/y5wRkMlBBAJhXeiZA==";
};
};
"caporal-1.4.0" = {
@@ -15269,22 +15638,22 @@ let
sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==";
};
};
- "cdk8s-1.0.0-beta.57" = {
+ "cdk8s-1.1.3" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "1.0.0-beta.57";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.57.tgz";
- sha512 = "AP0T2s0HubyA1riQ5m6c7ccwMqREhFD6xMZSmv4PTEfhMsx6IhUOjWnRMvrYm9MBMB47Gt1xxeUmKIq3EkurNw==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.3.tgz";
+ sha512 = "ZmFZYlv0ZgErU6GC4nnANZPXeLnsjX3h0tJgw6k1GI4VgadeC27UffGhTeMZOMXn4iTHOT2XmR2GTx0DHge4UA==";
};
};
- "cdk8s-plus-22-1.0.0-beta.9" = {
+ "cdk8s-plus-22-1.0.0-beta.21" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "1.0.0-beta.9";
+ version = "1.0.0-beta.21";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.9.tgz";
- sha512 = "j8I0b0yJ182mcSgF5KB0mIjjgqbmVUMJQQgajpTtgNzuko9HsYQfK+uFT29ua1PyFTtn8FHQLOT/goYJjg1SEQ==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.21.tgz";
+ sha512 = "kprRywa6rIKlBNMlwCAS8+Y+zNRldwPVU1PYeoa1APy8r96ZvrfE1VdRfpO08r1JTS8oEAyQOzKw2oswXGyxgA==";
};
};
"cdktf-0.6.4" = {
@@ -16115,6 +16484,15 @@ let
sha512 = "lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==";
};
};
+ "clean-stack-4.1.0" = {
+ name = "clean-stack";
+ packageName = "clean-stack";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-stack/-/clean-stack-4.1.0.tgz";
+ sha512 = "dxXQYI7mfQVcaF12s6sjNFoZ6ZPDQuBBLp3QJ5156k9EvUFClUoZ11fo8HnLQO241DDVntHEug8MOuFO5PSfRg==";
+ };
+ };
"clean-webpack-plugin-3.0.0" = {
name = "clean-webpack-plugin";
packageName = "clean-webpack-plugin";
@@ -16169,13 +16547,13 @@ let
sha512 = "xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w==";
};
};
- "cli-color-2.0.0" = {
+ "cli-color-2.0.1" = {
name = "cli-color";
packageName = "cli-color";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-color/-/cli-color-2.0.0.tgz";
- sha512 = "a0VZ8LeraW0jTuCkuAGMNufareGHhyZU9z8OGsW0gXd1hZGi1SRuNRXdbGkraBBKnhyUhyebFWnRbp+dIn0f0A==";
+ url = "https://registry.npmjs.org/cli-color/-/cli-color-2.0.1.tgz";
+ sha512 = "eBbxZF6fqPUNnf7CLAFOersUnyYzv83tHFLSlts+OAHsNendaqv2tHCq+/MO+b3Y+9JeoUlIvobyxG/Z8GNeOg==";
};
};
"cli-cursor-1.0.2" = {
@@ -16340,6 +16718,15 @@ let
sha512 = "n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==";
};
};
+ "cli-truncate-3.1.0" = {
+ name = "cli-truncate";
+ packageName = "cli-truncate";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz";
+ sha512 = "wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==";
+ };
+ };
"cli-ux-4.9.3" = {
name = "cli-ux";
packageName = "cli-ux";
@@ -16430,6 +16817,15 @@ let
sha512 = "mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==";
};
};
+ "clipboardy-3.0.0" = {
+ name = "clipboardy";
+ packageName = "clipboardy";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz";
+ sha512 = "Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==";
+ };
+ };
"clipper-lib-6.4.2" = {
name = "clipper-lib";
packageName = "clipper-lib";
@@ -16817,13 +17213,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.36.0" = {
+ "codemaker-1.39.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.36.0.tgz";
- sha512 = "Ey1aIPW5OkkKyRcqoWE61MAc5ghfDrnxysGUmauTy0RyL6sXPjYuxZXQWjqsHHQ35fCH5i7/rifoifE+jkZQhQ==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.39.0.tgz";
+ sha512 = "1PPD7ZCC05nrkN47elPcno3zm4Md7XSkG52CvIbNsEcXddc0Ma2xgoMZnWPu+Ab6801FunSqov9X4O+OZle95A==";
};
};
"codepage-1.4.0" = {
@@ -16979,13 +17375,13 @@ let
sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==";
};
};
- "colorette-2.0.14" = {
+ "colorette-2.0.16" = {
name = "colorette";
packageName = "colorette";
- version = "2.0.14";
+ version = "2.0.16";
src = fetchurl {
- url = "https://registry.npmjs.org/colorette/-/colorette-2.0.14.tgz";
- sha512 = "TLcu0rCLNjDIdKGLGqMtPEAOAZmavC1QCX4mEs3P0mrA/DDoU/tA+Y4UQK/862FkX2TTlbyVIkREZNbf7Y9YwA==";
+ url = "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz";
+ sha512 = "hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==";
};
};
"colorette-2.0.7" = {
@@ -17879,22 +18275,22 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-10.0.5" = {
+ "constructs-10.0.9" = {
name = "constructs";
packageName = "constructs";
- version = "10.0.5";
+ version = "10.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.0.5.tgz";
- sha512 = "IwOwekzrASFC3qt4ozCtV09rteAIAesuCGsW0p+uBfqHd2XcvA5CXqJjgf4eUqm6g8e/noXlVCMDWwC8GaLtrg==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.0.9.tgz";
+ sha512 = "C9la/fcnCKe3XIjKPbWuD49mnOYqSWdiMI6TNJmF0ao3pJw6Hap03Q4nsmCxpWMXuMzM546Kw/WnW7ElB3g4OA==";
};
};
- "constructs-3.3.156" = {
+ "constructs-3.3.161" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.156";
+ version = "3.3.161";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.156.tgz";
- sha512 = "rlgYsGqXLi3tMSVz251MvzFjXXBCrGPy/8pIfjeh2fuBjPsvIx9I6AMNHnlhEVaEt7YRPHHuYKoVs1488ifAWA==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.161.tgz";
+ sha512 = "/27vW3fo0iyb3py4vKI1BduEYmv8vv8uJgLXvI+5F0Jbnn0/E+As2wkGMa7bumhzCd0Ckv/USkAXstGYVXTYQA==";
};
};
"consume-http-header-1.0.0" = {
@@ -17970,22 +18366,22 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.42.0" = {
+ "contentful-management-7.44.1" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.42.0";
+ version = "7.44.1";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.42.0.tgz";
- sha512 = "Ux0l6iUEG1Tnc1Vl89jXEwddsRfo8/v06pFTpA/+N6tGdTvwF3RtQWLOpVxKWuy+9NK5TJh4oUnpc+zPsynoQA==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.44.1.tgz";
+ sha512 = "N6cRMl2O7bkpIulPe0nQD78uVC8uaWQBm0XeDnmfUFJHVrPsaU0ix2QR2TjLsFKu6OT6nqxeyl0RS+dlboDV5A==";
};
};
- "contentful-sdk-core-6.10.1" = {
+ "contentful-sdk-core-6.10.3" = {
name = "contentful-sdk-core";
packageName = "contentful-sdk-core";
- version = "6.10.1";
+ version = "6.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.1.tgz";
- sha512 = "q1dh5AHL3FoBc3CZThQMtnaxgFbs9BrJW8wDysdp/IT/Q2edgUQASh2fvj02T6cCh3ftMspRRe/HMfZDF9FfIQ==";
+ url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.3.tgz";
+ sha512 = "IUBkAU1sJuVaEa2Nv1NKK5ImqpBZ5Q3EmaCFmMZx/UHKa+i98nDCSTUBOL1aJnpZ/s3AaSramsh73VQ4aK2kyA==";
};
};
"continuable-1.1.8" = {
@@ -18447,13 +18843,13 @@ let
sha512 = "bxXk6H3FtGXpCtlO+XyXM4pa72azQomdurNeHbZai9eYBzA5vjyPnsgxsYcylLUc1wQFeR+XWQVfgJitx6ghEw==";
};
};
- "cordova-lib-10.0.0" = {
+ "cordova-lib-10.1.0" = {
name = "cordova-lib";
packageName = "cordova-lib";
- version = "10.0.0";
+ version = "10.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-10.0.0.tgz";
- sha512 = "azU/WH0x/3fQg33tU5bKCtj+Weh/bHelz9FWCVdXqVOHXmjzbi3p6p61z5Si967Tfh3TkmHRrodNxS0ovZ7iFQ==";
+ url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-10.1.0.tgz";
+ sha512 = "JY/r/5RKRjgrjJ1a8z0x/NEU33/97mTFB76PCCcvQOySnmZ0rygRBYmwl2+XwFuUR0LP+fnbieePv6LiPc9UkA==";
};
};
"cordova-serve-4.0.0" = {
@@ -18474,40 +18870,40 @@ let
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
};
};
- "core-js-3.17.2" = {
+ "core-js-3.18.0" = {
name = "core-js";
packageName = "core-js";
- version = "3.17.2";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz";
- sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.18.0.tgz";
+ sha512 = "WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w==";
};
};
- "core-js-3.18.1" = {
+ "core-js-3.18.3" = {
name = "core-js";
packageName = "core-js";
- version = "3.18.1";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.18.1.tgz";
- sha512 = "vJlUi/7YdlCZeL6fXvWNaLUPh/id12WXj3MbkMw5uOyF0PfWPBNOCNbs53YqgrvtujLNlt9JQpruyIKkUZ+PKA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz";
+ sha512 = "tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==";
};
};
- "core-js-compat-3.18.1" = {
+ "core-js-compat-3.18.3" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.18.1";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.1.tgz";
- sha512 = "XJMYx58zo4W0kLPmIingVZA10+7TuKrMLPt83+EzDmxFJQUMcTVVmQ+n5JP4r6Z14qSzhQBRi3NSWoeVyKKXUg==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz";
+ sha512 = "4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw==";
};
};
- "core-js-pure-3.18.1" = {
+ "core-js-pure-3.18.3" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.18.1";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.1.tgz";
- sha512 = "kmW/k8MaSuqpvA1xm2l3TVlBuvW+XBkcaOroFUpO3D4lsTGQWBTb/tBDCf/PNkkPLrwgrkQRIYNPB0CeqGJWGQ==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.3.tgz";
+ sha512 = "qfskyO/KjtbYn09bn1IPkuhHl5PlJ6IzJ9s9sraJ1EqcuGyLGKzhSM1cY0zgyL9hx42eulQLZ6WaeK5ycJCkqw==";
};
};
"core-util-is-1.0.2" = {
@@ -19221,13 +19617,13 @@ let
sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==";
};
};
- "css-what-5.0.1" = {
+ "css-what-5.1.0" = {
name = "css-what";
packageName = "css-what";
- version = "5.0.1";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz";
- sha512 = "FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==";
+ url = "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz";
+ sha512 = "arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==";
};
};
"cssauron-1.4.0" = {
@@ -19356,6 +19752,15 @@ let
sha512 = "p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==";
};
};
+ "cssom-0.5.0" = {
+ name = "cssom";
+ packageName = "cssom";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz";
+ sha512 = "iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==";
+ };
+ };
"cssstyle-0.2.37" = {
name = "cssstyle";
packageName = "cssstyle";
@@ -20571,6 +20976,15 @@ let
sha512 = "X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==";
};
};
+ "data-urls-3.0.1" = {
+ name = "data-urls";
+ packageName = "data-urls";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/data-urls/-/data-urls-3.0.1.tgz";
+ sha512 = "Ds554NeT5Gennfoo9KN50Vh6tpgtvYEwraYjejXnyTpu1C7oXKxdFk75REooENHE8ndTVOJuv+BEs4/J/xcozw==";
+ };
+ };
"dataloader-2.0.0" = {
name = "dataloader";
packageName = "dataloader";
@@ -22335,13 +22749,13 @@ let
sha512 = "QgcYXSZFBBbPuiQskEAVnW3qSShSCSisLNt2wQZXupBQ/x1lFIyvVfWXk4OQqWoatHyAfUBiXDNx9eRXkmSALQ==";
};
};
- "doctoc-2.0.1" = {
+ "doctoc-2.1.0" = {
name = "doctoc";
packageName = "doctoc";
- version = "2.0.1";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/doctoc/-/doctoc-2.0.1.tgz";
- sha512 = "JsxnSVZtLCThKehjFPBDhP1+ZLmdfXQynZH/0ABAwrnd1Zf3AV6LigC9oWJyaZ+c6RXCDnlGUNJ7I+1v8VaaRg==";
+ url = "https://registry.npmjs.org/doctoc/-/doctoc-2.1.0.tgz";
+ sha512 = "0darEVEuWKLyIlpGOzE5cILf/pgUu25qUs6YwCqLqfxb8+3b9Cl4iakA8vwYrBQOkJ5SwpHKEPVMu2KOMrTA7A==";
};
};
"doctrine-2.1.0" = {
@@ -22524,6 +22938,15 @@ let
sha512 = "yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==";
};
};
+ "domexception-4.0.0" = {
+ name = "domexception";
+ packageName = "domexception";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz";
+ sha512 = "A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==";
+ };
+ };
"domhandler-2.2.1" = {
name = "domhandler";
packageName = "domhandler";
@@ -22578,15 +23001,6 @@ let
sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==";
};
};
- "dompurify-2.3.1" = {
- name = "dompurify";
- packageName = "dompurify";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.1.tgz";
- sha512 = "xGWt+NHAQS+4tpgbOAI08yxW0Pr256Gu/FNE2frZVTbgrBUn8M7tz7/ktS/LZ2MHeGqz6topj0/xY+y8R5FBFw==";
- };
- };
"dompurify-2.3.3" = {
name = "dompurify";
packageName = "dompurify";
@@ -23091,13 +23505,13 @@ let
sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==";
};
};
- "electron-13.5.1" = {
+ "electron-13.5.2" = {
name = "electron";
packageName = "electron";
- version = "13.5.1";
+ version = "13.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-13.5.1.tgz";
- sha512 = "ZyxhIhmdaeE3xiIGObf0zqEyCyuIDqZQBv9NKX8w5FNzGm87j4qR0H1+GQg6vz+cA1Nnv1x175Zvimzc0/UwEQ==";
+ url = "https://registry.npmjs.org/electron/-/electron-13.5.2.tgz";
+ sha512 = "CPakwDpy5m8dL0383F5uJboQcVtn9bT/+6/wdDKo8LuTUO9aER1TF41v7feZgZW2c+UwoGPWa814ElSQ3qta2A==";
};
};
"electron-notarize-1.1.1" = {
@@ -23136,13 +23550,13 @@ let
sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A==";
};
};
- "electron-to-chromium-1.3.859" = {
+ "electron-to-chromium-1.3.870" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.859";
+ version = "1.3.870";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.859.tgz";
- sha512 = "gXRXKNWedfdiKIzwr0Mg/VGCvxXzy+4SuK9hp1BDvfbCwx0O5Ot+2f4CoqQkqEJ3Zj/eAV/GoAFgBVFgkBLXuQ==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz";
+ sha512 = "PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -23507,13 +23921,13 @@ let
sha512 = "aMWot7H5aC8L4/T8qMYbLdvKlZOdJTH54FxfdFunTGvhMx1BHkJOntWArsVfgAZVwAO9LC2sryPWRcEeUzCe5w==";
};
};
- "engine.io-5.2.0" = {
+ "engine.io-6.0.0" = {
name = "engine.io";
packageName = "engine.io";
- version = "5.2.0";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-5.2.0.tgz";
- sha512 = "d1DexkQx87IFr1FLuV+0f5kAm1Hk1uOVijLOb+D1sDO2QMb7YjE02VHtZtxo7xIXMgcWLb+vl3HRT0rI9tr4jQ==";
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-6.0.0.tgz";
+ sha512 = "Ui7yl3JajEIaACg8MOUwWvuuwU7jepZqX3BKs1ho7NQRuP4LhN4XIykXhp8bEy+x/DhA0LBZZXYSCkZDqrwMMg==";
};
};
"engine.io-client-1.3.1" = {
@@ -23588,6 +24002,15 @@ let
sha512 = "xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA==";
};
};
+ "engine.io-parser-5.0.0" = {
+ name = "engine.io-parser";
+ packageName = "engine.io-parser";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.0.tgz";
+ sha512 = "wn6QavHEqXoM+cg+x8uUG7GhxLBCfKEKNEsCNc7V2ugj3gB3lK91l1MuZiy6xFB2V9D1eew0aWkmpiT/aBb/KA==";
+ };
+ };
"enhanced-resolve-2.3.0" = {
name = "enhanced-resolve";
packageName = "enhanced-resolve";
@@ -23867,13 +24290,13 @@ let
sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==";
};
};
- "es-module-lexer-0.9.2" = {
+ "es-module-lexer-0.9.3" = {
name = "es-module-lexer";
packageName = "es-module-lexer";
- version = "0.9.2";
+ version = "0.9.3";
src = fetchurl {
- url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.2.tgz";
- sha512 = "YkAGWqxZq2B4FxQ5y687UwywDwvLQhIMCZ+SDU7ZW729SDHOEI6wVFXwTRecz+yiwJzCsVwC6V7bxyNbZSB1rg==";
+ url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz";
+ sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==";
};
};
"es-to-primitive-1.2.1" = {
@@ -23885,6 +24308,15 @@ let
sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==";
};
};
+ "es3ify-0.2.2" = {
+ name = "es3ify";
+ packageName = "es3ify";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es3ify/-/es3ify-0.2.2.tgz";
+ sha1 = "5dae3e650e5be3684b88066513d528d092629862";
+ };
+ };
"es5-ext-0.10.53" = {
name = "es5-ext";
packageName = "es5-ext";
@@ -24029,13 +24461,13 @@ let
sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==";
};
};
- "esc-exit-2.0.2" = {
+ "esc-exit-3.0.0" = {
name = "esc-exit";
packageName = "esc-exit";
- version = "2.0.2";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/esc-exit/-/esc-exit-2.0.2.tgz";
- sha512 = "VHDcDg9AwFoeQU9ULPCJCw6P95gr9Er65M+bccefEVD/OOb+WMyQIYw58rpm0F+zcfRJNf394I+BMH8JeU97Hw==";
+ url = "https://registry.npmjs.org/esc-exit/-/esc-exit-3.0.0.tgz";
+ sha512 = "b/3X0RwP3Oq0C/SLVwsGkdOWIAigA1BRpF1ArZSI6+KCqp7kgtxh0lB57jhDIYOyRxlP3QPtI8DHxOrPvnFbRg==";
};
};
"escalade-3.1.1" = {
@@ -24119,6 +24551,15 @@ let
sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==";
};
};
+ "escape-string-regexp-5.0.0" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz";
+ sha512 = "/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==";
+ };
+ };
"escodegen-1.14.3" = {
name = "escodegen";
packageName = "escodegen";
@@ -24227,13 +24668,13 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.19.0" = {
+ "eslint-plugin-vue-7.19.1" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.19.0.tgz";
- sha512 = "pqsJY1q0cjdQerWSlGHo+NfnWZ8Xuc5tetddljJJ7726auWsnHty7F5qgj/EcjkPgyj8s5Lw4YGuhsFHkzIrkQ==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.19.1.tgz";
+ sha512 = "e2pD7nW2sTY04ThH+66BgToNwC4n6dqfNhKE+ypdJFtZgn3Zn+nP8ZEIFPG0PGqCKQ3qxy8dJk1bzUsuQd3ANA==";
};
};
"eslint-scope-3.7.3" = {
@@ -24263,6 +24704,15 @@ let
sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==";
};
};
+ "eslint-scope-6.0.0" = {
+ name = "eslint-scope";
+ packageName = "eslint-scope";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-6.0.0.tgz";
+ sha512 = "uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==";
+ };
+ };
"eslint-utils-1.4.3" = {
name = "eslint-utils";
packageName = "eslint-utils";
@@ -24326,6 +24776,15 @@ let
sha1 = "d9bb37b8f8eafbf4e6d4ed6b7aa2956abbd3c4c2";
};
};
+ "esmangle-evaluator-1.0.1" = {
+ name = "esmangle-evaluator";
+ packageName = "esmangle-evaluator";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esmangle-evaluator/-/esmangle-evaluator-1.0.1.tgz";
+ sha1 = "620d866ef4861b3311f75766d52a8572bb3c6336";
+ };
+ };
"esniff-1.1.0" = {
name = "esniff";
packageName = "esniff";
@@ -24371,13 +24830,13 @@ let
sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==";
};
};
- "espree-8.0.0" = {
+ "espree-9.0.0" = {
name = "espree";
packageName = "espree";
- version = "8.0.0";
+ version = "9.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-8.0.0.tgz";
- sha512 = "y/+i23dwTjIDJrYCcjcAMr3c3UGbPIjC6THMQKjWmhP97fW0FPiI89kmpKfmgV/5jrkIi6toQP+CMm3qBE1Hig==";
+ url = "https://registry.npmjs.org/espree/-/espree-9.0.0.tgz";
+ sha512 = "r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==";
};
};
"esprima-1.1.1" = {
@@ -24443,6 +24902,24 @@ let
sha1 = "633acdb40d9bd4db8a1c1d68c06a942959fad2b0";
};
};
+ "esprima-fb-15001.1.0-dev-harmony-fb" = {
+ name = "esprima-fb";
+ packageName = "esprima-fb";
+ version = "15001.1.0-dev-harmony-fb";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz";
+ sha1 = "30a947303c6b8d5e955bee2b99b1d233206a6901";
+ };
+ };
+ "esprima-fb-15001.1001.0-dev-harmony-fb" = {
+ name = "esprima-fb";
+ packageName = "esprima-fb";
+ version = "15001.1001.0-dev-harmony-fb";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz";
+ sha1 = "43beb57ec26e8cf237d3dd8b33e42533577f2659";
+ };
+ };
"esquery-1.4.0" = {
name = "esquery";
packageName = "esquery";
@@ -24605,13 +25082,13 @@ let
sha512 = "w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==";
};
};
- "ethereumjs-util-7.1.2" = {
+ "ethereumjs-util-7.1.3" = {
name = "ethereumjs-util";
packageName = "ethereumjs-util";
- version = "7.1.2";
+ version = "7.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.2.tgz";
- sha512 = "xCV3PTAhW8Q2k88XZn9VcO4OrjpeXAlDm5LQTaOLp81SjNSSY6+MwuGXrx6vafOMheWSmZGxIXUbue5e9UvUBw==";
+ url = "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.3.tgz";
+ sha512 = "y+82tEbyASO0K0X1/SRhbJJoAlfcvq8JbrG4a5cjrOks7HS/36efU/0j2flxCPOUM++HFahk33kr/ZxyC4vNuw==";
};
};
"ethjs-unit-0.1.6" = {
@@ -24623,15 +25100,6 @@ let
sha1 = "c665921e476e87bce2a9d588a6fe0405b2c41699";
};
};
- "ethjs-util-0.1.6" = {
- name = "ethjs-util";
- packageName = "ethjs-util";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz";
- sha512 = "CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==";
- };
- };
"eve-0.5.4" = {
name = "eve";
packageName = "eve";
@@ -25280,13 +25748,13 @@ let
sha1 = "f5fc2f9fa9e9a8578634f10e86ba5a4346b96f4f";
};
};
- "express-validator-6.12.2" = {
+ "express-validator-6.13.0" = {
name = "express-validator";
packageName = "express-validator";
- version = "6.12.2";
+ version = "6.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express-validator/-/express-validator-6.12.2.tgz";
- sha512 = "UMVck7ZWrKH7eX75CRYk/pAc9jxZk8Ddsdkukw1R7LTWuQNiDaooz6nVfIdg33qZUHCuv2m2o+RS4pTMaLjGmA==";
+ url = "https://registry.npmjs.org/express-validator/-/express-validator-6.13.0.tgz";
+ sha512 = "gvLqMFPwEm+C1CQlF3l695ubY1Shd3AtfI5JDYXM0Ju0A2GsGX+VjjQN7TcHXF6cO8wPgU8hSSFqWecBR0Gx1g==";
};
};
"express-ws-2.0.0" = {
@@ -25559,6 +26027,15 @@ let
sha1 = "0f908faf4e6ec02524e54a57e432c5c013e08c9f";
};
};
+ "falafel-1.2.0" = {
+ name = "falafel";
+ packageName = "falafel";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz";
+ sha1 = "c18d24ef5091174a497f318cd24b026a25cddab4";
+ };
+ };
"falafel-2.2.4" = {
name = "falafel";
packageName = "falafel";
@@ -25955,6 +26432,15 @@ let
sha512 = "MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==";
};
};
+ "fetch-cookie-0.10.1" = {
+ name = "fetch-cookie";
+ packageName = "fetch-cookie";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.10.1.tgz";
+ sha512 = "beB+VEd4cNeVG1PY+ee74+PkuCQnik78pgLi5Ah/7qdUfov8IctU0vLUbBT8/10Ma5GMBeI4wtxhGrEfKNYs2g==";
+ };
+ };
"fetch-everywhere-1.0.5" = {
name = "fetch-everywhere";
packageName = "fetch-everywhere";
@@ -26594,13 +27080,13 @@ let
sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==";
};
};
- "firefox-profile-4.2.0" = {
+ "firefox-profile-4.2.1" = {
name = "firefox-profile";
packageName = "firefox-profile";
- version = "4.2.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/firefox-profile/-/firefox-profile-4.2.0.tgz";
- sha512 = "Z+/6GQ0JEW2eqgj63EYNbgKSgoIz7w1yXlkOWAIRkCNnj50rkfnQIz8uYwJkobxwYQM8vjFIbYiVtYuQV8US2A==";
+ url = "https://registry.npmjs.org/firefox-profile/-/firefox-profile-4.2.1.tgz";
+ sha512 = "KyA5ruS7V1nXpaHlJrKPW1jkoc9bq/WKquaKuca/ETembuxcBQPEPpxAp0biwjQCPf3sBslN/heZLdfa5Eotzg==";
};
};
"first-chunk-stream-2.0.0" = {
@@ -26630,13 +27116,13 @@ let
sha512 = "VoPpKScAzvZ07jtciOY0bJieJwyd/VVCuo4fn3nBLh4iBagzYED7GLQeFBpMpy7HP5edEKTDo8yxaIrYrwb7hg==";
};
};
- "fkill-7.2.1" = {
+ "fkill-8.0.0" = {
name = "fkill";
packageName = "fkill";
- version = "7.2.1";
+ version = "8.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fkill/-/fkill-7.2.1.tgz";
- sha512 = "eN9cmsIlRdq06wu3m01OOEgQf5Xh/M7REm0jfZ4eL3V3XisjXzfRq3iyqtKS+FhO6wB36FvWRiRGdeSx5KpLAQ==";
+ url = "https://registry.npmjs.org/fkill/-/fkill-8.0.0.tgz";
+ sha512 = "ItJHI5BDPAzmTg7IuFRRMI2liFOthzaRPhJaplkWqrIf7ss7e+zR+sVzOCljv7zauaFiSjca5b8NHmqT4VgyRQ==";
};
};
"flagged-respawn-1.0.1" = {
@@ -26783,13 +27269,13 @@ let
sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
};
};
- "flow-parser-0.161.0" = {
+ "flow-parser-0.162.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.161.0";
+ version = "0.162.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.161.0.tgz";
- sha512 = "QRGREwIVspAeffxidkelrU6yPnEF/US4iYoGuf73+y4ZEXgCJUFje4jYfgE4g59TbSLHntdWfM69wiN9Y9swKw==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.162.0.tgz";
+ sha512 = "tqn7GkffCpBkGl6cFPHk08gug2Gb+KgE4ShDJmYVUFAARKvwtgxiLbLk2pv22KMLtzin+OPeCku3UoBE66nQDg==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -27215,13 +27701,13 @@ let
sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==";
};
};
- "fp-ts-2.11.4" = {
+ "fp-ts-2.11.5" = {
name = "fp-ts";
packageName = "fp-ts";
- version = "2.11.4";
+ version = "2.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.4.tgz";
- sha512 = "lhV7tGEbs2qoVw4vmqOovChS7CAoIYU0gdiPEF8Vc4bLZct+PAMMeXrCqRyBNEo33XOvwvAmFDEDIrHPWH2/fg==";
+ url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.5.tgz";
+ sha512 = "OqlwJq1BdpB83BZXTqI+dNcA6uYk6qk4u9Cgnt64Y+XS7dwdbp/mobx8S2KXf2AXH+scNmA/UVK3SEFHR3vHZA==";
};
};
"fraction.js-4.1.1" = {
@@ -27818,6 +28304,15 @@ let
sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ==";
};
};
+ "gaxios-2.3.4" = {
+ name = "gaxios";
+ packageName = "gaxios";
+ version = "2.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gaxios/-/gaxios-2.3.4.tgz";
+ sha512 = "US8UMj8C5pRnao3Zykc4AAVr+cffoNKRTg9Rsf2GiuZCW69vgJj38VK2PzlPuQU73FZ/nTk9/Av6/JGcE1N9vA==";
+ };
+ };
"gaxios-4.3.2" = {
name = "gaxios";
packageName = "gaxios";
@@ -28448,13 +28943,13 @@ let
sha512 = "0YCjVpE3pS5XWlN3J4X7AiAx65+nqAI54LndtVFnQZB6G/FVLkZH8y8V6R3cIoOQR4pUdfwQGd1iwyoXHJ4Qfw==";
};
};
- "gl-matrix-3.4.0" = {
+ "gl-matrix-3.4.3" = {
name = "gl-matrix";
packageName = "gl-matrix";
- version = "3.4.0";
+ version = "3.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.0.tgz";
- sha512 = "n7fF4meQ6jbBSw91jGmP83I/wkQud5kIRSW/dr5z+9YJdQz61GWpgmRK9k7c4O/1QsXaIXu9o2vf/q2Gu3Ybow==";
+ url = "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz";
+ sha512 = "wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==";
};
};
"glob-3.2.11" = {
@@ -28980,13 +29475,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.10.0" = {
+ "google-auth-library-7.10.1" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.10.0";
+ version = "7.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.10.0.tgz";
- sha512 = "ICsqaU+lxMHVlDUzMrfVIEqnARw2AwBiZ/2KnNM6BcTf9Nott+Af87DTIzmlnW865p3REUP2MVL0xkPC3a61aQ==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.10.1.tgz";
+ sha512 = "nQxgM1ZopUMcpMnu95kOSzI+9tJl4YDOZJomSTBGlRLpxfBopdwto7WvzoI87HuN0nQqVETgOsHi/C/po1rppA==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -28998,13 +29493,13 @@ let
sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
};
};
- "google-gax-2.27.0" = {
+ "google-gax-2.27.1" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.27.0";
+ version = "2.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.27.0.tgz";
- sha512 = "xcLCeNKCqNm/w0At7/vdZHV/zol/iRS+PSAZTu7i6xNGBra/kWI3cfn4M6ZLQXeUEGbTVLJ4zGm53TVc4lvbDA==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.27.1.tgz";
+ sha512 = "8j8hfY42mGZt52C1L23srr2WTxOsOGUsC3s07Aw/f1UrbofsHdRaGf72Jax4jWEFXe/2x1MVBkwMvZxHMbO1Ag==";
};
};
"google-p12-pem-3.1.2" = {
@@ -29250,13 +29745,13 @@ let
sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w==";
};
};
- "graphql-15.6.0" = {
+ "graphql-15.6.1" = {
name = "graphql";
packageName = "graphql";
- version = "15.6.0";
+ version = "15.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-15.6.0.tgz";
- sha512 = "WJR872Zlc9hckiEPhXgyUftXH48jp2EjO5tgBBOyNMRJZ9fviL2mJBD6CAysk6N5S0r9BTs09Qk39nnJBkvOXQ==";
+ url = "https://registry.npmjs.org/graphql/-/graphql-15.6.1.tgz";
+ sha512 = "3i5lu0z6dRvJ48QP9kFxBkJ7h4Kso7PS8eahyTFz5Jm6CvQfLtNIE8LX9N6JLnXTuwR+sIYnXzaWp6anOg0QQw==";
};
};
"graphql-compose-7.25.1" = {
@@ -30474,13 +30969,13 @@ let
sha512 = "L9fSE/eMnJat/9TtlOVKFAiw2SlvB5RH/QbtSaNcYW/oWX1lBxwdrVTTcNOCWnSNLhDBgg5llxj9oM2SACB8WA==";
};
};
- "hs-client-0.0.9" = {
+ "hs-client-0.0.10" = {
name = "hs-client";
packageName = "hs-client";
- version = "0.0.9";
+ version = "0.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.9.tgz";
- sha512 = "TAsexmpPhSVdCQ1iiX4bBnuqlThTSdGz/YKq+vjLSS1TZ2TwKxERJ8vZh1Wd6GGaMGLZl99uQR+2wUyk4HLSbg==";
+ url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.10.tgz";
+ sha512 = "15tfeQEMRS1FZA0q9gFbQ1jYs8v4z9oKw9xFwVEyRuckn72hoVAglN4IrFxkOCDMYV7TWCY/nO/yNZp5njYFBw==";
};
};
"hsl-regex-1.0.0" = {
@@ -30519,6 +31014,15 @@ let
sha512 = "D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==";
};
};
+ "html-encoding-sniffer-3.0.0" = {
+ name = "html-encoding-sniffer";
+ packageName = "html-encoding-sniffer";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz";
+ sha512 = "oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==";
+ };
+ };
"html-entities-1.4.0" = {
name = "html-entities";
packageName = "html-entities";
@@ -30798,12 +31302,12 @@ let
sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
};
};
- "http-node-git://github.com/feross/http-node#webtorrent" = {
+ "http-node-git://github.com/webtorrent/http-node#webtorrent" = {
name = "http-node";
packageName = "http-node";
version = "1.2.0";
src = fetchgit {
- url = "git://github.com/feross/http-node";
+ url = "git://github.com/webtorrent/http-node";
rev = "342ef8624495343ffd050bd0808b3750cf0e3974";
sha256 = "d7408d01b05fcbd5bb4fb44fd3d7d71463bafd5124d7e69c6f3e97cef8c65368";
};
@@ -30853,6 +31357,15 @@ let
sha512 = "k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==";
};
};
+ "http-proxy-agent-5.0.0" = {
+ name = "http-proxy-agent";
+ packageName = "http-proxy-agent";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz";
+ sha512 = "n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==";
+ };
+ };
"http-proxy-middleware-0.19.1" = {
name = "http-proxy-middleware";
packageName = "http-proxy-middleware";
@@ -31717,6 +32230,15 @@ let
sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==";
};
};
+ "indent-string-5.0.0" = {
+ name = "indent-string";
+ packageName = "indent-string";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz";
+ sha512 = "m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==";
+ };
+ };
"indexes-of-1.0.1" = {
name = "indexes-of";
packageName = "indexes-of";
@@ -31753,6 +32275,15 @@ let
sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216";
};
};
+ "inflection-1.13.1" = {
+ name = "inflection";
+ packageName = "inflection";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflection/-/inflection-1.13.1.tgz";
+ sha512 = "dldYtl2WlN0QDkIDtg8+xFwOS2Tbmp12t1cHa5/YClU6ZQjTFm7B66UcVbh9NQB+HvT5BAd2t5+yKsBkw5pcqA==";
+ };
+ };
"inflight-1.0.6" = {
name = "inflight";
packageName = "inflight";
@@ -31861,22 +32392,22 @@ let
sha512 = "s7lJuQDJEdjqtaIWhp3KYHl6WV3J04U9zoQ6wVc+Xoa06XM27SXUY57qC5DO46xkF0CfgXMKkKNcgvSu/SAEpA==";
};
};
- "ink-3.0.9" = {
+ "ink-3.2.0" = {
name = "ink";
packageName = "ink";
- version = "3.0.9";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ink/-/ink-3.0.9.tgz";
- sha512 = "BN+SyJ1rLbKzGPxGYkk22dYB0b58OtyMI4uN0dYucQ8MlIu5TpXJzaP6Bt8Mgqi1dkNZT55bjGyZ2iVLTkJ70w==";
+ url = "https://registry.npmjs.org/ink/-/ink-3.2.0.tgz";
+ sha512 = "firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==";
};
};
- "ink-spinner-4.0.2" = {
+ "ink-spinner-4.0.3" = {
name = "ink-spinner";
packageName = "ink-spinner";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ink-spinner/-/ink-spinner-4.0.2.tgz";
- sha512 = "vQGmhWUEh3IG1IxK1Hl2w6RfH6aaRIJWw9lrG8CvFFyrQ23UpJ8GClJs5/sFBxkNvsrrK9sKNEGlGnsqTYiUww==";
+ url = "https://registry.npmjs.org/ink-spinner/-/ink-spinner-4.0.3.tgz";
+ sha512 = "uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==";
};
};
"ink-text-input-4.0.1" = {
@@ -31897,6 +32428,15 @@ let
sha512 = "rVsqnw4tQEAJUoknU09+zHdDf30GJdkumkHr0iz/TOYMYEZJkYqziQSGJAM+Z+M603EDfO89+Nxyn/Ko2Zknfw==";
};
};
+ "inline-process-browser-1.0.0" = {
+ name = "inline-process-browser";
+ packageName = "inline-process-browser";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inline-process-browser/-/inline-process-browser-1.0.0.tgz";
+ sha1 = "46a61b153dd3c9b1624b1a00626edb4f7f414f22";
+ };
+ };
"inline-source-map-0.6.2" = {
name = "inline-source-map";
packageName = "inline-source-map";
@@ -32032,13 +32572,13 @@ let
sha512 = "DHLKJwLPNgkfwNmsuEUKSejJFbkv0FMO9SMiQbjI3n5NQuCrSIBqP66ggqyz2a6t2qEolKrMjhQ3+W/xXgUQ+Q==";
};
};
- "inquirer-8.1.5" = {
+ "inquirer-8.2.0" = {
name = "inquirer";
packageName = "inquirer";
- version = "8.1.5";
+ version = "8.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-8.1.5.tgz";
- sha512 = "G6/9xUqmt/r+UvufSyrPpt84NYwhKZ9jLsgMbQzlx804XErNupor8WQdBnBRrXmBfTPpuwf1sV+ss2ovjgdXIg==";
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz";
+ sha512 = "0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==";
};
};
"inquirer-autocomplete-prompt-1.4.0" = {
@@ -32779,13 +33319,13 @@ let
sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345";
};
};
- "is-core-module-2.7.0" = {
+ "is-core-module-2.8.0" = {
name = "is-core-module";
packageName = "is-core-module";
- version = "2.7.0";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz";
- sha512 = "ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==";
+ url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz";
+ sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==";
};
};
"is-data-descriptor-0.1.4" = {
@@ -33013,6 +33553,15 @@ let
sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==";
};
};
+ "is-fullwidth-code-point-4.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz";
+ sha512 = "O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==";
+ };
+ };
"is-function-1.0.2" = {
name = "is-function";
packageName = "is-function";
@@ -34183,13 +34732,13 @@ let
sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA==";
};
};
- "istanbul-lib-coverage-3.0.1" = {
+ "istanbul-lib-coverage-3.0.2" = {
name = "istanbul-lib-coverage";
packageName = "istanbul-lib-coverage";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.1.tgz";
- sha512 = "GvCYYTxaCPqwMjobtVcVKvSHtAGe48MNhGjpK8LtVF8K0ISX7hCKl85LgtuaSneWVyQmaGcW3iXVV3GaZSLpmQ==";
+ url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.2.tgz";
+ sha512 = "o5+eTUYzCJ11/+JhW5/FUCdfsdoYVdQ/8I/OveE2XsjehYn5DdeSnNQAbjYaO8gQ6hvGTN6GM6ddQqpTVG5j8g==";
};
};
"istanbul-lib-instrument-4.0.3" = {
@@ -34426,13 +34975,13 @@ let
sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==";
};
};
- "jest-worker-27.2.4" = {
+ "jest-worker-27.2.5" = {
name = "jest-worker";
packageName = "jest-worker";
- version = "27.2.4";
+ version = "27.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.4.tgz";
- sha512 = "Zq9A2Pw59KkVjBBKD1i3iE2e22oSjXhUKKuAK1HGX8flGwkm6NMozyEYzKd41hXc64dbd/0eWFeEEuxqXyhM+g==";
+ url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.5.tgz";
+ sha512 = "HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw==";
};
};
"jimp-compact-0.16.1" = {
@@ -34444,13 +34993,13 @@ let
sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==";
};
};
- "jitdb-3.4.0" = {
+ "jitdb-3.4.2" = {
name = "jitdb";
packageName = "jitdb";
- version = "3.4.0";
+ version = "3.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-3.4.0.tgz";
- sha512 = "TQUrWpifF3trL4Xk2e1DJn/Wk/FYPZE9QP+0yNzvo3KNDHlBtOYdufnH+otZh13kn1Nh0nt+ZWK8ENB2F34q8Q==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-3.4.2.tgz";
+ sha512 = "iPxNlKIXZEbHWdxoHyDa99eZPKQsF0faLA0Ui1rkL2+m3QGaCe/Xso+73hzkSwow0D4s8AwAurJ7L93bPvOuCw==";
};
};
"jju-1.4.0" = {
@@ -34580,13 +35129,13 @@ let
sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51";
};
};
- "jquery.terminal-2.29.2" = {
+ "jquery.terminal-2.29.4" = {
name = "jquery.terminal";
packageName = "jquery.terminal";
- version = "2.29.2";
+ version = "2.29.4";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.29.2.tgz";
- sha512 = "pRJHCT9v29VYkZNWNLxaW1+ABgzgCsRB4uVjMkTjGsUqPfXiQAGWPszca0qbcsKnF/64vEuQ5BNOVpyoYPCaTw==";
+ url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.29.4.tgz";
+ sha512 = "ugzctBbbJmw3ZGIhYziBFEK8QnWAZy2q6sZUtmPgjni4ILg59tO0WJI9DkKiDZ4LQtdCVexQ5oP0J90jMN+TzA==";
};
};
"js-base64-2.6.4" = {
@@ -34805,6 +35354,15 @@ let
sha512 = "SdRK2C7jjs4k/kT2mwtO07KJN9RnjxtKn03d9JVj6c3j9WwaLcFYsICYDnLAzY0hp+wG2nxl+Cm2jWLiNVYb8g==";
};
};
+ "jsdoc-3.6.7" = {
+ name = "jsdoc";
+ packageName = "jsdoc";
+ version = "3.6.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.7.tgz";
+ sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw==";
+ };
+ };
"jsdom-11.12.0" = {
name = "jsdom";
packageName = "jsdom";
@@ -34841,6 +35399,15 @@ let
sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==";
};
};
+ "jsdom-18.0.0" = {
+ name = "jsdom";
+ packageName = "jsdom";
+ version = "18.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-18.0.0.tgz";
+ sha512 = "HVLuBcFmwdWulStv5U+J59b1AyzXhM92KXlM8HQ3ecYtRM2OQEUCPMa4oNuDeCBmtRcC7tJvb0Xz5OeFXMOKTA==";
+ };
+ };
"jsdom-7.2.2" = {
name = "jsdom";
packageName = "jsdom";
@@ -34877,49 +35444,49 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.36.0" = {
+ "jsii-1.39.0" = {
name = "jsii";
packageName = "jsii";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.36.0.tgz";
- sha512 = "7wuW6iv3lnYxdUb2W9KRPqFDP7xPPhVMmt3eDQbLQGCcMNQ65QgPWgun23+1X1X1ImCcoh5GWaRS0oF0NAJbQA==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.39.0.tgz";
+ sha512 = "2ReD7t6rGhT+c41xovFoAMc4XU5/O2VqGRh3Ud/wN+Nn1ISjZFQa4doQ1xtZLFb1065Vxyv5VCqWp80t6Xw2iA==";
};
};
- "jsii-pacmak-1.36.0" = {
+ "jsii-pacmak-1.39.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.36.0.tgz";
- sha512 = "wRJk6S81OTi1KeXQhpasvWQ3kBXURtg1d99wBBSktDAJAfAj17x/0XbVe43DRFsD/wZARyVj2g1EDC5MexXJZw==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.39.0.tgz";
+ sha512 = "+B2Z62v/MQ8fQcvd1nhKUWv+ZoNEArwa6OiTSvAuMsRoZpZ7Uvabscu71Uu3zq1XzJ6WQStw90ENHkw40l/o7w==";
};
};
- "jsii-reflect-1.36.0" = {
+ "jsii-reflect-1.39.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.36.0.tgz";
- sha512 = "MWhRxSTv29QetIAhtoVO9Awne6TofUPmVeK9SU3G0RqoxCx7F6erbLxcSYIa1KqcBbI6fmT1/JT1kdmCgg0QmQ==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.39.0.tgz";
+ sha512 = "HEMpGHJBDtUbhdnfYUH0M/NTrYxaXrb0B2DXglzN/EYzKJsdp4FAmDPzpKEwnGVK3ReJLZ68YRogTq3msyuQDQ==";
};
};
- "jsii-rosetta-1.36.0" = {
+ "jsii-rosetta-1.39.0" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.36.0.tgz";
- sha512 = "TML7uw5ihRy0S5QKV8nNRxERzIblIeMTn/+eDG9dw/FOpx3oB3dBo9A277skVbs4QPbZuU8ceWb5n1kg/PlbOw==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.39.0.tgz";
+ sha512 = "Fx+kQ+IDEMILQvTESW9TMXLxzQa7h/nm4EKXuDKAeglr5RNhzvTvhsgJy+WshJoMsNcT9ImCV8gmvqAqdSBrWA==";
};
};
- "jsii-srcmak-0.1.357" = {
+ "jsii-srcmak-0.1.369" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.357";
+ version = "0.1.369";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.357.tgz";
- sha512 = "J7+bWGLFLkUQw9uSKJsuKu7RjkM0FSNJCMiC7j4reKAYuPGtmz+a9FMcnPfW2RJK6MwgM4YfTBhoXqhf4IlsFA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.369.tgz";
+ sha512 = "lxMMIzpBkaabuLLNz8WaFKMFoE7oCXFzSm7dMYrStrv/MfG1N2adqw3//B1CDVCNLgPYEwXsA77ToPAtfcrZhA==";
};
};
"json-bigint-1.0.0" = {
@@ -35210,13 +35777,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.2.33" = {
+ "json2jsii-0.2.40" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.2.33";
+ version = "0.2.40";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.33.tgz";
- sha512 = "bqB5/ljrDE3rRGhulVhpWVNXPJJx2paV7+dcytC3zb7AgzRfGop0Ke4TVa7vuy3pEYtKao4IwtXzROqTlzgzWw==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.40.tgz";
+ sha512 = "XtopwIXyLJWiyBydDjczRk7i51H31Nno5BnWf34zbjyAm5SUxzJ6IsqwVfuANys06tFkJYct+ghO/v52qsCAAw==";
};
};
"json3-3.2.6" = {
@@ -35525,6 +36092,15 @@ let
sha1 = "b4c49bf63f162c108b0348399a8737c713b0a83a";
};
};
+ "jstransform-11.0.3" = {
+ name = "jstransform";
+ packageName = "jstransform";
+ version = "11.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jstransform/-/jstransform-11.0.3.tgz";
+ sha1 = "09a78993e0ae4d4ef4487f6155a91f6190cb4223";
+ };
+ };
"jstransformer-1.0.0" = {
name = "jstransformer";
packageName = "jstransformer";
@@ -35867,6 +36443,15 @@ let
sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
};
};
+ "keytar-4.13.0" = {
+ name = "keytar";
+ packageName = "keytar";
+ version = "4.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keytar/-/keytar-4.13.0.tgz";
+ sha512 = "qdyZ3XDuv11ANDXJ+shsmc+j/h5BHPDSn33MwkUMDg2EA++xEBleNkghr3Jg95cqVx5WgDYD8V/m3Q0y7kwQ2w==";
+ };
+ };
"keytar-7.7.0" = {
name = "keytar";
packageName = "keytar";
@@ -36578,6 +37163,15 @@ let
sha512 = "9HaAeBGk1nKTRFRHkt7nzxqCvnkWTjn1pdjKgcUnZxj0FyOP4CnhgFhMdrFfgNsukijBGyBLpP2m2uKT1vuWhQ==";
};
};
+ "lie-3.0.4" = {
+ name = "lie";
+ packageName = "lie";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lie/-/lie-3.0.4.tgz";
+ sha1 = "bc7ae1ebe7f1c8de39afdcd4f789076b47b0f634";
+ };
+ };
"lie-3.1.1" = {
name = "lie";
packageName = "lie";
@@ -36632,15 +37226,6 @@ let
sha512 = "z/bfkDEAKyN0HtN7rkiyVlDA3J5L/jxXsE4YuGfQPa8TyPWovyLdo6/aHP0mMy8n+G4tq0g2oKZ/1Z5ONJAVqA==";
};
};
- "lightning-4.1.0" = {
- name = "lightning";
- packageName = "lightning";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-4.1.0.tgz";
- sha512 = "ngS2829bxBMgK/MFanm6jypvpIbxzxBX/vFbUKyFrj3MxcSKvMQzr1sXRppYxZXHwOuqyiN91QnaKNg3upQ9sg==";
- };
- };
"lightning-4.1.3" = {
name = "lightning";
packageName = "lightning";
@@ -36650,13 +37235,22 @@ let
sha512 = "DI21mqAdwBM/Os3pcAnBrpUCoaKQzJFTEv2c+DEJUzPBnpxRGGKGurlT5FDz9QZSTag7YgBb5ghsqtjQ2MlFWg==";
};
};
- "lightning-4.10.1" = {
+ "lightning-4.10.3" = {
name = "lightning";
packageName = "lightning";
- version = "4.10.1";
+ version = "4.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-4.10.1.tgz";
- sha512 = "MNX67mGzWx7hkd2GUPtCt/vzLSaROg/aDmg/WcW9mdrXY6PQVyGW/gdaTRy9e2hJZ4R8KGMuZ7wZqsDPpRRawQ==";
+ url = "https://registry.npmjs.org/lightning/-/lightning-4.10.3.tgz";
+ sha512 = "dXiEe6n8eGKznThE8yJ9BRXHHju5LgVF2sPsal5Vw933dvi76NIuMPL+Z7XV2sVfKKsnrI7Uktm9Wn5edmXIcA==";
+ };
+ };
+ "lightning-4.10.7" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "4.10.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-4.10.7.tgz";
+ sha512 = "V2IkR55hA0nqMNfjmkgJSGDvkiu+v3hegz2Kj4az3kVFqUMIN9Eb8uFqZ8xKM5PZFBQHaZ59Tm1EZHPPFCNi6A==";
};
};
"lightning-4.5.0" = {
@@ -36668,15 +37262,6 @@ let
sha512 = "oKH9EVKxgPIWm2f3/7vLImQAZQVP2souwAMMg5njGdCPAlekA8KH+/r+Ltuv5jd1vQigwmQMkfmdZzd4qmOI8Q==";
};
};
- "lightning-4.6.0" = {
- name = "lightning";
- packageName = "lightning";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-4.6.0.tgz";
- sha512 = "ZCDSFomdsUvDDaINbABPdglLEJfg+9iMs4BHa8Or+fW5FYwM0HA8l2D/yMxfCMx2DFZg7uuiZVpM8x/7/AbS0Q==";
- };
- };
"lightning-4.7.0" = {
name = "lightning";
packageName = "lightning";
@@ -36866,15 +37451,6 @@ let
sha512 = "X+AFuuw54NEr8UqbkJlEtqkmlpIpmji7BX+bYmYrEOZOtJca7PbaqspVWq+YB9qWw/OiuI76ly67KGTYM0QbCw==";
};
};
- "ln-service-52.0.1" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "52.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-52.0.1.tgz";
- sha512 = "ETL/rpidWMS7nCsZoRb3/0vU5nk7RE1PRtn3YBnmUWJcdhjREPhQRLHm7/vZ+JFRdAwvW7V/lqCvOkDZXCKo6w==";
- };
- };
"ln-service-52.0.3" = {
name = "ln-service";
packageName = "ln-service";
@@ -36884,13 +37460,22 @@ let
sha512 = "upswAJU9Mrfh3l+q46rvmRu8Pf7iYR2vkKyq16dgiBgxKw7fzvI8aL2Xi0xrtyoRUOUODOyEzO7/MRRhNKcvMA==";
};
};
- "ln-service-52.10.1" = {
+ "ln-service-52.11.0" = {
name = "ln-service";
packageName = "ln-service";
- version = "52.10.1";
+ version = "52.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-52.10.1.tgz";
- sha512 = "T1Vjud0X8pbRBh1tKSqzyELHGy4Cxt/71q9q4sd81m8IFw9htsOXYQEkliMmYK33EzLrT2qzFTCJF/YF9UwYvQ==";
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-52.11.0.tgz";
+ sha512 = "1QFz35rg00RDTiRctYTaKvkDHcYc9/+9liiQhNaJEblJQnQyNoA5Cid6G7oHOkIj2k7fVTJpEgyflI+qG3u2Og==";
+ };
+ };
+ "ln-service-52.12.1" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "52.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-52.12.1.tgz";
+ sha512 = "kjWrvVQf51DHARckDgqwWyHQbsSYHqtF4yeuuRFowD7xxd3ONvsysManz1RTQnnQgjAYHHi1FBtkx/x2b8Lrzw==";
};
};
"ln-service-52.4.0" = {
@@ -36911,15 +37496,6 @@ let
sha512 = "tLJMrknIzK6MMIx/N1r8iRjVWBPFmt0S1hI2l+DNL6+ln930nSUN+/aW3SUZho48ACLPBJDSgXwAU50ExrC+rQ==";
};
};
- "ln-sync-2.0.0" = {
- name = "ln-sync";
- packageName = "ln-sync";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.0.tgz";
- sha512 = "BrqRO1pxeRhaCTw8GdnLGwCsFQSnrJohXkVxuDQCQ4OCgLFKFS7TpFKS7INoJrLE1XpcGS8NtLLXjsA0Akcd3A==";
- };
- };
"ln-sync-2.0.2" = {
name = "ln-sync";
packageName = "ln-sync";
@@ -36929,13 +37505,22 @@ let
sha512 = "tPT6irw2Ad6W/uoLZ9H0mT3S59XPMRY7j7ygu+ALztbAcuixEOn3kv80+3hFjOzqXXFo/FDsXHw3DWfO2dDDng==";
};
};
- "ln-telegram-3.3.0" = {
+ "ln-sync-2.0.3" = {
+ name = "ln-sync";
+ packageName = "ln-sync";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.3.tgz";
+ sha512 = "krtCggshBHgzL203L0ZBLS28SStlyuoz9siauS5hiqUQ+/UaJ5/ROYt81s6GVp008K2GF5KTRLZjaIhCMkf3Vw==";
+ };
+ };
+ "ln-telegram-3.3.1" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "3.3.0";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.3.0.tgz";
- sha512 = "rWrS5lO2oZhLbts7R58QDh1Hf/A/QIGA8Jew0iZrIFix9afiz3+xwJi5LFkB0nIaFnWvpOeFP4deDq3ADcF3Hw==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.3.1.tgz";
+ sha512 = "W/Wu6Mb5zwYpD97Oa+1wfz2/kgRGqueJ47pHQ0bAcpEB5vFVLG0R347Gr3MNIlFRY7liGdCmO4xvB8bCxtg8uQ==";
};
};
"load-bmfont-1.4.1" = {
@@ -38351,13 +38936,13 @@ let
sha1 = "ec6662e4896408ed4ab6c542a3990b72cc080020";
};
};
- "log-6.2.0" = {
+ "log-6.3.1" = {
name = "log";
packageName = "log";
- version = "6.2.0";
+ version = "6.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/log/-/log-6.2.0.tgz";
- sha512 = "W1sDY5FqR6wlpygW8ZFSxCfBhKx/RzCHK5S+Br8zA14bAnwSgCm5hToIWzi0Yhy6x9Ppw7pyIV06r8F5cSRHUw==";
+ url = "https://registry.npmjs.org/log/-/log-6.3.1.tgz";
+ sha512 = "McG47rJEWOkXTDioZzQNydAVvZNeEkSyLJ1VWkFwfW+o1knW+QSi8D1KjPn/TnctV+q99lkvJNe1f0E1IjfY2A==";
};
};
"log-driver-1.2.7" = {
@@ -39197,13 +39782,13 @@ let
sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
};
};
- "mapbox-gl-1.13.1" = {
+ "mapbox-gl-1.13.2" = {
name = "mapbox-gl";
packageName = "mapbox-gl";
- version = "1.13.1";
+ version = "1.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.1.tgz";
- sha512 = "GSyubcoSF5MyaP8z+DasLu5v7KmDK2pp4S5+VQ5WdVQUOaAqQY4jwl4JpcdNho3uWm2bIKs7x1l7q3ynGmW60g==";
+ url = "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.2.tgz";
+ sha512 = "CPjtWygL+f7naL+sGHoC2JQR0DG7u+9ik6WdkjjVmz2uy0kBC2l+aKfdi3ZzUR7VKSQJ6Mc/CeCN+6iVNah+ww==";
};
};
"mark.js-8.11.1" = {
@@ -40178,6 +40763,15 @@ let
sha512 = "ctDyraFPyJDXi6RWgWZ8SyDk2bAsFaBpobprCl7xbcfQamjtfuaN8+lcWUt8ARYfQKb1f8mcPVhQ+Q2ObeD/3A==";
};
};
+ "meow-10.1.1" = {
+ name = "meow";
+ packageName = "meow";
+ version = "10.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meow/-/meow-10.1.1.tgz";
+ sha512 = "uzOAEBTGujHAD6bVzIQQk5kDTgatxmpVmr1pj9QhwsHLEG2AiB+9F08/wmjrZIk4h5pWxERd7+jqGZywYx3ZFw==";
+ };
+ };
"meow-3.7.0" = {
name = "meow";
packageName = "meow";
@@ -40322,13 +40916,13 @@ let
sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw==";
};
};
- "mermaid-8.13.2" = {
+ "mermaid-8.13.3" = {
name = "mermaid";
packageName = "mermaid";
- version = "8.13.2";
+ version = "8.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.2.tgz";
- sha512 = "qTFI7MfC2d+x0Hft5gx063EH9tZg36lERG8o7Zq0Ag+MnO8CgVaMZEU6oA8gzTtTn9upMdy4UlYSLVmavu27cQ==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.3.tgz";
+ sha512 = "w6KmDtSzkk856WUVqlBsyLZX0q4Jr35IlxiHTPTaWwMgWHFpI8rEJzcxWoyrpxeT/Rac/vvvSFOZymDTeA0iiA==";
};
};
"meros-1.1.4" = {
@@ -41249,22 +41843,22 @@ let
sha512 = "sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==";
};
};
- "mobx-6.3.3" = {
+ "mobx-6.3.5" = {
name = "mobx";
packageName = "mobx";
- version = "6.3.3";
+ version = "6.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx/-/mobx-6.3.3.tgz";
- sha512 = "JoNU50rO6d1wHwKPJqKq4rmUMbYnI9CsJmBo+Cu4exBYenFvIN77LWrZENpzW6reZPADtXMmB1DicbDSfy8Clw==";
+ url = "https://registry.npmjs.org/mobx/-/mobx-6.3.5.tgz";
+ sha512 = "MeDfqtiSbhVoJgXqQsrJwvq2klj7Xk9pPdMThCdFiwFt33vgWJe82ATppPwVzQoz0AI3QpSSwQzcp3TBDK4syg==";
};
};
- "mobx-react-7.2.0" = {
+ "mobx-react-7.2.1" = {
name = "mobx-react";
packageName = "mobx-react";
- version = "7.2.0";
+ version = "7.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.2.0.tgz";
- sha512 = "KHUjZ3HBmZlNnPd1M82jcdVsQRDlfym38zJhZEs33VxyVQTvL77hODCArq6+C1P1k/6erEeo2R7rpE7ZeOL7dg==";
+ url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.2.1.tgz";
+ sha512 = "LZS99KFLn75VWDXPdRJhILzVQ7qLcRjQbzkK+wVs0Qg4kWw5hOI2USp7tmu+9zP9KYsVBmKyx2k/8cTTBfsymw==";
};
};
"mobx-react-lite-3.2.1" = {
@@ -41303,13 +41897,13 @@ let
sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==";
};
};
- "mocha-9.1.2" = {
+ "mocha-9.1.3" = {
name = "mocha";
packageName = "mocha";
- version = "9.1.2";
+ version = "9.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-9.1.2.tgz";
- sha512 = "ta3LtJ+63RIBP03VBjMGtSqbe6cWXRejF9SyM9Zyli1CKZJZ+vfCTj3oW24V7wAphMJdpOFLoMI3hjJ1LWbs0w==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-9.1.3.tgz";
+ sha512 = "Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw==";
};
};
"mock-require-3.0.3" = {
@@ -42050,6 +42644,15 @@ let
sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d";
};
};
+ "nan-2.14.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz";
+ sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==";
+ };
+ };
"nan-2.14.2" = {
name = "nan";
packageName = "nan";
@@ -42122,13 +42725,13 @@ let
sha512 = "2nMHqg1x5PU+unxX7PGY7AuYxl2qDx7PSrTRjizr8sxdd3l/3hBuWWaki62qmtYm2U5i4Z5E7GbjlyDFhs9/EQ==";
};
};
- "nanocolors-0.2.12" = {
+ "nanocolors-0.2.13" = {
name = "nanocolors";
packageName = "nanocolors";
- version = "0.2.12";
+ version = "0.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.12.tgz";
- sha512 = "SFNdALvzW+rVlzqexid6epYdt8H9Zol7xDoQarioEFcFN0JHo4CYNztAxmtfgGTVRCmFlEOqqhBpoFGKqSAMug==";
+ url = "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.13.tgz";
+ sha512 = "0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==";
};
};
"nanoguard-1.3.0" = {
@@ -42167,13 +42770,13 @@ let
sha512 = "rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==";
};
};
- "nanoid-3.1.28" = {
+ "nanoid-3.1.30" = {
name = "nanoid";
packageName = "nanoid";
- version = "3.1.28";
+ version = "3.1.30";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.28.tgz";
- sha512 = "gSu9VZ2HtmoKYe/lmyPFES5nknFrHa+/DT9muUFWFMi6Jh9E1I7bkvlQ8xxf1Kos9pi9o8lBnIOkatMhKX/YUw==";
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz";
+ sha512 = "zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==";
};
};
"nanoiterator-1.2.1" = {
@@ -42591,13 +43194,13 @@ let
sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==";
};
};
- "netlify-8.0.1" = {
+ "netlify-8.0.2" = {
name = "netlify";
packageName = "netlify";
- version = "8.0.1";
+ version = "8.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify/-/netlify-8.0.1.tgz";
- sha512 = "bAUay/JDmUdmFSfW6BQuUGHuj498ALr/aS4Se3Juhgv1N0q1Whrp1uwGlkIgatrlP0lLL/zkTWc6hxmG1TqQcQ==";
+ url = "https://registry.npmjs.org/netlify/-/netlify-8.0.2.tgz";
+ sha512 = "qOOcIgLjZL000JiUWBAJeSlqwvueNe/KjTHr0Oi7U/7gJIeCIUM0ktENJht2wF18jikO2zm1POZudYCzdQOnJw==";
};
};
"netlify-headers-parser-4.0.1" = {
@@ -42870,15 +43473,6 @@ let
sha512 = "Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==";
};
};
- "node-addon-api-3.0.2" = {
- name = "node-addon-api";
- packageName = "node-addon-api";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.0.2.tgz";
- sha512 = "+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==";
- };
- };
"node-addon-api-3.2.1" = {
name = "node-addon-api";
packageName = "node-addon-api";
@@ -42888,6 +43482,15 @@ let
sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==";
};
};
+ "node-addon-api-4.2.0" = {
+ name = "node-addon-api";
+ packageName = "node-addon-api";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz";
+ sha512 = "eazsqzwG2lskuzBqCGPi7Ac2UgOoMz8JVOXVhTvvPDYhthvNpefx8jWD8Np7Gv+2Sz0FlPWZk0nJV0z598Wn8Q==";
+ };
+ };
"node-api-version-0.1.4" = {
name = "node-api-version";
packageName = "node-api-version";
@@ -43024,6 +43627,15 @@ let
sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==";
};
};
+ "node-fetch-2.6.0" = {
+ name = "node-fetch";
+ packageName = "node-fetch";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz";
+ sha512 = "8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==";
+ };
+ };
"node-fetch-2.6.1" = {
name = "node-fetch";
packageName = "node-fetch";
@@ -43267,6 +43879,15 @@ let
sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==";
};
};
+ "node-pre-gyp-0.13.0" = {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz";
+ sha512 = "Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==";
+ };
+ };
"node-pre-gyp-0.6.39" = {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
@@ -43285,13 +43906,13 @@ let
sha1 = "dbbd4af12134e2e635c245ef93ffcf6f60673a5d";
};
};
- "node-red-admin-2.2.0" = {
+ "node-red-admin-2.2.1" = {
name = "node-red-admin";
packageName = "node-red-admin";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-2.2.0.tgz";
- sha512 = "dBljNubVsolJkgfXUAF3KrCAO+hi5AXz+cftGjfHT76PyVB9pFUbAgTrkjZmKciC/B/14kEV5Ds+SwonqyTMfg==";
+ url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-2.2.1.tgz";
+ sha512 = "xYp6mZaRbAWLR8nO4HRVvthYZoPGBotPvetAGho4AXpRJW7fXw38XwK0KPSffvLSis6cxaskJq9nZBLp3PJtng==";
};
};
"node-releases-1.1.77" = {
@@ -43303,6 +43924,15 @@ let
sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==";
};
};
+ "node-releases-2.0.0" = {
+ name = "node-releases";
+ packageName = "node-releases";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz";
+ sha512 = "aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==";
+ };
+ };
"node-source-walk-4.2.0" = {
name = "node-source-walk";
packageName = "node-source-walk";
@@ -43438,13 +44068,13 @@ let
sha512 = "FbuXC+lK+GU2+63D1kC1ETiZo+Z7SIi7B+mxKTCH1byrh6WFvfBCN/wpherFz0a0bjGd7EKTst/cz0yLeNngug==";
};
};
- "nofilter-3.0.3" = {
+ "nofilter-3.1.0" = {
name = "nofilter";
packageName = "nofilter";
- version = "3.0.3";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nofilter/-/nofilter-3.0.3.tgz";
- sha512 = "TN/MCrQmXQk5DyUJ8TGUq1Il8rv4fTsjddLmMopV006QP8DMkglmGgYfQKD5620vXLRXfr8iGI6ZZ4/ZWld2cQ==";
+ url = "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz";
+ sha512 = "l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==";
};
};
"noise-peer-2.1.1" = {
@@ -43483,6 +44113,15 @@ let
sha512 = "K9nTVFOGUOYutaG8ywiKpCdVu458RFxSgSJ0rribUxtf5iLM9B2+raFJgkID3p5op0+twmoQqFaPnu9KYz6qzg==";
};
};
+ "noop-fn-1.0.0" = {
+ name = "noop-fn";
+ packageName = "noop-fn";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/noop-fn/-/noop-fn-1.0.0.tgz";
+ sha1 = "5f33d47f13d2150df93e0cb036699e982f78ffbf";
+ };
+ };
"noop-logger-0.1.1" = {
name = "noop-logger";
packageName = "noop-logger";
@@ -44014,13 +44653,13 @@ let
sha1 = "201095a487e1ad36081b3432fa3cada4f8d071b0";
};
};
- "num-sort-2.1.0" = {
+ "num-sort-3.0.0" = {
name = "num-sort";
packageName = "num-sort";
- version = "2.1.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz";
- sha512 = "1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==";
+ url = "https://registry.npmjs.org/num-sort/-/num-sort-3.0.0.tgz";
+ sha512 = "N5dLIfqCzlJm7M14KqmX/sl+6Zg5WH0E04HKfuVHbPj9jIaY1T2zuCS+xe0qeT/YN3UpYQ6lIIXcE/3Xbwg3Xw==";
};
};
"num2fraction-1.2.2" = {
@@ -44204,6 +44843,15 @@ let
sha1 = "e65dc8766d3b47b4b8307465c8311da030b070a6";
};
};
+ "object-assign-2.1.1" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz";
+ sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa";
+ };
+ };
"object-assign-3.0.0" = {
name = "object-assign";
packageName = "object-assign";
@@ -44708,13 +45356,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.36.0" = {
+ "oo-ascii-tree-1.39.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.36.0";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.36.0.tgz";
- sha512 = "VGo4IhIbwJgYnwBAtk5+6puhwOjyMdaviPhxZgEteh6/twR7m8T6C47kSNuXIX51H6ogh6y8GeuOIuWyPcc9Cg==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.39.0.tgz";
+ sha512 = "a0g33GTdCizt5jnQzY9j6cRNyx5xITmZb+b3C21+KNweaERltcR1BQO/tLUuuVEFRVWvZcUqrFDVa8f8nqOafA==";
};
};
"opal-runtime-1.0.11" = {
@@ -44789,6 +45437,15 @@ let
sha512 = "rXILpcQlkF/QuFez2BJDf3GsqpjGKbkUUToAIGo9A0Q6ZkoSGogZJulrUdwRkrAsoQvoZsrjCYt8+zblOk7JQQ==";
};
};
+ "open-8.3.0" = {
+ name = "open";
+ packageName = "open";
+ version = "8.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-8.3.0.tgz";
+ sha512 = "7INcPWb1UcOwSQxAXTnBJ+FxVV4MPs/X++FWWBtgY69/J5lc+tCteMt/oFK1MnkyHC4VILLa9ntmwKTwDR4Q9w==";
+ };
+ };
"openapi-default-setter-2.1.0" = {
name = "openapi-default-setter";
packageName = "openapi-default-setter";
@@ -45410,22 +46067,22 @@ let
sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ot-builder-1.1.2" = {
+ "ot-builder-1.2.0" = {
name = "ot-builder";
packageName = "ot-builder";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.1.2.tgz";
- sha512 = "pAs1thg6T5e3fjsMEeOY+gn0fMWNYOlOIAygjTJ33Xr1ejDep3cebWdw4dqydFhRiChWC1KOmfK353froAFl9A==";
+ url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.2.0.tgz";
+ sha512 = "zVVOHksH1kdHx8FSuiNFXbFW2nJg8QgoK1Kng9fw7vR6r8EXl0hGuqkHtknsydL+kLX07JC4apwG6ftNu6TKYQ==";
};
};
- "otb-ttc-bundle-1.1.2" = {
+ "otb-ttc-bundle-1.2.0" = {
name = "otb-ttc-bundle";
packageName = "otb-ttc-bundle";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.1.2.tgz";
- sha512 = "i6o/Cp5bEZ4k0U7rPiDLFroYa/nwsI2og6Hkd8GVEvBMxwoTDqhqIHYd610NPj3w4babTdb5R+Xyk7NYNB7Xnw==";
+ url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.2.0.tgz";
+ sha512 = "RwPZjepVm3WJnr49jnZvw8iS5Gkf7y9TJO3lMBI8Mb2//CqCmZ37hDnZB4cu1Q5EsYXpheZmh6ldOp/o1r0Bkg==";
};
};
"ow-0.21.0" = {
@@ -47174,6 +47831,15 @@ let
sha512 = "cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==";
};
};
+ "picocolors-1.0.0" = {
+ name = "picocolors";
+ packageName = "picocolors";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz";
+ sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==";
+ };
+ };
"picomatch-2.2.3" = {
name = "picomatch";
packageName = "picomatch";
@@ -47210,13 +47876,13 @@ let
sha512 = "OlE82n3yMOE5dY9RMOwxhoWefeMlxwk5IVxoj0sSzSFIlmvhN4obzTvO3s/d/b5JhcgXikjaspsy/HuUDTqbBg==";
};
};
- "pid-port-0.1.1" = {
+ "pid-port-0.2.0" = {
name = "pid-port";
packageName = "pid-port";
- version = "0.1.1";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pid-port/-/pid-port-0.1.1.tgz";
- sha512 = "boqPJtSgZC6KOgXKNPC+/XR3xwVtpOtaLa7JLcdf8jfVe0ZM2TwllBXxxLUO8GQbOLJ4/hEtf2+L1QCKbaoHUg==";
+ url = "https://registry.npmjs.org/pid-port/-/pid-port-0.2.0.tgz";
+ sha512 = "xVU9H1FCRSeGrD9Oim5bLg2U7B2BgW0qzK2oahpV5BIf9hwzqQaWyOkOVC0Kgbsc90A9x6525beawx+QK+JduQ==";
};
};
"pidusage-2.0.21" = {
@@ -47318,13 +47984,13 @@ let
sha512 = "drPtqkkSf0ufx2gaea3TryFiBHdNIdXKf5LN0hTM82SXI4xVIve2wLwNg92e1MT6m3jASLu6VO7eGY6+mmGeyw==";
};
};
- "pino-6.13.2" = {
+ "pino-6.13.3" = {
name = "pino";
packageName = "pino";
- version = "6.13.2";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-6.13.2.tgz";
- sha512 = "vmD/cabJ4xKqo9GVuAoAEeQhra8XJ7YydPV/JyIP+0zDtFTu5JSKdtt8eksGVWKtTSrNGcRrzJ4/IzvUWep3FA==";
+ url = "https://registry.npmjs.org/pino/-/pino-6.13.3.tgz";
+ sha512 = "tJy6qVgkh9MwNgqX1/oYi3ehfl2Y9H0uHyEEMsBe74KinESIjdMrMQDWpcZPpPicg3VV35d/GLQZmo4QgU2Xkg==";
};
};
"pino-std-serializers-3.2.0" = {
@@ -47832,15 +48498,6 @@ let
sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==";
};
};
- "postcss-8.3.6" = {
- name = "postcss";
- packageName = "postcss";
- version = "8.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz";
- sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==";
- };
- };
"postcss-8.3.9" = {
name = "postcss";
packageName = "postcss";
@@ -48255,13 +48912,13 @@ let
sha512 = "rBkDbaHAu5uywbCR2XE8a25tats3xSOsGNx6mppK6Q9kSFGKc/FyAzfci+fWM2l+K402p1D0pNcfDGxeje5IKg==";
};
};
- "postcss-reporter-7.0.3" = {
+ "postcss-reporter-7.0.4" = {
name = "postcss-reporter";
packageName = "postcss-reporter";
- version = "7.0.3";
+ version = "7.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.3.tgz";
- sha512 = "WoYHwtStmiR74UQDO3vZMbkhOBXSXyteWnhMCVbAK6KRRKLTS0EnTZxOxvbUEnQiMZ+3xRG04x41HhHnLBtQfA==";
+ url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.4.tgz";
+ sha512 = "jY/fnpGSin7kwJeunXbY35STp5O3VIxSFdjee5JkoPQ+FfGH5JW3N+Xe9oAPcL9UkjWjkK+JC72o8XH4XXKdhw==";
};
};
"postcss-resolve-nested-selector-0.1.1" = {
@@ -48498,6 +49155,249 @@ let
sha512 = "15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==";
};
};
+ "pouchdb-abstract-mapreduce-7.2.2" = {
+ name = "pouchdb-abstract-mapreduce";
+ packageName = "pouchdb-abstract-mapreduce";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.2.2.tgz";
+ sha512 = "7HWN/2yV2JkwMnGnlp84lGvFtnm0Q55NiBUdbBcaT810+clCGKvhssBCrXnmwShD1SXTwT83aszsgiSfW+SnBA==";
+ };
+ };
+ "pouchdb-adapter-node-websql-7.0.0" = {
+ name = "pouchdb-adapter-node-websql";
+ packageName = "pouchdb-adapter-node-websql";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-adapter-node-websql/-/pouchdb-adapter-node-websql-7.0.0.tgz";
+ sha512 = "fNaOMO8bvMrRTSfmH4RSLSpgnKahRcCA7Z0jg732PwRbGvvMdGbreZwvKPPD1fg2tm2ZwwiXWK2G3+oXyoqZYw==";
+ };
+ };
+ "pouchdb-adapter-utils-7.0.0" = {
+ name = "pouchdb-adapter-utils";
+ packageName = "pouchdb-adapter-utils";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-adapter-utils/-/pouchdb-adapter-utils-7.0.0.tgz";
+ sha512 = "UWKPC6jkz6mHUzZefrU7P5X8ZGvBC8LSNZ7BIp0hWvJE6c20cnpDwedTVDpZORcCbVJpDmFOHBYnOqEIblPtbA==";
+ };
+ };
+ "pouchdb-adapter-websql-core-7.0.0" = {
+ name = "pouchdb-adapter-websql-core";
+ packageName = "pouchdb-adapter-websql-core";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-adapter-websql-core/-/pouchdb-adapter-websql-core-7.0.0.tgz";
+ sha512 = "NyMaH0bl20SdJdOCzd+fwXo8JZ15a48/MAwMcIbXzsRHE4DjFNlRcWAcjUP6uN4Ezc+Gx+r2tkBBMf71mIz1Aw==";
+ };
+ };
+ "pouchdb-binary-utils-7.0.0" = {
+ name = "pouchdb-binary-utils";
+ packageName = "pouchdb-binary-utils";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.0.0.tgz";
+ sha512 = "yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw==";
+ };
+ };
+ "pouchdb-binary-utils-7.2.2" = {
+ name = "pouchdb-binary-utils";
+ packageName = "pouchdb-binary-utils";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.2.2.tgz";
+ sha512 = "shacxlmyHbUrNfE6FGYpfyAJx7Q0m91lDdEAaPoKZM3SzAmbtB1i+OaDNtYFztXjJl16yeudkDb3xOeokVL3Qw==";
+ };
+ };
+ "pouchdb-changes-filter-7.2.2" = {
+ name = "pouchdb-changes-filter";
+ packageName = "pouchdb-changes-filter";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.2.2.tgz";
+ sha512 = "1txJnTtL/C7zrq+spLt3pH9EDHTWmLLwp2zx8zUQrkt6eQtuLuXUI7G84xe+hfpU0rQvUzp/APYMnko0/6Rw0A==";
+ };
+ };
+ "pouchdb-collate-7.2.2" = {
+ name = "pouchdb-collate";
+ packageName = "pouchdb-collate";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.2.2.tgz";
+ sha512 = "/SMY9GGasslknivWlCVwXMRMnQ8myKHs4WryQ5535nq1Wj/ehpqWloMwxEQGvZE1Sda3LOm7/5HwLTcB8Our+w==";
+ };
+ };
+ "pouchdb-collections-7.0.0" = {
+ name = "pouchdb-collections";
+ packageName = "pouchdb-collections";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.0.0.tgz";
+ sha512 = "DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q==";
+ };
+ };
+ "pouchdb-collections-7.2.2" = {
+ name = "pouchdb-collections";
+ packageName = "pouchdb-collections";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.2.2.tgz";
+ sha512 = "6O9zyAYlp3UdtfneiMYuOCWdUCQNo2bgdjvNsMSacQX+3g8WvIoFQCYJjZZCpTttQGb+MHeRMr8m2U95lhJTew==";
+ };
+ };
+ "pouchdb-core-7.2.2" = {
+ name = "pouchdb-core";
+ packageName = "pouchdb-core";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.2.2.tgz";
+ sha512 = "AnMmSH+xx12Vk6oASDRQoElXfV9fSn8MIwfus0oa2lqkxowx4bvidofZbhZfKEiE6QgKwFEOBzs56MS3znI8TQ==";
+ };
+ };
+ "pouchdb-errors-7.0.0" = {
+ name = "pouchdb-errors";
+ packageName = "pouchdb-errors";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.0.0.tgz";
+ sha512 = "dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA==";
+ };
+ };
+ "pouchdb-errors-7.2.2" = {
+ name = "pouchdb-errors";
+ packageName = "pouchdb-errors";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.2.2.tgz";
+ sha512 = "6GQsiWc+7uPfgEHeavG+7wuzH3JZW29Dnrvz8eVbDFE50kVFxNDVm3EkYHskvo5isG7/IkOx7PV7RPTA3keG3g==";
+ };
+ };
+ "pouchdb-extend-0.1.2" = {
+ name = "pouchdb-extend";
+ packageName = "pouchdb-extend";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-extend/-/pouchdb-extend-0.1.2.tgz";
+ sha1 = "d1ce511bf704ed2e29f7bf428a416acfffa124b8";
+ };
+ };
+ "pouchdb-fetch-7.2.2" = {
+ name = "pouchdb-fetch";
+ packageName = "pouchdb-fetch";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.2.2.tgz";
+ sha512 = "lUHmaG6U3zjdMkh8Vob9GvEiRGwJfXKE02aZfjiVQgew+9SLkuOxNw3y2q4d1B6mBd273y1k2Lm0IAziRNxQnA==";
+ };
+ };
+ "pouchdb-find-7.2.2" = {
+ name = "pouchdb-find";
+ packageName = "pouchdb-find";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.2.2.tgz";
+ sha512 = "BmFeFVQ0kHmDehvJxNZl9OmIztCjPlZlVSdpijuFbk/Fi1EFPU1BAv3kLC+6DhZuOqU/BCoaUBY9sn66pPY2ag==";
+ };
+ };
+ "pouchdb-json-7.0.0" = {
+ name = "pouchdb-json";
+ packageName = "pouchdb-json";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-json/-/pouchdb-json-7.0.0.tgz";
+ sha512 = "w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew==";
+ };
+ };
+ "pouchdb-mapreduce-utils-7.2.2" = {
+ name = "pouchdb-mapreduce-utils";
+ packageName = "pouchdb-mapreduce-utils";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.2.2.tgz";
+ sha512 = "rAllb73hIkU8rU2LJNbzlcj91KuulpwQu804/F6xF3fhZKC/4JQMClahk+N/+VATkpmLxp1zWmvmgdlwVU4HtQ==";
+ };
+ };
+ "pouchdb-md5-7.0.0" = {
+ name = "pouchdb-md5";
+ packageName = "pouchdb-md5";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.0.0.tgz";
+ sha512 = "yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ==";
+ };
+ };
+ "pouchdb-md5-7.2.2" = {
+ name = "pouchdb-md5";
+ packageName = "pouchdb-md5";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.2.2.tgz";
+ sha512 = "c/RvLp2oSh8PLAWU5vFBnp6ejJABIdKqboZwRRUrWcfGDf+oyX8RgmJFlYlzMMOh4XQLUT1IoaDV8cwlsuryZw==";
+ };
+ };
+ "pouchdb-merge-7.0.0" = {
+ name = "pouchdb-merge";
+ packageName = "pouchdb-merge";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.0.0.tgz";
+ sha512 = "tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg==";
+ };
+ };
+ "pouchdb-merge-7.2.2" = {
+ name = "pouchdb-merge";
+ packageName = "pouchdb-merge";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.2.2.tgz";
+ sha512 = "6yzKJfjIchBaS7Tusuk8280WJdESzFfQ0sb4jeMUNnrqs4Cx3b0DIEOYTRRD9EJDM+je7D3AZZ4AT0tFw8gb4A==";
+ };
+ };
+ "pouchdb-promise-5.4.3" = {
+ name = "pouchdb-promise";
+ packageName = "pouchdb-promise";
+ version = "5.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-promise/-/pouchdb-promise-5.4.3.tgz";
+ sha1 = "331d670b1989d5a03f268811214f27f54150cb2b";
+ };
+ };
+ "pouchdb-selector-core-7.2.2" = {
+ name = "pouchdb-selector-core";
+ packageName = "pouchdb-selector-core";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.2.2.tgz";
+ sha512 = "XYKCNv9oiNmSXV5+CgR9pkEkTFqxQGWplnVhO3W9P154H08lU0ZoNH02+uf+NjZ2kjse7Q1fxV4r401LEcGMMg==";
+ };
+ };
+ "pouchdb-utils-7.0.0" = {
+ name = "pouchdb-utils";
+ packageName = "pouchdb-utils";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.0.0.tgz";
+ sha512 = "1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ==";
+ };
+ };
+ "pouchdb-utils-7.2.2" = {
+ name = "pouchdb-utils";
+ packageName = "pouchdb-utils";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.2.2.tgz";
+ sha512 = "XmeM5ioB4KCfyB2MGZXu1Bb2xkElNwF1qG+zVFbQsKQij0zvepdOUfGuWvLRHxTOmt4muIuSOmWZObZa3NOgzQ==";
+ };
+ };
+ "pouchdb-wrappers-4.1.0" = {
+ name = "pouchdb-wrappers";
+ packageName = "pouchdb-wrappers";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pouchdb-wrappers/-/pouchdb-wrappers-4.1.0.tgz";
+ sha512 = "L94K7zgb2tFSvU/iAj1EHK8fC13vKWzzy8kc9HBu9s1jtZSfD34cbWG6qUIvlu61Fso2byp8fsOvp+l5hFiRmg==";
+ };
+ };
"prebuild-install-5.3.0" = {
name = "prebuild-install";
packageName = "prebuild-install";
@@ -49110,6 +50010,15 @@ let
sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
};
};
+ "promise-nodify-1.0.2" = {
+ name = "promise-nodify";
+ packageName = "promise-nodify";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-nodify/-/promise-nodify-1.0.2.tgz";
+ sha1 = "0d0fb143c33400b0061b47e581257557047d4c5a";
+ };
+ };
"promise-polyfill-6.1.0" = {
name = "promise-polyfill";
packageName = "promise-polyfill";
@@ -49227,13 +50136,13 @@ let
sha512 = "awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==";
};
};
- "prompts-2.4.1" = {
+ "prompts-2.4.2" = {
name = "prompts";
packageName = "prompts";
- version = "2.4.1";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz";
- sha512 = "EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==";
+ url = "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz";
+ sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==";
};
};
"promzard-0.3.0" = {
@@ -50442,13 +51351,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.175" = {
+ "pyright-1.1.178" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.175";
+ version = "1.1.178";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.175.tgz";
- sha512 = "LCYO4t/wvZPSipRgz5wCRNQWqLBhiVx2H05sU7Xr6db6tesS1mPfwyBoa0X7oMCUycwoEmApdPCSQvrggXQ1oQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.178.tgz";
+ sha512 = "OhEoC5HfKZqvY5GVCsHeroYDx85xp4CZwevhNsePxNzZyW+W491K4bfLTvuOBnvcnMWip+aMQ7zzFDkw74Gtkg==";
};
};
"q-0.9.7" = {
@@ -51252,13 +52161,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.19.1" = {
+ "react-devtools-core-4.20.0" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.19.1";
+ version = "4.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.19.1.tgz";
- sha512 = "2wJiGffPWK0KggBjVwnTaAk+Z3MSxKInHmdzPTrBh1mAarexsa93Kw+WMX88+XjN+TtYgAiLe9xeTqcO5FfJTw==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.20.0.tgz";
+ sha512 = "85889TaQpU4HImySgOjVwsGE1vkS9dgEjtruRHutnXlBN3IZN8lDRuqRBLmhFkS50BEmfpTR28qV7bHAqwHooA==";
};
};
"react-dom-16.14.0" = {
@@ -51369,6 +52278,15 @@ let
sha512 = "gAGnwWkf+NOTig9oOowqid9O0HjTDC+XVGBCAmJYYJ2A2cN/O4gDdIuuUQjv8A4v6GDwVfJkagpBBLW5OW9HSw==";
};
};
+ "react-reconciler-0.26.2" = {
+ name = "react-reconciler";
+ packageName = "react-reconciler";
+ version = "0.26.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.26.2.tgz";
+ sha512 = "nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q==";
+ };
+ };
"react-refresh-0.4.3" = {
name = "react-refresh";
packageName = "react-refresh";
@@ -51612,6 +52530,15 @@ let
sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==";
};
};
+ "read-pkg-6.0.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz";
+ sha512 = "X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==";
+ };
+ };
"read-pkg-up-1.0.1" = {
name = "read-pkg-up";
packageName = "read-pkg-up";
@@ -51657,6 +52584,15 @@ let
sha512 = "zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==";
};
};
+ "read-pkg-up-8.0.0" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz";
+ sha512 = "snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==";
+ };
+ };
"read-torrent-1.3.1" = {
name = "read-torrent";
packageName = "read-torrent";
@@ -51855,6 +52791,15 @@ let
sha512 = "v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==";
};
};
+ "recast-0.10.43" = {
+ name = "recast";
+ packageName = "recast";
+ version = "0.10.43";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recast/-/recast-0.10.43.tgz";
+ sha1 = "b95d50f6d60761a5f6252e15d80678168491ce7f";
+ };
+ };
"recast-0.11.23" = {
name = "recast";
packageName = "recast";
@@ -51972,6 +52917,15 @@ let
sha512 = "6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==";
};
};
+ "redent-4.0.0" = {
+ name = "redent";
+ packageName = "redent";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz";
+ sha512 = "tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==";
+ };
+ };
"redeyed-2.1.1" = {
name = "redeyed";
packageName = "redeyed";
@@ -52017,13 +52971,13 @@ let
sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4";
};
};
- "redoc-2.0.0-rc.56" = {
+ "redoc-2.0.0-rc.57" = {
name = "redoc";
packageName = "redoc";
- version = "2.0.0-rc.56";
+ version = "2.0.0-rc.57";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.56.tgz";
- sha512 = "ir2TtQ2d/1FqZWIoLmUZ3qvAAnO6jg8dt0SV75TanmfCXpEABcElXWH3mtUf6qKlvgDVt40diDCVuSvyPPxkAw==";
+ url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.57.tgz";
+ sha512 = "f8XIqvZF1agphq6xmOU9jTDVNDFHJt3MzDq1lUgZojb/7YY4eqLyDi6er/yCWYkY9DuB+v2jHCOn5UUbMuKAfg==";
};
};
"reduce-component-1.0.1" = {
@@ -53979,13 +54933,13 @@ let
sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
};
};
- "rlp-2.2.6" = {
+ "rlp-2.2.7" = {
name = "rlp";
packageName = "rlp";
- version = "2.2.6";
+ version = "2.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz";
- sha512 = "HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==";
+ url = "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz";
+ sha512 = "d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==";
};
};
"rndm-1.2.0" = {
@@ -54393,13 +55347,13 @@ let
sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==";
};
};
- "rxjs-7.3.1" = {
+ "rxjs-7.4.0" = {
name = "rxjs";
packageName = "rxjs";
- version = "7.3.1";
+ version = "7.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-7.3.1.tgz";
- sha512 = "vNenx7gqjPyeKpRnM6S5Ksm/oFTRijWWzYlRON04KaehZ3YjDwEmVjGUGo0TKWVjeNXOujVRlh0K1drUbcdPkw==";
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-7.4.0.tgz";
+ sha512 = "7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w==";
};
};
"s3-stream-upload-2.0.2" = {
@@ -54600,13 +55554,13 @@ let
sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182";
};
};
- "sass-1.42.1" = {
+ "sass-1.43.2" = {
name = "sass";
packageName = "sass";
- version = "1.42.1";
+ version = "1.43.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz";
- sha512 = "/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.43.2.tgz";
+ sha512 = "DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ==";
};
};
"sax-0.5.8" = {
@@ -55680,13 +56634,13 @@ let
sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
};
};
- "sign-addon-3.8.0" = {
+ "sign-addon-3.9.0" = {
name = "sign-addon";
packageName = "sign-addon";
- version = "3.8.0";
+ version = "3.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.8.0.tgz";
- sha512 = "/KVjGIMGN/8nbSTzpq3orQzYs4YhlYOZF8OkZuG8TSIBns8sUR2vlUNvcgvJPGdpNJkrlienwFDsO1UkbDij1w==";
+ url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.9.0.tgz";
+ sha512 = "a8IzM3jNPSHcf2wSkhLgME4QrIe+rKTb8y/qYwGGzby5ktODAH+WBsKIgGZ9p5d2mpppPwbNEsA+YzcL117bbA==";
};
};
"signal-exit-3.0.5" = {
@@ -56085,6 +57039,15 @@ let
sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==";
};
};
+ "slice-ansi-5.0.0" = {
+ name = "slice-ansi";
+ packageName = "slice-ansi";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz";
+ sha512 = "FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==";
+ };
+ };
"sliced-1.0.1" = {
name = "sliced";
packageName = "sliced";
@@ -56580,13 +57543,13 @@ let
sha512 = "mbkiyA2clyfwAyOFIzMvsV6ny2KrKEIhFVASJxWfsmgfUEymgLIS2MLHHcGIQMkrcKhPErRaMR5Dzv0EEn+BWg==";
};
};
- "sodium-native-3.2.1" = {
+ "sodium-native-3.3.0" = {
name = "sodium-native";
packageName = "sodium-native";
- version = "3.2.1";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-3.2.1.tgz";
- sha512 = "EgDZ/Z7PxL2kCasKk7wnRkV8W9kvwuIlHuHXAxkQm3FF0MgVsjyLBXGjSRGhjE6u7rhSpk3KaMfFM23bfMysIQ==";
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-3.3.0.tgz";
+ sha512 = "rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==";
};
};
"sodium-universal-2.0.0" = {
@@ -56877,6 +57840,24 @@ let
sha1 = "c4b9a8d41cf7b0845423a821824f8dffa0f51b7c";
};
};
+ "spark-md5-3.0.0" = {
+ name = "spark-md5";
+ packageName = "spark-md5";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.0.tgz";
+ sha1 = "3722227c54e2faf24b1dc6d933cc144e6f71bfef";
+ };
+ };
+ "spark-md5-3.0.1" = {
+ name = "spark-md5";
+ packageName = "spark-md5";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.1.tgz";
+ sha512 = "0tF3AGSD1ppQeuffsLDIOWlKUd3lS92tFxcsrh5Pe3ZphhnoK+oXIBTzOAThZCiuINZLvpiLH/1VS1/ANEJVig==";
+ };
+ };
"sparkles-1.0.1" = {
name = "sparkles";
packageName = "sparkles";
@@ -57219,6 +58200,15 @@ let
sha512 = "2PNlcs3j5JflQKcg4wpdqpZ+AjhQJ2OZEo34NXDtlB0tIPG84xaaXhpA8XFacFiwjKA4m49UOYG83y3hbMn/gQ==";
};
};
+ "sqlite3-4.2.0" = {
+ name = "sqlite3";
+ packageName = "sqlite3";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sqlite3/-/sqlite3-4.2.0.tgz";
+ sha512 = "roEOz41hxui2Q7uYnWsjMOTry6TcNUNmp8audCx18gF10P2NknwdpF+E+HKvz/F2NvPKGGBF4NGc+ZPQ+AABwg==";
+ };
+ };
"sqlite3-5.0.0" = {
name = "sqlite3";
packageName = "sqlite3";
@@ -57273,13 +58263,13 @@ let
sha1 = "06cd70795ee58d1462d100a45c660df3179d3b39";
};
};
- "ssb-bendy-butt-0.12.3" = {
+ "ssb-bendy-butt-0.12.4" = {
name = "ssb-bendy-butt";
packageName = "ssb-bendy-butt";
- version = "0.12.3";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-bendy-butt/-/ssb-bendy-butt-0.12.3.tgz";
- sha512 = "fo3Sspdr+cjQzq8F+EKRJiibm06Mt/pzmtAjf0HEOl/pZPTHGFolfsGtZlU4U+RuKOqqZMhxzTXNAwoJ+trdDw==";
+ url = "https://registry.npmjs.org/ssb-bendy-butt/-/ssb-bendy-butt-0.12.4.tgz";
+ sha512 = "zyVPwizCuW6T3Q2j8XerTPpdhNYY9tLlIVieg/FFQb5wlda3Ce360mYjGngx7586HXgysBi010JpM9emMQhhtA==";
};
};
"ssb-bfe-3.1.1" = {
@@ -57354,13 +58344,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.6.0" = {
+ "ssb-db2-2.6.5" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.6.0";
+ version = "2.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.6.0.tgz";
- sha512 = "xQq//UoHFdXObMFGMaMH4a2M2CTCY++1YmvXkD8RXZ/KdxmQx4UqrfI9gAr+EepUYWYoAV/sSphmTUoX39gm6Q==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.6.5.tgz";
+ sha512 = "MFMQQEs1kdYl/eKp/7Bb4Ru/W/6nSUbHeJJhKuYg1iF4R9XJR2R8J5nyECI0y2DTRvz2UCEiVdGWu58+Y6Y2lA==";
};
};
"ssb-ebt-5.6.7" = {
@@ -57633,22 +58623,22 @@ let
sha512 = "nzj5EQnhm5fBGXgtzuuWgxv45dW+CJJm4eCLZKiOxyG1NE/WJZwju2DmqZfiE9zr9bC2T2hPHkckDP0CCP8v8w==";
};
};
- "ssb-validate2-0.1.1" = {
+ "ssb-validate2-0.1.2" = {
name = "ssb-validate2";
packageName = "ssb-validate2";
- version = "0.1.1";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-validate2/-/ssb-validate2-0.1.1.tgz";
- sha512 = "EG6CEgx7qX02Ekx8bhkEexs1foaMAt6BAmE91d3BRpim/+i+16jEYf9DzYcifKymxlsM9AUz2P0TyRxbMXreOQ==";
+ url = "https://registry.npmjs.org/ssb-validate2/-/ssb-validate2-0.1.2.tgz";
+ sha512 = "B1UMy/+sZLbVo0KvdiAvOeSCalYWSaFXxxEmuZ0K0wRqIkn/KU7vdXeaXxp+bRmTTnABdu+k/O7qRJtdiD6e0w==";
};
};
- "ssb-validate2-rsjs-node-1.0.0" = {
+ "ssb-validate2-rsjs-node-1.0.1" = {
name = "ssb-validate2-rsjs-node";
packageName = "ssb-validate2-rsjs-node";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.0.tgz";
- sha512 = "kg/4JNzXEgFCRkvbhAuYZwq14n2sgXF03hClL5Hc9XsMWlQeQ/UHUvClMvy2veFUivz7A6PGT8MaL5BDxW0LiQ==";
+ url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.1.tgz";
+ sha512 = "DoJDRrdJ0fHH/71QmnQ4D2XxtlLopIUVUH/+3nLFtOp8x563VVimwskQsOO/LzvwsstJ/XZSx9c7f+txApLNfg==";
};
};
"ssb-ws-6.2.3" = {
@@ -57660,13 +58650,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.85" = {
+ "sscaff-1.2.96" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.85";
+ version = "1.2.96";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.85.tgz";
- sha512 = "SJqw5nwHNDsH6NevVODqvMIytAd0HfdEkmPOdVbvA6ij5aX/qoo5Y9PDcAvwul9E/FiQEAAavJAiKoHeTx6T+A==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.96.tgz";
+ sha512 = "0Hp9NxV7Ba+ZJU5f3DAPZsvGi7pGKmFPGB2q0F1KHW4V6GVydK1lsyYTqSWmY4tKecN7DKi3mmyGSt01fKqxxw==";
};
};
"ssh-config-1.1.6" = {
@@ -58317,13 +59307,13 @@ let
sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
};
};
- "streamx-2.11.2" = {
+ "streamx-2.11.3" = {
name = "streamx";
packageName = "streamx";
- version = "2.11.2";
+ version = "2.11.3";
src = fetchurl {
- url = "https://registry.npmjs.org/streamx/-/streamx-2.11.2.tgz";
- sha512 = "CoIBTrCoMKzhTMXZlMwlkjxCH+8e5H5C7WeuWKSlY5ldtCUMkkrLh5UT2+2OHAnpTPrjTimKQl/aXxgbhZtH5Q==";
+ url = "https://registry.npmjs.org/streamx/-/streamx-2.11.3.tgz";
+ sha512 = "NhcjG/xi33S4O2LRXZnBg7TLhnlE7RKWTeUx3N08K/89PKZ6MehEtSE+aToT5f2Cer2ArX9FwUhVfZbsUjnvrw==";
};
};
"strftime-0.10.0" = {
@@ -58425,6 +59415,15 @@ let
sha512 = "Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==";
};
};
+ "string-natural-compare-2.0.3" = {
+ name = "string-natural-compare";
+ packageName = "string-natural-compare";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-2.0.3.tgz";
+ sha512 = "4Kcl12rNjc+6EKhY8QyDVuQTAlMWwRiNbsxnVwBUKFr7dYPQuXVrtNU4sEkjF9LHY0AY6uVbB3ktbkIH4LC+BQ==";
+ };
+ };
"string-padding-1.0.2" = {
name = "string-padding";
packageName = "string-padding";
@@ -58497,6 +59496,15 @@ let
sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==";
};
};
+ "string-width-5.0.1" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-5.0.1.tgz";
+ sha512 = "5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g==";
+ };
+ };
"string.prototype.repeat-0.2.0" = {
name = "string.prototype.repeat";
packageName = "string.prototype.repeat";
@@ -58857,6 +59865,15 @@ let
sha512 = "laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==";
};
};
+ "strip-indent-4.0.0" = {
+ name = "strip-indent";
+ packageName = "strip-indent";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz";
+ sha512 = "mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==";
+ };
+ };
"strip-json-comments-0.1.3" = {
name = "strip-json-comments";
packageName = "strip-json-comments";
@@ -59118,13 +60135,13 @@ let
sha1 = "3a26ab96e06f78cf4ace8d083f6227fa55970947";
};
};
- "sucrase-3.20.1" = {
+ "sucrase-3.20.2" = {
name = "sucrase";
packageName = "sucrase";
- version = "3.20.1";
+ version = "3.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.1.tgz";
- sha512 = "BIG59HaJOxNct9Va6KvT5yzBA/rcMGetzvZyTx0ZdCcspIbpJTPS64zuAfYlJuOj+3WaI5JOdA+F0bJQQi8ZiQ==";
+ url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.2.tgz";
+ sha512 = "EdJ5M6VEvToIZwIWiZ71cxe4CklDRG8PdSjUSst+BZCUGlaEhnrdQo/LOXsuq3MjWRbfepg1XTffClK0Tmo0HQ==";
};
};
"sudo-block-1.2.0" = {
@@ -59226,13 +60243,13 @@ let
sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A==";
};
};
- "supercluster-7.1.3" = {
+ "supercluster-7.1.4" = {
name = "supercluster";
packageName = "supercluster";
- version = "7.1.3";
+ version = "7.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.3.tgz";
- sha512 = "7+bR4FbF5SYsmkHfDp61QiwCKtwNDyPsddk9TzfsDA5DQr5Goii5CVD2SXjglweFCxjrzVZf945ahqYfUIk8UA==";
+ url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.4.tgz";
+ sha512 = "GhKkRM1jMR6WUwGPw05fs66pOFWhf59lXq+Q3J3SxPvhNcmgOtLRV6aVQPMRsmXdpaeFJGivt+t7QXUPL3ff4g==";
};
};
"superstatic-7.1.0" = {
@@ -59397,13 +60414,13 @@ let
sha1 = "3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8";
};
};
- "svg-pathdata-6.0.3" = {
+ "svg-pathdata-5.0.5" = {
name = "svg-pathdata";
packageName = "svg-pathdata";
- version = "6.0.3";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz";
- sha512 = "qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==";
+ url = "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-5.0.5.tgz";
+ sha512 = "TAAvLNSE3fEhyl/Da19JWfMAdhSXTYeviXsLSoDT1UM76ADj5ndwAPX1FKQEgB/gFMPavOy6tOqfalXKUiXrow==";
};
};
"svg-tags-1.0.0" = {
@@ -59415,13 +60432,13 @@ let
sha1 = "58f71cee3bd519b59d4b2a843b6c7de64ac04764";
};
};
- "svg2img-0.9.3" = {
+ "svg2img-0.9.4" = {
name = "svg2img";
packageName = "svg2img";
- version = "0.9.3";
+ version = "0.9.4";
src = fetchurl {
- url = "https://registry.npmjs.org/svg2img/-/svg2img-0.9.3.tgz";
- sha512 = "xuBToDg/iFg0T8dhMTpu8CGfnsinswF2zgBa22HbcK6fSAKkl/bsX84qbic50kA4McKTLK5QZ+fzavy8quEIVA==";
+ url = "https://registry.npmjs.org/svg2img/-/svg2img-0.9.4.tgz";
+ sha512 = "1XquM9CorP9Em58gS9NjTaKpoRrIBM4gSSGSOHnoU70Y4AB3D+vILbdcHfvyGcLJ80IdYTbcpznp8NVNKkCedQ==";
};
};
"svgo-0.6.6" = {
@@ -59667,13 +60684,13 @@ let
sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA==";
};
};
- "systeminformation-5.9.4" = {
+ "systeminformation-5.9.7" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.9.4";
+ version = "5.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.4.tgz";
- sha512 = "FOsiTn0CyJZoj9kIhla11ndsMzbbwwuriul81wpqIBt9IpbxHZ6P/oZCphIFgJrwqjTnme0Qp1HDzIkUD9Xr/g==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.7.tgz";
+ sha512 = "Vcmc8HaWPMFM4DoasuKN2lpvIwS2AqaoPuEGZc4HCT6tlRJH+IQ5GhA2BrUgjpBDJjFMj2Bti6qLOzP3T1arCw==";
};
};
"table-3.8.3" = {
@@ -59712,15 +60729,6 @@ let
sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==";
};
};
- "table-6.7.1" = {
- name = "table";
- packageName = "table";
- version = "6.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.7.1.tgz";
- sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==";
- };
- };
"table-6.7.2" = {
name = "table";
packageName = "table";
@@ -59794,13 +60802,13 @@ let
sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
};
};
- "tail-2.2.3" = {
+ "tail-2.2.4" = {
name = "tail";
packageName = "tail";
- version = "2.2.3";
+ version = "2.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/tail/-/tail-2.2.3.tgz";
- sha512 = "XbBmVsJZ636kncPew2Y+pOxOsb9GsNFZ1bcAGCDn23ME/JPJ+TImZYjnqBnMLdw+K11Hql5ZgiUQmRvDHaFc6w==";
+ url = "https://registry.npmjs.org/tail/-/tail-2.2.4.tgz";
+ sha512 = "PX8klSxW1u3SdgDrDeewh5GNE+hkJ4h02JvHfV6YrHqWOVJ88nUdSQqtsUf/gWhgZlPAws3fiZ+F1f8euspcuQ==";
};
};
"taketalk-1.0.0" = {
@@ -59974,6 +60982,15 @@ let
sha512 = "5KcOFzPvd1nGFVrmB7H4+QAWVjYOf//+QTbOj0GpXbqtqbKGWVczG+rq6VhXAtdtlKLTs16NAmHRyF5vbggQ2w==";
};
};
+ "taskkill-4.0.0" = {
+ name = "taskkill";
+ packageName = "taskkill";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/taskkill/-/taskkill-4.0.0.tgz";
+ sha512 = "h+BGQ8ExIUZ81h4iHRvatZY5eeBBl2WZk31MmMdFG9LBTc5eCH5u/bzZ7phaPH3bsiB7WhM7YTkOyB2dyFQfXg==";
+ };
+ };
"tasklist-3.1.1" = {
name = "tasklist";
packageName = "tasklist";
@@ -60775,6 +61792,15 @@ let
sha512 = "pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==";
};
};
+ "tiny-queue-0.2.1" = {
+ name = "tiny-queue";
+ packageName = "tiny-queue";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiny-queue/-/tiny-queue-0.2.1.tgz";
+ sha1 = "25a67f2c6e253b2ca941977b5ef7442ef97a6046";
+ };
+ };
"tiny-secp256k1-1.1.6" = {
name = "tiny-secp256k1";
packageName = "tiny-secp256k1";
@@ -61369,6 +62395,24 @@ let
sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==";
};
};
+ "tr46-3.0.0" = {
+ name = "tr46";
+ packageName = "tr46";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz";
+ sha512 = "l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==";
+ };
+ };
+ "transform-pouch-1.1.5" = {
+ name = "transform-pouch";
+ packageName = "transform-pouch";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/transform-pouch/-/transform-pouch-1.1.5.tgz";
+ sha512 = "X8hcWl3GnvSG3QMSBwsvVRCg9yRP3rSQd0wvZx2ZCGtZSrPxxe/l2wsjvETppD48rgA83XycxfPQ2fyOYRMU2w==";
+ };
+ };
"transliteration-1.6.6" = {
name = "transliteration";
packageName = "transliteration";
@@ -61414,13 +62458,13 @@ let
sha512 = "L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==";
};
};
- "tree-kit-0.7.3" = {
+ "tree-kit-0.7.4" = {
name = "tree-kit";
packageName = "tree-kit";
- version = "0.7.3";
+ version = "0.7.4";
src = fetchurl {
- url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.3.tgz";
- sha512 = "BVxfUGNHKXS6TEOwKHioWSBivg6b5zfbdXtOWEE5ZpgQxG6gPtvFvjnsoKXTp2ASFmzSe6PhXemutmx8zUxFQQ==";
+ url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.4.tgz";
+ sha512 = "Of3tPmVs3b6BhzyUJ7t0olisf47kYr9qAm0XaUpURMjdBn6TwiVaaMuTFoKkkvPGojd9trKAHlrGGcGKcdR1DA==";
};
};
"tree-sitter-0.17.2" = {
@@ -61504,6 +62548,15 @@ let
sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==";
};
};
+ "trim-newlines-4.0.2" = {
+ name = "trim-newlines";
+ packageName = "trim-newlines";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.0.2.tgz";
+ sha512 = "GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew==";
+ };
+ };
"trim-repeated-1.0.0" = {
name = "trim-repeated";
packageName = "trim-repeated";
@@ -62134,6 +63187,15 @@ let
sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==";
};
};
+ "type-fest-1.4.0" = {
+ name = "type-fest";
+ packageName = "type-fest";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz";
+ sha512 = "yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==";
+ };
+ };
"type-is-1.6.18" = {
name = "type-is";
packageName = "type-is";
@@ -62287,13 +63349,13 @@ let
sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==";
};
};
- "typescript-4.4.3" = {
+ "typescript-4.4.4" = {
name = "typescript";
packageName = "typescript";
- version = "4.4.3";
+ version = "4.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz";
- sha512 = "4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz";
+ sha512 = "DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==";
};
};
"typescript-eslint-parser-16.0.1" = {
@@ -62719,6 +63781,15 @@ let
sha512 = "Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==";
};
};
+ "uni-global-1.0.0" = {
+ name = "uni-global";
+ packageName = "uni-global";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uni-global/-/uni-global-1.0.0.tgz";
+ sha512 = "WWM3HP+siTxzIWPNUg7hZ4XO8clKi6NoCAJJWnuRL+BAqyFXF8gC03WNyTefGoUXYc47uYgXxpKLIEvo65PEHw==";
+ };
+ };
"unicode-canonical-property-names-ecmascript-2.0.0" = {
name = "unicode-canonical-property-names-ecmascript";
packageName = "unicode-canonical-property-names-ecmascript";
@@ -63349,6 +64420,15 @@ let
sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544";
};
};
+ "unreachable-branch-transform-0.3.0" = {
+ name = "unreachable-branch-transform";
+ packageName = "unreachable-branch-transform";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unreachable-branch-transform/-/unreachable-branch-transform-0.3.0.tgz";
+ sha1 = "d99cc4c6e746d264928845b611db54b0f3474caa";
+ };
+ };
"unset-value-1.0.0" = {
name = "unset-value";
packageName = "unset-value";
@@ -63754,13 +64834,13 @@ let
sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6";
};
};
- "usb-1.7.2" = {
+ "usb-1.8.0" = {
name = "usb";
packageName = "usb";
- version = "1.7.2";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/usb/-/usb-1.7.2.tgz";
- sha512 = "SfVSItgsD9+YfEpcK1UZ8tQ7e8GdxQ0xoQtB773omNBKTVj3IuFJNKjwSnpE58FGcV4tUoKLHmBMc018RUY5SA==";
+ url = "https://registry.npmjs.org/usb/-/usb-1.8.0.tgz";
+ sha512 = "lA0q2tjDEAq1YUsW6nQ+asw92TtFrQ8rhMd11jAoFhK3xItZUupJ7npZDSmVOpQqQhhdFmX/YciqyywupA/wOQ==";
};
};
"use-3.1.1" = {
@@ -63845,13 +64925,13 @@ let
sha1 = "8bb871a4741e085c70487ca7acdbd7d6d36029eb";
};
};
- "utf-8-validate-5.0.6" = {
+ "utf-8-validate-5.0.7" = {
name = "utf-8-validate";
packageName = "utf-8-validate";
- version = "5.0.6";
+ version = "5.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.6.tgz";
- sha512 = "hoY0gOf9EkCw+nimK21FVKHUIG1BMqSiRwxB/q3A9yKZOrOI99PP77BxmarDqWz6rG3vVYiBWfhG8z2Tl+7fZA==";
+ url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz";
+ sha512 = "vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q==";
};
};
"utf7-1.0.2" = {
@@ -64088,6 +65168,15 @@ let
sha1 = "6728fc0459c450d796a99c31837569bdf672d728";
};
};
+ "uuid-3.2.1" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz";
+ sha512 = "jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==";
+ };
+ };
"uuid-3.3.2" = {
name = "uuid";
packageName = "uuid";
@@ -64115,6 +65204,15 @@ let
sha512 = "DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==";
};
};
+ "uuid-8.1.0" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-8.1.0.tgz";
+ sha512 = "CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg==";
+ };
+ };
"uuid-8.3.0" = {
name = "uuid";
packageName = "uuid";
@@ -65033,13 +66131,13 @@ let
sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==";
};
};
- "vm2-3.9.3" = {
+ "vm2-3.9.4" = {
name = "vm2";
packageName = "vm2";
- version = "3.9.3";
+ version = "3.9.4";
src = fetchurl {
- url = "https://registry.npmjs.org/vm2/-/vm2-3.9.3.tgz";
- sha512 = "smLS+18RjXYMl9joyJxMNI9l4w7biW8ilSDaVRvFBDwOH8P0BK1ognFQTpg0wyQ6wIKLTblHJvROW692L/E53Q==";
+ url = "https://registry.npmjs.org/vm2/-/vm2-3.9.4.tgz";
+ sha512 = "sOdharrJ7KEePIpHekiWaY1DwgueuiBeX/ZBJUPgETsVlJsXuEx0K0/naATq2haFvJrvZnRiORQRubR0b7Ye6g==";
};
};
"voc-1.2.0" = {
@@ -65285,13 +66383,13 @@ let
sha512 = "dEmliPZGbSyIcEeKRGzosCy7y7zsc8FXg1l5BBOGgMUbemlo3vUnsa2GFqpILJwJvlbvkRcF2QASNwIlKe9J7g==";
};
};
- "vscode-jsonrpc-8.0.0-next.2" = {
+ "vscode-jsonrpc-8.0.0-next.3" = {
name = "vscode-jsonrpc";
packageName = "vscode-jsonrpc";
- version = "8.0.0-next.2";
+ version = "8.0.0-next.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.2.tgz";
- sha512 = "gxUyTBAjmwGkiHW/UaRScre2s4i98P8M7gnc3VB4DrVQUm3vQ0idi2cN9nbkfcjATx+uEt8C22j+MLN/8UzsJA==";
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.3.tgz";
+ sha512 = "2wRiBR5tZAXZ4UxIO4F0cT/zN6OpruoWO0vc7EpQZxVfumb0pYiSegB+PaOzXCuFQzh7YEshW/XMg4zTz3FGVQ==";
};
};
"vscode-languageclient-4.0.1" = {
@@ -65393,13 +66491,13 @@ let
sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw==";
};
};
- "vscode-languageserver-8.0.0-next.2" = {
+ "vscode-languageserver-8.0.0-next.3" = {
name = "vscode-languageserver";
packageName = "vscode-languageserver";
- version = "8.0.0-next.2";
+ version = "8.0.0-next.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.2.tgz";
- sha512 = "7qCEXTeGZKkI8BGvlKh0JPXTY7BaWoiwQYKCcGaUgnMs34wt6F/yaKcxoC3XIouBBVyRxiI6Ml/JdztM3XYEaA==";
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.3.tgz";
+ sha512 = "uxL/tKUa/gRdvQINVmMnK32d6LwfTPTvF7l1iZIFDuAdhGrQ+Po+4lS3w4hwQSeUmapM1WMELXNBFca/u3H5Uw==";
};
};
"vscode-languageserver-protocol-3.14.1" = {
@@ -65456,13 +66554,13 @@ let
sha512 = "f1kGsoOpISB5jSqQNeMDl2446enxVahyux2e5vZap6pu/TC+2UlvPT4DCR0gPph95KOQZweL9zq1SzLoPdqhuA==";
};
};
- "vscode-languageserver-protocol-3.17.0-next.8" = {
+ "vscode-languageserver-protocol-3.17.0-next.9" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
- version = "3.17.0-next.8";
+ version = "3.17.0-next.9";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.8.tgz";
- sha512 = "P89vSuJ+FA5JzFmcOoZN13Ig1yd6LsiPOig0O5m5BSGuO/rplQegCd9J0wKpaTy7trf/SYHRoypnbUBdzy14sg==";
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.9.tgz";
+ sha512 = "DGkRmbI1hRBMY6HU6MOyza5AvYp0+HcbMf2qdmI98luyQJ26dOfHY5K38OS4hlTHhdJg9RypTQ/uBbLZehmn1Q==";
};
};
"vscode-languageserver-protocol-3.5.1" = {
@@ -65492,13 +66590,13 @@ let
sha512 = "N8bOS8i0xuQMn/y0bijyefDbOsMl6hiH6LDREYWavTLTM5jbj44EiQfStsbmAv/0eaFKkL/jf5hW7nWwBy2HBw==";
};
};
- "vscode-languageserver-textdocument-1.0.1" = {
+ "vscode-languageserver-textdocument-1.0.2" = {
name = "vscode-languageserver-textdocument";
packageName = "vscode-languageserver-textdocument";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz";
- sha512 = "UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==";
+ url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.2.tgz";
+ sha512 = "T7uPC18+f8mYE4lbVZwb3OSmvwTZm3cuFhrdx9Bn2l11lmp3SvSuSVjy2JtvrghzjAo4G6Trqny2m9XGnFnWVA==";
};
};
"vscode-languageserver-types-3.14.0" = {
@@ -65573,6 +66671,15 @@ let
sha512 = "VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg==";
};
};
+ "vscode-languageserver-types-3.17.0-next.4" = {
+ name = "vscode-languageserver-types";
+ packageName = "vscode-languageserver-types";
+ version = "3.17.0-next.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.4.tgz";
+ sha512 = "MraVkZDhfqa3ftnKW9rEDeqsV+ji8OrtEjx6mVjzVGm5U2XXT+mdqDWyQ+y0Gvb2/aa2oJJQyTAaDmRTUKiUbg==";
+ };
+ };
"vscode-languageserver-types-3.5.0" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -65753,6 +66860,15 @@ let
sha512 = "ikg8ruE17tIXF9mrVvKoOR3oyM9nk0TcmUHyeBWod5ILEH9DRN0+seX4gwsSbjdxMYlIIvmnCFPQeMdlcJqPJQ==";
};
};
+ "vuvuzela-1.0.3" = {
+ name = "vuvuzela";
+ packageName = "vuvuzela";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vuvuzela/-/vuvuzela-1.0.3.tgz";
+ sha1 = "3be145e58271c73ca55279dd851f12a682114b0b";
+ };
+ };
"w3c-hr-time-1.0.2" = {
name = "w3c-hr-time";
packageName = "w3c-hr-time";
@@ -65780,6 +66896,15 @@ let
sha512 = "4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==";
};
};
+ "w3c-xmlserializer-3.0.0" = {
+ name = "w3c-xmlserializer";
+ packageName = "w3c-xmlserializer";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz";
+ sha512 = "3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==";
+ };
+ };
"wait-port-0.2.9" = {
name = "wait-port";
packageName = "wait-port";
@@ -65906,13 +67031,13 @@ let
sha1 = "79331f666366b3b1c6ab02ceb04bad8dd2eebb0c";
};
};
- "wavedrom-2.8.1" = {
+ "wavedrom-2.8.3" = {
name = "wavedrom";
packageName = "wavedrom";
- version = "2.8.1";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/wavedrom/-/wavedrom-2.8.1.tgz";
- sha512 = "UTU27qnkfv+qLCwilm+T+m6zcPzSFP7i5HgtZkihbDeVIUasa3npnWhK3ogJ6gmOYhTK1lIh8KDztEuod2CM/g==";
+ url = "https://registry.npmjs.org/wavedrom/-/wavedrom-2.8.3.tgz";
+ sha512 = "Ey9A/uABN6rpjC8iFU6ZfL/NhIoXyrQ7h2+gH83kQxRvl6h9VFkJYglGayse2NfU9DDdm2C2uRDE0UpxNMde0w==";
};
};
"wawoff2-2.0.0" = {
@@ -66059,6 +67184,15 @@ let
sha512 = "qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==";
};
};
+ "webidl-conversions-7.0.0" = {
+ name = "webidl-conversions";
+ packageName = "webidl-conversions";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz";
+ sha512 = "VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==";
+ };
+ };
"webmscore-0.18.0" = {
name = "webmscore";
packageName = "webmscore";
@@ -66104,13 +67238,13 @@ let
sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ==";
};
};
- "webpack-5.56.1" = {
+ "webpack-5.58.2" = {
name = "webpack";
packageName = "webpack";
- version = "5.56.1";
+ version = "5.58.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.56.1.tgz";
- sha512 = "MRbTPooHJuSAfbx7Lh/qEMRUe/d0p4cRj2GPo/fq+4JUeR/+Q1EfLvS1lexslbMcJZyPXxxz/k/NzVepkA5upA==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.58.2.tgz";
+ sha512 = "3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -66131,13 +67265,13 @@ let
sha512 = "NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==";
};
};
- "webpack-cli-4.8.0" = {
+ "webpack-cli-4.9.0" = {
name = "webpack-cli";
packageName = "webpack-cli";
- version = "4.8.0";
+ version = "4.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz";
- sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw==";
+ url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.0.tgz";
+ sha512 = "n/jZZBMzVEl4PYIBs+auy2WI0WTQ74EnJDiyD98O2JZY6IVIHJNitkYp/uTXOviIOMfgzrNvC9foKv/8o8KSZw==";
};
};
"webpack-core-0.6.9" = {
@@ -66311,13 +67445,22 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-1.5.5" = {
+ "websql-1.0.0" = {
+ name = "websql";
+ packageName = "websql";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/websql/-/websql-1.0.0.tgz";
+ sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw==";
+ };
+ };
+ "webtorrent-1.5.6" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.5.5";
+ version = "1.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.5.tgz";
- sha512 = "YAEtWZxxf8N6DvdLgt79fQlIXSJU0G61YEkcWyBA+aopQGV0vCAMp1N/ifKIFt760pgKV+qzwRSbVP+/lBJ08g==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.6.tgz";
+ sha512 = "P9+0ylzpvtz/bdEPOfYQYA0gjngvaMSP6U9hHI4eSaFDGZBGiGGs6cdSemV1rCStRUtH4t5PQ7nPKL19MV2N4Q==";
};
};
"well-known-symbols-2.0.0" = {
@@ -66338,6 +67481,15 @@ let
sha512 = "b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==";
};
};
+ "whatwg-encoding-2.0.0" = {
+ name = "whatwg-encoding";
+ packageName = "whatwg-encoding";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz";
+ sha512 = "p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==";
+ };
+ };
"whatwg-fetch-3.6.2" = {
name = "whatwg-fetch";
packageName = "whatwg-fetch";
@@ -66356,6 +67508,24 @@ let
sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==";
};
};
+ "whatwg-mimetype-3.0.0" = {
+ name = "whatwg-mimetype";
+ packageName = "whatwg-mimetype";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz";
+ sha512 = "nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==";
+ };
+ };
+ "whatwg-url-10.0.0" = {
+ name = "whatwg-url";
+ packageName = "whatwg-url";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-10.0.0.tgz";
+ sha512 = "CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==";
+ };
+ };
"whatwg-url-5.0.0" = {
name = "whatwg-url";
packageName = "whatwg-url";
@@ -66536,6 +67706,15 @@ let
sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
};
};
+ "wide-align-1.1.5" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz";
+ sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==";
+ };
+ };
"widest-line-1.0.0" = {
name = "widest-line";
packageName = "widest-line";
@@ -67148,15 +68327,6 @@ let
sha512 = "BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==";
};
};
- "ws-8.1.0" = {
- name = "ws";
- packageName = "ws";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.1.0.tgz";
- sha512 = "0UWlCD2s3RSclw8FN+D0zDTUyMO+1kHwJQQJzkgUh16S8d3NYON0AKCEQPffE0ez4JyRFu76QDA9KR5bOG/7jw==";
- };
- };
"ws-8.2.0" = {
name = "ws";
packageName = "ws";
@@ -67355,6 +68525,15 @@ let
sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==";
};
};
+ "xml-name-validator-4.0.0" = {
+ name = "xml-name-validator";
+ packageName = "xml-name-validator";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz";
+ sha512 = "ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==";
+ };
+ };
"xml-parse-from-string-1.0.1" = {
name = "xml-parse-from-string";
packageName = "xml-parse-from-string";
@@ -67671,13 +68850,13 @@ let
sha1 = "f164263325ae671f53836fb210c7ddbcfda46598";
};
};
- "xss-1.0.9" = {
+ "xss-1.0.10" = {
name = "xss";
packageName = "xss";
- version = "1.0.9";
+ version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/xss/-/xss-1.0.9.tgz";
- sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ==";
+ url = "https://registry.npmjs.org/xss/-/xss-1.0.10.tgz";
+ sha512 = "qmoqrRksmzqSKvgqzN0055UFWY7OKx1/9JWeRswwEVX9fCG5jcYRxa/A2DHcmZX6VJvjzHRQ2STeeVcQkrmLSw==";
};
};
"xstate-4.25.0" = {
@@ -67779,15 +68958,6 @@ let
sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==";
};
};
- "yaml-2.0.0-7" = {
- name = "yaml";
- packageName = "yaml";
- version = "2.0.0-7";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-7.tgz";
- sha512 = "RbI2Tm3hl9AoHY4wWyWvGvJfFIbHOzuzaxum6ez1A0vve+uXgNor03Wys4t+2sgjJSVSe+B2xerd1/dnvqHlOA==";
- };
- };
"yaml-2.0.0-8" = {
name = "yaml";
packageName = "yaml";
@@ -67851,15 +69021,6 @@ let
sha512 = "GQ2eRE5GcKBK8XVKBIcMyOfC8WMZmEs6gogtVc6knLKE6pG+e5L/lOMfBxZzAt2lqye5itMggQ9+6stXAVhMsw==";
};
};
- "yaml-language-server-parser-0.1.3" = {
- name = "yaml-language-server-parser";
- packageName = "yaml-language-server-parser";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml-language-server-parser/-/yaml-language-server-parser-0.1.3.tgz";
- sha512 = "xD2I+6M/vqQvcy4ded8JpXUaDHXmZMdhIO3OpuiFxstutwnW4whrfDzNcrsfXVdgMWqOUpdv3747Q081PFN1+g==";
- };
- };
"yamljs-0.3.0" = {
name = "yamljs";
packageName = "yamljs";
@@ -68424,15 +69585,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "12.2.8";
+ version = "12.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.8.tgz";
- sha512 = "MkTVkQbI+58W1izHKpGdpj0YAFfQnf7oQIyMom13/8l83yuOJdNzFTG/Lt77hx19qaKemEdmqTqdEOOrzaqggw==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.10.tgz";
+ sha512 = "gx2XlOUjAAYyJBBIz4QkgsLLRMdFTQbcOR41/Yv0kgpR6AStrOWhz7tpYPbU6vWMjehpuTaWv4NE5eGjwVTZqg==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1202.8"
- sources."@angular-devkit/core-12.2.8"
- sources."@angular-devkit/schematics-12.2.8"
+ sources."@angular-devkit/architect-0.1202.10"
+ sources."@angular-devkit/core-12.2.10"
+ sources."@angular-devkit/schematics-12.2.10"
sources."@gar/promisify-1.1.2"
sources."@npmcli/fs-1.0.0"
sources."@npmcli/git-2.1.0"
@@ -68441,7 +69602,7 @@ in
sources."@npmcli/node-gyp-1.0.3"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-1.8.6"
- sources."@schematics/angular-12.2.8"
+ sources."@schematics/angular-12.2.10"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -68557,12 +69718,12 @@ in
sources."ini-2.0.0"
(sources."inquirer-8.1.2" // {
dependencies = [
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."tslib-2.1.0"
];
})
sources."ip-1.1.5"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
@@ -68683,14 +69844,7 @@ in
})
sources."wcwidth-1.0.1"
sources."which-2.0.2"
- (sources."wide-align-1.1.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
];
@@ -69154,7 +70308,7 @@ in
sources."node-forge-0.10.0"
sources."nwsapi-2.2.0"
sources."onetime-5.1.2"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."optionator-0.8.3"
sources."os-tmpdir-1.0.2"
sources."papaparse-5.3.1"
@@ -69213,13 +70367,13 @@ in
"@commitlint/cli" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_cli";
packageName = "@commitlint/cli";
- version = "13.2.0";
+ version = "13.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/cli/-/cli-13.2.0.tgz";
- sha512 = "RqG0cxxiwaL9OgQbA2ZEfZaVIRJmbtsZgnj5G07AjN7///s/40grSN4/kDl8YjUgvAZskPfJRoGGYNvHJ4zHWA==";
+ url = "https://registry.npmjs.org/@commitlint/cli/-/cli-13.2.1.tgz";
+ sha512 = "JGzYk2ay5JkRS5w+FLQzr0u/Kih52ds4HPpa3vnwVOQN8Q+S1VYr8Nk/6kRm6uNYsAcC1nejtuDxRdLcLh/9TA==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -69236,7 +70390,7 @@ in
sources."@commitlint/format-13.2.0"
sources."@commitlint/is-ignored-13.2.0"
sources."@commitlint/lint-13.2.0"
- sources."@commitlint/load-13.2.0"
+ sources."@commitlint/load-13.2.1"
sources."@commitlint/message-13.2.0"
sources."@commitlint/parse-13.2.0"
sources."@commitlint/read-13.2.0"
@@ -69312,7 +70466,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -69394,6 +70548,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.3.1"
sources."type-fest-0.18.1"
+ sources."typescript-4.4.4"
sources."universalify-2.0.0"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
@@ -69462,7 +70617,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.10.2"
+ sources."@types/node-16.11.0"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -69649,7 +70804,6 @@ in
sources."immediate-3.3.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
sources."inspect-custom-symbol-1.1.1"
sources."internal-slot-1.0.3"
sources."ipv4-peers-2.0.0"
@@ -69658,7 +70812,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-2.0.5"
sources."is-callable-1.2.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -69842,7 +70996,7 @@ in
sources."nanoassert-2.0.0"
];
})
- sources."sodium-native-3.2.1"
+ sources."sodium-native-3.3.0"
(sources."sodium-universal-3.0.4" // {
dependencies = [
sources."nanoassert-2.0.0"
@@ -69854,7 +71008,7 @@ in
sources."stream-collector-1.0.1"
sources."stream-equal-1.1.1"
sources."stream-shift-1.0.1"
- sources."streamx-2.11.2"
+ sources."streamx-2.11.3"
(sources."string-width-2.1.1" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -69911,7 +71065,7 @@ in
];
})
sources."varint-5.0.0"
- sources."vm2-3.9.3"
+ sources."vm2-3.9.4"
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-module-2.0.0"
@@ -69956,6 +71110,918 @@ in
bypassCache = true;
reconstructLock = true;
};
+ "@medable/mdctl-cli" = nodeEnv.buildNodePackage {
+ name = "_at_medable_slash_mdctl-cli";
+ packageName = "@medable/mdctl-cli";
+ version = "1.0.62";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@medable/mdctl-cli/-/mdctl-cli-1.0.62.tgz";
+ sha512 = "7EpRhhrJqICbMGjLkdthQYLLGMXNCsrsq8/xxYX1cdRiNwoGb84yjL1WFBrnQtaM8rXShOvhf4lrM2W0K9m4lQ==";
+ };
+ dependencies = [
+ sources."@babel/parser-7.15.8"
+ sources."@medable/mdctl-api-1.0.62"
+ sources."@medable/mdctl-core-1.0.62"
+ sources."@medable/mdctl-core-schemas-1.0.62"
+ sources."@medable/mdctl-core-utils-1.0.60"
+ sources."@medable/mdctl-credentials-provider-keychain-1.0.62"
+ sources."@medable/mdctl-credentials-provider-pouchdb-1.0.62"
+ sources."@medable/mdctl-docs-1.0.60"
+ sources."@medable/mdctl-export-adapter-console-1.0.60"
+ (sources."@medable/mdctl-export-adapter-tree-1.0.62" // {
+ dependencies = [
+ sources."glob-7.2.0"
+ sources."globby-10.0.2"
+ ];
+ })
+ sources."@medable/mdctl-import-adapter-1.0.62"
+ (sources."@medable/mdctl-manifest-1.0.62" // {
+ dependencies = [
+ sources."pluralize-8.0.0"
+ ];
+ })
+ sources."@medable/mdctl-node-utils-1.0.62"
+ sources."@medable/mdctl-sandbox-1.0.62"
+ sources."@medable/mdctl-secrets-1.0.60"
+ sources."@mrmlnc/readdir-enhanced-2.2.1"
+ sources."@nodelib/fs.scandir-2.1.5"
+ sources."@nodelib/fs.stat-2.0.5"
+ sources."@nodelib/fs.walk-1.2.8"
+ sources."@types/glob-7.1.4"
+ sources."@types/minimatch-3.0.5"
+ sources."@types/node-16.11.0"
+ sources."@types/tough-cookie-2.3.8"
+ sources."abbrev-1.1.1"
+ sources."abort-controller-3.0.0"
+ sources."acorn-5.7.4"
+ sources."agent-base-6.0.2"
+ sources."ajv-6.12.6"
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.2.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."aproba-1.2.0"
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."argparse-1.0.10"
+ sources."argsarray-0.0.1"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-union-2.1.0"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.3.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."assign-symbols-1.0.0"
+ sources."ast-types-0.9.6"
+ sources."async-2.6.3"
+ sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."axios-0.21.4"
+ sources."axios-cookiejar-support-0.5.1"
+ sources."balanced-match-1.0.2"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base62-1.2.8"
+ sources."bcrypt-pbkdf-1.0.2"
+ (sources."bl-1.2.3" // {
+ dependencies = [
+ (sources."readable-stream-2.3.7" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ ];
+ })
+ sources."bluebird-3.7.2"
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
+ sources."browserify-aes-1.2.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
+ sources."buffer-xor-1.0.3"
+ sources."cache-base-1.0.1"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-5.3.1"
+ sources."caseless-0.12.0"
+ sources."catharsis-0.9.0"
+ (sources."chalk-2.4.2" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
+ sources."chardet-0.7.0"
+ sources."chownr-1.1.4"
+ sources."cipher-base-1.0.4"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-cursor-2.1.0"
+ sources."cli-table-0.3.6"
+ sources."cli-width-2.2.1"
+ (sources."cliui-4.1.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."clone-2.1.2"
+ sources."clone-buffer-1.0.0"
+ sources."code-point-at-1.1.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.0.3"
+ sources."combined-stream-1.0.8"
+ sources."commander-2.20.3"
+ sources."commoner-0.10.8"
+ sources."component-emitter-1.3.0"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ sources."cross-spawn-6.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-4.3.2"
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-extend-0.6.0"
+ sources."deep-is-0.1.4"
+ sources."define-property-2.0.2"
+ sources."defined-1.0.0"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."detective-4.7.1"
+ sources."dir-glob-3.0.1"
+ sources."ecc-jsbn-0.1.2"
+ sources."ecdsa-sig-formatter-1.0.11"
+ sources."end-of-stream-1.4.4"
+ sources."entities-2.0.3"
+ sources."es3ify-0.2.2"
+ sources."escape-string-regexp-2.0.0"
+ (sources."escodegen-1.14.3" // {
+ dependencies = [
+ sources."esprima-4.0.1"
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."esmangle-evaluator-1.0.1"
+ sources."esprima-2.7.3"
+ sources."esprima-fb-15001.1.0-dev-harmony-fb"
+ sources."estraverse-4.3.0"
+ sources."esutils-2.0.3"
+ sources."event-target-shim-5.0.1"
+ sources."evp_bytestokey-1.0.3"
+ (sources."execa-1.0.0" // {
+ dependencies = [
+ sources."is-stream-1.1.0"
+ ];
+ })
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."expand-template-2.0.3"
+ sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-3.1.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."extsprintf-1.3.0"
+ (sources."falafel-1.2.0" // {
+ dependencies = [
+ sources."acorn-1.2.2"
+ sources."isarray-0.0.1"
+ ];
+ })
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-glob-3.2.7"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."fastq-1.13.0"
+ sources."fetch-cookie-0.10.1"
+ (sources."figures-2.0.0" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
+ sources."fill-range-7.0.1"
+ sources."find-up-3.0.0"
+ sources."follow-redirects-1.14.4"
+ sources."for-in-1.0.2"
+ sources."foreach-2.0.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ sources."fragment-cache-0.2.1"
+ sources."fs-constants-1.0.0"
+ sources."fs-minipass-1.2.7"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."gauge-2.7.4"
+ sources."gaxios-2.3.4"
+ sources."get-caller-file-1.0.3"
+ sources."get-stream-4.1.0"
+ sources."get-value-2.0.6"
+ sources."getpass-0.1.7"
+ sources."github-from-package-0.0.0"
+ sources."glob-5.0.15"
+ sources."glob-parent-5.1.2"
+ sources."glob-to-regexp-0.3.0"
+ (sources."globby-9.2.0" // {
+ dependencies = [
+ sources."@nodelib/fs.stat-1.1.3"
+ sources."array-union-1.0.2"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."dir-glob-2.2.2"
+ sources."fast-glob-2.2.7"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."glob-7.2.0"
+ sources."glob-parent-3.1.0"
+ sources."ignore-4.0.6"
+ sources."is-glob-3.1.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."micromatch-3.1.10"
+ (sources."path-type-3.0.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."slash-2.0.0"
+ sources."to-regex-range-2.1.1"
+ ];
+ })
+ sources."graceful-fs-4.2.8"
+ (sources."handlebars-4.7.7" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."has-1.0.3"
+ sources."has-flag-3.0.0"
+ sources."has-unicode-2.0.1"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hash-base-3.1.0"
+ sources."hasurl-1.0.0"
+ sources."http-signature-1.2.0"
+ sources."https-proxy-agent-5.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-5.1.8"
+ sources."ignore-walk-3.0.4"
+ sources."immediate-3.0.6"
+ sources."inflection-1.13.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."inline-process-browser-1.0.0"
+ (sources."inquirer-6.5.2" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."strip-ansi-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ ];
+ })
+ ];
+ })
+ sources."interpret-1.4.0"
+ sources."invert-kv-2.0.0"
+ sources."ip-regex-2.1.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-buffer-1.1.6"
+ sources."is-core-module-2.8.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-glob-4.0.3"
+ sources."is-number-7.0.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-redirect-1.0.0"
+ sources."is-stream-2.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isstream-0.1.2"
+ (sources."js-yaml-3.14.1" // {
+ dependencies = [
+ sources."esprima-4.0.1"
+ ];
+ })
+ sources."js2xmlparser-4.0.1"
+ sources."jsbn-0.1.1"
+ (sources."jsdoc-3.6.7" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ sources."strip-json-comments-3.1.1"
+ ];
+ })
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ (sources."jsonpath-1.1.1" // {
+ dependencies = [
+ sources."esprima-1.2.2"
+ sources."underscore-1.12.1"
+ ];
+ })
+ sources."jsonwebtoken-8.5.1"
+ sources."jsprim-1.4.1"
+ (sources."jstransform-11.0.3" // {
+ dependencies = [
+ sources."object-assign-2.1.1"
+ ];
+ })
+ sources."jwa-1.4.1"
+ sources."jws-3.2.2"
+ sources."keytar-4.13.0"
+ sources."kind-of-6.0.3"
+ sources."klaw-3.0.0"
+ sources."lcid-2.0.0"
+ sources."levn-0.3.0"
+ sources."lie-3.0.4"
+ sources."linkify-it-2.2.0"
+ sources."locate-path-3.0.0"
+ sources."lodash-4.17.21"
+ sources."lodash.includes-4.3.0"
+ sources."lodash.isboolean-3.0.3"
+ sources."lodash.isinteger-4.0.4"
+ sources."lodash.isnumber-3.0.3"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.once-4.1.1"
+ sources."lodash.sortby-4.7.0"
+ sources."map-age-cleaner-0.1.3"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."markdown-it-10.0.0"
+ sources."markdown-it-anchor-5.3.0"
+ sources."marked-2.1.3"
+ sources."md5.js-1.3.5"
+ sources."mdurl-1.0.1"
+ (sources."mem-4.3.0" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ ];
+ })
+ sources."merge2-1.4.1"
+ sources."micromatch-4.0.4"
+ sources."mime-2.5.2"
+ sources."mime-db-1.50.0"
+ sources."mime-types-2.1.33"
+ sources."mimic-fn-1.2.0"
+ sources."mimic-response-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
+ (sources."mixin-deep-1.3.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."mkdirp-0.5.5"
+ sources."ms-2.1.2"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.14.0"
+ sources."nanomatch-1.2.13"
+ sources."napi-build-utils-1.0.2"
+ (sources."ndjson-1.5.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.5"
+ ];
+ })
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ sources."neo-async-2.6.2"
+ sources."nice-try-1.0.5"
+ sources."node-abi-2.30.1"
+ sources."node-fetch-2.6.5"
+ sources."node-pre-gyp-0.11.0"
+ sources."noop-fn-1.0.0"
+ sources."noop-logger-0.1.1"
+ sources."nopt-4.0.3"
+ sources."npm-bundled-1.1.2"
+ sources."npm-normalize-package-bin-1.0.1"
+ sources."npm-packlist-1.4.8"
+ sources."npm-run-path-2.0.2"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-keys-1.1.1"
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optionator-0.8.3"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-3.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."p-defer-1.0.0"
+ sources."p-finally-1.0.0"
+ sources."p-is-promise-2.1.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.2.0"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-parse-1.0.7"
+ sources."path-type-4.0.0"
+ sources."performance-now-2.1.0"
+ sources."picomatch-2.3.0"
+ sources."pify-4.0.1"
+ sources."pluralize-7.0.0"
+ sources."posix-character-classes-0.1.1"
+ (sources."pouchdb-abstract-mapreduce-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ sources."pouchdb-adapter-node-websql-7.0.0"
+ sources."pouchdb-adapter-utils-7.0.0"
+ sources."pouchdb-adapter-websql-core-7.0.0"
+ sources."pouchdb-binary-utils-7.0.0"
+ (sources."pouchdb-changes-filter-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ sources."pouchdb-collate-7.2.2"
+ sources."pouchdb-collections-7.0.0"
+ (sources."pouchdb-core-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-merge-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ (sources."pouchdb-errors-7.0.0" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."pouchdb-extend-0.1.2"
+ (sources."pouchdb-fetch-7.2.2" // {
+ dependencies = [
+ sources."node-fetch-2.6.0"
+ ];
+ })
+ (sources."pouchdb-find-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ sources."pouchdb-json-7.0.0"
+ (sources."pouchdb-mapreduce-utils-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ sources."pouchdb-md5-7.0.0"
+ sources."pouchdb-merge-7.0.0"
+ sources."pouchdb-promise-5.4.3"
+ (sources."pouchdb-selector-core-7.2.2" // {
+ dependencies = [
+ sources."buffer-from-1.1.1"
+ sources."immediate-3.3.0"
+ sources."pouchdb-binary-utils-7.2.2"
+ sources."pouchdb-collections-7.2.2"
+ sources."pouchdb-errors-7.2.2"
+ sources."pouchdb-md5-7.2.2"
+ sources."pouchdb-utils-7.2.2"
+ sources."spark-md5-3.0.1"
+ sources."uuid-8.1.0"
+ ];
+ })
+ (sources."pouchdb-utils-7.0.0" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ sources."uuid-3.2.1"
+ ];
+ })
+ sources."pouchdb-wrappers-4.1.0"
+ (sources."prebuild-install-5.3.0" // {
+ dependencies = [
+ sources."pump-2.0.1"
+ ];
+ })
+ sources."prelude-ls-1.1.2"
+ sources."private-0.1.8"
+ sources."process-nextick-args-2.0.1"
+ sources."promise-nodify-1.0.2"
+ sources."psl-1.8.0"
+ sources."pump-3.0.0"
+ sources."punycode-2.1.1"
+ sources."q-1.5.1"
+ sources."qs-6.5.2"
+ sources."queue-microtask-1.2.3"
+ sources."randombytes-2.1.0"
+ sources."rc-1.2.8"
+ sources."readable-stream-3.6.0"
+ (sources."recast-0.11.23" // {
+ dependencies = [
+ sources."esprima-3.1.3"
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."rechoir-0.6.2"
+ sources."regex-not-1.0.2"
+ sources."repeat-element-1.1.4"
+ sources."repeat-string-1.6.1"
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."tough-cookie-2.5.0"
+ ];
+ })
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."requizzle-0.2.3"
+ sources."resolve-1.20.0"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
+ sources."reusify-1.0.4"
+ (sources."rimraf-2.7.1" // {
+ dependencies = [
+ sources."glob-7.2.0"
+ ];
+ })
+ sources."ripemd160-2.0.2"
+ sources."run-async-2.4.1"
+ sources."run-parallel-1.2.0"
+ sources."rxjs-6.6.7"
+ sources."safe-buffer-5.2.1"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.7.1"
+ sources."set-blocking-2.0.0"
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."sha.js-2.4.11"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ (sources."shelljs-0.8.4" // {
+ dependencies = [
+ sources."glob-7.2.0"
+ ];
+ })
+ sources."signal-exit-3.0.5"
+ sources."simple-concat-1.0.1"
+ sources."simple-get-2.8.1"
+ sources."slash-3.0.0"
+ sources."slugify-1.6.1"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ sources."ms-2.0.0"
+ sources."source-map-0.5.7"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.4.4"
+ sources."source-map-resolve-0.5.3"
+ sources."source-map-url-0.4.1"
+ sources."spark-md5-3.0.0"
+ sources."split-string-3.1.0"
+ (sources."split2-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.5"
+ ];
+ })
+ sources."sprintf-js-1.0.3"
+ sources."sqlite3-4.2.0"
+ sources."sshpk-1.16.1"
+ sources."static-eval-2.0.2"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."string-natural-compare-2.0.3"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.3.0"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-5.5.0"
+ sources."taffydb-2.6.2"
+ sources."tar-4.4.19"
+ (sources."tar-fs-1.16.3" // {
+ dependencies = [
+ sources."pump-1.0.3"
+ ];
+ })
+ (sources."tar-stream-1.6.2" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."through-2.3.8"
+ (sources."through2-0.6.5" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.0.34"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."tiny-queue-0.2.1"
+ sources."tmp-0.0.33"
+ sources."to-buffer-1.1.1"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-5.0.1"
+ sources."tough-cookie-3.0.1"
+ sources."tr46-0.0.3"
+ (sources."transform-pouch-1.1.5" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ ];
+ })
+ sources."tslib-1.14.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."uc.micro-1.0.6"
+ sources."uglify-js-3.14.2"
+ sources."underscore-1.13.1"
+ sources."union-value-1.0.1"
+ (sources."universal-url-2.0.0" // {
+ dependencies = [
+ sources."tr46-1.0.1"
+ sources."webidl-conversions-4.0.2"
+ sources."whatwg-url-7.1.0"
+ ];
+ })
+ (sources."unreachable-branch-transform-0.3.0" // {
+ dependencies = [
+ sources."ast-types-0.8.15"
+ sources."esprima-fb-15001.1001.0-dev-harmony-fb"
+ sources."recast-0.10.43"
+ sources."source-map-0.5.7"
+ ];
+ })
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."uri-js-4.4.1"
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.4.0"
+ sources."verror-1.10.0"
+ sources."vuvuzela-1.0.3"
+ sources."webidl-conversions-3.0.1"
+ (sources."websql-1.0.0" // {
+ dependencies = [
+ sources."immediate-3.3.0"
+ ];
+ })
+ sources."whatwg-url-5.0.0"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."which-pm-runs-1.0.0"
+ sources."wide-align-1.1.5"
+ sources."word-wrap-1.2.3"
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."xmlcreate-2.0.3"
+ sources."xtend-4.0.2"
+ sources."y18n-4.0.3"
+ sources."yallist-3.1.1"
+ (sources."yargs-12.0.5" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-11.1.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Medable Developer Tools :: Cli tool";
+ homepage = "https://github.com/Medable/mdctl#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
"@nerdwallet/shepherd" = nodeEnv.buildNodePackage {
name = "_at_nerdwallet_slash_shepherd";
packageName = "@nerdwallet/shepherd";
@@ -69973,15 +72039,15 @@ in
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.6.4"
- sources."@octokit/plugin-paginate-rest-2.16.7"
+ sources."@octokit/openapi-types-11.2.0"
+ sources."@octokit/plugin-paginate-rest-2.17.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.11.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
sources."@octokit/plugin-retry-3.0.9"
sources."@octokit/request-5.6.2"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.11.4"
- sources."@octokit/types-6.31.3"
+ sources."@octokit/rest-18.12.0"
+ sources."@octokit/types-6.34.0"
sources."@sideway/address-4.1.2"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
@@ -70080,11 +72146,11 @@ in
dependencies = [
sources."chalk-4.1.2"
sources."inquirer-8.1.2"
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."tslib-2.1.0"
];
})
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -70106,12 +72172,12 @@ in
sources."ora-5.4.0"
];
})
- sources."@types/eslint-7.28.0"
+ sources."@types/eslint-7.28.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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -70146,11 +72212,11 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.2"
@@ -70176,7 +72242,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.3" // {
@@ -70234,7 +72300,7 @@ in
sources."interpret-1.4.0"
sources."is-arrayish-0.2.1"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -70243,7 +72309,7 @@ in
sources."is-stream-2.0.1"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- (sources."jest-worker-27.2.4" // {
+ (sources."jest-worker-27.2.5" // {
dependencies = [
sources."supports-color-8.1.1"
];
@@ -70276,7 +72342,7 @@ in
sources."mute-stream-0.0.8"
sources."neo-async-2.6.2"
sources."node-emoji-1.11.0"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -70296,7 +72362,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pluralize-8.0.0"
sources."pump-3.0.0"
@@ -70481,10 +72547,10 @@ in
"@vue/cli" = nodeEnv.buildNodePackage {
name = "_at_vue_slash_cli";
packageName = "@vue/cli";
- version = "4.5.13";
+ version = "4.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.13.tgz";
- sha512 = "KAU300YbT0/7zG472KzJgHKdFex4nr5Xoo80gQJwT+y7pkepMhTxjrmxrJ/XR8QirUvPnBiX5n6BX5FrlMuUGQ==";
+ url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.14.tgz";
+ sha512 = "FRToN2L72rmtKcm3dxPFyhkT+6Xvr5kzwiYOoNPZsI/jTp6uYhwj7v5JJNT38l+d6F0OptIAGhMzjHTHvCkx7w==";
};
dependencies = [
sources."@akryum/winattr-3.0.0"
@@ -70496,10 +72562,10 @@ in
sources."@apollographql/apollo-tools-0.5.1"
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/core-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
sources."@babel/helper-compilation-targets-7.15.4"
@@ -70512,7 +72578,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -70525,9 +72591,9 @@ in
sources."@babel/helper-wrap-function-7.15.4"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -70585,14 +72651,14 @@ in
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
- sources."@babel/plugin-transform-typescript-7.15.4"
+ sources."@babel/plugin-transform-typescript-7.15.8"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.6"
+ sources."@babel/preset-env-7.15.8"
sources."@babel/preset-flow-7.14.5"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-typescript-7.15.0"
@@ -70659,28 +72725,28 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/serve-static-1.13.10"
sources."@types/through-0.0.30"
sources."@types/ws-7.4.7"
- sources."@vue/cli-shared-utils-4.5.13"
- (sources."@vue/cli-ui-4.5.13" // {
+ sources."@vue/cli-shared-utils-4.5.14"
+ (sources."@vue/cli-ui-4.5.14" // {
dependencies = [
sources."clone-2.1.2"
];
})
- sources."@vue/cli-ui-addon-webpack-4.5.13"
- sources."@vue/cli-ui-addon-widgets-4.5.13"
- (sources."@vue/compiler-core-3.2.19" // {
+ sources."@vue/cli-ui-addon-webpack-4.5.14"
+ sources."@vue/cli-ui-addon-widgets-4.5.14"
+ (sources."@vue/compiler-core-3.2.20" // {
dependencies = [
sources."source-map-0.6.1"
];
})
- sources."@vue/compiler-dom-3.2.19"
- sources."@vue/shared-3.2.19"
+ sources."@vue/compiler-dom-3.2.20"
+ sources."@vue/shared-3.2.20"
sources."@wry/equality-0.1.11"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -70777,7 +72843,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -70797,7 +72863,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.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -70853,12 +72919,12 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.18.1"
+ sources."core-js-pure-3.18.3"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -70924,7 +72990,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -71007,7 +73073,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.161.0"
+ sources."flow-parser-0.162.0"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -71121,7 +73187,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -71263,7 +73329,7 @@ in
sources."which-2.0.2"
];
})
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -71330,7 +73396,7 @@ in
sources."path-type-3.0.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
(sources."pid-from-port-1.1.3" // {
dependencies = [
@@ -71672,7 +73738,7 @@ in
sources."ws-7.5.5"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
- sources."xss-1.0.9"
+ sources."xss-1.0.10"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
@@ -71821,11 +73887,11 @@ in
sha512 = "7SWOLN+1eZ5e9gohQPVdA8XQstGIYei/70T5kmLP6vC41zy8BBYNt35OgLZmbpg3iOQ1vWT17ZMhVikSJySSRg==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/code-frame-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/types-7.15.6"
sources."@webassemblyjs/ast-1.11.1"
@@ -71901,14 +73967,14 @@ in
sha512 = "kiIlTMDCEP1PP9QtFQywlN/P/Ji0V+zbwCWkG8gF6V6uRIytd2bkpHP4iaFdV7fQJTrQSd9h71Wj4x60jGt6Mg==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.4" // {
+ (sources."@babel/generator-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -71919,7 +73985,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-replace-supers-7.15.4"
sources."@babel/helper-simple-access-7.15.4"
@@ -71928,7 +73994,7 @@ in
sources."@babel/helper-validator-option-7.14.5"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
@@ -71938,8 +74004,8 @@ in
sources."async-3.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.3"
- sources."caniuse-lite-1.0.30001264"
+ sources."browserslist-4.17.4"
+ sources."caniuse-lite-1.0.30001267"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -71949,7 +74015,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -71976,7 +74042,7 @@ in
sources."homedir-polyfill-1.0.3"
sources."ini-1.3.8"
sources."is-3.3.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-windows-1.0.2"
sources."isexe-2.0.0"
(sources."jake-10.8.2" // {
@@ -71995,7 +74061,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."node.extend-2.0.2"
(sources."nomnom-1.8.1" // {
dependencies = [
@@ -72005,7 +74071,7 @@ in
})
sources."parse-passwd-1.0.0"
sources."path-parse-1.0.7"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."pkginfo-0.4.1"
sources."resolve-1.20.0"
sources."safe-buffer-5.1.2"
@@ -72044,7 +74110,7 @@ in
dependencies = [
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -72078,12 +74144,16 @@ in
sha512 = "EmGpu0nnQVmMhX8ROoJ7Mx8mKYPlcUHuxkwrRYEYMz85lu7H09v8w6R1P0JPdn/hKU32GjpLBFEOuIlDWCRWvg==";
};
dependencies = [
- sources."browserslist-4.17.3"
- sources."caniuse-lite-1.0.30001264"
- sources."electron-to-chromium-1.3.859"
+ (sources."browserslist-4.17.4" // {
+ dependencies = [
+ sources."picocolors-1.0.0"
+ ];
+ })
+ sources."caniuse-lite-1.0.30001267"
+ sources."electron-to-chromium-1.3.870"
sources."escalade-3.1.1"
sources."fraction.js-4.1.1"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-range-0.1.2"
sources."picocolors-0.2.1"
sources."postcss-value-parser-4.1.0"
@@ -72108,14 +74178,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
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.1000.0" // {
+ (sources."aws-sdk-2.1009.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -72148,7 +74218,7 @@ in
sources."concat-map-0.0.1"
sources."core-util-is-1.0.3"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.2"
sources."deep-is-0.1.4"
@@ -72200,7 +74270,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-8.1.5"
+ sources."inquirer-8.2.0"
sources."ip-1.1.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
@@ -72255,7 +74325,7 @@ in
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."run-async-2.4.1"
- (sources."rxjs-7.3.1" // {
+ (sources."rxjs-7.4.0" // {
dependencies = [
sources."tslib-2.1.0"
];
@@ -72319,10 +74389,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "11.2.1";
+ version = "11.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.2.1.tgz";
- sha512 = "+PhZ0vTiHHeHmrRpVIm4hhl5YT7PQgVaAPj2pairo+lmDmcAFSJQApolr3fJpt3V88wWw6Y687TJfIJmRma27w==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.6.2.tgz";
+ sha512 = "/FXZqX/ntG2fkpcYCaxg042n4sdHcR0M0ETp3ZQEw5lzPwBm0idG7JmFzsUIU1TlWjmN9VR0b+JCXZMjjHRq3w==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -72331,7 +74401,7 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.3.7" // {
dependencies = [
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
];
})
sources."@grpc/proto-loader-0.6.4"
@@ -72491,7 +74561,7 @@ in
sources."code-point-at-1.1.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-2.0.14"
+ sources."colorette-2.0.16"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."commander-6.2.1"
@@ -72597,7 +74667,7 @@ in
sources."imurmurhash-0.1.4"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- (sources."inquirer-8.1.5" // {
+ (sources."inquirer-8.2.0" // {
dependencies = [
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
@@ -72672,49 +74742,46 @@ in
sources."ws-8.2.2"
];
})
- (sources."ln-service-52.10.1" // {
+ (sources."ln-service-52.12.1" // {
dependencies = [
sources."@grpc/proto-loader-0.6.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.10.4"
sources."@types/ws-8.2.0"
sources."bn.js-5.2.0"
sources."bolt09-0.2.0"
- sources."lightning-4.10.1"
+ sources."lightning-4.10.7"
sources."ws-8.2.3"
];
})
- (sources."ln-sync-2.0.2" // {
+ (sources."ln-sync-2.0.3" // {
dependencies = [
sources."@grpc/proto-loader-0.6.5"
- sources."@types/node-16.9.6"
+ sources."@types/node-16.10.4"
+ sources."@types/ws-8.2.0"
+ sources."bn.js-5.2.0"
+ sources."bolt09-0.2.0"
+ sources."lightning-4.10.7"
+ ];
+ })
+ (sources."ln-telegram-3.3.1" // {
+ dependencies = [
+ sources."@grpc/proto-loader-0.6.5"
+ sources."@types/node-16.10.3"
+ sources."@types/ws-8.2.0"
sources."bn.js-5.2.0"
sources."bolt09-0.2.0"
sources."cbor-8.0.0"
sources."colorette-2.0.7"
- sources."lightning-4.7.1"
- ];
- })
- (sources."ln-telegram-3.3.0" // {
- dependencies = [
- sources."@grpc/proto-loader-0.6.5"
- sources."@types/node-16.6.1"
- sources."ansi-regex-5.0.1"
- sources."bn.js-5.2.0"
- sources."cbor-8.0.0"
- sources."colorette-1.4.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."lightning-4.1.0"
- sources."ln-service-52.0.1"
- (sources."ln-sync-2.0.0" // {
+ sources."lightning-4.10.3"
+ sources."ln-service-52.11.0"
+ (sources."ln-sync-2.0.2" // {
dependencies = [
- sources."@types/node-16.9.1"
- sources."lightning-4.6.0"
+ sources."@types/node-16.9.6"
+ sources."@types/ws-7.4.7"
+ sources."lightning-4.7.1"
];
})
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- sources."table-6.7.1"
- sources."ws-8.1.0"
+ sources."ws-8.2.3"
];
})
sources."lodash-4.17.21"
@@ -72773,7 +74840,7 @@ in
sources."node-addon-api-2.0.2"
sources."node-fetch-2.6.1"
sources."node-gyp-build-4.3.0"
- sources."nofilter-3.0.3"
+ sources."nofilter-3.1.0"
sources."normalize-url-4.5.1"
sources."npmlog-2.0.4"
sources."number-is-nan-1.0.1"
@@ -72842,7 +74909,7 @@ in
sources."process-nextick-args-2.0.1"
(sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
];
})
sources."proxy-addr-2.0.7"
@@ -72875,7 +74942,7 @@ in
sources."ripemd160-2.0.2"
sources."run-async-2.4.1"
sources."rx-4.1.0"
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."safe-buffer-5.2.1"
sources."safe-compare-1.1.4"
sources."safer-buffer-2.1.2"
@@ -73138,7 +75205,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-6.1.1"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."w3c-hr-time-1.0.2"
sources."web-tree-sitter-0.19.4"
@@ -73199,7 +75266,7 @@ in
sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
- sources."doctoc-2.0.1"
+ sources."doctoc-2.1.0"
(sources."dom-serializer-1.3.2" // {
dependencies = [
sources."domhandler-4.2.2"
@@ -73304,12 +75371,12 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-2.1.2"
sources."web-tree-sitter-0.17.1"
sources."which-pm-runs-1.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."x-is-string-0.1.0"
sources."xtend-4.0.2"
@@ -73388,7 +75455,7 @@ in
sources."inherits-2.0.4"
sources."intersect-1.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-finite-1.1.0"
sources."is-plain-obj-1.1.0"
sources."is-utf8-0.2.1"
@@ -73593,7 +75660,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
sources."is-negative-zero-2.0.1"
@@ -73969,10 +76036,10 @@ in
sha512 = "Va/hSa8+LRP4o6neRo+us8XttwcmLfwgNykeXhtY3xMu3/Y7I2e4EXb6Zd9jElMVI3teWH7eiyLff0KDjnYJdg==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/types-7.15.6"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
@@ -74175,7 +76242,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-expression-4.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -74434,7 +76501,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -74576,7 +76643,7 @@ in
sources."ip-set-1.0.2"
sources."ipaddr.js-2.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-finite-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -75081,7 +77148,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-ci-1.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -75437,15 +77504,15 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "1.0.0-beta.66";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.66.tgz";
- sha512 = "R0jcuhminjhGxzGUFrhEI6qdYxK6qR2ihqmNtj4f6tgwzyqC2objDsaSSGXvptXwndcAEpRfYwwzmdSEx7f8jQ==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.3.tgz";
+ sha512 = "dje6/93p/gKJgsRvj2Jvtnz2VFlr8O24hyHjFEk/eJq126CVLdvsUyHP9XPhE5CWCznmhfoMVwLGmmR4e1shwg==";
};
dependencies = [
- sources."@jsii/check-node-1.36.0"
- sources."@jsii/spec-1.36.0"
- sources."@types/node-12.20.27"
+ sources."@jsii/check-node-1.39.0"
+ sources."@jsii/spec-1.39.0"
+ sources."@types/node-12.20.33"
sources."@xmldom/xmldom-0.7.5"
sources."ajv-8.6.3"
sources."ansi-regex-5.0.1"
@@ -75455,12 +77522,12 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
sources."case-1.6.3"
- sources."cdk8s-1.0.0-beta.57"
- sources."cdk8s-plus-22-1.0.0-beta.9"
+ sources."cdk8s-1.1.3"
+ sources."cdk8s-plus-22-1.0.0-beta.21"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.36.0" // {
+ (sources."codemaker-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -75469,7 +77536,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.156"
+ sources."constructs-3.3.161"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-5.0.1"
@@ -75525,38 +77592,38 @@ in
sources."is-weakref-1.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
- (sources."jsii-1.36.0" // {
+ (sources."jsii-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.36.0" // {
+ (sources."jsii-pacmak-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.36.0" // {
+ (sources."jsii-reflect-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.36.0" // {
+ (sources."jsii-rosetta-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.357" // {
+ (sources."jsii-srcmak-0.1.369" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.3.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.2.33"
+ sources."json2jsii-0.2.40"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -75572,7 +77639,7 @@ in
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.36.0"
+ sources."oo-ascii-tree-1.39.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -75594,7 +77661,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.85"
+ sources."sscaff-1.2.96"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -75663,15 +77730,15 @@ in
sources."tslib-2.0.3"
];
})
- sources."@babel/code-frame-7.14.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/code-frame-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/types-7.15.6"
sources."@cdktf/hcl2cdk-0.6.4"
@@ -75681,7 +77748,11 @@ in
sources."tslib-2.1.0"
];
})
- sources."@graphql-tools/import-6.5.0"
+ (sources."@graphql-tools/import-6.5.4" // {
+ dependencies = [
+ sources."@graphql-tools/utils-8.3.0"
+ ];
+ })
(sources."@graphql-tools/load-6.2.8" // {
dependencies = [
sources."tslib-2.2.0"
@@ -75694,13 +77765,13 @@ in
})
(sources."@graphql-tools/mock-8.4.0" // {
dependencies = [
- sources."@graphql-tools/utils-8.2.4"
+ sources."@graphql-tools/utils-8.3.0"
];
})
(sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
sources."@graphql-tools/merge-8.1.2"
- sources."@graphql-tools/utils-8.2.4"
+ sources."@graphql-tools/utils-8.3.0"
];
})
(sources."@graphql-tools/utils-7.10.0" // {
@@ -75710,12 +77781,12 @@ in
})
sources."@graphql-typed-document-node/core-3.1.0"
sources."@josephg/resolvable-1.0.1"
- sources."@jsii/check-node-1.36.0"
- sources."@jsii/spec-1.36.0"
+ sources."@jsii/check-node-1.39.0"
+ sources."@jsii/spec-1.39.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.3.0"
+ 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"
@@ -75736,7 +77807,7 @@ in
sources."@types/express-serve-static-core-4.17.24"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
sources."@types/node-fetch-2.5.12"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -75762,20 +77833,20 @@ in
sources."normalize-path-3.0.0"
];
})
- sources."apollo-datasource-3.1.0"
+ sources."apollo-datasource-3.2.0"
sources."apollo-graphql-0.9.3"
- sources."apollo-reporting-protobuf-3.0.0"
- sources."apollo-server-caching-3.1.0"
- (sources."apollo-server-core-3.3.0" // {
+ sources."apollo-reporting-protobuf-3.1.0"
+ sources."apollo-server-caching-3.2.0"
+ (sources."apollo-server-core-3.4.0" // {
dependencies = [
- sources."@graphql-tools/utils-8.2.4"
+ sources."@graphql-tools/utils-8.3.0"
];
})
- sources."apollo-server-env-4.0.3"
- sources."apollo-server-errors-3.1.0"
- sources."apollo-server-express-3.3.0"
- sources."apollo-server-plugin-base-3.2.0"
- sources."apollo-server-types-3.2.0"
+ sources."apollo-server-env-4.1.0"
+ sources."apollo-server-errors-3.2.0"
+ sources."apollo-server-express-3.4.0"
+ sources."apollo-server-plugin-base-3.3.0"
+ sources."apollo-server-types-3.3.0"
sources."archiver-5.3.0"
(sources."archiver-utils-2.1.0" // {
dependencies = [
@@ -75856,7 +77927,7 @@ in
];
})
sources."concat-map-0.0.1"
- sources."constructs-10.0.5"
+ sources."constructs-10.0.9"
(sources."content-disposition-0.5.3" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -75866,7 +77937,7 @@ in
sources."convert-to-spaces-1.0.2"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-pure-3.18.1"
+ sources."core-js-pure-3.18.3"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."crc-32-1.2.0"
@@ -75964,7 +78035,7 @@ in
sources."graceful-fs-4.2.8"
sources."graphology-0.20.0"
sources."graphology-types-0.19.5"
- sources."graphql-15.6.0"
+ sources."graphql-15.6.1"
sources."graphql-subscriptions-1.2.1"
sources."graphql-tag-2.12.5"
sources."has-1.0.3"
@@ -75986,7 +78057,7 @@ in
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- (sources."ink-3.0.9" // {
+ (sources."ink-3.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."color-convert-2.0.1"
@@ -75995,10 +78066,10 @@ in
sources."wrap-ansi-6.2.0"
];
})
- sources."ink-spinner-4.0.2"
+ sources."ink-spinner-4.0.3"
sources."ink-text-input-4.0.1"
sources."ink-use-stdout-dimensions-1.0.5"
- sources."inquirer-8.1.5"
+ sources."inquirer-8.2.0"
sources."internal-slot-1.0.3"
sources."ipaddr.js-1.9.1"
sources."is-arguments-1.1.1"
@@ -76035,35 +78106,35 @@ in
sources."iterall-1.3.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- (sources."jsii-1.36.0" // {
+ (sources."jsii-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.36.0" // {
+ (sources."jsii-pacmak-1.39.0" // {
dependencies = [
sources."clone-2.1.2"
- sources."codemaker-1.36.0"
+ sources."codemaker-1.39.0"
sources."decamelize-5.0.1"
sources."escape-string-regexp-4.0.0"
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.36.0" // {
+ (sources."jsii-reflect-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.36.0" // {
+ (sources."jsii-rosetta-1.39.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.357" // {
+ (sources."jsii-srcmak-0.1.369" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."camelcase-5.3.1"
@@ -76137,7 +78208,7 @@ in
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.36.0"
+ sources."oo-ascii-tree-1.39.0"
sources."open-7.4.2"
sources."optimism-0.16.1"
sources."ora-5.4.1"
@@ -76173,9 +78244,9 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
sources."react-16.14.0"
- sources."react-devtools-core-4.19.1"
+ sources."react-devtools-core-4.20.0"
sources."react-is-16.13.1"
- sources."react-reconciler-0.24.0"
+ sources."react-reconciler-0.26.2"
sources."readable-stream-3.6.0"
sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
@@ -76191,14 +78262,14 @@ in
sources."rfdc-1.3.0"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- (sources."rxjs-7.3.1" // {
+ (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.18.0"
+ sources."scheduler-0.20.2"
sources."semver-7.3.5"
(sources."semver-intersect-1.4.0" // {
dependencies = [
@@ -76230,7 +78301,7 @@ in
sources."sort-json-2.0.0"
sources."source-map-0.5.7"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.85"
+ sources."sscaff-1.2.96"
(sources."stack-utils-2.0.5" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
@@ -76305,7 +78376,7 @@ in
sources."wrappy-1.0.2"
sources."ws-7.5.5"
sources."xmlbuilder-15.1.1"
- sources."xss-1.0.9"
+ sources."xss-1.0.10"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-17.2.1"
@@ -76366,87 +78437,96 @@ in
clipboard-cli = nodeEnv.buildNodePackage {
name = "clipboard-cli";
packageName = "clipboard-cli";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/clipboard-cli/-/clipboard-cli-2.0.1.tgz";
- sha512 = "ze7ASsXpF2J27QMq5or4VZZcX9X+E8XtsvFXaRwdLBON0UjnXfIWykgIzffSmrdfHOw/8rAufyOE58+/OU1eGw==";
+ url = "https://registry.npmjs.org/clipboard-cli/-/clipboard-cli-3.0.0.tgz";
+ sha512 = "DbwDqv+O4AIbUqLmT3w7J/Fo8uT9bNmy7oRzykTUEIcrEL0DozGNOjxjiwwcKSLLf1fXKmjdLolui+OB3j1vYg==";
};
dependencies = [
+ sources."@babel/code-frame-7.15.8"
+ sources."@babel/helper-validator-identifier-7.15.7"
+ sources."@babel/highlight-7.14.5"
+ sources."@types/minimist-1.2.2"
+ sources."@types/normalize-package-data-2.4.1"
+ sources."ansi-styles-3.2.1"
sources."arch-2.2.0"
- sources."array-find-index-1.0.2"
sources."arrify-1.0.1"
- sources."camelcase-4.1.0"
- sources."camelcase-keys-4.2.0"
- sources."clipboardy-2.3.0"
- sources."cross-spawn-6.0.5"
- sources."currently-unhandled-0.4.1"
- sources."decamelize-1.2.0"
+ sources."camelcase-6.2.0"
+ sources."camelcase-keys-7.0.1"
+ sources."chalk-2.4.2"
+ sources."clipboardy-3.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."cross-spawn-7.0.3"
+ sources."decamelize-5.0.1"
(sources."decamelize-keys-1.1.0" // {
dependencies = [
+ sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
];
})
- sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."execa-1.0.0"
- sources."find-up-2.1.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-5.1.1"
+ sources."find-up-5.0.0"
sources."function-bind-1.1.1"
- sources."get-stdin-7.0.0"
- sources."get-stream-4.1.0"
- sources."graceful-fs-4.2.8"
+ sources."get-stdin-9.0.0"
+ sources."get-stream-6.0.1"
+ sources."hard-rejection-2.1.0"
sources."has-1.0.3"
- sources."hosted-git-info-2.8.9"
- sources."indent-string-3.2.0"
+ sources."has-flag-3.0.0"
+ sources."hosted-git-info-4.0.2"
+ sources."human-signals-2.1.0"
+ sources."indent-string-5.0.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-plain-obj-1.1.0"
- sources."is-stream-1.1.0"
+ sources."is-stream-2.0.1"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
- sources."json-parse-better-errors-1.0.2"
- sources."load-json-file-4.0.0"
- sources."locate-path-2.0.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-2.0.0"
- sources."meow-5.0.0"
- sources."minimist-options-3.0.2"
- sources."nice-try-1.0.5"
- sources."normalize-package-data-2.5.0"
- sources."npm-run-path-2.0.2"
- sources."once-1.4.0"
- sources."p-finally-1.0.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."parse-json-4.0.0"
- sources."path-exists-3.0.0"
- sources."path-key-2.0.1"
- sources."path-parse-1.0.7"
- sources."path-type-3.0.0"
- sources."pify-3.0.0"
- sources."pump-3.0.0"
- sources."quick-lru-1.1.0"
- sources."read-pkg-3.0.0"
- sources."read-pkg-up-3.0.0"
- sources."redent-2.0.0"
- sources."resolve-1.20.0"
- sources."semver-5.7.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
+ sources."js-tokens-4.0.0"
+ sources."json-parse-even-better-errors-2.3.1"
+ sources."kind-of-6.0.3"
+ sources."lines-and-columns-1.1.6"
+ sources."locate-path-6.0.0"
+ sources."lru-cache-6.0.0"
+ sources."map-obj-4.3.0"
+ sources."meow-10.1.1"
+ sources."merge-stream-2.0.0"
+ sources."mimic-fn-2.1.0"
+ sources."min-indent-1.0.1"
+ sources."minimist-options-4.1.0"
+ sources."normalize-package-data-3.0.3"
+ sources."npm-run-path-4.0.1"
+ sources."onetime-5.1.2"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ sources."parse-json-5.2.0"
+ sources."path-exists-4.0.0"
+ sources."path-key-3.1.1"
+ sources."quick-lru-5.1.1"
+ sources."read-pkg-6.0.0"
+ sources."read-pkg-up-8.0.0"
+ sources."redent-4.0.0"
+ sources."semver-7.3.5"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.5"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.10"
- sources."strip-bom-3.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-indent-2.0.0"
- sources."trim-newlines-2.0.0"
+ sources."strip-final-newline-2.0.0"
+ sources."strip-indent-4.0.0"
+ sources."supports-color-5.5.0"
+ sources."trim-newlines-4.0.2"
+ sources."type-fest-1.4.0"
sources."validate-npm-package-license-3.0.4"
- sources."which-1.3.1"
- sources."wrappy-1.0.2"
- sources."yargs-parser-10.1.0"
+ sources."which-2.0.2"
+ sources."yallist-4.0.0"
+ sources."yargs-parser-20.2.9"
+ sources."yocto-queue-0.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -76528,10 +78608,10 @@ in
coc-clangd = nodeEnv.buildNodePackage {
name = "coc-clangd";
packageName = "coc-clangd";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.16.0.tgz";
- sha512 = "3NTHssw+ZxZiq1XZVbyfSKxgD0vZ96yBjzYh5l/kyr4413KibNTMgF2gTBMQsOnrfFmrfDz6RF5Yy2ie2EkZXw==";
+ url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.17.0.tgz";
+ sha512 = "TTuzPUw9R1UqszC9uPmijXmCtMhTI5QVc0L8rqKDnIhhaqy99XyOK7zTr4Uw7qmAs4dZSTHonzjbAEkR4zcqFg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -76687,7 +78767,7 @@ in
sources."npm-run-path-3.1.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."os-homedir-1.0.2"
sources."p-finally-2.0.1"
sources."p-map-4.0.0"
@@ -76754,7 +78834,7 @@ in
sources."node-fetch-2.6.5"
sources."tr46-0.0.3"
sources."tslib-2.3.1"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-uri-3.0.2"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
@@ -76795,7 +78875,7 @@ in
sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw==";
};
dependencies = [
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -76887,7 +78967,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-4.1.2"
sources."vscode-uri-3.0.2"
@@ -76953,7 +79033,7 @@ in
sources."async-2.6.3"
sources."await-semaphore-0.1.3"
sources."balanced-match-1.0.2"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."binary-0.3.0"
sources."bluebird-3.4.7"
sources."brace-expansion-1.1.11"
@@ -76990,7 +79070,7 @@ in
sources."fb-watchman-2.0.1"
sources."flatted-2.0.2"
sources."follow-redirects-1.14.4"
- sources."fp-ts-2.11.4"
+ sources."fp-ts-2.11.5"
sources."fs-extra-8.1.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
@@ -77115,7 +79195,7 @@ in
sources."vscode-languageserver-types-3.15.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-2.1.2"
sources."webidl-conversions-3.0.1"
@@ -77241,7 +79321,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
@@ -77303,7 +79383,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.18.1"
+ sources."core-js-3.18.3"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -77339,7 +79419,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -77537,7 +79617,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-ci-1.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -78138,13 +80218,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.172";
+ version = "1.1.177";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.172.tgz";
- sha512 = "Wu+aAcy/8OR8Q7tE3039iSCe+Kc0BV36hssXinCbzLQoTpgWXjbPQpdkZFUgtzYOb9Xbx1kNGSd/XFHp2VM/dg==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.177.tgz";
+ sha512 = "TtSU3bWibZqq1LrUa5iLR1TF69x83dzmVNKpXaawYJZoejN81Gnv6DRaLybBjLjOSodjzw9S0D7j6tbeJeLCdg==";
};
dependencies = [
- sources."pyright-1.1.175"
+ sources."pyright-1.1.178"
];
buildInputs = globalBuildInputs;
meta = {
@@ -78185,7 +80265,7 @@ in
dependencies = [
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
];
buildInputs = globalBuildInputs;
@@ -78218,10 +80298,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.52.0";
+ version = "0.53.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.52.0.tgz";
- sha512 = "mT9Y7bzuhvHDj+Cv2+EbEUTGwdkulKpiGwyJ0Hm0/8+i3fM8zsoAuLM8l/A3TSIYlbt10Ru3dV5ilHwdt0MZkg==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.53.0.tgz";
+ sha512 = "B8QCO3v0oH4olnhYJqgLN3ItSJuQ8tqoTvZIWMhlK8lYGZ4AIHwHl8s3jxQITosLg9OaD9ulTNuiShuGEvUmHQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -78294,17 +80374,17 @@ in
sha512 = "+GYR6KTvHQnqu0j1kXT30hRZMuCwG/G52wG/19LSPE+p9Q0i8XFH6582T0btTu39xz2TPsDOGjT1VgyRw2urug==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/core-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-compilation-targets-7.15.4"
sources."@babel/helper-function-name-7.15.4"
sources."@babel/helper-get-function-arity-7.15.4"
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-replace-supers-7.15.4"
sources."@babel/helper-simple-access-7.15.4"
@@ -78317,7 +80397,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
@@ -78337,7 +80417,11 @@ in
sources."array-union-2.1.0"
sources."arrify-1.0.1"
sources."astral-regex-2.0.0"
- sources."autoprefixer-9.8.8"
+ (sources."autoprefixer-9.8.8" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."bail-1.0.5"
sources."balanced-match-2.0.0"
(sources."brace-expansion-1.1.11" // {
@@ -78346,11 +80430,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -78387,7 +80471,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -78439,7 +80523,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -78484,7 +80568,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
@@ -78505,10 +80589,11 @@ in
sources."path-is-inside-1.0.2"
sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
(sources."postcss-7.0.39" // {
dependencies = [
+ sources."picocolors-0.2.1"
sources."source-map-0.6.1"
];
})
@@ -78604,7 +80689,7 @@ in
sources."vscode-languageserver-types-3.16.0-next.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-2.1.2"
sources."which-1.3.1"
@@ -78668,7 +80753,7 @@ in
sha512 = "5Zxv2Adtb6Mlpv2YdKErhf8ntxiBl1UyrbEqo7gR9nFIAfi3o0Ue6TJTpZfOhQViFQxLjJAS65IQVRaNlbhkxw==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
sources."ansi-styles-3.2.1"
@@ -78691,7 +80776,7 @@ in
sources."has-flag-3.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."minimatch-3.0.4"
@@ -78762,7 +80847,7 @@ in
sha512 = "RTet29nZNYrOWEuquBOAv3yFtWyHPE7xGbsHjRdNbTP6g9PF+2nV2TnDO+c/T5HAk/1J0lKKZBu6hZTnEJ2f4w==";
};
dependencies = [
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -78828,7 +80913,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (sources."eslint-plugin-vue-7.19.0" // {
+ (sources."eslint-plugin-vue-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -78877,7 +80962,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -78945,7 +81030,7 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
sources."vls-0.7.4"
@@ -79056,7 +81141,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
sources."vscode-uri-3.0.2"
@@ -79408,7 +81493,7 @@ in
sha512 = "xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
sources."@hutson/parse-repository-url-3.0.2"
@@ -79487,7 +81572,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -79672,7 +81757,7 @@ in
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."bytes-3.1.0"
@@ -79749,7 +81834,7 @@ in
sources."pify-5.0.0"
];
})
- (sources."cordova-lib-10.0.0" // {
+ (sources."cordova-lib-10.1.0" // {
dependencies = [
sources."pify-5.0.0"
];
@@ -79919,7 +82004,7 @@ in
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
@@ -80184,7 +82269,7 @@ in
];
})
sources."which-2.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."widest-line-3.1.0" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -80233,7 +82318,7 @@ in
sha512 = "HCpNdBkQy3rw+uARLuIf0YurqsMXYzBa9ihhSAuxYJcNIrqrSq3BstPfr0cQN38AdMrQiO9Dp4hYy7GtGJsLPg==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
@@ -80241,7 +82326,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -80381,7 +82466,7 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -80612,7 +82697,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -81589,14 +83674,14 @@ in
version = "1.22.2";
src = ../../applications/networking/instant-messengers/deltachat-desktop;
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.4" // {
+ (sources."@babel/generator-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -81613,7 +83698,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -81626,9 +83711,9 @@ in
sources."@babel/helper-wrap-function-7.15.4"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -81688,13 +83773,13 @@ in
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.6"
+ sources."@babel/preset-env-7.15.8"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-react-7.14.5"
sources."@babel/runtime-7.15.4"
@@ -81702,7 +83787,7 @@ in
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
sources."@blueprintjs/colors-4.0.0-beta.0"
- sources."@blueprintjs/core-3.50.4"
+ sources."@blueprintjs/core-3.51.1"
sources."@blueprintjs/icons-3.30.2"
sources."@electron/get-1.13.0"
sources."@hypnosphi/create-react-context-0.3.1"
@@ -81727,11 +83812,11 @@ 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.20"
+ sources."@types/node-14.17.27"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
sources."@types/rc-1.2.0"
- sources."@types/react-16.14.16"
+ sources."@types/react-16.14.17"
sources."@types/react-dom-16.9.14"
sources."@types/react-window-1.8.5"
sources."@types/react-window-infinite-loader-1.0.5"
@@ -81773,7 +83858,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."cache-base-1.0.1"
@@ -81784,7 +83869,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
(sources."class-utils-0.3.6" // {
@@ -81825,8 +83910,8 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.18.1"
- (sources."core-js-compat-3.18.1" // {
+ sources."core-js-3.18.3"
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -81851,8 +83936,8 @@ in
sources."dom4-2.1.6"
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
- sources."electron-13.5.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-13.5.2"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -81923,7 +84008,7 @@ in
sources."get-stdin-7.0.0"
sources."get-stream-6.0.1"
sources."get-value-2.0.6"
- sources."gl-matrix-3.4.0"
+ sources."gl-matrix-3.4.3"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -81964,7 +84049,7 @@ in
sources."is-arguments-1.1.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -82001,7 +84086,7 @@ in
sources."lru-cache-6.0.0"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
- (sources."mapbox-gl-1.13.1" // {
+ (sources."mapbox-gl-1.13.2" // {
dependencies = [
sources."rw-1.3.3"
];
@@ -82031,7 +84116,7 @@ in
sources."napi-macros-2.0.0"
sources."node-fetch-2.6.5"
sources."node-gyp-build-4.3.0"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
sources."normalize.css-8.0.1"
@@ -82065,7 +84150,7 @@ in
sources."path-parse-1.0.7"
sources."pbf-3.2.1"
sources."pend-1.2.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-3.0.0"
sources."popper.js-1.16.1"
@@ -82131,7 +84216,7 @@ in
sources."rw-0.1.4"
sources."safe-buffer-5.2.1"
sources."safe-regex-1.1.0"
- (sources."sass-1.42.1" // {
+ (sources."sass-1.43.2" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -82222,7 +84307,7 @@ in
sources."string_decoder-1.3.0"
sources."strip-json-comments-2.0.1"
sources."sumchecker-3.0.1"
- sources."supercluster-7.1.3"
+ sources."supercluster-7.1.4"
sources."supports-color-5.5.0"
sources."temp-dir-1.0.0"
sources."tempy-0.3.0"
@@ -82377,7 +84462,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-6.1.1"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-2.1.2"
sources."wrappy-1.0.2"
@@ -82404,10 +84489,14 @@ in
sources."dockerfile-ast-0.3.4"
sources."dockerfile-language-service-0.7.2"
sources."dockerfile-utils-0.9.2"
- sources."vscode-jsonrpc-8.0.0-next.2"
- sources."vscode-languageserver-8.0.0-next.2"
- sources."vscode-languageserver-protocol-3.17.0-next.8"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-jsonrpc-8.0.0-next.3"
+ sources."vscode-languageserver-8.0.0-next.3"
+ (sources."vscode-languageserver-protocol-3.17.0-next.9" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.17.0-next.4"
+ ];
+ })
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.17.0-next.3"
];
buildInputs = globalBuildInputs;
@@ -82431,7 +84520,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -82634,7 +84723,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.2"
sources."abbrev-1.1.1"
@@ -82716,7 +84805,7 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
- sources."core-js-3.18.1"
+ sources."core-js-3.18.3"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
(sources."cross-spawn-windows-exe-1.2.0" // {
@@ -82887,7 +84976,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."inquirer-8.1.5" // {
+ (sources."inquirer-8.2.0" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
sources."string-width-4.2.3"
@@ -82895,7 +84984,7 @@ in
})
sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
@@ -83010,7 +85099,7 @@ in
sources."object-keys-0.4.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-2.1.1"
@@ -83090,7 +85179,7 @@ in
sources."roarr-2.15.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -83169,7 +85258,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
@@ -83238,14 +85327,14 @@ in
sha512 = "ceJSyC2s1VCIqyzGkHeJkWBq/85QXaHM+0rZ1lRRtmcK9CsfRDyLSIZ7KJDZhPdIRUXBgBkdcOAW3AIu/yO/ew==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.4"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
@@ -83257,7 +85346,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-replace-supers-7.15.4"
@@ -83267,7 +85356,7 @@ in
sources."@babel/helper-validator-option-7.14.5"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-proposal-object-rest-spread-7.15.6"
sources."@babel/plugin-syntax-jsx-7.14.5"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -83295,13 +85384,13 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."caller-callsite-2.0.0"
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -83330,7 +85419,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -83357,7 +85446,7 @@ in
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- (sources."ink-3.0.9" // {
+ (sources."ink-3.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -83380,7 +85469,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
@@ -83420,7 +85509,7 @@ in
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
sources."nice-try-1.0.5"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-package-data-2.5.0"
sources."npm-run-path-2.0.2"
sources."object-assign-4.1.1"
@@ -83441,7 +85530,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
sources."path-parse-1.0.7"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
(sources."pkg-dir-4.2.0" // {
dependencies = [
sources."find-up-4.1.0"
@@ -83456,9 +85545,9 @@ in
sources."punycode-2.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.19.1"
+ sources."react-devtools-core-4.20.0"
sources."react-is-16.13.1"
- sources."react-reconciler-0.24.0"
+ sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
sources."type-fest-0.6.0"
@@ -83479,7 +85568,7 @@ in
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."safe-buffer-5.1.2"
- sources."scheduler-0.18.0"
+ sources."scheduler-0.20.2"
sources."semver-5.7.1"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
@@ -83562,7 +85651,7 @@ in
version = "1.7.5";
src = ../../applications/video/epgstation;
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -83589,7 +85678,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.217"
+ sources."@microsoft/load-themed-styles-1.10.225"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -84320,7 +86409,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-dir-1.0.0"
@@ -84844,7 +86933,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.42.1" // {
+ (sources."sass-1.43.2" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -85021,7 +87110,7 @@ in
sources."sver-compat-1.5.0"
sources."swagger-schema-official-2.0.0-bab6bed"
sources."swagger-ui-dist-3.34.0"
- sources."tail-2.2.3"
+ sources."tail-2.2.4"
sources."tapable-1.1.3"
(sources."tar-4.4.19" // {
dependencies = [
@@ -85210,7 +87299,7 @@ in
})
sources."which-1.3.1"
sources."which-module-1.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."worker-farm-1.7.0"
(sources."wrap-ansi-2.1.0" // {
dependencies = [
@@ -85265,77 +87354,51 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "7.32.0";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz";
- sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.0.1.tgz";
+ sha512 = "LsgcwZgQ72vZ+SMp4K6pAnk2yFDWL7Ti4pJaRvsZ0Hsw2h8ZjUIW38a9AFn2cZXdBMlScMFYYgsSp4ttFI/0bA==";
};
dependencies = [
- sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.14.5" // {
+ (sources."@eslint/eslintrc-1.0.3" // {
dependencies = [
- sources."chalk-2.4.2"
- sources."escape-string-regexp-1.0.5"
+ sources."js-yaml-3.14.1"
];
})
- sources."@eslint/eslintrc-0.4.3"
- sources."@humanwhocodes/config-array-0.5.0"
+ sources."@humanwhocodes/config-array-0.6.0"
sources."@humanwhocodes/object-schema-1.2.0"
- sources."acorn-7.4.1"
+ sources."acorn-8.5.0"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-colors-4.1.1"
sources."ansi-regex-5.0.1"
- sources."ansi-styles-3.2.1"
+ sources."ansi-styles-4.3.0"
sources."argparse-1.0.10"
- sources."astral-regex-2.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."callsites-3.1.0"
- (sources."chalk-4.1.2" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- 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."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
sources."deep-is-0.1.4"
sources."doctrine-3.0.0"
- sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
- sources."eslint-scope-5.1.1"
- (sources."eslint-utils-2.1.0" // {
+ sources."eslint-scope-6.0.0"
+ (sources."eslint-utils-3.0.0" // {
dependencies = [
- sources."eslint-visitor-keys-1.3.0"
- ];
- })
- sources."eslint-visitor-keys-2.1.0"
- (sources."espree-7.3.1" // {
- dependencies = [
- sources."eslint-visitor-keys-1.3.0"
+ sources."eslint-visitor-keys-2.1.0"
];
})
+ sources."eslint-visitor-keys-3.0.0"
+ sources."espree-9.0.0"
sources."esprima-4.0.1"
- (sources."esquery-1.4.0" // {
- dependencies = [
- sources."estraverse-5.2.0"
- ];
- })
- (sources."esrecurse-4.3.0" // {
- dependencies = [
- sources."estraverse-5.2.0"
- ];
- })
- sources."estraverse-4.3.0"
+ sources."esquery-1.4.0"
+ sources."esrecurse-4.3.0"
+ sources."estraverse-5.2.0"
sources."esutils-2.0.3"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
@@ -85346,26 +87409,26 @@ in
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
sources."glob-7.2.0"
- sources."glob-parent-5.1.2"
+ sources."glob-parent-6.0.2"
sources."globals-13.11.0"
- sources."has-flag-3.0.0"
+ sources."has-flag-4.0.0"
sources."ignore-4.0.6"
sources."import-fresh-3.3.0"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."isexe-2.0.0"
- sources."js-tokens-4.0.0"
- sources."js-yaml-3.14.1"
+ (sources."js-yaml-4.1.0" // {
+ dependencies = [
+ sources."argparse-2.0.1"
+ ];
+ })
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.4.1"
- sources."lodash.clonedeep-4.5.0"
sources."lodash.merge-4.6.2"
- sources."lodash.truncate-4.4.2"
sources."lru-cache-6.0.0"
sources."minimatch-3.0.4"
sources."ms-2.1.2"
@@ -85379,30 +87442,15 @@ in
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."regexpp-3.2.0"
- sources."require-from-string-2.0.2"
sources."resolve-from-4.0.0"
sources."rimraf-3.0.2"
sources."semver-7.3.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
- (sources."slice-ansi-4.0.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- ];
- })
sources."sprintf-js-1.0.3"
- sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
- sources."supports-color-5.5.0"
- (sources."table-6.7.2" // {
- dependencies = [
- sources."ajv-8.6.3"
- sources."json-schema-traverse-1.0.0"
- ];
- })
+ sources."supports-color-7.2.0"
sources."text-table-0.2.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
@@ -85616,19 +87664,20 @@ in
dependencies = [
sources."@babel/code-frame-7.10.4"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."json5-2.2.0"
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.4"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
+ sources."node-releases-2.0.0"
sources."semver-6.3.0"
];
})
@@ -85645,7 +87694,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-replace-supers-7.15.4"
@@ -85660,7 +87709,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-export-default-from-7.14.5"
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5"
@@ -85699,26 +87748,26 @@ in
sources."@babel/plugin-transform-react-jsx-self-7.14.9"
sources."@babel/plugin-transform-react-jsx-source-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
- (sources."@babel/plugin-transform-runtime-7.15.0" // {
+ (sources."@babel/plugin-transform-runtime-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
- sources."@babel/plugin-transform-typescript-7.15.4"
+ sources."@babel/plugin-transform-typescript-7.15.8"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
sources."@babel/runtime-7.9.0"
(sources."@babel/template-7.15.4" // {
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
];
})
(sources."@babel/traverse-7.15.4" // {
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
];
})
sources."@babel/types-7.15.6"
@@ -85740,7 +87789,7 @@ in
sources."iconv-lite-0.4.24"
sources."inherits-2.0.3"
sources."ms-2.0.0"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."qs-6.7.0"
sources."raw-body-2.4.0"
sources."setprototypeof-1.1.1"
@@ -86008,7 +88057,7 @@ in
sources."base64url-3.0.1"
sources."batch-0.6.1"
sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."big.js-5.2.2"
sources."binary-extensions-2.2.0"
sources."bindings-1.5.0"
@@ -86077,7 +88126,7 @@ in
})
sources."camelcase-6.2.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."caseless-0.12.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -86209,9 +88258,10 @@ in
sources."semver-6.3.0"
];
})
- (sources."core-js-compat-3.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
+ sources."node-releases-2.0.0"
sources."semver-7.0.0"
];
})
@@ -86253,7 +88303,7 @@ in
sources."source-map-0.6.1"
];
})
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."cssesc-3.0.0"
sources."cssnano-4.1.11"
sources."cssnano-preset-default-4.0.8"
@@ -86343,7 +88393,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -86659,7 +88709,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -87108,7 +89158,7 @@ in
sources."path-type-4.0.0"
sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
@@ -87144,6 +89194,7 @@ in
sources."posix-character-classes-0.1.1"
(sources."postcss-7.0.39" // {
dependencies = [
+ sources."picocolors-0.2.1"
sources."source-map-0.6.1"
];
})
@@ -87274,7 +89325,7 @@ in
sources."progress-2.0.3"
sources."promise-inflight-1.0.1"
sources."promise-retry-2.0.1"
- sources."prompts-2.4.1"
+ sources."prompts-2.4.2"
sources."proxy-addr-2.0.7"
sources."prr-1.0.1"
sources."psl-1.8.0"
@@ -87571,7 +89622,7 @@ in
];
})
sources."subscriptions-transport-ws-0.9.8"
- (sources."sucrase-3.20.1" // {
+ (sources."sucrase-3.20.2" // {
dependencies = [
sources."commander-4.1.1"
];
@@ -87888,14 +89939,7 @@ in
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-module-2.0.0"
- (sources."wide-align-1.1.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."wide-align-1.1.5"
sources."widest-line-3.1.0"
sources."with-open-file-0.1.7"
sources."worker-farm-1.7.0"
@@ -87978,10 +90022,10 @@ in
sha512 = "QT3uBdxjHiXEz8iSAUJezETjKgTEP0PicHk36ga2veZHmIpqU5k+M0z1bmZ5G+EJHCN84o4w++fngJIgcj1Nqw==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/core-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-compilation-targets-7.15.4"
sources."@babel/helper-function-name-7.15.4"
@@ -87989,7 +90033,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-replace-supers-7.15.4"
@@ -87999,7 +90043,7 @@ in
sources."@babel/helper-validator-option-7.14.5"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-proposal-object-rest-spread-7.15.6"
sources."@babel/plugin-syntax-jsx-7.14.5"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -88010,7 +90054,7 @@ in
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -88029,7 +90073,7 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."caller-callsite-2.0.0"
@@ -88037,7 +90081,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -88061,7 +90105,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -88088,7 +90132,7 @@ in
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- (sources."ink-3.0.9" // {
+ (sources."ink-3.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -88098,10 +90142,10 @@ in
sources."supports-color-7.2.0"
];
})
- sources."ink-spinner-4.0.2"
+ sources."ink-spinner-4.0.3"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -88129,7 +90173,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
sources."node-fetch-2.6.5"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
@@ -88147,7 +90191,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."pend-1.2.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."pkg-dir-4.2.0"
sources."progress-2.0.3"
sources."prop-types-15.7.2"
@@ -88156,9 +90200,9 @@ in
sources."puppeteer-9.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.19.1"
+ sources."react-devtools-core-4.20.0"
sources."react-is-16.13.1"
- sources."react-reconciler-0.24.0"
+ sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
sources."hosted-git-info-2.8.9"
@@ -88179,7 +90223,7 @@ in
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."safe-buffer-5.1.2"
- sources."scheduler-0.18.0"
+ sources."scheduler-0.20.2"
sources."semver-6.3.0"
sources."shell-quote-1.7.2"
sources."signal-exit-3.0.5"
@@ -88613,7 +90657,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."inquirer-8.1.5" // {
+ (sources."inquirer-8.2.0" // {
dependencies = [
sources."chalk-4.1.2"
sources."has-flag-4.0.0"
@@ -88774,7 +90818,7 @@ in
sources."reusify-1.0.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- (sources."rxjs-7.3.1" // {
+ (sources."rxjs-7.4.0" // {
dependencies = [
sources."tslib-2.1.0"
];
@@ -88929,10 +90973,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "9.19.0";
+ version = "9.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.19.0.tgz";
- sha512 = "jo9IhtddYBXEwO5m99oPZ53H4KInfhyYWD5+j6LD1bCsT9M95u+hNx+oXnRBVNTJjbwvlv/stF+zDy1WrpU1FA==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.20.0.tgz";
+ sha512 = "/5LzkZtW8aC57syHf34FXY1w6g9unb7qdvtlYROdJA33sk2xsWsJmuvtJylhYhTNX8zrwFsmiTHRlaBxA9YWtg==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -88948,10 +90992,10 @@ in
sources."@google-cloud/promisify-2.0.4"
(sources."@google-cloud/pubsub-2.18.1" // {
dependencies = [
- sources."google-auth-library-7.10.0"
+ sources."google-auth-library-7.10.1"
];
})
- sources."@grpc/grpc-js-1.3.7"
+ sources."@grpc/grpc-js-1.3.8"
sources."@grpc/proto-loader-0.6.5"
sources."@jsdevtools/ono-7.1.3"
(sources."@npmcli/fs-1.0.0" // {
@@ -88985,7 +91029,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.10.2"
+ sources."@types/node-16.11.0"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -89036,7 +91080,7 @@ in
})
sources."basic-auth-connect-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."bignumber.js-9.0.1"
sources."binary-0.3.0"
sources."binary-extensions-2.2.0"
@@ -89325,9 +91369,9 @@ in
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-6.1.6"
- (sources."google-gax-2.27.0" // {
+ (sources."google-gax-2.27.1" // {
dependencies = [
- sources."google-auth-library-7.10.0"
+ sources."google-auth-library-7.10.1"
];
})
sources."google-p12-pem-3.1.2"
@@ -89805,19 +91849,12 @@ in
sources."core-util-is-1.0.2"
];
})
- sources."vm2-3.9.3"
+ sources."vm2-3.9.4"
sources."wcwidth-1.0.1"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
- (sources."wide-align-1.1.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."wide-align-1.1.5"
sources."widest-line-3.1.0"
sources."winston-3.3.3"
(sources."winston-transport-4.4.0" // {
@@ -89904,13 +91941,13 @@ in
fkill-cli = nodeEnv.buildNodePackage {
name = "fkill-cli";
packageName = "fkill-cli";
- version = "6.2.0";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fkill-cli/-/fkill-cli-6.2.0.tgz";
- sha512 = "HFv/ywCzDAVCxq1IL++lB96zxnUwspScZjqcWown87KPfWng3eJi+BDgXMie9PboXikxOcFoqfd+jJQHDgV3EQ==";
+ url = "https://registry.npmjs.org/fkill-cli/-/fkill-cli-7.0.0.tgz";
+ sha512 = "iLv/+0qHQjqnj9Pa9gA0TQ6vhV9eRn4fKxbiOPKL7uGs2Zth7iIGvNnpHmJfQ7OV7TTgR53yolY2DS1vWE/FjQ==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -89918,45 +91955,59 @@ in
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
+ sources."escape-string-regexp-1.0.5"
sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
- sources."aggregate-error-3.1.0"
+ sources."aggregate-error-4.0.0"
sources."ansi-escapes-4.3.2"
- sources."ansi-regex-5.0.1"
+ sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
- sources."arrify-2.0.1"
- sources."astral-regex-2.0.0"
- sources."camelcase-5.3.1"
- sources."camelcase-keys-6.2.2"
+ sources."arrify-3.0.0"
+ sources."base64-js-1.5.1"
+ sources."bl-4.1.0"
+ sources."buffer-5.7.1"
+ sources."camelcase-6.2.0"
+ (sources."camelcase-keys-7.0.1" // {
+ dependencies = [
+ sources."type-fest-1.4.0"
+ ];
+ })
sources."chalk-4.1.2"
sources."chardet-0.7.0"
- sources."clean-stack-2.2.0"
+ sources."clean-stack-4.1.0"
sources."cli-cursor-3.1.0"
- sources."cli-truncate-2.1.0"
+ sources."cli-spinners-2.6.1"
+ sources."cli-truncate-3.1.0"
sources."cli-width-3.0.0"
+ sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."cross-spawn-7.0.3"
- sources."decamelize-1.2.0"
+ sources."decamelize-5.0.1"
(sources."decamelize-keys-1.1.0" // {
dependencies = [
+ sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
];
})
- sources."emoji-regex-8.0.0"
- sources."end-of-stream-1.4.4"
+ sources."defaults-1.0.3"
+ sources."emoji-regex-9.2.2"
sources."error-ex-1.3.2"
- sources."esc-exit-2.0.2"
- sources."escape-string-regexp-1.0.5"
+ sources."esc-exit-3.0.0"
+ sources."escape-string-regexp-5.0.0"
sources."execa-5.1.1"
sources."external-editor-3.1.0"
- sources."figures-3.2.0"
- sources."find-up-4.1.0"
- sources."fkill-7.2.1"
+ (sources."figures-3.2.0" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
+ sources."find-up-5.0.0"
+ sources."fkill-8.0.0"
sources."function-bind-1.1.1"
sources."get-stream-6.0.1"
sources."hard-rejection-2.1.0"
@@ -89965,26 +92016,44 @@ in
sources."hosted-git-info-4.0.2"
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
- sources."indent-string-4.0.0"
- sources."inquirer-7.3.3"
- sources."inquirer-autocomplete-prompt-1.4.0"
+ sources."ieee754-1.2.1"
+ sources."indent-string-5.0.0"
+ sources."inherits-2.0.4"
+ (sources."inquirer-8.2.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."inquirer-autocomplete-prompt-1.4.0" // {
+ dependencies = [
+ sources."rxjs-6.6.7"
+ sources."tslib-1.14.1"
+ ];
+ })
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
- sources."is-fullwidth-code-point-3.0.0"
+ sources."is-core-module-2.8.0"
+ sources."is-fullwidth-code-point-4.0.0"
+ sources."is-interactive-1.0.0"
sources."is-plain-obj-1.1.0"
sources."is-stream-2.0.1"
+ sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."json-parse-even-better-errors-2.3.1"
sources."kind-of-6.0.3"
sources."lines-and-columns-1.1.6"
- sources."locate-path-5.0.0"
+ sources."locate-path-6.0.0"
sources."lodash-4.17.21"
+ sources."log-symbols-4.1.0"
sources."lru-cache-6.0.0"
sources."map-obj-4.3.0"
- (sources."meow-8.1.2" // {
+ (sources."meow-10.1.1" // {
dependencies = [
- sources."type-fest-0.18.1"
+ sources."type-fest-1.4.0"
];
})
sources."merge-stream-2.0.0"
@@ -89998,77 +92067,77 @@ in
sources."mute-stream-0.0.8"
sources."normalize-package-data-3.0.3"
sources."npm-run-path-4.0.1"
- sources."num-sort-2.1.0"
- sources."once-1.4.0"
+ sources."num-sort-3.0.0"
sources."onetime-5.1.2"
+ (sources."ora-5.4.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."os-tmpdir-1.0.2"
- sources."p-finally-2.0.1"
- sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
- sources."p-try-2.2.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
sources."parse-json-5.2.0"
sources."path-exists-4.0.0"
sources."path-key-3.1.1"
- sources."path-parse-1.0.7"
- sources."pid-port-0.1.1"
+ sources."pid-port-0.2.0"
(sources."process-exists-4.1.0" // {
dependencies = [
sources."ps-list-6.3.0"
];
})
sources."ps-list-7.2.0"
- sources."pump-3.0.0"
- sources."quick-lru-4.0.1"
- (sources."read-pkg-5.2.0" // {
+ sources."quick-lru-5.1.1"
+ (sources."read-pkg-6.0.0" // {
dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."normalize-package-data-2.5.0"
- sources."semver-5.7.1"
- sources."type-fest-0.6.0"
+ sources."type-fest-1.4.0"
];
})
- (sources."read-pkg-up-7.0.1" // {
+ (sources."read-pkg-up-8.0.0" // {
dependencies = [
- sources."type-fest-0.8.1"
+ sources."type-fest-1.4.0"
];
})
- sources."redent-3.0.0"
- sources."resolve-1.20.0"
+ sources."readable-stream-3.6.0"
+ sources."redent-4.0.0"
sources."restore-cursor-3.1.0"
sources."run-async-2.4.1"
- sources."rxjs-6.6.7"
+ sources."rxjs-7.4.0"
+ sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.5"
- sources."slice-ansi-3.0.0"
+ (sources."slice-ansi-5.0.0" // {
+ dependencies = [
+ sources."ansi-styles-6.1.0"
+ ];
+ })
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.10"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
+ sources."string-width-5.0.1"
+ sources."string_decoder-1.3.0"
+ sources."strip-ansi-7.0.1"
sources."strip-final-newline-2.0.0"
- sources."strip-indent-3.0.0"
+ sources."strip-indent-4.0.0"
sources."supports-color-7.2.0"
- (sources."taskkill-3.1.0" // {
- dependencies = [
- sources."execa-3.4.0"
- sources."get-stream-5.2.0"
- sources."human-signals-1.1.1"
- ];
- })
+ sources."taskkill-4.0.0"
sources."through-2.3.8"
sources."tmp-0.0.33"
- sources."trim-newlines-3.0.1"
- sources."tslib-1.14.1"
+ sources."trim-newlines-4.0.2"
+ sources."tslib-2.1.0"
sources."type-fest-0.21.3"
+ sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
+ sources."wcwidth-1.0.1"
sources."which-2.0.2"
- sources."wrappy-1.0.2"
sources."yallist-4.0.0"
sources."yargs-parser-20.2.9"
+ sources."yocto-queue-0.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -90092,7 +92161,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -90147,7 +92216,7 @@ in
sources."esprima-4.0.1"
sources."ethereum-bloom-filters-1.0.10"
sources."ethereum-cryptography-0.1.3"
- (sources."ethereumjs-util-7.1.2" // {
+ (sources."ethereumjs-util-7.1.3" // {
dependencies = [
sources."bn.js-5.2.0"
];
@@ -90157,7 +92226,6 @@ in
sources."bn.js-4.11.6"
];
})
- sources."ethjs-util-0.1.6"
sources."evp_bytestokey-1.0.3"
sources."extend-3.0.2"
sources."external-editor-3.1.0"
@@ -90246,7 +92314,11 @@ in
sources."require-main-filename-2.0.0"
sources."restore-cursor-3.1.0"
sources."ripemd160-2.0.2"
- sources."rlp-2.2.6"
+ (sources."rlp-2.2.7" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
sources."run-async-2.4.1"
sources."rxjs-6.6.7"
sources."safe-buffer-5.2.1"
@@ -90303,10 +92375,10 @@ in
flood = nodeEnv.buildNodePackage {
name = "flood";
packageName = "flood";
- version = "4.6.1";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flood/-/flood-4.6.1.tgz";
- sha512 = "OB5AykNCnRUU8KEvuMQhOArRldfCYfmboZWpV9B++7jUsq7cwo7p2W15+SEBQbTyPjD3mmwNH6hNw+geoy/+LA==";
+ url = "https://registry.npmjs.org/flood/-/flood-4.7.0.tgz";
+ sha512 = "MAm4Yok64VPa49DM+0TxBBP0mScW5ILGCsY/HJLbATjHEkJFnwD1mkPndruZxO1vXBaFdPzoLl+gYThAUxWQjA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -90793,10 +92865,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "3.14.0";
+ version = "3.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.14.0.tgz";
- sha512 = "1Az1EEQu0txRE8eZmOo9GOxRSjhJtFseinraiIEtSeHkYuM0/gjuoKVSrtmbBFNWdOZll6QYCO3sRl6sOrwb+g==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.14.2.tgz";
+ sha512 = "p3E6XyzwVPGpHd0AYVkvnPkZoEElWLWjAG10173k5aGtpoM6dIuJuSlgBPrjeev9PQ7y3oCoCO3zBjnGdB1/WQ==";
};
dependencies = [
(sources."@ardatan/aggregate-error-0.0.6" // {
@@ -90804,15 +92876,15 @@ in
sources."tslib-2.0.3"
];
})
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.4" // {
+ (sources."@babel/generator-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -90828,7 +92900,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-replace-supers-7.15.4"
@@ -90843,7 +92915,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-syntax-jsx-7.14.5"
@@ -90852,7 +92924,7 @@ in
sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-react-jsx-7.14.9"
sources."@babel/runtime-7.15.4"
- sources."@babel/standalone-7.15.7"
+ sources."@babel/standalone-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
@@ -90894,7 +92966,7 @@ in
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/node-fetch-2.5.12"
sources."@types/responselike-1.0.0"
sources."@types/unist-2.0.6"
@@ -90942,7 +93014,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."bytes-3.1.0"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
@@ -90953,7 +93025,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -91002,8 +93074,8 @@ in
];
})
sources."content-type-1.0.4"
- sources."contentful-management-7.42.0"
- sources."contentful-sdk-core-6.10.1"
+ sources."contentful-management-7.44.1"
+ sources."contentful-sdk-core-6.10.3"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.8.0" // {
dependencies = [
@@ -91021,7 +93093,7 @@ in
})
sources."crypto-random-string-2.0.0"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."debug-4.3.2"
sources."decamelize-1.2.0"
sources."decode-uri-component-0.2.0"
@@ -91052,7 +93124,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -91142,7 +93214,7 @@ in
sources."globals-11.12.0"
sources."got-11.8.2"
sources."graceful-fs-4.2.8"
- sources."graphql-15.6.0"
+ sources."graphql-15.6.1"
sources."graphql-compose-7.25.1"
sources."graphql-subscriptions-1.2.1"
sources."graphql-type-json-0.3.2"
@@ -91182,7 +93254,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-decimal-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -91241,6 +93313,7 @@ in
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-2.0.4"
sources."loose-envify-1.4.0"
sources."lower-case-2.0.2"
@@ -91290,7 +93363,7 @@ in
sources."node-eta-0.9.0"
sources."node-fetch-2.6.5"
sources."node-object-hash-2.3.10"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
@@ -91343,7 +93416,7 @@ in
sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."peek-readable-4.0.1"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pkg-dir-4.2.0"
sources."prepend-http-2.0.0"
@@ -91357,7 +93430,7 @@ in
];
})
sources."progress-2.0.3"
- sources."prompts-2.4.1"
+ sources."prompts-2.4.2"
sources."prop-types-15.7.2"
sources."proper-lockfile-4.1.2"
sources."protocols-1.4.8"
@@ -91579,7 +93652,7 @@ in
sha512 = "1U3GkAgbxKpV5WFwbpePThlChVdF4IpaBQBpFGPKzCwknugWPhz8s3ytBkp+YmAj1zSdnfBR43CV04tyM02m2w==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -91595,14 +93668,14 @@ in
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.6.4"
- sources."@octokit/plugin-paginate-rest-2.16.7"
+ sources."@octokit/openapi-types-11.2.0"
+ sources."@octokit/plugin-paginate-rest-2.17.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.11.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
sources."@octokit/request-5.6.2"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.11.4"
- sources."@octokit/types-6.31.3"
+ sources."@octokit/rest-18.12.0"
+ sources."@octokit/types-6.34.0"
sources."@types/normalize-package-data-2.4.1"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
@@ -91640,7 +93713,7 @@ in
sources."inherits-2.0.4"
sources."interpret-1.4.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-object-5.0.0"
sources."is-stream-2.0.1"
@@ -91945,7 +94018,7 @@ in
];
})
sources."sodium-chloride-1.1.2"
- sources."sodium-native-3.2.1"
+ sources."sodium-native-3.3.0"
sources."split-buffer-1.0.0"
sources."ssb-avatar-0.2.0"
sources."ssb-caps-1.1.0"
@@ -92023,7 +94096,7 @@ in
sha512 = "8PVebGkXGXlNE2T7You4gzX4SFiULZja38LInfmnJQFfMgmeOT8br/WpirCkqhBVA28tTMYflQj5QGoeGLfTUQ==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -92158,7 +94231,7 @@ in
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-8.1.5"
+ sources."inquirer-8.2.0"
(sources."inquirer-autocomplete-prompt-1.4.0" // {
dependencies = [
sources."rxjs-6.6.7"
@@ -92168,7 +94241,7 @@ in
sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-installed-globally-0.4.0"
sources."is-interactive-1.0.0"
@@ -92295,7 +94368,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."run-async-2.4.1"
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -92342,7 +94415,7 @@ in
sources."url-parse-lax-3.0.0"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
- sources."vm2-3.9.3"
+ sources."vm2-3.9.4"
sources."wcwidth-1.0.1"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
@@ -92407,7 +94480,7 @@ in
};
dependencies = [
sources."@ardatan/aggregate-error-0.0.6"
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -92450,8 +94523,9 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.5.0" // {
+ (sources."@graphql-tools/import-6.5.4" // {
dependencies = [
+ sources."@graphql-tools/utils-8.3.0"
sources."tslib-2.3.1"
];
})
@@ -92479,7 +94553,7 @@ in
(sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
sources."@graphql-tools/merge-8.1.2"
- sources."@graphql-tools/utils-8.2.4"
+ sources."@graphql-tools/utils-8.3.0"
sources."tslib-2.3.1"
];
})
@@ -92510,7 +94584,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -93002,7 +95076,7 @@ in
sources."ini-1.3.8"
sources."interpret-1.1.0"
sources."is-absolute-1.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
@@ -93069,10 +95143,10 @@ in
meshcommander = nodeEnv.buildNodePackage {
name = "meshcommander";
packageName = "meshcommander";
- version = "0.9.0-d";
+ version = "0.9.1-a";
src = fetchurl {
- url = "https://registry.npmjs.org/meshcommander/-/meshcommander-0.9.0-d.tgz";
- sha512 = "sA4XtYUB8PZXozUr5G+OLnGyWOXm60nIH7EQUMYQAPHJQuhi52nMHKi6XYOQtByGR+hpeLK0vmi/dKQCj/7oFg==";
+ url = "https://registry.npmjs.org/meshcommander/-/meshcommander-0.9.1-a.tgz";
+ sha512 = "y6T69luPREY/22vvm0MKauIN85BXoSy1zSEAmZc0lKkqc37JY12M16kGm5wF55uXs8LAlreOVY+4lrfrPnQtxw==";
};
dependencies = [
sources."accepts-1.3.7"
@@ -93268,7 +95342,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.9.4"
+ sources."systeminformation-5.9.7"
sources."term-canvas-0.0.5"
sources."type-fest-0.21.3"
sources."wordwrap-0.0.3"
@@ -93506,7 +95580,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -93908,7 +95982,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -94186,7 +96260,7 @@ in
sha512 = "ciCpeMEGZ7CbfK+MgK8ykV+wzUHz5he06mAiq8OQLuYN6pxFxZDAhwPwByirOYwdF3GV2M4s7spq2A/g/XMncQ==";
};
dependencies = [
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."async-3.2.0"
@@ -94287,13 +96361,13 @@ in
hsd = nodeEnv.buildNodePackage {
name = "hsd";
packageName = "hsd";
- version = "2.4.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hsd/-/hsd-2.4.0.tgz";
- sha512 = "DoHhX+opX1RVMCtGgBedvbNqTde4otlrc6HZ+Jhd8sJyokJ2BB8EUl2OZYXrsznGytuZ51D+zGvLv4T9g3GXPw==";
+ url = "https://registry.npmjs.org/hsd/-/hsd-3.0.0.tgz";
+ sha512 = "FjdNbLW3VXv36o7axOQXbPFBCqgO6tbKd8dCj7b/7p3yA4Vm0RnPS9XTEw1zrZcY0Sp03aj7BK8WjfunOccZyw==";
};
dependencies = [
- sources."bcfg-0.1.6"
+ sources."bcfg-0.1.7"
sources."bcrypto-5.4.0"
sources."bcurl-0.1.9"
sources."bdb-1.3.0"
@@ -94303,11 +96377,11 @@ in
sources."bfilter-1.0.5"
sources."bheep-0.1.5"
sources."binet-0.3.6"
- sources."blgr-0.1.9"
+ sources."blgr-0.2.0"
sources."blru-0.1.6"
sources."blst-0.1.5"
sources."bmutex-0.1.6"
- sources."bns-0.14.0"
+ sources."bns-0.15.0"
sources."brq-0.1.8"
sources."bs32-0.1.6"
sources."bsert-0.0.10"
@@ -94321,7 +96395,7 @@ in
sources."bval-0.1.6"
sources."bweb-0.1.10"
sources."goosig-0.10.0"
- sources."hs-client-0.0.9"
+ sources."hs-client-0.0.10"
sources."loady-0.0.5"
sources."mrmr-0.1.10"
sources."n64-0.2.10"
@@ -94368,13 +96442,13 @@ in
hs-client = nodeEnv.buildNodePackage {
name = "hs-client";
packageName = "hs-client";
- version = "0.0.9";
+ version = "0.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.9.tgz";
- sha512 = "TAsexmpPhSVdCQ1iiX4bBnuqlThTSdGz/YKq+vjLSS1TZ2TwKxERJ8vZh1Wd6GGaMGLZl99uQR+2wUyk4HLSbg==";
+ url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.10.tgz";
+ sha512 = "15tfeQEMRS1FZA0q9gFbQ1jYs8v4z9oKw9xFwVEyRuckn72hoVAglN4IrFxkOCDMYV7TWCY/nO/yNZp5njYFBw==";
};
dependencies = [
- sources."bcfg-0.1.6"
+ sources."bcfg-0.1.7"
sources."bcurl-0.1.9"
sources."brq-0.1.8"
sources."bsert-0.0.10"
@@ -94457,7 +96531,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -94466,7 +96540,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1000.0"
+ sources."aws-sdk-2.1009.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -95003,8 +97077,8 @@ in
sha512 = "56gjTrj9SMfPkbGANfqtGYeY3G5KmCkpgEYlKkmiDNG+SpQtLT9/53gt/9CbYd5iT9GgP+IvGXwDWplgCz3NnA==";
};
dependencies = [
- sources."@jcubic/lily-0.2.0"
- sources."@types/jquery-3.5.6"
+ sources."@jcubic/lily-0.3.0"
+ sources."@types/jquery-3.5.7"
sources."@types/sizzle-2.3.3"
sources."ansidec-0.3.4"
sources."arch-2.2.0"
@@ -95020,6 +97094,7 @@ in
sources."execa-1.0.0"
sources."fs-extra-0.24.0"
sources."fs.realpath-1.0.0"
+ sources."fsevents-2.3.2"
sources."get-stream-4.1.0"
sources."glob-7.2.0"
sources."graceful-fs-4.2.8"
@@ -95032,7 +97107,7 @@ in
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jquery-3.6.0"
- sources."jquery.terminal-2.29.2"
+ sources."jquery.terminal-2.29.4"
sources."jsonfile-2.4.0"
sources."keyboardevent-key-polyfill-1.1.0"
sources."line-reader-0.4.0"
@@ -95389,9 +97464,9 @@ in
dependencies = [
sources."@iarna/toml-2.2.5"
sources."@msgpack/msgpack-2.7.1"
- sources."@ot-builder/bin-composite-types-1.1.2"
- sources."@ot-builder/bin-util-1.1.2"
- (sources."@ot-builder/cli-help-shower-1.1.2" // {
+ sources."@ot-builder/bin-composite-types-1.2.0"
+ sources."@ot-builder/bin-util-1.2.0"
+ (sources."@ot-builder/cli-help-shower-1.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -95401,37 +97476,39 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@ot-builder/cli-proc-1.1.2"
- sources."@ot-builder/cli-shared-1.1.2"
- sources."@ot-builder/common-impl-1.1.2"
- sources."@ot-builder/errors-1.1.2"
- sources."@ot-builder/io-bin-cff-1.1.2"
- sources."@ot-builder/io-bin-encoding-1.1.2"
- sources."@ot-builder/io-bin-ext-private-1.1.2"
- sources."@ot-builder/io-bin-font-1.1.2"
- sources."@ot-builder/io-bin-glyph-store-1.1.2"
- sources."@ot-builder/io-bin-layout-1.1.2"
- sources."@ot-builder/io-bin-metadata-1.1.2"
- sources."@ot-builder/io-bin-metric-1.1.2"
- sources."@ot-builder/io-bin-name-1.1.2"
- sources."@ot-builder/io-bin-sfnt-1.1.2"
- sources."@ot-builder/io-bin-ttf-1.1.2"
- sources."@ot-builder/ot-1.1.2"
- sources."@ot-builder/ot-encoding-1.1.2"
- sources."@ot-builder/ot-ext-private-1.1.2"
- sources."@ot-builder/ot-glyphs-1.1.2"
- sources."@ot-builder/ot-layout-1.1.2"
- sources."@ot-builder/ot-metadata-1.1.2"
- sources."@ot-builder/ot-name-1.1.2"
- sources."@ot-builder/ot-sfnt-1.1.2"
- sources."@ot-builder/ot-standard-glyph-namer-1.1.2"
- sources."@ot-builder/prelude-1.1.2"
- sources."@ot-builder/primitive-1.1.2"
- sources."@ot-builder/rectify-1.1.2"
- sources."@ot-builder/stat-glyphs-1.1.2"
- sources."@ot-builder/trace-1.1.2"
- sources."@ot-builder/var-store-1.1.2"
- sources."@ot-builder/variance-1.1.2"
+ sources."@ot-builder/cli-proc-1.2.0"
+ sources."@ot-builder/cli-shared-1.2.0"
+ sources."@ot-builder/common-impl-1.2.0"
+ sources."@ot-builder/errors-1.2.0"
+ sources."@ot-builder/io-bin-cff-1.2.0"
+ sources."@ot-builder/io-bin-encoding-1.2.0"
+ sources."@ot-builder/io-bin-ext-private-1.2.0"
+ sources."@ot-builder/io-bin-font-1.2.0"
+ sources."@ot-builder/io-bin-glyph-store-1.2.0"
+ sources."@ot-builder/io-bin-layout-1.2.0"
+ sources."@ot-builder/io-bin-metadata-1.2.0"
+ sources."@ot-builder/io-bin-metric-1.2.0"
+ sources."@ot-builder/io-bin-name-1.2.0"
+ sources."@ot-builder/io-bin-sfnt-1.2.0"
+ sources."@ot-builder/io-bin-ttf-1.2.0"
+ sources."@ot-builder/io-bin-vtt-private-1.2.0"
+ sources."@ot-builder/ot-1.2.0"
+ sources."@ot-builder/ot-encoding-1.2.0"
+ sources."@ot-builder/ot-ext-private-1.2.0"
+ sources."@ot-builder/ot-glyphs-1.2.0"
+ sources."@ot-builder/ot-layout-1.2.0"
+ sources."@ot-builder/ot-metadata-1.2.0"
+ sources."@ot-builder/ot-name-1.2.0"
+ sources."@ot-builder/ot-sfnt-1.2.0"
+ sources."@ot-builder/ot-standard-glyph-namer-1.2.0"
+ sources."@ot-builder/ot-vtt-private-1.2.0"
+ sources."@ot-builder/prelude-1.2.0"
+ sources."@ot-builder/primitive-1.2.0"
+ sources."@ot-builder/rectify-1.2.0"
+ sources."@ot-builder/stat-glyphs-1.2.0"
+ sources."@ot-builder/trace-1.2.0"
+ sources."@ot-builder/var-store-1.2.0"
+ sources."@ot-builder/variance-1.2.0"
sources."@unicode/unicode-13.0.0-1.2.1"
sources."@xmldom/xmldom-0.7.5"
sources."aglfn-1.0.2"
@@ -95513,8 +97590,8 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
- sources."ot-builder-1.1.2"
- sources."otb-ttc-bundle-1.1.2"
+ sources."ot-builder-1.2.0"
+ sources."otb-ttc-bundle-1.2.0"
sources."passerror-1.1.1"
sources."patel-0.35.1"
sources."path-is-absolute-1.0.1"
@@ -95776,7 +97853,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1000.0" // {
+ (sources."aws-sdk-2.1009.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -95937,7 +98014,7 @@ in
sources."domelementtype-2.2.0"
sources."domexception-1.0.1"
sources."domhandler-3.3.0"
- sources."dompurify-2.3.1"
+ sources."dompurify-2.3.3"
(sources."domutils-2.8.0" // {
dependencies = [
sources."domhandler-4.2.2"
@@ -96151,7 +98228,7 @@ in
sources."md5-2.3.0"
sources."md5-file-4.0.0"
sources."mdurl-1.0.1"
- sources."mermaid-8.13.2"
+ sources."mermaid-8.13.3"
sources."mime-db-1.50.0"
sources."mime-types-2.1.33"
sources."mimic-response-2.1.0"
@@ -96170,7 +98247,7 @@ in
sources."ms-2.1.3"
sources."multiparty-4.2.2"
sources."mustache-4.2.0"
- sources."nanoid-3.1.28"
+ sources."nanoid-3.1.30"
sources."napi-build-utils-1.0.2"
sources."ndarray-1.0.19"
sources."ndarray-pack-1.2.1"
@@ -96390,7 +98467,7 @@ in
sources."toidentifier-1.0.0"
sources."tough-cookie-3.0.1"
sources."tr46-1.0.1"
- sources."tree-kit-0.7.3"
+ sources."tree-kit-0.7.4"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -96429,7 +98506,7 @@ in
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-7.1.0"
sources."which-2.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."word-wrap-1.2.3"
sources."wordwrapjs-3.0.0"
(sources."wrap-ansi-3.0.1" // {
@@ -96530,7 +98607,7 @@ in
sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw==";
};
dependencies = [
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
sources."catharsis-0.9.0"
@@ -96725,10 +98802,10 @@ in
json-server = nodeEnv.buildNodePackage {
name = "json-server";
packageName = "json-server";
- version = "0.16.3";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-server/-/json-server-0.16.3.tgz";
- sha512 = "tbsBONiefH7SR5EhSmK4EzwP3kCHuOduUq5hWAQjCwXTva4OBeKVcPrciHNWOK/+12ygtUnjuWcAxuHgqTuBLA==";
+ url = "https://registry.npmjs.org/json-server/-/json-server-0.17.0.tgz";
+ sha512 = "+e/nW0mf666j1yTK+5dRx7hgxq5wJTkc5QhTYa/cBfD6vLlQWHfB4l8XKPgzeO55A8Hqm38g44OtZ5SooXi6MQ==";
};
dependencies = [
sources."@sindresorhus/is-0.14.0"
@@ -96855,7 +98932,7 @@ in
];
})
sources."ms-2.0.0"
- sources."nanoid-3.1.28"
+ sources."nanoid-3.1.30"
sources."negotiator-0.6.2"
sources."normalize-url-4.5.1"
sources."object-assign-4.1.1"
@@ -96931,7 +99008,7 @@ in
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-16.2.0"
+ sources."yargs-17.2.1"
sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
@@ -97161,7 +99238,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -97819,10 +99896,10 @@ in
sha512 = "hbhRogUYIulfkBTZT7xoPrCYhRBnBoqbbL4fszWD0ReFGUxU+LYBr3dwKdAluaDQ/ynT9/7C+Lf7pPNW4gSx4Q==";
};
dependencies = [
- sources."@types/component-emitter-1.2.10"
+ sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -97983,14 +100060,14 @@ in
};
dependencies = [
sources."@babel/cli-7.15.7"
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.4"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
@@ -98002,7 +100079,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-replace-supers-7.15.4"
@@ -98012,8 +100089,8 @@ in
sources."@babel/helper-validator-option-7.14.5"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/node-7.15.4"
- sources."@babel/parser-7.15.7"
+ sources."@babel/node-7.15.8"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-syntax-jsx-7.14.5"
sources."@babel/plugin-transform-react-jsx-7.14.9"
sources."@babel/register-7.15.3"
@@ -98080,12 +100157,12 @@ in
sources."brace-expansion-1.1.11"
sources."browser-or-node-1.3.0"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-from-1.1.2"
sources."bytes-3.1.0"
sources."bytesish-0.4.4"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-1.3.0"
@@ -98103,7 +100180,7 @@ in
sources."convert-source-map-1.8.0"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.18.1"
+ sources."core-js-3.18.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
@@ -98136,7 +100213,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."enquirer-2.3.6"
@@ -98161,7 +100238,7 @@ in
sources."ms-2.0.0"
];
})
- sources."express-validator-6.12.2"
+ sources."express-validator-6.13.0"
sources."fast-levenshtein-2.0.6"
sources."filter-obj-1.1.0"
(sources."finalhandler-1.1.2" // {
@@ -98268,7 +100345,7 @@ in
sources."node-fetch-2.6.5"
sources."node-localstorage-1.3.1"
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."nwsapi-2.2.0"
sources."object-assign-4.1.1"
sources."object-inspect-1.11.0"
@@ -98288,7 +100365,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."pify-4.0.1"
sources."pirates-4.0.1"
sources."pkg-dir-3.0.0"
@@ -99007,7 +101084,7 @@ in
sha512 = "DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -99118,7 +101195,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/ci-detect-1.3.0"
+ sources."@npmcli/ci-detect-1.4.0"
sources."@npmcli/fs-1.0.0"
sources."@npmcli/git-2.1.0"
sources."@npmcli/installed-package-contents-1.0.7"
@@ -99134,19 +101211,19 @@ in
];
})
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.6.4"
+ sources."@octokit/openapi-types-11.2.0"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-2.16.7"
+ sources."@octokit/plugin-paginate-rest-2.17.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.11.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
(sources."@octokit/request-5.6.2" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.11.4"
- sources."@octokit/types-6.31.3"
+ sources."@octokit/rest-18.12.0"
+ sources."@octokit/types-6.34.0"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
@@ -99396,7 +101473,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.4"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -99726,14 +101803,7 @@ in
sources."whatwg-url-8.7.0"
sources."which-2.0.2"
sources."which-boxed-primitive-1.0.2"
- (sources."wide-align-1.1.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."wide-align-1.1.5"
sources."wordwrap-1.0.0"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
@@ -100693,10 +102763,10 @@ in
version = "1.10.1";
src = ../interpreters/clojurescript/lumo;
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/core-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
sources."@babel/helper-compilation-targets-7.15.4"
@@ -100709,7 +102779,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -100726,10 +102796,10 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -100785,15 +102855,15 @@ in
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
- sources."@babel/plugin-transform-runtime-7.15.0"
+ sources."@babel/plugin-transform-runtime-7.15.8"
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.6"
+ sources."@babel/preset-env-7.15.8"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-stage-2-7.8.3"
sources."@babel/runtime-7.15.4"
@@ -100820,7 +102890,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -100977,7 +103047,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.2"
@@ -100993,7 +103063,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.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -101064,7 +103134,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -101116,7 +103186,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -101291,7 +103361,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-1.1.6"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-deflate-1.0.0"
sources."is-descriptor-1.0.2"
@@ -101316,7 +103386,7 @@ in
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isstream-0.1.2"
- sources."istanbul-lib-coverage-3.0.1"
+ sources."istanbul-lib-coverage-3.0.2"
sources."istanbul-lib-instrument-4.0.3"
sources."jest-haste-map-25.5.1"
sources."jest-regex-util-25.2.6"
@@ -101419,7 +103489,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -101470,7 +103540,7 @@ in
sources."pbkdf2-3.1.2"
sources."peek-stream-1.1.3"
sources."performance-now-2.1.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-1.0.0"
@@ -102276,7 +104346,7 @@ in
sources."inherits-2.0.4"
sources."inquirer-0.12.0"
sources."interpret-1.4.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.5"
@@ -102491,7 +104561,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -102584,7 +104654,7 @@ in
sources."debug-4.3.1"
sources."delaunator-5.0.0"
sources."devtools-protocol-0.0.901419"
- sources."dompurify-2.3.1"
+ sources."dompurify-2.3.3"
sources."end-of-stream-1.4.4"
sources."extract-zip-2.0.1"
sources."fd-slicer-1.1.0"
@@ -102604,7 +104674,7 @@ in
sources."khroma-1.4.1"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."mermaid-8.13.2"
+ sources."mermaid-8.13.3"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
@@ -102654,10 +104724,10 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "9.1.2";
+ version = "9.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-9.1.2.tgz";
- sha512 = "ta3LtJ+63RIBP03VBjMGtSqbe6cWXRejF9SyM9Zyli1CKZJZ+vfCTj3oW24V7wAphMJdpOFLoMI3hjJ1LWbs0w==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-9.1.3.tgz";
+ sha512 = "Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw==";
};
dependencies = [
sources."@ungap/promise-all-settled-1.1.2"
@@ -102965,20 +105035,20 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "6.9.30";
+ version = "6.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.30.tgz";
- sha512 = "CM3k7tUgfcaTjO+9xP+/C+cOF/Ke6464GV3EeJow3H1IEzoIufCBB6s6a0wUsVVD6+cKOs3OwQvLCQv03pftYw==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.13.2.tgz";
+ sha512 = "GKisG/cEDcnB4Okmu+jZJqlrzHRD3s4slvhxT1tJ8QhMRVTSz4oefcdfRdc8YOagfVHKQ0OY8i2MgUIVmuRh9A==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.4"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
@@ -102999,7 +105069,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -103018,12 +105088,13 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
+ sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -103078,13 +105149,13 @@ in
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.6" // {
+ (sources."@babel/preset-env-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -103094,16 +105165,17 @@ in
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
- sources."@bugsnag/browser-7.11.0"
- sources."@bugsnag/core-7.11.0"
+ sources."@bugsnag/browser-7.13.2"
+ sources."@bugsnag/core-7.13.2"
sources."@bugsnag/cuid-3.0.0"
- sources."@bugsnag/js-7.11.0"
- sources."@bugsnag/node-7.11.0"
+ sources."@bugsnag/js-7.13.2"
+ sources."@bugsnag/node-7.13.2"
sources."@bugsnag/safe-json-stringify-6.0.0"
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-26.6.2"
+ sources."@mapbox/node-pre-gyp-1.0.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-18.13.7" // {
+ (sources."@netlify/build-18.17.2" // {
dependencies = [
sources."resolve-2.0.0-next.3"
];
@@ -103130,13 +105202,13 @@ in
sources."to-regex-range-5.0.1"
];
})
- (sources."@netlify/config-15.6.4" // {
+ (sources."@netlify/config-15.7.2" // {
dependencies = [
sources."dot-prop-5.3.0"
];
})
sources."@netlify/esbuild-0.13.6"
- sources."@netlify/framework-info-5.9.2"
+ sources."@netlify/framework-info-5.11.0"
sources."@netlify/functions-utils-2.0.2"
(sources."@netlify/git-utils-2.0.2" // {
dependencies = [
@@ -103160,16 +105232,16 @@ in
sources."@netlify/local-functions-proxy-openbsd-x64-1.1.1"
sources."@netlify/local-functions-proxy-win32-ia32-1.1.1"
sources."@netlify/local-functions-proxy-win32-x64-1.1.1"
- sources."@netlify/open-api-2.5.0"
+ sources."@netlify/open-api-2.5.1"
(sources."@netlify/plugin-edge-handlers-1.11.22" // {
dependencies = [
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
];
})
- sources."@netlify/plugins-list-4.0.0"
- sources."@netlify/routing-local-proxy-0.33.2"
+ sources."@netlify/plugins-list-4.0.1"
+ sources."@netlify/routing-local-proxy-0.34.1"
sources."@netlify/run-utils-2.0.1"
- (sources."@netlify/zip-it-and-ship-it-4.23.3" // {
+ (sources."@netlify/zip-it-and-ship-it-4.25.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -103202,13 +105274,9 @@ in
})
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."has-flag-4.0.0"
+ sources."has-flag-3.0.0"
sources."strip-ansi-5.2.0"
- (sources."supports-color-5.5.0" // {
- dependencies = [
- sources."has-flag-3.0.0"
- ];
- })
+ sources."supports-color-5.5.0"
];
})
sources."@oclif/command-1.8.0"
@@ -103241,6 +105309,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
+ sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
@@ -103257,6 +105326,7 @@ in
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
sources."fs-extra-7.0.1"
+ sources."has-flag-3.0.0"
sources."indent-string-3.2.0"
sources."is-wsl-1.1.0"
sources."semver-5.7.1"
@@ -103281,18 +105351,18 @@ in
];
})
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-10.6.4"
- sources."@octokit/plugin-paginate-rest-2.16.7"
+ sources."@octokit/openapi-types-11.2.0"
+ sources."@octokit/plugin-paginate-rest-2.17.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.11.4"
+ sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
(sources."@octokit/request-5.6.2" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.11.4"
- sources."@octokit/types-6.31.3"
+ sources."@octokit/rest-18.12.0"
+ sources."@octokit/types-6.34.0"
sources."@rollup/plugin-babel-5.3.0"
(sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
@@ -103325,7 +105395,7 @@ in
sources."@types/istanbul-reports-3.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/node-fetch-2.5.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-1.17.1"
@@ -103337,7 +105407,22 @@ in
sources."@typescript-eslint/typescript-estree-4.33.0"
sources."@typescript-eslint/visitor-keys-4.33.0"
sources."@ungap/from-entries-0.2.1"
+ (sources."@vercel/nft-0.15.1" // {
+ dependencies = [
+ sources."braces-3.0.2"
+ sources."estree-walker-2.0.2"
+ sources."fill-range-7.0.1"
+ sources."is-number-7.0.0"
+ sources."micromatch-4.0.4"
+ sources."to-regex-range-5.0.1"
+ ];
+ })
+ sources."abbrev-1.1.1"
sources."accepts-1.3.7"
+ sources."acorn-8.5.0"
+ sources."acorn-class-fields-1.0.0"
+ sources."acorn-private-class-elements-1.0.0"
+ sources."acorn-static-class-features-1.0.0"
sources."agent-base-6.0.2"
(sources."aggregate-error-3.1.0" // {
dependencies = [
@@ -103353,7 +105438,6 @@ in
sources."camelcase-5.3.1"
sources."chalk-3.0.0"
sources."get-stream-5.2.0"
- sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
@@ -103368,17 +105452,19 @@ in
sources."ansicolors-0.3.2"
sources."any-observable-0.3.0"
sources."anymatch-3.1.2"
+ sources."aproba-1.2.0"
(sources."archive-type-4.0.0" // {
dependencies = [
sources."file-type-4.4.0"
];
})
- sources."archiver-5.3.0"
- (sources."archiver-utils-2.1.0" // {
+ (sources."archiver-5.3.0" // {
dependencies = [
- sources."readable-stream-2.3.7"
+ sources."readable-stream-3.6.0"
];
})
+ sources."archiver-utils-2.1.0"
+ sources."are-we-there-yet-1.1.7"
sources."argparse-2.0.1"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
@@ -103415,7 +105501,12 @@ in
sources."before-after-hook-2.2.2"
sources."better-opn-2.1.1"
sources."binary-extensions-2.2.0"
- sources."bl-4.1.0"
+ sources."bindings-1.5.0"
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."blueimp-md5-2.19.0"
(sources."body-parser-1.19.0" // {
dependencies = [
@@ -103436,7 +105527,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -103460,12 +105551,11 @@ in
sources."call-me-maybe-1.0.1"
sources."callsite-1.0.0"
sources."camelcase-6.2.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."cardinal-2.1.1"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
- sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
];
})
@@ -103479,6 +105569,7 @@ in
sources."to-regex-range-5.0.1"
];
})
+ sources."chownr-2.0.0"
sources."ci-info-3.2.0"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -103516,7 +105607,6 @@ in
sources."ansi-styles-4.3.0"
sources."argparse-1.0.10"
sources."extract-stack-2.0.0"
- sources."has-flag-4.0.0"
sources."js-yaml-3.14.1"
(sources."supports-hyperlinks-2.2.0" // {
dependencies = [
@@ -103552,7 +105642,11 @@ in
sources."common-path-prefix-3.0.0"
sources."commondir-1.0.1"
sources."component-emitter-1.3.0"
- sources."compress-commons-4.1.1"
+ (sources."compress-commons-4.1.1" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."concat-map-0.0.1"
sources."concordance-5.0.4"
(sources."configstore-5.0.1" // {
@@ -103560,6 +105654,7 @@ in
sources."dot-prop-5.3.0"
];
})
+ sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.3"
sources."content-type-1.0.4"
sources."convert-source-map-1.8.0"
@@ -103569,11 +105664,10 @@ in
(sources."copy-template-dir-1.4.0" // {
dependencies = [
sources."pump-1.0.3"
- sources."readable-stream-2.3.7"
sources."readdirp-2.2.1"
];
})
- (sources."core-js-compat-3.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -103587,7 +105681,11 @@ in
];
})
sources."crc-32-1.2.0"
- sources."crc32-stream-4.0.2"
+ (sources."crc32-stream-4.0.2" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."cyclist-1.0.1"
@@ -103617,7 +105715,6 @@ in
sources."bl-1.2.3"
sources."file-type-5.2.0"
sources."is-stream-1.1.0"
- sources."readable-stream-2.3.7"
sources."tar-stream-1.6.2"
];
})
@@ -103653,9 +105750,11 @@ in
];
})
sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
sources."depd-1.1.2"
sources."deprecation-2.3.1"
sources."destroy-1.0.4"
+ sources."detect-libc-1.0.3"
sources."detective-amd-3.1.0"
sources."detective-cjs-3.1.1"
sources."detective-es6-2.2.0"
@@ -103711,7 +105810,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -103722,7 +105821,7 @@ in
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.6"
- sources."es-module-lexer-0.9.2"
+ sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
@@ -103809,7 +105908,6 @@ in
sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
sources."camelcase-5.3.1"
- sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
(sources."jest-validate-25.5.0" // {
dependencies = [
@@ -103828,6 +105926,7 @@ in
})
sources."file-size-0.0.5"
sources."file-type-11.1.0"
+ sources."file-uri-to-path-1.0.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-3.0.0"
(sources."fill-range-4.0.0" // {
@@ -103843,7 +105942,11 @@ in
})
sources."find-up-5.0.0"
sources."flatten-1.0.3"
- sources."flush-write-stream-2.0.0"
+ (sources."flush-write-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."fn.name-1.1.0"
sources."folder-walker-3.2.0"
sources."follow-redirects-1.14.4"
@@ -103852,18 +105955,23 @@ in
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
sources."fresh-0.5.2"
- (sources."from2-2.3.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- ];
- })
+ sources."from2-2.3.0"
sources."from2-array-0.0.4"
sources."fs-constants-1.0.0"
sources."fs-extra-8.1.0"
+ sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
sources."fuzzy-0.1.3"
+ (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."gensync-1.0.0-beta.2"
sources."get-amd-module-type-3.0.0"
sources."get-caller-file-2.0.5"
@@ -103919,7 +106027,7 @@ in
sources."ansi-regex-2.1.1"
];
})
- sources."has-flag-3.0.0"
+ sources."has-flag-4.0.0"
(sources."has-glob-1.0.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -103928,6 +106036,7 @@ in
sources."has-symbol-support-x-1.4.2"
sources."has-symbols-1.0.2"
sources."has-to-string-tag-x-1.4.1"
+ sources."has-unicode-2.0.1"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
@@ -103947,11 +106056,7 @@ in
})
sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
- (sources."http-call-5.3.0" // {
- dependencies = [
- sources."parse-json-4.0.0"
- ];
- })
+ sources."http-call-5.3.0"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -103973,6 +106078,7 @@ in
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-4.0.6"
+ sources."ignore-walk-3.0.4"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -103990,6 +106096,7 @@ in
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
sources."figures-2.0.0"
+ sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
(sources."string-width-2.1.1" // {
dependencies = [
@@ -104017,7 +106124,7 @@ in
sources."ci-info-2.0.0"
];
})
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-docker-2.2.1"
@@ -104061,7 +106168,6 @@ in
sources."jest-validate-26.6.2"
(sources."jest-worker-26.6.2" // {
dependencies = [
- sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
];
})
@@ -104087,11 +106193,7 @@ in
];
})
sources."latest-version-5.1.0"
- (sources."lazystream-1.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- ];
- })
+ sources."lazystream-1.0.0"
sources."leven-3.1.0"
sources."levn-0.3.0"
sources."lines-and-columns-1.1.6"
@@ -104123,12 +106225,12 @@ in
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
sources."figures-2.0.0"
+ sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
(sources."load-json-file-5.3.0" // {
dependencies = [
- sources."parse-json-4.0.0"
sources."type-fest-0.3.1"
];
})
@@ -104204,6 +106306,8 @@ in
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
+ sources."minipass-3.1.5"
+ sources."minizlib-2.1.2"
(sources."mixin-deep-1.3.2" // {
dependencies = [
sources."is-extendable-1.0.1"
@@ -104222,12 +106326,18 @@ in
];
})
sources."mute-stream-0.0.7"
- sources."nanoid-3.1.28"
+ sources."nanoid-3.1.30"
sources."nanomatch-1.2.13"
sources."natural-orderby-2.0.3"
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ sources."ms-2.1.3"
+ ];
+ })
sources."negotiator-0.6.2"
sources."nested-error-stacks-2.1.0"
- (sources."netlify-8.0.1" // {
+ (sources."netlify-8.0.2" // {
dependencies = [
sources."qs-6.10.1"
];
@@ -104237,7 +106347,22 @@ in
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.5"
- sources."node-releases-1.1.77"
+ sources."node-gyp-build-4.3.0"
+ (sources."node-pre-gyp-0.13.0" // {
+ dependencies = [
+ sources."chownr-1.1.4"
+ sources."fs-minipass-1.2.7"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
+ sources."nopt-4.0.3"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.2.1"
+ sources."semver-5.7.1"
+ sources."tar-4.4.19"
+ sources."yallist-3.1.1"
+ ];
+ })
+ sources."node-releases-2.0.0"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
dependencies = [
@@ -104246,7 +106371,6 @@ in
sources."ansi-styles-4.3.0"
sources."camelcase-5.3.1"
sources."chalk-3.0.0"
- sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
@@ -104255,6 +106379,7 @@ in
];
})
sources."noop2-2.0.0"
+ sources."nopt-5.0.0"
(sources."normalize-node-version-10.0.0" // {
dependencies = [
sources."@jest/types-25.5.0"
@@ -104262,7 +106387,6 @@ in
sources."ansi-styles-4.3.0"
sources."camelcase-5.3.1"
sources."chalk-3.0.0"
- sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
@@ -104277,8 +106401,11 @@ in
})
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
+ sources."npm-bundled-1.1.2"
sources."npm-normalize-package-bin-1.0.1"
+ sources."npm-packlist-1.4.8"
sources."npm-run-path-4.0.1"
+ sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
(sources."object-copy-0.1.0" // {
@@ -104328,8 +106455,10 @@ in
sources."restore-cursor-3.1.0"
];
})
+ sources."os-homedir-1.0.2"
sources."os-name-4.0.1"
sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
(sources."p-all-2.1.0" // {
dependencies = [
sources."p-map-2.1.0"
@@ -104389,14 +106518,10 @@ in
sources."to-readable-stream-1.0.0"
];
})
- (sources."parallel-transform-1.2.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- ];
- })
+ sources."parallel-transform-1.2.0"
sources."parse-github-url-1.0.2"
sources."parse-gitignore-1.0.1"
- sources."parse-json-5.2.0"
+ sources."parse-json-4.0.0"
sources."parse-ms-2.1.0"
sources."parseurl-1.3.3"
sources."pascalcase-0.1.1"
@@ -104419,14 +106544,18 @@ in
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."pend-1.2.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
sources."pkg-dir-5.0.0"
sources."posix-character-classes-0.1.1"
- sources."postcss-8.3.9"
+ (sources."postcss-8.3.9" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."postcss-values-parser-2.0.1"
sources."precinct-8.1.0"
sources."precond-0.2.3"
@@ -104463,6 +106592,7 @@ in
sources."read-package-json-fast-2.0.3"
(sources."read-pkg-5.2.0" // {
dependencies = [
+ sources."parse-json-5.2.0"
sources."type-fest-0.6.0"
];
})
@@ -104475,7 +106605,7 @@ in
sources."type-fest-0.8.1"
];
})
- sources."readable-stream-3.6.0"
+ sources."readable-stream-2.3.7"
sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
sources."redeyed-2.1.1"
@@ -104502,6 +106632,7 @@ in
sources."require-package-name-2.0.1"
sources."requires-port-1.0.0"
sources."resolve-1.20.0"
+ sources."resolve-from-5.0.0"
sources."resolve-url-0.2.1"
sources."responselike-2.0.0"
(sources."restore-cursor-2.0.0" // {
@@ -104535,6 +106666,7 @@ in
sources."safe-regex-1.1.0"
sources."safe-stable-stringify-1.1.1"
sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
sources."seek-bzip-1.0.6"
sources."semver-7.3.5"
(sources."semver-diff-3.1.1" // {
@@ -104671,11 +106803,7 @@ in
sources."escape-string-regexp-1.0.5"
];
})
- (sources."supports-color-8.1.1" // {
- dependencies = [
- sources."has-flag-4.0.0"
- ];
- })
+ sources."supports-color-8.1.1"
(sources."supports-hyperlinks-1.0.1" // {
dependencies = [
sources."has-flag-2.0.0"
@@ -104687,7 +106815,16 @@ in
];
})
sources."symbol-observable-1.2.0"
- sources."tar-stream-2.2.0"
+ (sources."tar-6.1.11" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ (sources."tar-stream-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."temp-dir-2.0.0"
(sources."tempy-1.0.1" // {
dependencies = [
@@ -104701,11 +106838,7 @@ in
})
sources."text-hex-1.0.0"
sources."through-2.3.8"
- (sources."through2-2.0.5" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- ];
- })
+ sources."through2-2.0.5"
sources."through2-filter-3.0.0"
sources."through2-map-3.0.0"
sources."time-zone-1.0.0"
@@ -104740,7 +106873,7 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-2.0.0"
@@ -104788,6 +106921,7 @@ in
sources."color-name-1.1.3"
sources."commander-3.0.2"
sources."escape-string-regexp-1.0.5"
+ sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
@@ -104797,6 +106931,7 @@ in
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
sources."which-module-2.0.0"
+ sources."wide-align-1.1.5"
sources."widest-line-3.1.0"
(sources."windows-release-4.0.0" // {
dependencies = [
@@ -104804,12 +106939,12 @@ in
sources."get-stream-5.2.0"
];
})
- sources."winston-3.3.3"
- (sources."winston-transport-4.4.0" // {
+ (sources."winston-3.3.3" // {
dependencies = [
- sources."readable-stream-2.3.7"
+ sources."readable-stream-3.6.0"
];
})
+ sources."winston-transport-4.4.0"
sources."word-wrap-1.2.3"
(sources."wrap-ansi-6.2.0" // {
dependencies = [
@@ -104838,7 +106973,11 @@ in
sources."yarn-1.22.15"
sources."yauzl-2.10.0"
sources."yocto-queue-0.1.0"
- sources."zip-stream-4.1.0"
+ (sources."zip-stream-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
];
buildInputs = globalBuildInputs;
meta = {
@@ -104970,7 +107109,7 @@ in
sources."unique-slug-2.0.2"
sources."util-deprecate-1.0.2"
sources."which-2.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
];
@@ -105030,7 +107169,7 @@ in
sources."base64-js-0.0.8"
sources."bcrypt-pbkdf-1.0.2"
sources."biased-opener-0.2.8"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."block-stream-0.0.9"
sources."body-parser-1.19.0"
sources."boom-2.10.1"
@@ -105114,7 +107253,7 @@ in
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
@@ -105271,7 +107410,7 @@ in
];
})
sources."which-1.3.1"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."win-detect-browsers-1.0.2" // {
dependencies = [
sources."yargs-1.3.3"
@@ -105376,7 +107515,7 @@ in
];
})
sources."util-deprecate-1.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."yallist-3.1.1"
];
@@ -105424,7 +107563,7 @@ in
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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
@@ -105454,7 +107593,7 @@ in
sources."async-0.1.22"
sources."async-mutex-0.3.2"
sources."asynckit-0.4.0"
- sources."axios-0.21.1"
+ sources."axios-0.22.0"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
(sources."basic-auth-2.0.1" // {
@@ -105517,7 +107656,7 @@ in
sources."cors-2.8.5"
sources."cronosjs-1.7.1"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."debug-2.6.9"
(sources."decompress-response-6.0.0" // {
dependencies = [
@@ -105678,7 +107817,7 @@ in
sources."negotiator-0.6.2"
sources."node-addon-api-3.2.1"
sources."node-fetch-2.6.5"
- sources."node-red-admin-2.2.0"
+ sources."node-red-admin-2.2.1"
sources."nopt-5.0.0"
sources."normalize-url-6.1.0"
sources."npmlog-4.1.2"
@@ -105776,7 +107915,7 @@ in
sources."vary-1.1.2"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."ws-7.5.1"
sources."xml2js-0.4.23"
@@ -105867,7 +108006,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
@@ -105978,7 +108117,7 @@ in
];
})
sources."walk-2.3.15"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
];
@@ -106163,7 +108302,7 @@ in
sha512 = "CdpgqtO6JpDKJjQ2gueY0jnbz6APWA9wFXSwPv5bXg4seSBibHqQ8JyWxYlS8YRfVbpeDtj582wcAWTlfy5qNA==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
@@ -106190,7 +108329,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -106362,7 +108501,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -106681,10 +108820,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "7.24.2";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz";
- sha512 = "120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==";
+ url = "https://registry.npmjs.org/npm/-/npm-8.1.0.tgz";
+ sha512 = "rPiiYY4t8pqK1rCDQy1bE6HRR63B2RwfYsIVc1/BNkeIilvqZMwGeTksSBK8WTozBz8c/tMd7jk0c4Q4f/F+UA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -106958,7 +109097,7 @@ in
sources."progress-2.0.3"
sources."promise-inflight-1.0.1"
sources."promise-retry-2.0.1"
- sources."prompts-2.4.1"
+ sources."prompts-2.4.2"
sources."psl-1.8.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
@@ -107026,7 +109165,7 @@ in
];
})
sources."which-2.0.2"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."widest-line-3.1.0" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -107227,7 +109366,7 @@ in
sources."uuid-3.4.0"
sources."verror-1.10.0"
sources."walk-2.3.15"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -107290,16 +109429,16 @@ in
sha512 = "hpku8mW67U6PXQIenW6NBbphBOMb8XzW6B9r093DUhYj5GN2FUB/CXCiz5hKoPYUsusZ35BpProH8AUF9bh5IQ==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."json5-2.2.0"
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.4" // {
+ (sources."@babel/generator-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -107324,7 +109463,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -107337,9 +109476,9 @@ in
sources."@babel/helper-wrap-function-7.15.4"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -107398,13 +109537,13 @@ in
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.6" // {
+ (sources."@babel/preset-env-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -107518,7 +109657,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -107535,7 +109674,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -107561,7 +109700,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.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -107672,7 +109811,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -107816,7 +109955,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -107939,7 +110078,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."nth-check-1.0.2"
@@ -107975,10 +110114,14 @@ in
sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
sources."physical-cpu-count-2.0.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."pn-1.1.0"
sources."posix-character-classes-0.1.1"
- sources."postcss-7.0.39"
+ (sources."postcss-7.0.39" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
(sources."postcss-calc-7.0.5" // {
dependencies = [
sources."postcss-value-parser-4.1.0"
@@ -108684,7 +110827,7 @@ in
sources."base64-js-0.0.8"
sources."bencode-2.0.2"
sources."bep53-range-1.1.1"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."bitfield-0.1.0"
(sources."bittorrent-dht-6.4.2" // {
dependencies = [
@@ -108793,7 +110936,7 @@ in
sources."ipaddr.js-2.0.1"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-date-object-1.0.5"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
@@ -109428,7 +111571,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."into-stream-6.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -109510,14 +111653,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-pm-runs-1.0.0"
- (sources."wide-align-1.1.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."wide-align-1.1.5"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
@@ -109658,7 +111794,7 @@ in
sources."ini-1.3.8"
sources."ip-1.1.5"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
@@ -109736,7 +111872,7 @@ in
sources."statuses-1.5.0"
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
- sources."systeminformation-5.9.4"
+ sources."systeminformation-5.9.7"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
sources."tslib-2.3.1"
@@ -109751,7 +111887,7 @@ in
sources."async-2.6.3"
];
})
- sources."vm2-3.9.3"
+ sources."vm2-3.9.4"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
sources."ws-7.4.6"
@@ -109772,10 +111908,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.16.1";
+ version = "6.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.16.1.tgz";
- sha512 = "oTZtaWJvvQ1V4KzpPya/BYYF90c6ICKmFYof8DAzMi0g2PEGseSVRdw/A2ov6mQJxBjHyRyYp/j42j8QOqRuKw==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.17.1.tgz";
+ sha512 = "rxl28iv4zYrhv7hKRMfO49hlXMFGQDgDyJrAoLkQPlJuAziCjEdfMV0OTt5BsntxbQMLsGgwpqSfosNVMbCdNQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -109824,7 +111960,7 @@ in
sha512 = "f/ZFyAKh9Dnqytx5X62jgjhhzttjZS7hMsohcI7HEI5tjELX/HxCy3EFhsRxyzGvrzFF+82XPvCS8T9TFleVJw==";
};
dependencies = [
- sources."nanoid-3.1.28"
+ sources."nanoid-3.1.30"
sources."picocolors-0.2.1"
sources."source-map-js-0.6.2"
];
@@ -109891,13 +112027,14 @@ in
sources."lodash.sortby-4.7.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.4"
- sources."nanocolors-0.2.12"
+ sources."nanocolors-0.2.13"
sources."normalize-path-3.0.0"
sources."path-type-4.0.0"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."postcss-load-config-3.1.0"
- sources."postcss-reporter-7.0.3"
+ sources."postcss-reporter-7.0.4"
sources."pretty-hrtime-1.0.3"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -109972,13 +112109,13 @@ in
prisma = nodeEnv.buildNodePackage {
name = "prisma";
packageName = "prisma";
- version = "3.1.1";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prisma/-/prisma-3.1.1.tgz";
- sha512 = "+eZtWIL6hnOKUOvqq9WLBzSw2d/EbTmOx1Td1LI8/0XE40ctXMLG2N1p6NK5/+yivGaoNJ9PDpPsPL9lO4nJrQ==";
+ url = "https://registry.npmjs.org/prisma/-/prisma-3.2.1.tgz";
+ sha512 = "nXhldcFYemNSMqdTAEziggVWBNbCHTrr0amkCJruP3G2AFpzxrKtksPRLYNetxdKMJAt7aRRumusbtmTTDgyzw==";
};
dependencies = [
- sources."@prisma/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f"
+ sources."@prisma/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c"
];
buildInputs = globalBuildInputs;
meta = {
@@ -110164,7 +112301,7 @@ in
];
})
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."json-stable-stringify-0.0.1"
@@ -110480,7 +112617,7 @@ in
sources."vscode-jsonrpc-6.0.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-2.1.2"
sources."which-2.0.2"
@@ -110605,7 +112742,7 @@ in
sources."package-json-6.5.0"
sources."pixiv-api-client-0.25.0"
sources."prepend-http-2.0.0"
- sources."prompts-2.4.1"
+ sources."prompts-2.4.2"
sources."pump-3.0.0"
sources."qs-6.10.1"
sources."rc-1.2.8"
@@ -110640,10 +112777,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.175";
+ version = "1.1.178";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.175.tgz";
- sha512 = "LCYO4t/wvZPSipRgz5wCRNQWqLBhiVx2H05sU7Xr6db6tesS1mPfwyBoa0X7oMCUycwoEmApdPCSQvrggXQ1oQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.178.tgz";
+ sha512 = "OhEoC5HfKZqvY5GVCsHeroYDx85xp4CZwevhNsePxNzZyW+W491K4bfLTvuOBnvcnMWip+aMQ7zzFDkw74Gtkg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -110723,7 +112860,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."invert-kv-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-stream-1.1.0"
sources."is-url-1.2.4"
@@ -110993,21 +113130,21 @@ in
react-static = nodeEnv.buildNodePackage {
name = "react-static";
packageName = "react-static";
- version = "7.5.3";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/react-static/-/react-static-7.5.3.tgz";
- sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q==";
+ url = "https://registry.npmjs.org/react-static/-/react-static-7.6.2.tgz";
+ sha512 = "JQACM+3GgF1vkUH6E6w1k0Qut6IbcfXjU37shGUWM9tIs3F9e/33saXK4G/uSl1kc8qjI+RekAQs/qyjMlUKlg==";
};
dependencies = [
sources."@babel/cli-7.15.7"
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.5" // {
+ (sources."@babel/core-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.4"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-annotate-as-pure-7.15.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
(sources."@babel/helper-compilation-targets-7.15.4" // {
@@ -111028,7 +113165,7 @@ in
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
sources."@babel/helper-remap-async-to-generator-7.15.4"
@@ -111041,9 +113178,9 @@ in
sources."@babel/helper-wrap-function-7.15.4"
sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
@@ -111104,19 +113241,19 @@ in
sources."@babel/plugin-transform-react-pure-annotations-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
- (sources."@babel/plugin-transform-runtime-7.15.0" // {
+ (sources."@babel/plugin-transform-runtime-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
- sources."@babel/plugin-transform-spread-7.14.6"
+ sources."@babel/plugin-transform-spread-7.15.8"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.6" // {
+ (sources."@babel/preset-env-7.15.8" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -111134,7 +113271,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -111206,7 +113343,11 @@ in
sources."async-each-1.0.3"
sources."async-limiter-1.0.1"
sources."atob-2.1.2"
- sources."autoprefixer-9.8.8"
+ (sources."autoprefixer-9.8.8" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."axios-0.21.4"
sources."babel-core-7.0.0-bridge.0"
(sources."babel-loader-8.2.2" // {
@@ -111288,7 +113429,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -111322,7 +113463,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -111402,7 +113543,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.18.1" // {
+ (sources."core-js-compat-3.18.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -111546,7 +113687,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -111846,7 +113987,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-deflate-1.0.0"
@@ -111991,7 +114132,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."normalize-range-0.1.2"
(sources."normalize-url-2.0.1" // {
@@ -112073,7 +114214,7 @@ in
sources."peek-stream-1.1.3"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
@@ -112088,6 +114229,7 @@ in
sources."posix-character-classes-0.1.1"
(sources."postcss-7.0.39" // {
dependencies = [
+ sources."picocolors-0.2.1"
sources."source-map-0.6.1"
];
})
@@ -112284,7 +114426,7 @@ in
dependencies = [
sources."ansi-regex-2.1.1"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domutils-2.8.0"
@@ -112801,14 +114943,14 @@ in
readability-cli = nodeEnv.buildNodePackage {
name = "readability-cli";
packageName = "readability-cli";
- version = "2.3.0";
+ version = "2.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.3.0.tgz";
- sha512 = "9hiYYcNshOLt4kLXcuE1nIO5nAFyOcnau3nn+rw/WNQC52Vpa77GqeJZCSBIWAUNsALmtsCby76oOiSJlX5dbQ==";
+ url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.3.4.tgz";
+ sha512 = "88OPL2Gj8qWx/GWS0dgxJkArT/kcnfFMgW+duBBSGXbvdWG6CEIUY4602e41OVLtDAmT3xo4cdj3PhmQxgAa6g==";
};
dependencies = [
sources."@mozilla/readability-0.4.1"
- sources."@tootallnate/once-1.1.2"
+ sources."@tootallnate/once-2.0.0"
sources."abab-2.0.5"
sources."acorn-8.5.0"
(sources."acorn-globals-6.0.0" // {
@@ -112826,22 +114968,18 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."combined-stream-1.0.8"
- sources."cssom-0.4.4"
+ sources."cssom-0.5.0"
(sources."cssstyle-2.3.0" // {
dependencies = [
sources."cssom-0.3.8"
];
})
- sources."data-urls-2.0.0"
+ sources."data-urls-3.0.1"
sources."debug-4.3.2"
sources."decimal.js-10.3.1"
sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
- (sources."domexception-2.0.1" // {
- dependencies = [
- sources."webidl-conversions-5.0.0"
- ];
- })
+ sources."domexception-4.0.0"
sources."dompurify-2.3.3"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
@@ -112850,17 +114988,16 @@ in
sources."estraverse-5.2.0"
sources."esutils-2.0.3"
sources."fast-levenshtein-2.0.6"
- sources."form-data-3.0.1"
+ sources."form-data-4.0.0"
sources."get-caller-file-2.0.5"
- sources."html-encoding-sniffer-2.0.1"
- sources."http-proxy-agent-4.0.1"
+ sources."html-encoding-sniffer-3.0.0"
+ sources."http-proxy-agent-5.0.0"
sources."https-proxy-agent-5.0.0"
- sources."iconv-lite-0.4.24"
+ sources."iconv-lite-0.6.3"
sources."is-fullwidth-code-point-3.0.0"
sources."is-potential-custom-element-name-1.0.1"
- sources."jsdom-16.7.0"
+ sources."jsdom-18.0.0"
sources."levn-0.3.0"
- sources."lodash-4.17.21"
sources."mime-db-1.50.0"
sources."mime-types-2.1.33"
sources."ms-2.1.2"
@@ -112878,19 +115015,19 @@ in
sources."strip-ansi-6.0.1"
sources."symbol-tree-3.2.4"
sources."tough-cookie-4.0.0"
- sources."tr46-2.1.0"
+ sources."tr46-3.0.0"
sources."type-check-0.3.2"
sources."universalify-0.1.2"
sources."w3c-hr-time-1.0.2"
- sources."w3c-xmlserializer-2.0.0"
- sources."webidl-conversions-6.1.0"
- sources."whatwg-encoding-1.0.5"
- sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-8.7.0"
+ sources."w3c-xmlserializer-3.0.0"
+ sources."webidl-conversions-7.0.0"
+ sources."whatwg-encoding-2.0.0"
+ sources."whatwg-mimetype-3.0.0"
+ sources."whatwg-url-10.0.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
- sources."ws-7.5.5"
- sources."xml-name-validator-3.0.0"
+ sources."ws-8.2.3"
+ sources."xml-name-validator-4.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yargs-17.2.1"
@@ -112909,14 +115046,14 @@ in
redoc-cli = nodeEnv.buildNodePackage {
name = "redoc-cli";
packageName = "redoc-cli";
- version = "0.12.3";
+ version = "0.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.12.3.tgz";
- sha512 = "qTBaEfwVqCvqLbuloZ9sMBQA49WfMOQrLVBGiVyT7pNMAjosQCpMyFESqQL8WqVxDzV2olPCZ1L2rG9cuDGOsA==";
+ url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.0.tgz";
+ sha512 = "SLGjajbYf2QKByYKBWCDTW1mnX6BWfojV3Y6SFkCXtehNFgy4OGGKmi3Dy4/PqSx5liWeGggxMQ9N/oiSsFhbA==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
- (sources."@babel/generator-7.15.4" // {
+ sources."@babel/code-frame-7.15.8"
+ (sources."@babel/generator-7.15.8" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -112929,7 +115066,7 @@ in
sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/runtime-7.15.4"
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
@@ -112940,18 +115077,14 @@ in
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.6"
sources."@redocly/ajv-8.6.2"
- (sources."@redocly/openapi-core-1.0.0-beta.62" // {
- dependencies = [
- sources."@types/node-14.17.20"
- ];
- })
+ sources."@redocly/openapi-core-1.0.0-beta.63"
sources."@redocly/react-dropdown-aria-2.0.12"
sources."@types/json-schema-7.0.9"
- sources."@types/node-15.14.9"
+ sources."@types/node-14.17.27"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
- sources."argparse-1.0.10"
+ sources."argparse-2.0.1"
(sources."asn1.js-5.4.1" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -113034,7 +115167,6 @@ in
sources."es6-promise-3.3.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
sources."eventemitter3-4.0.7"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
@@ -113073,7 +115205,7 @@ in
sources."isarray-2.0.5"
sources."js-levenshtein-1.1.6"
sources."js-tokens-4.0.0"
- sources."js-yaml-3.14.1"
+ sources."js-yaml-4.1.0"
sources."jsesc-2.5.2"
sources."json-pointer-0.6.1"
sources."json-schema-traverse-1.0.0"
@@ -113095,8 +115227,8 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mobx-6.3.3"
- sources."mobx-react-7.2.0"
+ sources."mobx-6.3.5"
+ sources."mobx-react-7.2.1"
sources."mobx-react-lite-3.2.1"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
@@ -113148,7 +115280,7 @@ in
];
})
sources."readdirp-3.6.0"
- (sources."redoc-2.0.0-rc.56" // {
+ (sources."redoc-2.0.0-rc.57" // {
dependencies = [
sources."path-browserify-1.0.1"
];
@@ -113172,7 +115304,6 @@ in
sources."should-util-1.0.1"
sources."slugify-1.4.7"
sources."source-map-0.6.1"
- sources."sprintf-js-1.0.3"
sources."stickyfill-1.1.1"
sources."stream-browserify-2.0.2"
sources."stream-http-2.8.3"
@@ -113280,7 +115411,7 @@ in
sources."ink-2.7.1"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -113474,9 +115605,9 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
sources."@types/mocha-8.2.3"
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
sources."@types/node-fetch-2.5.12"
- sources."@types/vscode-1.60.0"
+ sources."@types/vscode-1.61.0"
sources."@typescript-eslint/eslint-plugin-4.33.0"
sources."@typescript-eslint/experimental-utils-4.33.0"
sources."@typescript-eslint/parser-4.33.0"
@@ -113499,7 +115630,7 @@ in
sources."asynckit-0.4.0"
sources."azure-devops-node-api-11.0.1"
sources."balanced-match-1.0.2"
- sources."big-integer-1.6.49"
+ sources."big-integer-1.6.50"
sources."binary-0.3.0"
sources."binary-extensions-2.2.0"
sources."bluebird-3.4.7"
@@ -113536,7 +115667,7 @@ in
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."d3-7.1.1"
sources."d3-array-3.1.1"
sources."d3-axis-3.0.0"
@@ -113724,7 +115855,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
- (sources."mocha-9.1.2" // {
+ (sources."mocha-9.1.3" // {
dependencies = [
sources."argparse-2.0.1"
sources."glob-7.1.7"
@@ -113836,7 +115967,7 @@ in
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
sources."typed-rest-client-1.8.6"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
sources."underscore-1.13.1"
@@ -113988,10 +116119,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.42.1";
+ version = "1.43.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz";
- sha512 = "/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.43.2.tgz";
+ sha512 = "DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -114161,10 +116292,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.61.0";
+ version = "2.63.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.61.0.tgz";
- sha512 = "a0Kha0IJ7dekoXgecoo1jsoH7c1d5tOdYaalZt0ZjrFBJq/hURpqJurPzuDlx4MwecbrGTe2aMjGUYFBFcDlRw==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.63.0.tgz";
+ sha512 = "8R3WceUjjFBZRcL0YXT6+3hEWIxlzyCIWiIVy9x2Rf2TDBBJTTv82T1JHvLr9dRVBSOcQBu6cHlzSqwk1ozbLA==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -114223,7 +116354,7 @@ in
sources."semver-6.3.0"
];
})
- sources."@serverless/dashboard-plugin-5.4.5"
+ sources."@serverless/dashboard-plugin-5.4.8"
sources."@serverless/event-mocks-1.1.1"
(sources."@serverless/platform-client-4.3.0" // {
dependencies = [
@@ -114238,7 +116369,7 @@ in
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-5.17.0" // {
+ (sources."@serverless/utils-5.18.0" // {
dependencies = [
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
@@ -114257,12 +116388,12 @@ in
sources."@types/keyv-3.1.3"
sources."@types/lodash-4.14.175"
sources."@types/long-4.0.1"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/request-2.48.7"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
sources."@types/tough-cookie-4.0.1"
- sources."adm-zip-0.5.7"
+ sources."adm-zip-0.5.9"
sources."after-0.8.2"
(sources."agent-base-6.0.2" // {
dependencies = [
@@ -114317,7 +116448,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1000.0" // {
+ (sources."aws-sdk-2.1009.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -114399,11 +116530,7 @@ in
sources."chownr-1.1.4"
sources."ci-info-3.2.0"
sources."cli-boxes-2.2.1"
- (sources."cli-color-2.0.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
+ sources."cli-color-2.0.1"
sources."cli-cursor-3.1.0"
sources."cli-progress-footer-2.1.1"
(sources."cli-sprintf-format-1.1.0" // {
@@ -114700,7 +116827,7 @@ in
sources."lodash.flatten-4.4.0"
sources."lodash.isplainobject-4.0.6"
sources."lodash.union-4.6.0"
- sources."log-6.2.0"
+ sources."log-6.3.1"
(sources."log-node-8.0.1" // {
dependencies = [
sources."has-flag-4.0.0"
@@ -114989,6 +117116,7 @@ in
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
sources."unbzip2-stream-1.4.3"
+ sources."uni-global-1.0.0"
sources."universalify-0.1.2"
sources."untildify-4.0.0"
sources."uri-js-4.4.1"
@@ -115007,7 +117135,7 @@ in
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
sources."which-pm-runs-1.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."widest-line-3.1.0" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
@@ -115686,10 +117814,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.731.0";
+ version = "1.737.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.731.0.tgz";
- sha512 = "1bRMFH7ZrjmaUkBnbOtCmLSSpAlj9vPKndBiP4hjCLysN8peVZ9SMdxGWhhJsmvqmRZYCdmPQyL+sKev8dsRkw==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.737.0.tgz";
+ sha512 = "74RuQLRB2lIDoS3dFY/XXRsPJvL1qr5t7LisJ10q5O2wLi4ISEyNU39XPICVOj+kg1eT30CjKUecMzF+9P2xfQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -115704,25 +117832,25 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-4.2.0.tgz";
- sha512 = "sjlGfMmnaWvTRVxGRGWyhd9ctpg4APxWAxu85O/SxekkxHhfxmePWZbaYCkeX5QQX0z1YEnKOlNt6w82E4Nzug==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-4.3.0.tgz";
+ sha512 = "15eJ4fLho1uQTgdvAKlkMPvhvurky8KAc0F+wAdrSoIk+rKEYor8vPKiV5grp4J0sQpPms/AW7w9BV6b/HB0oA==";
};
dependencies = [
- sources."@types/component-emitter-1.2.10"
+ sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."accepts-1.3.7"
- sources."base64-arraybuffer-0.1.4"
+ sources."base64-arraybuffer-1.0.1"
sources."base64id-2.0.0"
sources."component-emitter-1.3.0"
sources."cookie-0.4.1"
sources."cors-2.8.5"
sources."debug-4.3.2"
- sources."engine.io-5.2.0"
- sources."engine.io-parser-4.0.3"
+ sources."engine.io-6.0.0"
+ sources."engine.io-parser-5.0.0"
sources."mime-db-1.50.0"
sources."mime-types-2.1.33"
sources."ms-2.1.2"
@@ -115731,7 +117859,7 @@ in
sources."socket.io-adapter-2.3.2"
sources."socket.io-parser-4.0.4"
sources."vary-1.1.2"
- sources."ws-7.4.6"
+ sources."ws-8.2.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -115810,7 +117938,7 @@ in
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-installed-globally-0.1.0"
sources."is-npm-1.0.0"
@@ -115969,7 +118097,7 @@ in
sources."array-unique-0.2.1"
sources."arrify-1.0.1"
sources."assign-symbols-1.0.0"
- (sources."async-append-only-log-3.1.0" // {
+ (sources."async-append-only-log-3.1.1" // {
dependencies = [
sources."push-stream-11.0.1"
];
@@ -116231,7 +118359,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-canonical-base64-1.1.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -116278,7 +118406,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-3.4.0" // {
+ (sources."jitdb-3.4.2" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."push-stream-11.0.1"
@@ -116669,13 +118797,13 @@ in
];
})
sources."sodium-chloride-1.1.2"
- sources."sodium-native-3.2.1"
+ sources."sodium-native-3.3.0"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
sources."source-map-url-0.4.1"
sources."split-buffer-1.0.0"
sources."split-string-3.1.0"
- (sources."ssb-bendy-butt-0.12.3" // {
+ (sources."ssb-bendy-butt-0.12.4" // {
dependencies = [
sources."ssb-keys-8.2.0"
];
@@ -116687,7 +118815,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.6.0" // {
+ (sources."ssb-db2-2.6.5" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -116749,8 +118877,8 @@ in
sources."ssb-keys-8.2.0"
];
})
- sources."ssb-validate2-0.1.1"
- sources."ssb-validate2-rsjs-node-1.0.0"
+ sources."ssb-validate2-0.1.2"
+ sources."ssb-validate2-rsjs-node-1.0.1"
sources."ssb-ws-6.2.3"
sources."stack-0.1.0"
(sources."static-extend-0.1.2" // {
@@ -116955,7 +119083,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1000.0" // {
+ (sources."aws-sdk-2.1009.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -117209,7 +119337,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
(sources."is-expression-3.0.0" // {
dependencies = [
sources."acorn-4.0.13"
@@ -117738,17 +119866,17 @@ in
sha512 = "Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.5"
- sources."@babel/generator-7.15.4"
+ sources."@babel/core-7.15.8"
+ sources."@babel/generator-7.15.8"
sources."@babel/helper-compilation-targets-7.15.4"
sources."@babel/helper-function-name-7.15.4"
sources."@babel/helper-get-function-arity-7.15.4"
sources."@babel/helper-hoist-variables-7.15.4"
sources."@babel/helper-member-expression-to-functions-7.15.4"
sources."@babel/helper-module-imports-7.15.4"
- sources."@babel/helper-module-transforms-7.15.7"
+ sources."@babel/helper-module-transforms-7.15.8"
sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-replace-supers-7.15.4"
sources."@babel/helper-simple-access-7.15.4"
@@ -117761,7 +119889,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.7"
+ sources."@babel/parser-7.15.8"
sources."@babel/template-7.15.4"
sources."@babel/traverse-7.15.4"
sources."@babel/types-7.15.6"
@@ -117781,7 +119909,11 @@ in
sources."array-union-2.1.0"
sources."arrify-1.0.1"
sources."astral-regex-2.0.0"
- sources."autoprefixer-9.8.8"
+ (sources."autoprefixer-9.8.8" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."bail-1.0.5"
sources."balanced-match-2.0.0"
(sources."brace-expansion-1.1.11" // {
@@ -117790,11 +119922,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -117831,7 +119963,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -117882,7 +120014,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -117927,7 +120059,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
@@ -117947,10 +120079,11 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
(sources."postcss-7.0.39" // {
dependencies = [
+ sources."picocolors-0.2.1"
sources."source-map-0.6.1"
];
})
@@ -118059,16 +120192,16 @@ in
svelte-check = nodeEnv.buildNodePackage {
name = "svelte-check";
packageName = "svelte-check";
- version = "2.2.6";
+ version = "2.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.6.tgz";
- sha512 = "oJux/afbmcZO+N+ADXB88h6XANLie8Y2rh2qBlhgfkpr2c3t/q/T0w2JWrHqagaDL8zeNwO8a8RVFBkrRox8gg==";
+ url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.7.tgz";
+ sha512 = "lH8ArmwVC+D314cToZkXBBfj7NlpvgQGP7nXCAMnNHo6hTEcbKcf/cAZgzbnAOTftjIJrmLHp+EDW887VJFSOQ==";
};
dependencies = [
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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."ansi-styles-4.3.0"
@@ -118130,7 +120263,7 @@ in
sources."supports-color-7.2.0"
sources."svelte-preprocess-4.9.8"
sources."to-regex-range-5.0.1"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -118146,10 +120279,10 @@ in
svelte-language-server = nodeEnv.buildNodePackage {
name = "svelte-language-server";
packageName = "svelte-language-server";
- version = "0.14.9";
+ version = "0.14.10";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.9.tgz";
- sha512 = "mkMsAnGEO/wMsYfRdEKWKY9Hv/FwuCtB5RiJPcUcngHrVq8V+6zYGiZsmDTS4CArpfzhEuPcUNo1UM+E94Pslw==";
+ url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.10.tgz";
+ sha512 = "hRVDcaYNs1T3VUnxPYMlpCfUJYAXzzKHRfpATEyw480meS6gJx7tZCLRirajs1Qh8dUINaoVnCDyI+OqncOXFw==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.2"
@@ -118158,7 +120291,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."anymatch-3.1.2"
@@ -118201,7 +120334,7 @@ in
sources."svelte2tsx-0.4.7"
sources."to-regex-range-5.0.1"
sources."tslib-2.3.1"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."vscode-css-languageservice-5.0.0"
sources."vscode-emmet-helper-2.1.2"
sources."vscode-html-languageservice-4.0.0"
@@ -118212,7 +120345,7 @@ in
sources."vscode-languageserver-types-3.17.0-next.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
sources."vscode-uri-2.1.2"
@@ -118241,7 +120374,7 @@ in
sources."commander-7.2.0"
sources."css-select-4.1.3"
sources."css-tree-1.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."csso-4.2.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
@@ -119040,76 +121173,10 @@ in
sha1 = "bd2b3b1e3b88ad3c7471bdc8a5244255564b69e1";
};
dependencies = [
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.7"
- sources."base64-js-1.5.1"
- sources."bindings-1.5.0"
- (sources."bl-4.1.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."buffer-5.7.1"
- sources."chownr-1.1.4"
- sources."code-point-at-1.1.0"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.3"
- sources."decompress-response-4.2.1"
- sources."deep-extend-0.6.0"
- sources."delegates-1.0.0"
- sources."detect-libc-1.0.3"
- sources."end-of-stream-1.4.4"
- sources."expand-template-2.0.3"
- sources."file-uri-to-path-1.0.0"
- sources."fs-constants-1.0.0"
- sources."gauge-2.7.4"
- sources."github-from-package-0.0.0"
- sources."has-unicode-2.0.1"
- sources."ieee754-1.2.1"
- sources."inherits-2.0.4"
- sources."ini-1.3.8"
- sources."is-fullwidth-code-point-1.0.0"
- sources."isarray-1.0.0"
- sources."mimic-response-2.1.0"
- sources."minimist-1.2.5"
- sources."mkdirp-classic-0.5.3"
- sources."napi-build-utils-1.0.2"
- sources."node-abi-2.30.1"
- sources."node-addon-api-3.0.2"
- sources."noop-logger-0.1.1"
- sources."npmlog-4.1.2"
- sources."number-is-nan-1.0.1"
- sources."object-assign-4.1.1"
- sources."once-1.4.0"
- sources."prebuild-install-5.3.6"
- sources."process-nextick-args-2.0.1"
- sources."pump-3.0.0"
+ sources."node-addon-api-4.2.0"
+ sources."node-gyp-build-4.3.0"
sources."q-1.5.1"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."semver-5.7.1"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.5"
- sources."simple-concat-1.0.1"
- sources."simple-get-3.1.0"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."tar-fs-2.1.1"
- (sources."tar-stream-2.2.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."tunnel-agent-0.6.0"
- sources."usb-1.7.2"
- sources."util-deprecate-1.0.2"
- sources."which-pm-runs-1.0.0"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
+ sources."usb-1.8.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -119287,7 +121354,7 @@ in
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-date-object-1.0.5"
sources."is-decimal-1.0.4"
sources."is-file-1.0.0"
@@ -119505,7 +121572,7 @@ in
sha512 = "z/Xo1WHxAn7eueUbRLXoMNew+R3dzGENPG/yiCt/KT2WgAfRuQ7GeF855kLcnCCqdTnl6W7sYq8TKy+/DLpiqQ==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
sources."@sindresorhus/is-0.14.0"
@@ -119650,7 +121717,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-decimal-1.0.4"
sources."is-empty-1.2.0"
sources."is-fullwidth-code-point-3.0.0"
@@ -120317,7 +122384,7 @@ in
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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -120393,7 +122460,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.18.1"
+ sources."core-js-3.18.3"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -120734,7 +122801,7 @@ in
sources."verror-1.10.0"
sources."web-push-3.4.4"
sources."which-1.3.1"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
sources."ws-7.5.5"
@@ -121184,10 +123251,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "4.4.3";
+ version = "4.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz";
- sha512 = "4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz";
+ sha512 = "DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -121202,10 +123269,10 @@ in
typescript-language-server = nodeEnv.buildNodePackage {
name = "typescript-language-server";
packageName = "typescript-language-server";
- version = "0.6.3";
+ version = "0.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.3.tgz";
- sha512 = "AJux8qVVoXcu1pSG7CwpxzTWGUy92pXFIG1iSsbC4YPajYmP/CNERPL1jHW+8cHHKgpHWKAxJmYpEB0twqw/2Q==";
+ url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.4.tgz";
+ sha512 = "tcN3Kyq/tHF79rNdueFNOyY3fTFTj9t0oneoLzkAhV35QBghxwX1eDi6oOnzIglZjSbJWosdnedHHfyjqQ62ig==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -121266,7 +123333,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-1.0.8"
sources."wrappy-1.0.2"
@@ -121329,10 +123396,10 @@ in
sources."@primer/octicons-14.1.0"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/component-emitter-1.2.10"
+ sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-14.17.20"
+ sources."@types/node-14.17.27"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
@@ -121613,7 +123680,7 @@ in
sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w==";
};
dependencies = [
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -121829,7 +123896,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."internmap-1.0.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-fullwidth-code-point-1.0.0"
sources."isarray-1.0.0"
sources."lru-cache-6.0.0"
@@ -121905,7 +123972,7 @@ in
sources."vega-wordcloud-4.1.3"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -121994,7 +124061,7 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@vercel/build-utils-2.12.2"
sources."@vercel/go-1.2.3"
sources."@vercel/node-1.12.1"
@@ -122173,7 +124240,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (sources."eslint-plugin-vue-7.19.0" // {
+ (sources."eslint-plugin-vue-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -122222,7 +124289,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -122290,7 +124357,7 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
(sources."vue-eslint-parser-7.11.0" // {
@@ -122407,7 +124474,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-4.1.2"
sources."vscode-uri-3.0.2"
@@ -122457,7 +124524,7 @@ in
sources."vscode-languageserver-types-3.5.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0-next.2"
sources."vscode-nls-2.0.2"
sources."vscode-uri-1.0.8"
@@ -122483,18 +124550,18 @@ in
dependencies = [
sources."jsonc-parser-3.0.0"
sources."request-light-0.5.4"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."vscode-css-languageservice-5.1.7"
sources."vscode-html-languageservice-4.1.0"
sources."vscode-json-languageservice-4.1.8"
- sources."vscode-jsonrpc-8.0.0-next.2"
- sources."vscode-languageserver-8.0.0-next.2"
- (sources."vscode-languageserver-protocol-3.17.0-next.8" // {
+ sources."vscode-jsonrpc-8.0.0-next.3"
+ sources."vscode-languageserver-8.0.0-next.3"
+ (sources."vscode-languageserver-protocol-3.17.0-next.9" // {
dependencies = [
- sources."vscode-languageserver-types-3.17.0-next.3"
+ sources."vscode-languageserver-types-3.17.0-next.4"
];
})
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
sources."vscode-uri-3.0.2"
@@ -122516,13 +124583,13 @@ in
src = ../../misc/vscode-extensions/vscode-lldb/build-deps;
dependencies = [
sources."@discoveryjs/json-ext-0.5.5"
- sources."@types/eslint-7.28.0"
+ sources."@types/eslint-7.28.1"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
sources."@types/mocha-7.0.2"
sources."@types/node-8.10.66"
- sources."@types/vscode-1.60.0"
+ sources."@types/vscode-1.61.0"
sources."@types/yauzl-2.9.2"
sources."@ungap/promise-all-settled-1.1.2"
sources."@webassemblyjs/ast-1.11.1"
@@ -122540,9 +124607,9 @@ in
sources."@webassemblyjs/wasm-opt-1.11.1"
sources."@webassemblyjs/wasm-parser-1.11.1"
sources."@webassemblyjs/wast-printer-1.11.1"
- sources."@webpack-cli/configtest-1.0.4"
- sources."@webpack-cli/info-1.3.0"
- sources."@webpack-cli/serve-1.5.2"
+ sources."@webpack-cli/configtest-1.1.0"
+ sources."@webpack-cli/info-1.4.0"
+ sources."@webpack-cli/serve-1.6.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
sources."acorn-8.5.0"
@@ -122562,12 +124629,12 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-stdout-1.3.1"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
(sources."chalk-4.1.2" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -122588,13 +124655,13 @@ in
sources."clone-deep-4.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.4.0"
+ sources."colorette-2.0.16"
sources."commander-6.2.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
(sources."debug-4.3.1" // {
dependencies = [
sources."ms-2.1.2"
@@ -122607,14 +124674,14 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-4.2.2"
sources."domutils-2.8.0"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.3"
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."errno-0.1.8"
- sources."es-module-lexer-0.9.2"
+ sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
sources."escape-string-regexp-4.0.0"
sources."eslint-scope-5.1.1"
@@ -122656,7 +124723,7 @@ in
sources."inherits-2.0.4"
sources."interpret-2.2.0"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.3"
@@ -122667,7 +124734,7 @@ in
sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- sources."jest-worker-27.2.4"
+ sources."jest-worker-27.2.5"
sources."js-yaml-4.0.0"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
@@ -122710,7 +124777,7 @@ in
sources."mute-stream-0.0.8"
sources."nanoid-3.1.20"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."nth-check-2.0.1"
@@ -122731,7 +124798,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."pend-1.2.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
(sources."pkg-dir-4.2.0" // {
dependencies = [
@@ -122799,7 +124866,7 @@ in
sources."tslib-2.3.1"
sources."tunnel-0.0.6"
sources."typed-rest-client-1.8.6"
- sources."typescript-4.4.3"
+ sources."typescript-4.4.4"
sources."uc.micro-1.0.6"
sources."underscore-1.13.1"
sources."uri-js-4.4.1"
@@ -122820,8 +124887,8 @@ in
sources."vscode-debugadapter-testsupport-1.49.0"
sources."vscode-debugprotocol-1.49.0"
sources."watchpack-2.2.0"
- sources."webpack-5.56.1"
- (sources."webpack-cli-4.8.0" // {
+ sources."webpack-5.58.2"
+ (sources."webpack-cli-4.9.0" // {
dependencies = [
sources."commander-7.2.0"
];
@@ -123165,7 +125232,7 @@ in
sha512 = "/dd2bJLxOmX8Ie0EPTlmU+F8cxAekn/1m8K9OAFoijm4fc8SdHznFUUEKuz2RMMhsaL5+rccj8xLFAJELYNbaA==";
};
dependencies = [
- sources."@babel/code-frame-7.14.5"
+ sources."@babel/code-frame-7.15.8"
sources."@babel/helper-validator-identifier-7.15.7"
sources."@babel/highlight-7.14.5"
sources."@emmetio/extract-abbreviation-0.1.6"
@@ -123183,7 +125250,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -123540,7 +125607,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-data-descriptor-1.0.0"
sources."is-decimal-1.0.4"
sources."is-descriptor-1.0.2"
@@ -124047,7 +126114,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-5.3.0-next.10"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
sources."vscode-textbuffer-1.0.0"
@@ -124102,13 +126169,13 @@ in
wavedrom-cli = nodeEnv.buildNodePackage {
name = "wavedrom-cli";
packageName = "wavedrom-cli";
- version = "2.6.8";
+ version = "2.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/wavedrom-cli/-/wavedrom-cli-2.6.8.tgz";
- sha512 = "uhSNGU27KDT2e2v51l/NqMc59O7X0DG7CHonZOwsnvMHLvyudCLZgXCU8Rw4T8gpqg2asn50vfPHq7l3DGlN5w==";
+ url = "https://registry.npmjs.org/wavedrom-cli/-/wavedrom-cli-2.8.1.tgz";
+ sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg==";
};
dependencies = [
- sources."@babel/runtime-7.15.4"
+ sources."@babel/runtime-corejs3-7.15.4"
sources."@mapbox/node-pre-gyp-1.0.5"
sources."@tootallnate/once-1.1.2"
sources."@types/raf-3.4.0"
@@ -124127,24 +126194,14 @@ in
sources."aproba-1.2.0"
sources."are-we-there-yet-1.1.7"
sources."asynckit-0.4.0"
- sources."at-least-node-1.0.0"
sources."atob-2.1.2"
sources."balanced-match-1.0.2"
- (sources."bit-field-1.5.3" // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."fs-extra-10.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- sources."yargs-17.2.1"
- ];
- })
+ sources."bit-field-1.5.3"
sources."brace-expansion-1.1.11"
sources."browser-process-hrtime-1.0.0"
sources."btoa-1.2.1"
sources."canvas-2.8.0"
- sources."canvg-3.0.9"
+ sources."canvg-3.0.7"
sources."chownr-2.0.0"
(sources."cliui-7.0.4" // {
dependencies = [
@@ -124160,7 +126217,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-3.18.1"
+ sources."core-js-pure-3.18.3"
sources."core-util-is-1.0.3"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
@@ -124195,7 +126252,7 @@ in
sources."esutils-2.0.3"
sources."fast-levenshtein-2.0.6"
sources."form-data-3.0.1"
- sources."fs-extra-9.1.0"
+ sources."fs-extra-10.0.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
@@ -124276,8 +126333,8 @@ in
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
- sources."svg-pathdata-6.0.3"
- sources."svg2img-0.9.3"
+ sources."svg-pathdata-5.0.5"
+ sources."svg2img-0.9.4"
sources."symbol-tree-3.2.4"
sources."tar-6.1.11"
(sources."tough-cookie-4.0.0" // {
@@ -124292,12 +126349,12 @@ in
sources."util-deprecate-1.0.2"
sources."w3c-hr-time-1.0.2"
sources."w3c-xmlserializer-2.0.0"
- sources."wavedrom-2.8.1"
+ sources."wavedrom-2.8.3"
sources."webidl-conversions-3.0.1"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-5.0.0"
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."word-wrap-1.2.3"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
@@ -124313,7 +126370,7 @@ in
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- (sources."yargs-16.2.0" // {
+ (sources."yargs-17.2.1" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -124336,10 +126393,10 @@ in
web-ext = nodeEnv.buildNodePackage {
name = "web-ext";
packageName = "web-ext";
- version = "6.4.0";
+ version = "6.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-6.4.0.tgz";
- sha512 = "M8NLCvgpPbJ9spQPlBjNmSEg674lC1SPI/X5UK0tJoz8mqvL70mFTEWrFcmgjDewzh+/DFNKiIOQFPg1UXjYDw==";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-6.5.0.tgz";
+ sha512 = "71DE73YkxKEyiy1O5Ei5Uy1ZCT0tOPriPWIkH3g+mpnd52Gr1u2buexpq2upATekhc1Mu87d9EmRqXg2Kqhszw==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -124374,21 +126431,22 @@ in
];
})
sources."@humanwhocodes/object-schema-1.2.0"
- sources."@mdn/browser-compat-data-4.0.2"
+ sources."@mdn/browser-compat-data-4.0.5"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."@types/yauzl-2.9.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.2"
- (sources."addons-linter-3.14.0" // {
+ (sources."addons-linter-3.20.0" // {
dependencies = [
- sources."yargs-17.1.1"
+ sources."yargs-17.2.1"
];
})
- sources."addons-scanner-utils-4.10.0"
- sources."adm-zip-0.5.7"
+ sources."addons-moz-compare-1.2.0"
+ sources."addons-scanner-utils-5.0.0"
+ sources."adm-zip-0.5.9"
sources."ajv-6.12.6"
sources."ajv-merge-patch-4.1.0"
sources."ansi-align-3.0.1"
@@ -124447,7 +126505,6 @@ in
sources."clone-response-1.0.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.4.0"
sources."columnify-1.5.4"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -124455,12 +126512,12 @@ in
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
sources."configstore-5.0.1"
- sources."core-js-3.17.2"
+ sources."core-js-3.18.0"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."css-select-4.1.3"
- sources."css-what-5.0.1"
+ sources."css-what-5.1.0"
sources."dashdash-1.14.1"
sources."debounce-1.2.0"
sources."debug-2.6.9"
@@ -124523,7 +126580,7 @@ in
];
})
sources."eslint-visitor-keys-3.0.0"
- (sources."espree-8.0.0" // {
+ (sources."espree-9.0.0" // {
dependencies = [
sources."acorn-8.5.0"
];
@@ -124558,7 +126615,7 @@ in
sources."fastify-warning-0.2.0"
sources."fd-slicer-1.1.0"
sources."file-entry-cache-6.0.1"
- (sources."firefox-profile-4.2.0" // {
+ (sources."firefox-profile-4.2.1" // {
dependencies = [
sources."fs-extra-9.0.1"
];
@@ -124589,7 +126646,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-stream-5.2.0"
sources."getpass-0.1.7"
- sources."glob-7.1.7"
+ sources."glob-7.2.0"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
sources."global-dirs-3.0.0"
@@ -124721,7 +126778,7 @@ in
})
sources."mz-2.7.0"
sources."nan-2.15.0"
- sources."nanoid-3.1.28"
+ sources."nanoid-3.1.30"
sources."natural-compare-1.4.0"
sources."natural-compare-lite-1.4.0"
sources."ncp-2.0.0"
@@ -124761,9 +126818,10 @@ in
sources."path-key-3.1.1"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."pino-6.13.2"
+ sources."picocolors-0.2.1"
+ sources."pino-6.13.3"
sources."pino-std-serializers-3.2.0"
- sources."postcss-8.3.6"
+ sources."postcss-8.3.9"
sources."prelude-ls-1.2.1"
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
@@ -124824,13 +126882,13 @@ in
sources."shebang-regex-3.0.0"
sources."shell-quote-1.6.1"
sources."shellwords-0.1.1"
- sources."sign-addon-3.8.0"
+ sources."sign-addon-3.9.0"
sources."signal-exit-3.0.5"
sources."slice-ansi-4.0.0"
sources."sonic-boom-1.4.1"
sources."source-map-0.6.1"
sources."source-map-js-0.6.2"
- sources."source-map-support-0.5.19"
+ sources."source-map-support-0.5.20"
sources."spawn-sync-1.0.15"
sources."split-0.3.3"
sources."sprintf-js-1.0.3"
@@ -124932,17 +126990,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.56.1";
+ version = "5.58.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.56.1.tgz";
- sha512 = "MRbTPooHJuSAfbx7Lh/qEMRUe/d0p4cRj2GPo/fq+4JUeR/+Q1EfLvS1lexslbMcJZyPXxxz/k/NzVepkA5upA==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.58.2.tgz";
+ sha512 = "3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw==";
};
dependencies = [
- sources."@types/eslint-7.28.0"
+ sources."@types/eslint-7.28.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.10.2"
+ sources."@types/node-16.11.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -124964,14 +127022,14 @@ in
sources."acorn-import-assertions-1.8.0"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.17.3"
+ sources."browserslist-4.17.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001264"
+ sources."caniuse-lite-1.0.30001267"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.859"
+ sources."electron-to-chromium-1.3.870"
sources."enhanced-resolve-5.8.3"
- sources."es-module-lexer-0.9.2"
+ sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
sources."eslint-scope-5.1.1"
(sources."esrecurse-4.3.0" // {
@@ -124986,7 +127044,7 @@ in
sources."glob-to-regexp-0.4.1"
sources."graceful-fs-4.2.8"
sources."has-flag-4.0.0"
- sources."jest-worker-27.2.4"
+ sources."jest-worker-27.2.5"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
sources."loader-runner-4.2.0"
@@ -124994,9 +127052,9 @@ in
sources."mime-db-1.50.0"
sources."mime-types-2.1.33"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.77"
+ sources."node-releases-2.0.0"
sources."p-limit-3.1.0"
- sources."picocolors-0.2.1"
+ sources."picocolors-1.0.0"
sources."punycode-2.1.1"
sources."randombytes-2.1.0"
sources."safe-buffer-5.2.1"
@@ -125030,18 +127088,18 @@ in
webpack-cli = nodeEnv.buildNodePackage {
name = "webpack-cli";
packageName = "webpack-cli";
- version = "4.8.0";
+ version = "4.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz";
- sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw==";
+ url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.0.tgz";
+ sha512 = "n/jZZBMzVEl4PYIBs+auy2WI0WTQ74EnJDiyD98O2JZY6IVIHJNitkYp/uTXOviIOMfgzrNvC9foKv/8o8KSZw==";
};
dependencies = [
sources."@discoveryjs/json-ext-0.5.5"
- sources."@webpack-cli/configtest-1.0.4"
- sources."@webpack-cli/info-1.3.0"
- sources."@webpack-cli/serve-1.5.2"
+ sources."@webpack-cli/configtest-1.1.0"
+ sources."@webpack-cli/info-1.4.0"
+ sources."@webpack-cli/serve-1.6.0"
sources."clone-deep-4.0.1"
- sources."colorette-1.4.0"
+ sources."colorette-2.0.16"
sources."commander-7.2.0"
sources."cross-spawn-7.0.3"
sources."envinfo-7.8.1"
@@ -125054,7 +127112,7 @@ in
sources."human-signals-2.1.0"
sources."import-local-3.0.3"
sources."interpret-2.2.0"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-plain-object-2.0.4"
sources."is-stream-2.0.1"
sources."isexe-2.0.0"
@@ -125110,7 +127168,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/retry-0.12.1"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -125138,7 +127196,7 @@ in
sources."call-bind-1.0.2"
sources."chokidar-3.5.2"
sources."clean-stack-2.2.0"
- sources."colorette-2.0.14"
+ sources."colorette-2.0.16"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
dependencies = [
@@ -125283,7 +127341,7 @@ in
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."p-event-4.2.0"
sources."p-finally-1.0.0"
sources."p-map-4.0.0"
@@ -125486,7 +127544,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.10.2"
+ sources."@types/node-16.11.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
sources."ansi-regex-5.0.1"
@@ -125536,7 +127594,7 @@ in
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.2"
sources."buffer-indexof-1.1.1"
- sources."bufferutil-4.0.4"
+ sources."bufferutil-4.0.5"
sources."cache-chunk-store-3.2.2"
(sources."castv2-0.1.10" // {
dependencies = [
@@ -125606,7 +127664,7 @@ in
sources."glob-7.2.0"
sources."has-flag-4.0.0"
sources."he-1.2.0"
- sources."http-node-git://github.com/feross/http-node#webtorrent"
+ sources."http-node-git://github.com/webtorrent/http-node#webtorrent"
sources."http-parser-js-0.4.13"
sources."ieee754-1.2.1"
sources."immediate-chunk-store-2.2.0"
@@ -125672,7 +127730,7 @@ in
sources."nodebmc-0.0.7"
sources."on-finished-2.3.0"
sources."once-1.4.0"
- sources."open-8.2.1"
+ sources."open-8.3.0"
sources."package-json-versionify-1.0.4"
(sources."parse-torrent-9.1.4" // {
dependencies = [
@@ -125742,7 +127800,7 @@ in
sources."stream-to-blob-2.0.1"
sources."stream-to-blob-url-3.0.2"
sources."stream-with-known-length-to-buffer-1.0.4"
- sources."streamx-2.11.2"
+ sources."streamx-2.11.3"
sources."string-width-4.2.3"
sources."string2compact-1.3.2"
sources."string_decoder-1.3.0"
@@ -125775,12 +127833,12 @@ in
];
})
sources."ut_pex-3.0.2"
- sources."utf-8-validate-5.0.6"
+ sources."utf-8-validate-5.0.7"
sources."util-deprecate-1.0.2"
sources."utp-native-2.5.3"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-1.5.5" // {
+ (sources."webtorrent-1.5.6" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -125858,10 +127916,10 @@ in
yaml-language-server = nodeEnv.buildNodePackage {
name = "yaml-language-server";
packageName = "yaml-language-server";
- version = "0.23.0";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.23.0.tgz";
- sha512 = "0x3T9GknnROfA8RErRX5djn+3P7PixVonWubhalJTqc5+ZrWVSRimm7XFzZx3owstpxgtH0QYmP68B8grNkXMw==";
+ url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.0.0.tgz";
+ sha512 = "Sp3+CRfH3eiL+wWiUrchTQ+SJWKDlyCGpPxqyxzH9J+KeQ29HeRXY43x8W3lB1mlN0uUp2vlErYlgu2cUpJ6uA==";
};
dependencies = [
sources."agent-base-4.3.0"
@@ -125881,12 +127939,11 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-textdocument-1.0.2"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
sources."vscode-uri-3.0.2"
- sources."yaml-2.0.0-7"
- sources."yaml-language-server-parser-0.1.3"
+ sources."yaml-2.0.0-8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -126074,9 +128131,8 @@ in
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
- (sources."bin-links-2.2.1" // {
+ (sources."bin-links-2.3.0" // {
dependencies = [
- sources."mkdirp-1.0.4"
sources."write-file-atomic-3.0.3"
];
})
@@ -126146,7 +128202,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.18.1"
+ sources."core-js-3.18.3"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -126292,7 +128348,7 @@ in
sources."ip-regex-2.1.0"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.7.0"
+ sources."is-core-module-2.8.0"
sources."is-docker-1.1.0"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
@@ -126806,7 +128862,7 @@ in
sources."path-exists-4.0.0"
];
})
- sources."wide-align-1.1.3"
+ sources."wide-align-1.1.5"
sources."widest-line-2.0.1"
sources."windows-release-3.3.3"
(sources."wrap-ansi-2.1.0" // {
@@ -126857,7 +128913,7 @@ in
})
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
- sources."inquirer-8.1.5"
+ sources."inquirer-8.2.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-stream-2.0.1"
sources."locate-path-6.0.0"
@@ -126872,7 +128928,7 @@ in
sources."path-exists-4.0.0"
sources."path-key-3.1.1"
sources."restore-cursor-3.1.0"
- sources."rxjs-7.3.1"
+ sources."rxjs-7.4.0"
sources."semver-7.3.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -126926,7 +128982,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.10.2"
+ sources."@types/node-16.11.0"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."array-union-3.0.1"
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix
index 197a3eaf69..c63f3f796a 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix
@@ -28,9 +28,15 @@ buildDunePackage rec {
})
];
+ # Fix build with ppxlib 0.23
+ postPatch = ''
+ substituteInPlace ppx/ppx_bistro.ml \
+ --replace 'Parser.parse_expression' 'Ocaml_common.Parser.parse_expression'
+ '';
+
propagatedBuildInputs = [ base64 bos core lwt_react ocamlgraph rresult tyxml ];
- minimumOCamlVersion = "4.08";
+ minimalOCamlVersion = "4.12";
meta = {
inherit (src.meta) homepage;
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/0.14.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/0.14.nix
index 8f7262b477..116349746b 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/0.14.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/0.14.nix
@@ -41,7 +41,7 @@ with self;
version = "0.14.1";
hash = "1cdkv34m6czhacivpbb2sasj83fgcid6gnqk30ig9i84z8nh2gw2";
meta.description = "Accessors for Core types, for use with the Accessor library";
- meta.broken = lib.versionAtLeast ocaml.version "4.12";
+ meta.broken = true; # Not compatible with ppxlib ≥ 0.23
propagatedBuildInputs = [ accessor_base core_kernel ];
};
@@ -375,9 +375,9 @@ with self;
ppx_accessor = janePackage {
pname = "ppx_accessor";
- version = "0.14.2";
+ version = "0.14.3";
minimumOCamlVersion = "4.09";
- hash = "01nifsh7gap28cpvff6i569lqr1gmyhrklkisgri538cp4pf1wq1";
+ hash = "sha256:1c8blzh2f34vbm1z3mnvh670c6vda70chw805n2hmkd9j46l0cll";
meta.description = "[@@deriving] plugin to generate accessors for use with the Accessor libraries";
propagatedBuildInputs = [ accessor ];
};
@@ -633,9 +633,9 @@ with self;
ppx_variants_conv = janePackage {
pname = "ppx_variants_conv";
- version = "0.14.1";
+ version = "0.14.2";
minimumOCamlVersion = "4.04.2";
- hash = "0q6a43zrwqzdz7aja0k44a2llyjjj5xzi2kigwhsnww3g0r5ig84";
+ hash = "1p11fiz4m160hs0xzg4g9rxchp053sz3s3d1lyciqixad1xi47a4";
meta.description = "Generation of accessor and iteration functions for ocaml variant types";
propagatedBuildInputs = [ variantslib ppxlib ];
};
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/menhir/lib.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/menhir/lib.nix
index 3f6660f23e..5888833203 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/menhir/lib.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/menhir/lib.nix
@@ -2,14 +2,14 @@
buildDunePackage rec {
pname = "menhirLib";
- version = "20210419";
+ version = "20211012";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = "menhir";
rev = version;
- sha256 = "0jcbr7s3iwfr7xxfybs3h407g76yfp5yq5r9i0wg2ahvvbqh03ky";
+ sha256 = "08kf5apbv15n2kcr3qhyr3rvsf2lg25ackr3x9kfgiiqc0p3sz40";
};
useDune2 = true;
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix
index cf72397057..942d69e591 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/default.nix
@@ -22,13 +22,13 @@ else
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-${pname}-${version}";
inherit pname;
- version = "0.6.4";
+ version = "0.6.5";
src = fetchFromGitHub {
owner = "mirage";
repo = pname;
rev = "v${version}";
- sha256 = "0w3x2wfd04qr6mci4cp1gfqw33yysp8gamgkpgbgwslr0skryiq5";
+ sha256 = "sha256:1mbyjzwcs64n7i3xkkyaxgl3r46drbl0gkqf3fqgm2kh3q03638l";
};
postUnpack = ''
@@ -55,15 +55,6 @@ stdenv.mkDerivation rec {
runHook postConfigure
'';
- preBuild = ''
- # perform substitutions, so opam isn't needed
- for flags in flags/cflags.tmp flags/libs.tmp; do
- substitute "$flags.in" "$flags" \
- --replace "%{prefix}%" "$out" \
- --replace "%{ocaml-freestanding:lib}%" "$out/lib"
- done
- '';
-
installPhase = ''
runHook preInstall
./install.sh "$out"
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/no-opam.patch b/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/no-opam.patch
index 43141b1472..45f271ec0f 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/no-opam.patch
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-freestanding/no-opam.patch
@@ -22,43 +22,6 @@ Date: Thu Mar 18 01:07:49 2021 +0100
nice bonus). The Makefile needs no fix since the target ocaml/Makefile
won't be built if it's already present.
-diff --git a/Makefile b/Makefile
-index b07b8c6..a68b31d 100644
---- a/Makefile
-+++ b/Makefile
-@@ -2,6 +2,12 @@
-
- include Makeconf
-
-+ifneq ($(shell command -v opam),)
-+ # only set if opam is available and PKG_CONFIG_PATH isn't
-+ # already set in the environment or on the command line
-+ PKG_CONFIG_PATH ?= $(shell opam config var prefix)/lib/pkgconfig
-+endif
-+
- FREESTANDING_LIBS=openlibm/libopenlibm.a \
- ocaml/runtime/libasmrun.a \
- nolibc/libnolibc.a
-@@ -73,8 +79,7 @@ flags/libs.tmp: flags/libs.tmp.in
- opam config subst $@
-
- flags/libs: flags/libs.tmp Makeconf
-- env PKG_CONFIG_PATH="$(shell opam config var prefix)/lib/pkgconfig" \
-- pkg-config $(PKG_CONFIG_DEPS) --libs >> $<
-+ pkg-config $(PKG_CONFIG_DEPS) --libs >> $<
- awk -v RS= -- '{ \
- sub("@@PKG_CONFIG_EXTRA_LIBS@@", "$(PKG_CONFIG_EXTRA_LIBS)", $$0); \
- print "(", $$0, ")" \
-@@ -84,8 +89,7 @@ flags/cflags.tmp: flags/cflags.tmp.in
- opam config subst $@
-
- flags/cflags: flags/cflags.tmp Makeconf
-- env PKG_CONFIG_PATH="$(shell opam config var prefix)/lib/pkgconfig" \
-- pkg-config $(PKG_CONFIG_DEPS) --cflags >> $<
-+ pkg-config $(PKG_CONFIG_DEPS) --cflags >> $<
- awk -v RS= -- '{ \
- print "(", $$0, ")" \
- }' $< >$@
diff --git a/configure.sh b/configure.sh
index 4d154ed..c254f7b 100755
--- a/configure.sh
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/ppx_deriving_yaml/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/ppx_deriving_yaml/default.nix
new file mode 100644
index 0000000000..0dfd8edd57
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/ppx_deriving_yaml/default.nix
@@ -0,0 +1,29 @@
+{ lib, buildDunePackage, fetchurl, ppxlib, alcotest
+, ppx_deriving, yaml
+}:
+
+buildDunePackage rec {
+ pname = "ppx_deriving_yaml";
+ version = "0.1.0";
+
+ useDune2 = true;
+
+ minimalOCamlVersion = "4.08";
+
+ src = fetchurl {
+ url = "https://github.com/patricoferris/ppx_deriving_yaml/releases/download/v${version}/ppx_deriving_yaml-v${version}.tbz";
+ sha256 = "kdonUD4Y8QhVSAFAafIpXBFPkS4pSScYwJbaWMn/6pA=";
+ };
+
+ propagatedBuildInputs = [ ppxlib ppx_deriving yaml ];
+
+ doCheck = true;
+ checkInputs = [ alcotest ];
+
+ meta = {
+ description = "A YAML codec generator for OCaml";
+ homepage = "https://github.com/patricoferris/ppx_deriving_yaml";
+ license = lib.licenses.isc;
+ maintainers = [ ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/ppxlib/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/ppxlib/default.nix
index c4591927e0..faae96764b 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/ppxlib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/ppxlib/default.nix
@@ -2,7 +2,7 @@
, version ?
if lib.versionAtLeast ocaml.version "4.07"
then if lib.versionAtLeast ocaml.version "4.08"
- then "0.22.2" else "0.15.0" else "0.13.0"
+ then "0.23.0" else "0.15.0" else "0.13.0"
, ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
, stdlib-shims, ocaml-migrate-parsetree-2
}:
@@ -38,6 +38,10 @@ let param = {
sha256 = "0fysjqcpv281n52wl3h0dy2lzf9d61wdzk90ldv3p63a4i3mr1j2";
min_version = "4.07";
};
+ "0.23.0" = {
+ sha256 = "0jg5v4pssbl66hn5davpin1i57a0r3r54l96vpz5y99xk5w70xi1";
+ min_version = "4.07";
+ };
}."${version}"; in
if param ? max_version && lib.versionAtLeast ocaml.version param.max_version
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/sawja/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/sawja/default.nix
index 30ac2cfb22..284ba97b9c 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/sawja/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/sawja/default.nix
@@ -1,8 +1,8 @@
-{ lib, stdenv, fetchFromGitHub, which, perl, ocaml, findlib, javalib }:
+{ lib, stdenv, fetchFromGitHub, which, ocaml, findlib, javalib }:
let
pname = "sawja";
- version = "1.5.8";
+ version = "1.5.10";
webpage = "http://sawja.inria.fr/";
in
@@ -12,16 +12,20 @@ else
stdenv.mkDerivation {
- name = "ocaml${ocaml.version}-${pname}-${version}";
+ pname = "ocaml${ocaml.version}-${pname}";
+
+ inherit version;
src = fetchFromGitHub {
owner = "javalib-team";
repo = pname;
- rev = "v${version}";
- sha256 = "0rawr0jav33rvagm8sxc0arc7ya1fd9w5nng3lhfk8p02f9z8wrp";
+ rev = version;
+ sha256 = "sha256:0k51rscs9mdgpg3qn4cahql5ncdvlb207m015hr8v6r1vfgn0ddq";
};
- buildInputs = [ which perl ocaml findlib ];
+ nativeBuildInputs = [ which ];
+
+ buildInputs = [ ocaml findlib ];
patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/default.nix
index c8b2b614e8..2b8714ed10 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/default.nix
@@ -1,22 +1,23 @@
{ lib, fetchurl, buildDunePackage
, dune-configurator
-, ppx_sexp_conv
-, bos, ctypes, fmt, logs, rresult, sexplib
+, bos, ctypes, fmt, logs, rresult
+, mdx, alcotest, crowbar, junit_alcotest, ezjsonm
}:
buildDunePackage rec {
pname = "yaml";
- version = "2.1.0";
+ version = "3.0.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/avsm/ocaml-yaml/releases/download/v${version}/yaml-v${version}.tbz";
- sha256 = "03g8vsh5jgi1cm5q78v15slgnzifp91fp7n4v1i7pa8yk0bkh585";
+ sha256 = "1iws6lbnrrd5hhmm7lczfvqp0aidx5xn7jlqk2s5rjfmj9qf4j2c";
};
buildInputs = [ dune-configurator ];
- propagatedBuildInputs = [ bos ctypes fmt logs ppx_sexp_conv rresult sexplib ];
+ propagatedBuildInputs = [ bos ctypes rresult ];
+ checkInputs = [ fmt logs mdx alcotest crowbar junit_alcotest ezjsonm ];
meta = {
description = "Parse and generate YAML 1.1 files";
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/yaml-sexp.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/yaml-sexp.nix
new file mode 100644
index 0000000000..9603614584
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/yaml/yaml-sexp.nix
@@ -0,0 +1,13 @@
+{ lib, fetchurl, buildDunePackage, yaml, dune-configurator, ppx_sexp_conv, sexplib }:
+
+buildDunePackage rec {
+ pname = "yaml-sexp";
+
+ inherit (yaml) version src useDune2;
+
+ propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ];
+
+ meta = yaml.meta // {
+ description = "ocaml-yaml with sexp support";
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/adb-enhanced/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/adb-enhanced/default.nix
index 62922efa53..c38851160c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/adb-enhanced/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/adb-enhanced/default.nix
@@ -1,8 +1,15 @@
-{ lib, jdk11, fetchFromGitHub, buildPythonPackage, docopt, psutil, pythonOlder }:
+{ lib
+, buildPythonPackage
+, docopt
+, fetchFromGitHub
+, jdk11
+, psutil
+, pythonOlder
+}:
buildPythonPackage rec {
pname = "adb-enhanced";
- version = "2.5.11";
+ version = "2.5.12";
disabled = pythonOlder "3.4";
@@ -10,20 +17,25 @@ buildPythonPackage rec {
owner = "ashishb";
repo = pname;
rev = version;
- sha256 = "sha256-jb5O7Qxk2xAX5sax6nqywcGBJao5Xfff9s1yvdfvDCs=";
+ sha256 = "sha256-OZSLk5qXX6rEclo6JC8o/7Mz0Y2sJqUsLhnrVK4gkVI=";
};
+ propagatedBuildInputs = [
+ psutil
+ docopt
+ ];
+
postPatch = ''
substituteInPlace adbe/adb_enhanced.py \
--replace "cmd = 'java" "cmd = '${jdk11}/bin/java"
'';
- propagatedBuildInputs = [ psutil docopt ];
-
- # Disable tests because they require a dedicated android emulator
+ # Disable tests because they require a dedicated Android emulator
doCheck = false;
- pythonImportsCheck = [ "adbe" ];
+ pythonImportsCheck = [
+ "adbe"
+ ];
meta = with lib; {
description = "Tool for Android testing and development";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/adb-shell/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/adb-shell/default.nix
index 47a70940e9..9094b1c780 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/adb-shell/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/adb-shell/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "adb-shell";
- version = "0.4.0";
+ version = "0.4.1";
disabled = !isPy3k;
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "JeffLIrion";
repo = "adb_shell";
rev = "v${version}";
- sha256 = "1dzpgpvjvss4mk2kp1s9g1gg0d008pbmfdsi9b98q9fax9syk725";
+ sha256 = "sha256-E7sX+N6d5Otwp1AbdPCnQJ2YT/k89+6kMJDLt8U2Dsg=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ailment/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ailment/default.nix
index 8d719f4c33..d5676e4a62 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ailment/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ailment/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "ailment";
- version = "9.0.10159";
+ version = "9.0.10281";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-45wdHlAkuzLqwy3B7bEm2fhHD8iT5xSVmeRGOa2SNnI=";
+ sha256 = "sha256-5XP7HcffdnFyUrQAga6MFKU3pS0aOeJRTtEQgSaPNDU=";
};
propagatedBuildInputs = [ pyvex ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/aioharmony/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/aioharmony/default.nix
index 3f2ee2fee3..fea1956e33 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/aioharmony/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/aioharmony/default.nix
@@ -3,18 +3,19 @@
, async-timeout
, buildPythonPackage
, fetchPypi
-, isPy3k
+, pythonOlder
, slixmpp
}:
buildPythonPackage rec {
pname = "aioharmony";
- version = "0.2.7";
- disabled = !isPy3k;
+ version = "0.2.8";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-aej8xC0Bsy6ip7IwO6onp55p6afkz8yZnz14cCExSPA=";
+ sha256 = "0adf08955810a227db489556dc3ca808e4f825a00183f613797856114c2a2a47";
};
propagatedBuildInputs = [
@@ -26,7 +27,10 @@ buildPythonPackage rec {
# aioharmony does not seem to include tests
doCheck = false;
- pythonImportsCheck = [ "aioharmony.harmonyapi" "aioharmony.harmonyclient" ];
+ pythonImportsCheck = [
+ "aioharmony.harmonyapi"
+ "aioharmony.harmonyclient"
+ ];
meta = with lib; {
homepage = "https://github.com/ehendrix23/aioharmony";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/aiomusiccast/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/aiomusiccast/default.nix
index d64f936ef1..55b5d42151 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/aiomusiccast/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/aiomusiccast/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "aiomusiccast";
- version = "0.10.0";
+ version = "0.11.0";
format = "pyproject";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "vigonotion";
repo = "aiomusiccast";
rev = version;
- sha256 = "sha256-UdWZLthpCuKLjASVwi4GTkrHY+K9c1xrNYVLezC/NGM=";
+ sha256 = "sha256-58l9bmGmSRFHqiKwHtGcAu2H+JnKjsZZg+fxbLW5xBg=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/aioridwell/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/aioridwell/default.nix
index 2b3bc08d1d..a11e06791f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/aioridwell/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/aioridwell/default.nix
@@ -55,6 +55,11 @@ buildPythonPackage rec {
--replace 'pytz = "^2021.3"' 'pytz = "*"'
'';
+ disabledTests = [
+ # AssertionError: assert datetime.date(...
+ "test_get_next_pickup_event"
+ ];
+
disabledTestPaths = [
# Ignore the examples directory as the files are prefixed with test_
"examples/"
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/airthings/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/airthings-cloud/default.nix
similarity index 96%
rename from third_party/nixpkgs/pkgs/development/python-modules/airthings/default.nix
rename to third_party/nixpkgs/pkgs/development/python-modules/airthings-cloud/default.nix
index 21525941cb..ca80f38c89 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/airthings/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/airthings-cloud/default.nix
@@ -7,7 +7,7 @@
}:
buildPythonPackage rec {
- pname = "airthings";
+ pname = "airthings-cloud";
version = "0.0.1";
format = "setuptools";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/angr/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/angr/default.nix
index 21539a93f4..c9f4cf3290 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/angr/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/angr/default.nix
@@ -43,14 +43,14 @@ in
buildPythonPackage rec {
pname = "angr";
- version = "9.0.10159";
+ version = "9.0.10281";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "sha256-j3SbKBoREeB4IJmXVm27K4C1FLcZwqFMFXQwWnMtE0g=";
+ sha256 = "sha256-ab4G71LjiQftV5NidGPUpt1/oKhJPZKsTN/fbLR1n80=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/angrop/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/angrop/default.nix
index 71690bf31b..8ccfaee4cf 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/angrop/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/angrop/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "angrop";
- version = "9.0.10159";
+ version = "9.0.10281";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-gVYriEt0/DPB0lDK9hGSnipGLCZtSOf27gtF8KwCMDA=";
+ sha256 = "sha256-A+e6rSuSI4kGxccJ34Dp6WohtRkc0EzeTAffxgOYg5o=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ansible/core.nix b/third_party/nixpkgs/pkgs/development/python-modules/ansible/core.nix
index dc87dcfeda..574af6d379 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ansible/core.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ansible/core.nix
@@ -23,8 +23,8 @@
let
ansible-collections = callPackage ./collections.nix {
- version = "4.5.0";
- sha256 = "1c8dspqy4in7sgz10y1pggwnh1hv79wap7p7xhai0f0s6nr54lyc";
+ version = "4.7.0";
+ sha256 = "0aab9id6dqfw2111r731c7y1p77dpzczynmgl4d989p3a7n54z0b";
};
in
buildPythonPackage rec {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/archinfo/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/archinfo/default.nix
index 88bb434a2c..7c63e6e083 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/archinfo/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/archinfo/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "archinfo";
- version = "9.0.10159";
+ version = "9.0.10281";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-WkA4vSXzndd7ldNBVagEEodj+2GuYg9OURnMLhRq8W8=";
+ sha256 = "sha256-ZmrCVXvnUZQqxMonq3obmAJQGEgghk22NA2G5Y2BPQg=";
};
checkInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/asyncio-nats-client/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/asyncio-nats-client/default.nix
index a7feac7312..b501712385 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/asyncio-nats-client/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/asyncio-nats-client/default.nix
@@ -5,6 +5,7 @@
, nats-server
, pytestCheckHook
, pythonOlder
+, uvloop
}:
buildPythonPackage rec {
@@ -26,6 +27,7 @@ buildPythonPackage rec {
checkInputs = [
nats-server
pytestCheckHook
+ uvloop
];
postPatch = ''
@@ -37,6 +39,8 @@ buildPythonPackage rec {
# RuntimeError: Event loop is closed
"test_subscribe_no_echo"
"test_reconnect_to_new_server_with_auth"
+ "test_drain_connection"
+ "test_discover_servers_on_first_connect"
];
pythonImportsCheck = [ "nats.aio" ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/asyncssh/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/asyncssh/default.nix
index 5afd91f52f..4c2fd7e6c6 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/asyncssh/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/asyncssh/default.nix
@@ -59,6 +59,11 @@ buildPythonPackage rec {
"tests/sspi_stub.py"
];
+ disabledTests = [
+ # No PIN set
+ "TestSKAuthCTAP2"
+ ];
+
pythonImportsCheck = [ "asyncssh" ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/asyncstdlib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/asyncstdlib/default.nix
index a2434a9cb6..031c696f02 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/asyncstdlib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/asyncstdlib/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "asyncstdlib";
- version = "3.10.1";
+ version = "3.10.2";
disabled = pythonOlder "3.7";
format = "flit";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "maxfischer2781";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-D8XaBny/m6dXMz6k/FhVX/5t8guNdJsfiX4cVQV4VIY=";
+ sha256 = "sha256-vjOhfEsAldTjROFUer1SgEX1KxnNM/WwtLsCB9ZV1WM=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/auth0-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/auth0-python/default.nix
index 41e0ede31c..224b8bec40 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/auth0-python/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/auth0-python/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "auth0-python";
- version = "3.18.0";
+ version = "3.19.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-jitJF+puXaLv3qyJOjLFetzxRpnlbi4BKS0TzDmCRe8=";
+ sha256 = "ed33557f252cf8b022b788ebd2b851c681979f200171498acde2b92d760db026";
};
propagatedBuildInputs = [
@@ -23,7 +23,6 @@ buildPythonPackage rec {
checkInputs = [
mock
- pyjwt
pytestCheckHook
];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/authlib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/authlib/default.nix
index 1ac9954730..c55a6e4127 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/authlib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/authlib/default.nix
@@ -8,14 +8,14 @@
}:
buildPythonPackage rec {
- version = "0.15.4";
+ version = "0.15.5";
pname = "authlib";
src = fetchFromGitHub {
owner = "lepture";
repo = "authlib";
rev = "v${version}";
- sha256 = "1jc7rssi1y6brkwjplj8qmi4q5w9h9wz03fbhg01c0y5bmy0g1nj";
+ sha256 = "1893mkzrlfxpxrgv10y134y8c3ni5hb0qvb0wsc76d2k4mci5j3n";
};
propagatedBuildInputs = [ cryptography requests ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
index 1f4c78ed1b..69ca3c6339 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
- version = "16.2.0";
+ version = "16.3.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "ee40fa76d84b82e37e1d8a364649de25bb1e0c6c07f182f145a3ade44ec43711";
+ sha256 = "87f06525c6cc47de86d7886ed35f04140ddaf1b0c59482ba578fdb3f5d143b1c";
};
propagatedBuildInputs = [
@@ -31,6 +31,8 @@ buildPythonPackage rec {
# has no tests
doCheck = false;
+ pythonImportsCheck = [ "azure.mgmt.containerservice" ];
+
meta = with lib; {
description = "This is the Microsoft Azure Container Service Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/bond-api/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/bond-api/default.nix
index 9651d7289a..35634b1e24 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/bond-api/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/bond-api/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "bond-api";
- version = "0.1.13";
+ version = "0.1.14";
src = fetchFromGitHub {
owner = "prystupa";
repo = "bond-api";
rev = "v${version}";
- sha256 = "0v3bwbpn98fjm8gza2k7fb7w5ps3982kfvbck5x0fh2xq2825b80";
+ sha256 = "0s7an6kbib1immrbwrh4pzj812zwf8kj3kgky5k3qwxzrj0iv6ak";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/bracex/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/bracex/default.nix
index 0f8282ae7b..b9441ae497 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/bracex/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/bracex/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "bracex";
- version = "2.1.1";
+ version = "2.2";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-AfcVzQ7XpiLsizIyLnFYE/dXTeUx8Jtw9vOywQ9oJCU=";
+ sha256 = "8230f3a03f1f76c192a7844377124300fbaec83870a728b629dfabd9be9e83d0";
};
checkInputs = [ pytestCheckHook ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/broadlink/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/broadlink/default.nix
index 2418d282ce..dc1e4f37f3 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/broadlink/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/broadlink/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "broadlink";
- version = "0.17.0";
+ version = "0.18.0";
src = fetchPypi {
inherit pname version;
- sha256 = "bfd1ff007d0d1187c17ae52be938afc8137fbd1ed6a794426e975df10d167571";
+ sha256 = "c66b3e4a097d6549f0fcc9ccdf289bd88f73f647ad9449e1c4e2958301ad1b04";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/browser-cookie3/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/browser-cookie3/default.nix
index d4d52b9b03..d15f28e475 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/browser-cookie3/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/browser-cookie3/default.nix
@@ -1,25 +1,44 @@
-{ lib, fetchPypi, buildPythonPackage, isPy3k, lz4, keyring, pbkdf2, pycryptodome, pyaes}:
+{ lib
+, fetchPypi
+, buildPythonPackage
+, isPy3k
+, lz4
+, keyring
+, pbkdf2
+, pycryptodome
+, pyaes
+}:
buildPythonPackage rec {
pname = "browser-cookie3";
- version = "0.12.1";
+ version = "0.13.0";
src = fetchPypi {
inherit pname version;
- sha256 = "72c1e6aa6a98adab3a6797b889664bdbfddc287474dd8e774da37a854ec32185";
+ sha256 = "9f8e5ddf5a6641a1fdca12d82b0923777ba59a988b68c9bcf358bfb7c42ef25b";
};
disabled = !isPy3k;
- propagatedBuildInputs = [ lz4 keyring pbkdf2 pyaes pycryptodome ];
+ propagatedBuildInputs = [
+ lz4
+ keyring
+ pbkdf2
+ pyaes
+ pycryptodome
+ ];
# No tests implemented
doCheck = false;
+ pythonImportsCheck = [
+ "browser_cookie3"
+ ];
+
meta = with lib; {
description = "Loads cookies from your browser into a cookiejar object";
- maintainers = with maintainers; [ borisbabic ];
homepage = "https://github.com/borisbabic/browser_cookie3";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ borisbabic ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/bytecode/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/bytecode/default.nix
index 75d4f38b2c..648ec29520 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/bytecode/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/bytecode/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "bytecode";
- version = "0.12.0";
+ version = "0.13.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "vstinner";
repo = pname;
rev = version;
- sha256 = "sha256-CEfDoJ+JlnxLLVnSxv7bEN891tmwG9zAvtT8GNvp8JU=";
+ sha256 = "sha256-aY19qMYW7KziiXVY3lxdnHk7OCAJaNh+aTvlQyJWmDw=";
};
checkInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/cbor2/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/cbor2/default.nix
index ef7b79989c..cf4813a9d9 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/cbor2/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/cbor2/default.nix
@@ -3,33 +3,43 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
-, pytest-cov
+, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "cbor2";
- version = "5.4.1";
+ version = "5.4.2";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "1jga5wj3kalf6zj5gyrmy6kwmxxkld52mvcgxc5gb5dmdhpl7gx8";
+ sha256 = "sha256-4oPnC1WgSf82TMXmSP3lh+TZsOh+SyZkxp5jkTXms7g=";
};
- nativeBuildInputs = [ setuptools-scm ];
+ nativeBuildInputs = [
+ setuptools-scm
+ ];
checkInputs = [
- pytest-cov
pytestCheckHook
];
+ postPatch = ''
+ substituteInPlace setup.cfg \
+ --replace "--cov" ""
+ '';
+
# https://github.com/agronholm/cbor2/issues/99
disabledTests = lib.optionals stdenv.is32bit [
"test_huge_truncated_bytes"
"test_huge_truncated_string"
];
- pythonImportsCheck = [ "cbor2" ];
+ pythonImportsCheck = [
+ "cbor2"
+ ];
meta = with lib; {
description = "Python CBOR (de)serializer with extensive tag support";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/claripy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/claripy/default.nix
index 8a1da0241c..750f5ec0f2 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/claripy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/claripy/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "claripy";
- version = "9.0.10159";
+ version = "9.0.10281";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-0I3ITMCOuYm5fmmnQN+zy9lunvfsLb1qlUzSOnPGwlQ=";
+ sha256 = "sha256-URp429ZLZvdGgXaZq/xoV5ZZs+o+QrA/zbONl59z9QM=";
};
# Use upstream z3 implementation
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/cle/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/cle/default.nix
index 7cdfec13c8..edb25c25ca 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/cle/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/cle/default.nix
@@ -15,7 +15,7 @@
let
# The binaries are following the argr projects release cycle
- version = "9.0.10159";
+ version = "9.0.10281";
# Binary files from https://github.com/angr/binaries (only used for testing and only here)
binaries = fetchFromGitHub {
@@ -35,7 +35,7 @@ buildPythonPackage rec {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-DkddaVmSIQToF5b7uj+96vCSZU0cJdfqIDSwDIFEEyI=";
+ sha256 = "sha256-BeFxak7cbRDjbxTjAlvXuh7ot0bS6xv3Z30c6PD+9nU=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/cloudsplaining/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/cloudsplaining/default.nix
index fceab5088e..6dbb3f91d1 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/cloudsplaining/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/cloudsplaining/default.nix
@@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "cloudsplaining";
- version = "0.4.5";
+ version = "0.4.6";
disabled = pythonOlder "3.6";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "salesforce";
repo = pname;
rev = version;
- sha256 = "0s446jji3c9x1gw0lsb03giir91cnv6dgh4nzxg9mc1rm9wy7gzw";
+ sha256 = "sha256-TFUOsfQ1QxdpmRUJPoHMCuCpmYpQodLkP5EVXKm+qsw=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/crownstone-cloud/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/crownstone-cloud/default.nix
index 94e6219264..882f7d95df 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/crownstone-cloud/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/crownstone-cloud/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "crownstone-cloud";
- version = "1.4.5";
+ version = "1.4.8";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -18,8 +18,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "crownstone";
repo = "crownstone-lib-python-cloud";
- rev = "v${version}";
- sha256 = "1a8bkqkrc7iyggr5rr20qdqg67sycdx2d94dd1ylkmr7627r34ys";
+ rev = version;
+ sha256 = "sha256-iHn4g52/QM0TS/flKkcFrX6IFrCjiXUxcjVLHNg6tVo=";
};
propagatedBuildInputs = [
@@ -32,9 +32,13 @@ buildPythonPackage rec {
pytestCheckHook
];
+ disabledTests = [
+ # https://github.com/crownstone/crownstone-lib-python-cloud/issues/1
+ "test_data_structure"
+ ];
+
postPatch = ''
- substituteInPlace requirements.txt \
- --replace "codecov>=2.1.10" ""
+ sed -i '/codecov/d' requirements.txt
'';
pythonImportsCheck = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/dash-core-components/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/dash-core-components/default.nix
index 7f2169cd98..259e760fee 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/dash-core-components/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/dash-core-components/default.nix
@@ -4,12 +4,13 @@
}:
buildPythonPackage rec {
- pname = "dash_core_components";
- version = "1.17.1";
+ pname = "dash-core-components";
+ version = "2.0.0";
src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-flA/Xt22MDTdIMI9IYzA2KgeyI6aFbfLxg4maw4rYKk=";
+ pname = "dash_core_components";
+ inherit version;
+ sha256 = "sha256-xnM4dK+XXlUvlaE5ihbC7n3xTOQ/pguzcYo8bgtj/+4=";
};
# No tests in archive
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/dash-html-components/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/dash-html-components/default.nix
index 1b4e5d6a47..ae5496ec50 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/dash-html-components/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/dash-html-components/default.nix
@@ -4,12 +4,13 @@
}:
buildPythonPackage rec {
- pname = "dash_html_components";
- version = "1.1.4";
+ pname = "dash-html-components";
+ version = "2.0.0";
src = fetchPypi {
- inherit pname version;
- sha256 = "dc4f423e13716d179d51a42b3c7e2a2ed02e05185c742f88214b58d59e24bbd4";
+ pname = "dash_html_components";
+ inherit version;
+ sha256 = "8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50";
};
# No tests in archive
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/dash-table/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/dash-table/default.nix
index 5a2ada1b56..e327f4e761 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/dash-table/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/dash-table/default.nix
@@ -4,12 +4,13 @@
}:
buildPythonPackage rec {
- pname = "dash_table";
- version = "4.12.0";
+ pname = "dash-table";
+ version = "5.0.0";
src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-TJlomoh7/QNSeLFOzV23BwYCM4nlNzXV48zMQW+s2+Q=";
+ pname = "dash_table";
+ inherit version;
+ sha256 = "sha256-GGJNaT1MjvLd7Jmm8WdZNDen6gvxU6og8xjBcMW8cwg=";
};
# No tests in archive
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/dash/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/dash/default.nix
index 807a08de67..7a8b713463 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/dash/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/dash/default.nix
@@ -9,48 +9,45 @@
, dash-renderer
, dash-html-components
, dash-table
-, pytest
, pytest-mock
, mock
+, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dash";
- version = "1.21.0";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "plotly";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-X2yRlW6aXgRgKgRxLNBUHjkjMaw7K4iydzpWLBNt+Y8=";
+ sha256 = "sha256-0RvA5qkwQJGyy81D5kW+IR6LbaD/KBwMy6kYxTETubg=";
};
propagatedBuildInputs = [
plotly
flask
flask-compress
- future
dash-core-components
- dash-renderer
dash-html-components
dash-table
];
checkInputs = [
- pytest
+ pytestCheckHook
pytest-mock
mock
];
- checkPhase = ''
- pytest tests/unit/test_{configs,fingerprint,resources}.py \
- tests/unit/dash/
- '';
-
- pythonImportsCheck = [
- "dash"
+ disabledTestPaths = [
+ "tests/unit/test_browser.py"
+ "tests/unit/test_app_runners.py" # Use selenium
+ "tests/integration"
];
+ pythonImportsCheck = [ "dash" ];
+
meta = with lib; {
description = "Python framework for building analytical web applications";
homepage = "https://dash.plot.ly/";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/databases/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/databases/default.nix
index ae635b3058..2facff6c84 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/databases/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/databases/default.nix
@@ -3,7 +3,8 @@
, fetchFromGitHub
, sqlalchemy
, aiocontextvars
-, isPy27
+, aiopg
+, pythonOlder
, pytestCheckHook
, pymysql
, asyncpg
@@ -13,42 +14,48 @@
buildPythonPackage rec {
pname = "databases";
- version = "0.5.2";
- disabled = isPy27;
+ version = "0.5.3";
+
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
- sha256 = "sha256-OfBb78lKnAxPhyy2j4TzEZWBzbw64brTQcxuOPoW9pk=";
+ sha256 = "sha256-67ykx7HKGgRvJ+GRVEI/e2+x51kfHHFjh/iI4tY+6aE=";
};
propagatedBuildInputs = [
- aiocontextvars
- sqlalchemy
- ];
-
- checkInputs = [
+ aiopg
aiomysql
aiosqlite
asyncpg
pymysql
+ sqlalchemy
+ ] ++ lib.optionals (pythonOlder "3.7") [
+ aiocontextvars
+ ];
+
+ checkInputs = [
pytestCheckHook
];
disabledTestPaths = [
- # ModuleNotFoundError: No module named 'aiopg'
- "tests/test_connection_options.py"
# circular dependency on starlette
"tests/test_integration.py"
# TEST_DATABASE_URLS is not set.
"tests/test_databases.py"
+ "tests/test_connection_options.py"
+ ];
+
+ pythonImportsCheck = [
+ "databases"
];
meta = with lib; {
description = "Async database support for Python";
homepage = "https://github.com/encode/databases";
license = licenses.bsd3;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ costrouc ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/debian/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/debian/default.nix
index 48b5b015b1..569e2b2963 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/debian/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/debian/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "python-debian";
- version = "0.1.40";
+ version = "0.1.42";
src = fetchPypi {
inherit pname version;
- sha256 = "385dfb965eca75164d256486c7cf9bae772d24144249fd18b9d15d3cffb70eea";
+ sha256 = "a794f4c4ee2318ae7260c2e32dac252b833bdaf6686efc2a1afbc6ecf3f0931f";
};
propagatedBuildInputs = [ chardet six ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/debugpy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/debugpy/default.nix
index 4392a3c2ec..183548f5f9 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/debugpy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/debugpy/default.nix
@@ -4,26 +4,26 @@
, fetchFromGitHub
, substituteAll
, gdb
+, django
, flask
+, gevent
, psutil
, pytest-timeout
, pytest-xdist
, pytestCheckHook
, requests
-, isPy27
-, django
-, gevent
+, isPy3k
}:
buildPythonPackage rec {
pname = "debugpy";
- version = "1.4.3";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "Microsoft";
repo = pname;
rev = "v${version}";
- hash = "sha256-ULxVoZuMNDL0Win/+55RnbkCPZ8OI8nhSKshvJOMFQ4=";
+ sha256 = "sha256-xgxKyqtSqKITwze7DKDdkxZlq1mWM+x4C/eJlUJmYuk=";
};
patches = [
@@ -65,30 +65,21 @@ buildPythonPackage rec {
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}")}
)'';
+ doCheck = isPy3k;
checkInputs = [
+ django
flask
+ gevent
psutil
pytest-timeout
pytest-xdist
pytestCheckHook
requests
- ] ++ lib.optionals (!isPy27) [
- django
- gevent
];
# Override default arguments in pytest.ini
pytestFlagsArray = [ "--timeout=0" "-n=$NIX_BUILD_CORES" ];
- disabledTests = lib.optionals isPy27 [
- # django 1.11 is the last version to support Python 2.7
- # and is no longer built in nixpkgs
- "django"
-
- # gevent fails to import zope.interface with Python 2.7
- "gevent"
- ];
-
pythonImportsCheck = [ "debugpy" ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/deezer-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/deezer-python/default.nix
index 2ff5127aef..bbbf813557 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/deezer-python/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/deezer-python/default.nix
@@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
+, environs
, fetchFromGitHub
, poetry-core
, pytest-mock
@@ -12,7 +13,7 @@
buildPythonPackage rec {
pname = "deezer-python";
- version = "3.1.0";
+ version = "4.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -21,7 +22,7 @@ buildPythonPackage rec {
owner = "browniebroke";
repo = pname;
rev = "v${version}";
- sha256 = "1ln9hlix6rbyajgvwd2lk0i7nshvrbkvj9xx1i0q1z1caly9yl0g";
+ sha256 = "sha256-eza0bu4CcKvDMEq/8y6fW5qXtEFbeB5zk0w75+3Hx4Q=";
};
nativeBuildInputs = [
@@ -29,9 +30,10 @@ buildPythonPackage rec {
];
checkInputs = [
- pytestCheckHook
- pytest-vcr
+ environs
pytest-mock
+ pytest-vcr
+ pytestCheckHook
];
propagatedBuildInputs = [
@@ -47,7 +49,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "deezer" ];
meta = with lib; {
- description = "A friendly Python wrapper around the Deezer API";
+ description = "Python wrapper around the Deezer API";
homepage = "https://github.com/browniebroke/deezer-python";
license = licenses.mit;
maintainers = with maintainers; [ synthetica ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/django-storages/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/django-storages/default.nix
index 33b33631c2..afb9a8fc46 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/django-storages/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/django-storages/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "django-storages";
- version = "1.12.1";
+ version = "1.12.2";
src = fetchPypi {
inherit pname version;
- sha256 = "cb079981e2e4fe16d7f41000913225140dc334a84f5b7c5e4fcc6b7e6a028222";
+ sha256 = "0013ebe4904521e2fa28f33591a03a7210304d73363e7eadd7cdcf81c12ba003";
};
propagatedBuildInputs = [ django ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ecoaliface/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ecoaliface/default.nix
index e3001d7fa4..f37a85da7d 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ecoaliface/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ecoaliface/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "ecoaliface";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1hzx0r3311f952jik3pgmrg74xp5m6w9c5v6snfrb8w2m19vs6qy";
+ sha256 = "f17b3452cfd31bb8c3509d59b846889c81db5fb85082c061c32703162cbe9083";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/environs/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/environs/default.nix
new file mode 100644
index 0000000000..bc63d577a7
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/environs/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, dj-database-url
+, dj-email-url
+, django-cache-url
+, fetchFromGitHub
+, marshmallow
+, pytestCheckHook
+, python-dotenv
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "environs";
+ version = "9.3.4";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "sloria";
+ repo = pname;
+ rev = version;
+ sha256 = "0n0l9jici2d1pck5pf1c96jj3lhw91jki9nsgxzpikvpyvsw7wga";
+ };
+
+ propagatedBuildInputs = [
+ marshmallow
+ python-dotenv
+ ];
+
+ checkInputs = [
+ dj-database-url
+ dj-email-url
+ django-cache-url
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "environs"
+ ];
+
+ meta = with lib; {
+ description = "Python modle for environment variable parsing";
+ homepage = "https://github.com/sloria/environs";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix
index ba0e120442..427c6d5c48 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/faraday-agent-parameters-types/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "faraday-agent-parameters-types";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchPypi {
pname = "faraday_agent_parameters_types";
inherit version;
- sha256 = "0q2cngxgkvl74mhkibvdsvjjrdfd7flxd6a4776wmxkkn0brzw66";
+ sha256 = "sha256-zH/ZkqL+kL3J1o7dhB4WYy2tbofFZm+kxEGn5+nRgjc=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix
index 3b6b42a767..2db85b4109 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/faraday-plugins/default.nix
@@ -16,13 +16,13 @@
buildPythonPackage rec {
pname = "faraday-plugins";
- version = "1.5.3";
+ version = "1.5.4";
src = fetchFromGitHub {
owner = "infobyte";
repo = "faraday_plugins";
rev = "v${version}";
- sha256 = "0nyywpsyw7akwdah75s9mz5nz11y1hbynp08pvqifwdw49crih02";
+ sha256 = "sha256-TKT++56pc1+nZXkqMgIq5DFgF9H1+Q5Fuj4KidCdRh0=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/fjaraskupan/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/fjaraskupan/default.nix
index a65daa55f6..3e7cccd90f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/fjaraskupan/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/fjaraskupan/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "fjaraskupan";
- version = "1.0.1";
+ version = "1.0.2";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "elupus";
repo = pname;
rev = version;
- sha256 = "0r6l9cbl41ddg4mhw9g9rly9r7s70sscg1ysb99bsi8z6xml9za3";
+ sha256 = "sha256-nUrgV4keJpYRkKZE+udvmPdCW3O3YQTS1ye40IdA7vA=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/flufl/bounce.nix b/third_party/nixpkgs/pkgs/development/python-modules/flufl/bounce.nix
index 301b160353..d44c8841f9 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/flufl/bounce.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/flufl/bounce.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "flufl.bounce";
- version = "3.0.2";
+ version = "4.0";
buildInputs = [ nose2 ];
propagatedBuildInputs = [ atpublic zope_interface ];
src = fetchPypi {
inherit pname version;
- sha256 = "5014b23248fce72b13143c32da30073e6abc655b963e7739575608280c52c9a7";
+ sha256 = "25504aeb976ec0fe5a19cd6c413a3410cb514fdcdbdca9f9b5d8d343a8603831";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix b/third_party/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix
index b757585e40..f9c5c8f1ef 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix
@@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "flufl.i18n";
- version = "3.1.5";
+ version = "3.2";
propagatedBuildInputs = [ atpublic ];
@@ -12,6 +12,6 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "b7016000a4d9d366866e776947b777dbe2b1532c990efeef58922b3e7bcab36e";
+ sha256 = "c35c8f8eab66adb7fd64a1420860105066d2b36cb655b33ffb14afe8e223ed62";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/flufl/lock.nix b/third_party/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
index 792af5a6c7..e63af005de 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/flufl/lock.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "flufl.lock";
- version = "5.1";
+ version = "6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1ylahys50vaj7iw6dhlx3gg7vs8cms9sbyvscd06clnk6lqk78ad";
+ sha256 = "fc748ee609ec864b4838ef649dbd1170fa79deb0c213c2fd51151bee6a7fc242";
};
propagatedBuildInputs = [ atpublic psutil ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix
index 64eafed6c1..d0f90da8fe 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/flux-led/default.nix
@@ -1,23 +1,49 @@
-{ lib, buildPythonPackage, fetchFromGitHub
-, aiohttp, zigpy
-, pytest, isPy27 }:
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, webcolors
+, pythonOlder
+, pytestCheckHook
+}:
buildPythonPackage rec {
pname = "flux_led";
- version = "0.22";
- disabled = isPy27;
+ version = "0.24.12";
+
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "flux_led";
rev = version;
- sha256 = "1zgajlkhclyrqhkmivna4ha2lyvfpk5929s042gy59p7mzpkvjx7";
+ sha256 = "sha256-vhmqfHAqbgDUvbn+dR7TuA5SFjF72/nhCL1h+GPy+9c=";
};
+ propagatedBuildInputs = [
+ webcolors
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace '"pytest-runner>=5.2",' ""
+ '';
+
+ pytestFlagsArray = [
+ "tests.py"
+ ];
+
+ pythonImportsCheck = [
+ "flux_led"
+ ];
+
meta = with lib; {
- description = "A Python library to communicate with the flux_led smart bulbs";
+ description = "Python library to communicate with the flux_led smart bulbs";
homepage = "https://github.com/Danielhiversen/flux_led";
- license = licenses.lgpl3;
+ license = licenses.lgpl3Plus;
maintainers = with maintainers; [ colemickens ];
platforms = platforms.linux;
};
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/fritzconnection/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/fritzconnection/default.nix
index 5cb1bac878..1c4145df14 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/fritzconnection/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/fritzconnection/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "fritzconnection";
- version = "1.7.0";
+ version = "1.7.1";
disabled = pythonOlder "3.6";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "kbr";
repo = pname;
rev = version;
- sha256 = "sha256-1HzeNtSqzqr9zyxF1PVWi6QfRupw8huMYmdFI6rzIdY=";
+ sha256 = "sha256-yrkFtvGXkeHD5hp0Fzz3M1hsuSIt6bQriyUy4NagD0U=";
};
propagatedBuildInputs = [ requests ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/frozenlist/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/frozenlist/default.nix
index e3def747f0..34660645b5 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/frozenlist/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/frozenlist/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "frozenlist";
- version = "1.1.1";
+ version = "1.2.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
- sha256 = "07z33vid7s8fjwvybyn8357yvs0f6nlhizv1l3qj1bczi3jbdkbh";
+ sha256 = "sha256-rTbekdceC5QK0aiySi/4QUwaEoDfTlLrx2t6Kb9bH7U=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-kms/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-kms/default.nix
index 203102cafb..8569a9eefe 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-kms/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-kms/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-cloud-kms";
- version = "2.9.0";
+ version = "2.10.0";
src = fetchPypi {
inherit pname version;
- sha256 = "bedd376807ab3dde08f2d92caa0e4e5ad7c2ccfc7069561e80964b998a0d8f51";
+ sha256 = "e34d506596ebb6e285d8500342587e8ec0bd31924f290f1f39cc4ea2e4f1abfb";
};
propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix
index f96ce0a8f9..7ef5038e27 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "google-cloud-org-policy";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "8ad50ce9145c3b477536752785635295c318b2b123bc9d251020cc1cfe98b131";
+ sha256 = "c6811f8bde6019b18f5f0d154078000405af6fd38836713c05cbb9c1512f181a";
};
propagatedBuildInputs = [ google-api-core proto-plus ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-translate/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-translate/default.nix
index 43b35ca198..22694071d3 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-translate/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-translate/default.nix
@@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "google-cloud-translate";
- version = "3.5.0";
+ version = "3.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "49c91574e04d52fc7c0fade95dd5e6ccb51190ab8b419352d008a617c7799879";
+ sha256 = "32c73dd13e64ec16d38462305cef9c0add887e815c312ba5bb3c57077903f2a6";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/hatasmota/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/hatasmota/default.nix
index b3165a7e3c..e746c4c248 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/hatasmota/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/hatasmota/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "hatasmota";
- version = "0.2.20";
+ version = "0.2.21";
src = fetchFromGitHub {
owner = "emontnemery";
repo = pname;
rev = version;
- sha256 = "1qdvm1bnn7x2mf4fq997gvq6a5901ndhd2s75h92zsgmlcp7rc77";
+ sha256 = "sha256-mtn/r6pvHeGMLkvUP4w6CT+2+viLna4Vvn9RFMEmqts=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/islpy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/islpy/default.nix
index 918d8be8e9..d6e4332fde 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/islpy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/islpy/default.nix
@@ -5,7 +5,6 @@
, pybind11
, pytestCheckHook
, pythonOlder
-, cffi
, six
}:
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ismartgate/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ismartgate/default.nix
index 594764bae0..ca777f4b28 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ismartgate/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ismartgate/default.nix
@@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "ismartgate";
- version = "4.0.1";
+ version = "4.0.3";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bdraco";
repo = pname;
rev = "v${version}";
- sha256 = "1kxlcjnppsk8m93gfcpy3asig1frhp1k5rfqx3rszhkcxmni95m2";
+ sha256 = "sha256-s9fHvjqPHDKuT/DMGu1ETuPNlFIkp0wlv15KeTb6fX8=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/libusb1/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/libusb1/default.nix
index 0d8142645e..ce39ec117e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/libusb1/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/libusb1/default.nix
@@ -2,15 +2,15 @@
buildPythonPackage rec {
pname = "libusb1";
- version = "1.9.3";
+ version = "2.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "60e6ce37be064f6e51d02b25da44230ecc9c0b1fdb6f14568c71457d963c1749";
+ sha256 = "d3ba82ecf7ab6a48d21dac6697e26504670cc3522b8e5941bd28fb56cf3f6c46";
};
postPatch = ''
- substituteInPlace usb1/libusb1.py --replace \
+ substituteInPlace usb1/_libusb1.py --replace \
"ctypes.util.find_library(base_name)" \
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
'';
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/millheater/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/millheater/default.nix
index 7926b15711..1fe5707ed7 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/millheater/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/millheater/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "millheater";
- version = "0.6.2";
+ version = "0.7.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pymill";
rev = version;
- sha256 = "sha256-CG0hQN4m8EE+j5yUqODJX8/DLTVWS9tSPADSDHl6K9o=";
+ sha256 = "sha256-WMw07mNvQdrqm5cf3+YWRZsZQ59vOqYSps26scPFpNI=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
index 046f0b3149..8002909a9f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/mypy-boto3-s3/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "mypy-boto3-s3";
- version = "1.18.62";
+ version = "1.18.65";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "a12c44b1a1a9653d6f9148f174a9b7b71785481374ef43d962bd580967b6bca8";
+ sha256 = "c5bdd595e088512df229863872fb91e825ab59ddd89653db5ccc37d666fa01d8";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/nulltype/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/nulltype/default.nix
new file mode 100644
index 0000000000..1f354e4224
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/nulltype/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "nulltype";
+ version = "2.3.1";
+ format = "setuptools";
+
+ src = fetchPypi {
+ inherit pname version;
+ extension = "zip";
+ sha256 = "0wpjbsmm0c9ifg9y6cnfz49qq9pa5f99nnqp6wdlv42ymfr3rak4";
+ };
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "nulltype"
+ ];
+
+ meta = with lib; {
+ description = "Python library to handle Null values and sentinels like (but not) None, False and True";
+ homepage = "https://pypi.org/project/nulltype/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/open-garage/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/open-garage/default.nix
index cbf9ee3087..87d5248457 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/open-garage/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/open-garage/default.nix
@@ -8,14 +8,15 @@
buildPythonPackage rec {
pname = "open-garage";
- version = "0.1.5";
+ version = "0.1.6";
+
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyOpenGarage";
rev = version;
- sha256 = "1iqcqkbb1ik5lmsvwgy6i780x6y3wlm1gx257anxyvp1b21gm24p";
+ sha256 = "sha256-vm51Fjej0OQ7LftisS/tsnxZxa5c/j7eGIROMsEcXNE=";
};
propagatedBuildInputs = [
@@ -26,7 +27,9 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
- pythonImportsCheck = [ "opengarage" ];
+ pythonImportsCheck = [
+ "opengarage"
+ ];
meta = with lib; {
description = "Python module to communicate with opengarage.io";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/plaid-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
index b864dedecf..66b77b5232 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
@@ -1,26 +1,38 @@
-{ lib, buildPythonPackage, fetchPypi, requests, pytest }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nulltype
+, python-dateutil
+, urllib3
+}:
buildPythonPackage rec {
- version = "8.1.0";
pname = "plaid-python";
+ version = "8.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "b1f7b5b58ba3c171bb795352119d54797c8c50877bc376d26cd756de2453e9fd";
+ sha256 = "6cad1e1b3cdb007bd913fcdec283c1523fc8995d70343b26be5cfb7ceaafd5f2";
};
- checkInputs = [ pytest ];
+ propagatedBuildInputs = [
+ nulltype
+ python-dateutil
+ urllib3
+ ];
- # Integration tests require API keys and internet access
- checkPhase = "py.test -rxs ./tests/unit";
+ # Tests require a Client IP
+ doCheck = false;
- propagatedBuildInputs = [ requests ];
+ pythonImportsCheck = [
+ "plaid"
+ ];
- meta = {
+ meta = with lib; {
description = "Python client library for the Plaid API and Link";
homepage = "https://github.com/plaid/plaid-python";
changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
- license = lib.licenses.mit;
- maintainers = with lib.maintainers; [ bhipple ];
+ license = licenses.mit;
+ maintainers = with maintainers; [ bhipple ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/plexapi/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/plexapi/default.nix
index eba416fd35..66e16d7e87 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/plexapi/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/plexapi/default.nix
@@ -9,14 +9,15 @@
buildPythonPackage rec {
pname = "plexapi";
- version = "4.7.1";
- disabled = pythonOlder "3.5";
+ version = "4.7.2";
+
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pkkid";
repo = "python-plexapi";
rev = version;
- sha256 = "sha256-kZREcjLBSWXGULEKfWiherRCl5UXLOw4f3JFaqs8dXw=";
+ sha256 = "sha256-v12CL2VR9QAoj44F8V1qw/qflzQ1WRi1cvWn/U/wW/E=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/privacyidea/ldap-proxy.nix b/third_party/nixpkgs/pkgs/development/python-modules/privacyidea-ldap-proxy/default.nix
similarity index 57%
rename from third_party/nixpkgs/pkgs/development/python-modules/privacyidea/ldap-proxy.nix
rename to third_party/nixpkgs/pkgs/development/python-modules/privacyidea-ldap-proxy/default.nix
index 25a81510c7..aa44e1396a 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/privacyidea/ldap-proxy.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/privacyidea-ldap-proxy/default.nix
@@ -1,30 +1,24 @@
-{ lib, buildPythonPackage, isPy3k, fetchFromGitHub, twisted, ldaptor, configobj }:
+{ lib, buildPythonPackage, fetchFromGitHub, twisted, ldaptor, configobj }:
buildPythonPackage rec {
pname = "privacyidea-ldap-proxy";
- version = "0.6.1";
-
- # https://github.com/privacyidea/privacyidea-ldap-proxy/issues/50
- disabled = isPy3k;
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "privacyidea";
repo = pname;
rev = "v${version}";
- sha256 = "1kc1n9wr1a66xd5zvl6dq78xnkqkn5574jpzashc99pvm62dr24j";
+ sha256 = "sha256-U2lg4zDQKn9FQ7O0zSLaijIkXKVjg8wi2ItueF4ACDU=";
};
propagatedBuildInputs = [ twisted ldaptor configobj ];
- # python 2 zope.interface test import path issues
- doCheck = false;
-
pythonImportsCheck = [ "pi_ldapproxy" ];
meta = with lib; {
description = "LDAP Proxy to intercept LDAP binds and authenticate against privacyIDEA";
homepage = "https://github.com/privacyidea/privacyidea-ldap-proxy";
- license = licenses.agpl3;
+ license = licenses.agpl3Only;
maintainers = [ maintainers.globin ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pulsectl/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pulsectl/default.nix
index 005974a542..6e35cb5735 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pulsectl/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pulsectl/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pulsectl";
- version = "21.10.4";
+ version = "21.10.5";
src = fetchPypi {
inherit pname version;
- sha256 = "c9593a54d01dc1ab47ef20464aa7d00433690c86ae840c58f458fe6dedd6b41a";
+ sha256 = "b347983fb78baab168f4dc4804ab2c59ca5b813bf62f8146dfb5fcb6ab6c8ba2";
};
patches = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/py-synologydsm-api/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/py-synologydsm-api/default.nix
new file mode 100644
index 0000000000..3aa0fe76ff
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/py-synologydsm-api/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, urllib3
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "py-synologydsm-api";
+ version = "1.0.2";
+
+ src = fetchPypi {
+ pname = "synologydsm-api";
+ inherit version;
+ sha256 = "42ea453ef5734dd5b8163e3d18ef309658f0298411720e6b834bededd28c5d53";
+ };
+
+ propagatedBuildInputs = [ urllib3 requests ];
+
+ pythonImportsCheck = [
+ "synology_dsm"
+ ];
+
+ meta = with lib; {
+ description = "Python API for Synology DSM";
+ homepage = "https://github.com/hacf-fr/synologydsm-api";
+ license = licenses.mit;
+ maintainers = with maintainers; [ uvnikita ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pycares/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pycares/default.nix
index b01b82eb96..305c2e01c5 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pycares/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pycares/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "pycares";
- version = "4.0.0";
+ version = "4.1.2";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-0BVPxXU7CIdY++ybwTfhsku4T8DGoJclyLrCWjQjEc0=";
+ sha256 = "sha256-A0kL4Oe1GgyAc/h3vsNH7/MQA/ZPV9lRjUGdk2lFKDc=";
};
buildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pychromecast/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pychromecast/default.nix
index e01c5e1819..7b14497fce 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pychromecast/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pychromecast/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "PyChromecast";
- version = "9.2.1";
+ version = "9.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-iD1ug2/18QaKi9ADZKFbTJhUKTCGSV6f2crNm01UwL8=";
+ sha256 = "a1d6807ae0fc455aaeecd2def87c31bb86679a2920cacfa7910db9c9db5085d4";
};
disabled = !isPy3k;
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pycontrol4/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pycontrol4/default.nix
index 009bb44602..b960b4b7da 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pycontrol4/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pycontrol4/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "pycontrol4";
- version = "0.3.0";
+ version = "0.3.1";
disabled = pythonOlder "3.6";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "lawtancool";
repo = "pyControl4";
rev = "v${version}";
- sha256 = "sha256-z7MDz9fGwZY4JcqabeYFGZ9nsRU2qa5LYnNQx/ae/4Y=";
+ sha256 = "068iiyi17ndv6cv124r5dzvififblbi2zw7jgnzb5xi0q093czkj";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pydal/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pydal/default.nix
new file mode 100644
index 0000000000..6f2f887967
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pydal/default.nix
@@ -0,0 +1,42 @@
+{ buildPythonPackage
+, fetchPypi
+, python
+, lib
+}:
+
+buildPythonPackage rec {
+ pname = "pydal";
+ version = "20210626.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "043s52b7srqwwmj7rh783arqryilmv3m8dmmg9bn5sjgfi004jn4";
+ };
+
+ postPatch = ''
+ # this test has issues with an import statement
+ # rm tests/tags.py
+ sed -i '/from .tags import/d' tests/__init__.py
+
+ # this assertion errors without obvious reason
+ sed -i '/self.assertEqual(csv0, str(r4))/d' tests/caching.py
+
+ # some sql tests fail against sqlite engine
+ sed -i '/from .sql import/d' tests/__init__.py
+ '';
+
+ pythonImportsCheck = [ "pydal" ];
+
+ checkPhase = ''
+ runHook preCheck
+ ${python.interpreter} -m unittest tests
+ runHook postCheck
+ '';
+
+ meta = {
+ description = "A pure Python Database Abstraction Layer";
+ homepage = "https://github.com/web2py/pydal";
+ license = with lib.licenses; [ bsd3 ] ;
+ maintainers = with lib.maintainers; [ wamserma ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyintesishome/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyintesishome/default.nix
index 6e8b8fef32..c6b1a7319f 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyintesishome/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyintesishome/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "pyintesishome";
- version = "1.8.0";
+ version = "1.8.1";
src = fetchFromGitHub {
owner = "jnimmo";
repo = "pyIntesisHome";
rev = version;
- sha256 = "1y1agdr32p7m4dbb6kzchh0vb49gy0rqp8hq9zadwrq2vp70k5sn";
+ sha256 = "sha256-+bad3VIoP0sVw0blK9YIot2GfK5de4HTXv5/ipV2Nds=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pymodbus/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pymodbus/default.nix
index 40dae5c699..41babc8217 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pymodbus/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pymodbus/default.nix
@@ -18,13 +18,13 @@
buildPythonPackage rec {
pname = "pymodbus";
- version = "2.5.3rc1";
+ version = "2.5.3";
src = fetchFromGitHub {
owner = "riptideio";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-jynljjTipN/Yx97RSWikcotxCqosNWSDH7GdwcSIiRU=";
+ sha256 = "sha256-pf1TU/imBqNVYdG4XX8fnma8O8kQHuOHu6DT3E/PUk4=";
};
# Twisted asynchronous version is not supported due to a missing dependency
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pysma/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pysma/default.nix
index 9efd55e324..1392f91b63 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pysma/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pysma/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "pysma";
- version = "0.6.6";
+ version = "0.6.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-ahSc45fIoYvFc0QOt8LV44J3mlJe8uTkwTLJ6cu8gKo=";
+ sha256 = "sha256-8HADY6+qwfzYyEVLQyMiXiUYinADSA1iKUay3YHhNXI=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyspark/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyspark/default.nix
index 625041fd81..2e6f41aa23 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyspark/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyspark/default.nix
@@ -1,28 +1,39 @@
-{ buildPythonPackage, fetchPypi, lib, py4j }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, py4j
+}:
buildPythonPackage rec {
pname = "pyspark";
- version = "3.1.2";
+ version = "3.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "5e25ebb18756e9715f4d26848cc7e558035025da74b4fc325a0ebc05ff538e65";
+ sha256 = "bfea06179edbfb4bc76a0f470bd3c38e12f00e1023e3ad0373558d07cff102ab";
};
# pypandoc is broken with pandoc2, so we just lose docs.
postPatch = ''
sed -i "s/'pypandoc'//" setup.py
- substituteInPlace setup.py --replace py4j==0.10.9 'py4j>=0.10.9,<0.11'
+ substituteInPlace setup.py \
+ --replace py4j==0.10.9.2 'py4j>=0.10.9,<0.11'
'';
- propagatedBuildInputs = [ py4j ];
+ propagatedBuildInputs = [
+ py4j
+ ];
- # Tests assume running spark...
+ # Tests assume running spark instance
doCheck = false;
+ pythonImportsCheck = [
+ "pyspark"
+ ];
+
meta = with lib; {
- description = "Apache Spark";
+ description = "Python bindings for Apache Spark";
homepage = "https://github.com/apache/spark/tree/master/python";
license = licenses.asl20;
maintainers = [ maintainers.shlevy ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyspnego/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyspnego/default.nix
index a1793118d2..0e9544451c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyspnego/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyspnego/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pyspnego";
- version = "0.2.0";
+ version = "0.3.0";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "jborean93";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-puv9aq53NbjSuN561XFou404N9pIxvvMjZMgnNx3SjM=";
+ sha256 = "sha256-jBwLll3Qtw+CGZQ5QFosZfMGFzjm1Y0rsGx3POFUds8=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pytest-httpserver/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pytest-httpserver/default.nix
index 79d10f8cf7..5a5c3b1449 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pytest-httpserver/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pytest-httpserver/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "pytest-httpserver";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchPypi {
pname = "pytest_httpserver";
inherit version;
- sha256 = "12b0028vp5rh9bg712klgjzm4vl4biyza1j6iyv3pgg25ircang3";
+ sha256 = "sha256-JwH9HZgU1YVR+dEETbM1xrqYcxaTZsWDSVI6WM907UA=";
};
propagatedBuildInputs = [ werkzeug ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/python-crontab/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/python-crontab/default.nix
index f5e368de03..d91418fc1d 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/python-crontab/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/python-crontab/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "python-crontab";
- version = "2.5.1";
+ version = "2.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "4bbe7e720753a132ca4ca9d4094915f40e9d9dc8a807a4564007651018ce8c31";
+ sha256 = "1e35ed7a3cdc3100545b43e196d34754e6551e7f95e4caebbe0e1c0ca41c2f1b";
};
checkInputs = [ pytestCheckHook ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/python-ironicclient/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/python-ironicclient/default.nix
index a09a65a2b4..fb4840753d 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/python-ironicclient/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/python-ironicclient/default.nix
@@ -20,11 +20,11 @@
buildPythonApplication rec {
pname = "python-ironicclient";
- version = "4.8.0";
+ version = "4.9.0";
src = fetchPypi {
inherit pname version;
- sha256 = "b55516a72b995f92fb434619cbc1e2effa604c7fcaa6ac4afb8f5af1ea8193a4";
+ sha256 = "99d45e914b2845731ac44fbfc63ae3e1bd52211396748797b588f2adc4b3f341";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pytile/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pytile/default.nix
index 779703723e..93197e1c2b 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pytile/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pytile/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pytile";
- version = "5.2.3";
+ version = "5.2.4";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "bachya";
repo = pname;
rev = version;
- sha256 = "01gxq6dbqjmsqndjcbqv79wd2wgs7krm0rn47k883gh2xg9sn606";
+ sha256 = "sha256-9FbcGhRmXULJgfJOmy6mhiZwQUDNmvxZI/WxjJIbnc8=";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pytradfri/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pytradfri/default.nix
index 5854c45a25..597702e6d3 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pytradfri/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pytradfri/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "pytradfri";
- version = "7.0.7";
+ version = "7.1.0";
disabled = pythonOlder "3.7";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = "pytradfri";
rev = version;
- sha256 = "sha256-gUaDPm1hq4SZm9beSbfdX0qGEGWGiq13UjchdN1+Kfc=";
+ sha256 = "sha256-r/qt06YPia8PYhwOeDXk0oK3YvEZ/1kN//+LXj34fmE=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyvex/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyvex/default.nix
index e8babafdf9..dc5b7b3329 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyvex/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyvex/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "pyvex";
- version = "9.0.10159";
+ version = "9.0.10281";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-9I9gAPbazuPdZDyoXpjw0IrTu+97dwznoOnyBzkNNCw=";
+ sha256 = "sha256-fa3VB/+z+1yt6uguJYH9/fj1QVV9PQuFWNyLHQhs0Oo=";
};
postPatch = lib.optionalString stdenv.isDarwin ''
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pywizlight/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pywizlight/default.nix
index 1461a70530..57c0bec47e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pywizlight/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pywizlight/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "pywizlight";
- version = "0.4.7";
+ version = "0.4.8";
src = fetchFromGitHub {
owner = "sbidy";
repo = pname;
- rev = version;
+ rev = "v${version}";
sha256 = "0zagdb90bxmf06fzpljhqgsgzg36zc1yhdibacfrx8bmnx3l657h";
};
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qualysclient/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qualysclient/default.nix
index 21708dd8e5..6556187c44 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qualysclient/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qualysclient/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "qualysclient";
- version = "0.0.4.8.1";
+ version = "0.0.4.8.2";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "woodtechie1428";
repo = pname;
rev = "v${version}";
- sha256 = "1fdcmspjm1cy53x9gm7frfq175saskcwn565zqprgxzfcigip1n3";
+ sha256 = "0hrbp5ci1l06j709k5y3z3ad9dryvrkvmc2wyb4a01gw7qzry7ys";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/sendgrid/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/sendgrid/default.nix
index a9492c3e8f..c77bcfee33 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/sendgrid/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/sendgrid/default.nix
@@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "sendgrid";
- version = "6.8.2";
+ version = "6.8.3";
src = fetchFromGitHub {
owner = pname;
repo = "sendgrid-python";
rev = version;
- sha256 = "sha256-TaewVBWQ6D5TH1TGXlXVBnW7K4HS/cFxJ6bcMv2DB+c=";
+ sha256 = "sha256-kJbpYLM+GpyAHEnO2mqULOYyxIpOrmGeSMd4wJccz/8=";
};
propagatedBuildInputs = [
@@ -45,5 +45,7 @@ buildPythonPackage rec {
homepage = "https://github.com/sendgrid/sendgrid-python";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
+ # No support for new starkbank-ecdsa releases
+ broken = true;
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix
index 014f5d6ffa..757acf32e5 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/simple-rest-client/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "simple-rest-client";
- version = "1.1.0";
+ version = "1.1.1";
disabled = pythonOlder "3.8";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "allisson";
repo = "python-simple-rest-client";
rev = version;
- sha256 = "sha256-i+wUc9qxyei+Jbch8vyIrm9ElClnOIKp+YK6jIDkbTA=";
+ sha256 = "sha256-oJXP2/lChlzzKyNiTgJMHkcNkFyy92kTPxgDkon54g8=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/simplisafe-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/simplisafe-python/default.nix
index 09f7a3056f..e61063a6a4 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/simplisafe-python/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/simplisafe-python/default.nix
@@ -1,22 +1,24 @@
{ lib
, aiohttp
-, aioresponses
+, aresponses
, asynctest
, backoff
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-aiohttp
+, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pytz
, types-pytz
, voluptuous
+, websockets
}:
buildPythonPackage rec {
pname = "simplisafe-python";
- version = "11.0.6";
+ version = "12.0.2";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -24,7 +26,7 @@ buildPythonPackage rec {
owner = "bachya";
repo = pname;
rev = version;
- sha256 = "sha256-XVn/GBcTTthvsRJOnCZ0yOF3nUwbBZ2dfMJZsJXnE6U=";
+ sha256 = "sha256-/KnDsnx+Jrirj6uBkdao6PI2jhtzKqDK6cmmQgsO5T4=";
};
nativeBuildInputs = [ poetry-core ];
@@ -35,12 +37,14 @@ buildPythonPackage rec {
pytz
types-pytz
voluptuous
+ websockets
];
checkInputs = [
- aioresponses
+ aresponses
asynctest
pytest-aiohttp
+ pytest-asyncio
pytestCheckHook
];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/smpplib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/smpplib/default.nix
index fe22f121ef..4966e8c8fb 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/smpplib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/smpplib/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "smpplib";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0jzxlfwf0861ilh4xyd70hmkdbvdki52aalglm1bnpxkg6i3jhfz";
+ sha256 = "3d513178a35573f66faac4ef2127c4bd73307ddb463d145b17b013cf709d9ddd";
};
propagatedBuildInputs = [ six ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/soco/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/soco/default.nix
index 624ef4e30f..c5a06ee8f2 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/soco/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/soco/default.nix
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "soco";
- version = "0.24.0";
+ version = "0.24.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "SoCo";
repo = "SoCo";
rev = "v${version}";
- sha256 = "sha256-3VL2JFlukfQdjTP65X40OOsuCUVsY9kuvRKUZ3qEd+s=";
+ sha256 = "sha256-78JYetA6msGiLMHNTdTN2b5lOiXaY+TQA9ID8qtPmM0=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/somecomfort/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/somecomfort/default.nix
index 05298549d0..89c5dedf50 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/somecomfort/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/somecomfort/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "somecomfort";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchPypi {
inherit pname version;
- sha256 = "f201109104a61d05624022d3d0ebf23bf487570408517cac5f3f79dbde4b225d";
+ sha256 = "56e60e4e9f76c12c0c9dd1016e9f1334be6800409e0762f5f143f9069d7292d3";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/spacy-transformers/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/spacy-transformers/default.nix
index 94e7410d6c..5c5536c18b 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/spacy-transformers/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/spacy-transformers/default.nix
@@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "spacy-transformers";
- version = "1.0.6";
+ version = "1.1.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-zkpSaiqb0wUTugmbeREVJyZzv5qxXXw4YFBpXzdSUXE=";
+ sha256 = "f66c4b08c3afe2c9f01bc4a377af3c62ea9c1aa7b67ff51f62b9be73d6609e49";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/starkbank-ecdsa/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/starkbank-ecdsa/default.nix
index 9d93544433..df45883b9b 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/starkbank-ecdsa/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/starkbank-ecdsa/default.nix
@@ -6,18 +6,31 @@
buildPythonPackage rec {
pname = "starkbank-ecdsa";
- version = "1.1.1";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "starkbank";
repo = "ecdsa-python";
rev = "v${version}";
- sha256 = "1x86ia0385c76nzqa00qyrvnn4j174n6piq85m7ar5i0ij7qky9a";
+ sha256 = "sha256-MTd9aeX6UavRua0hnuy5qY5kltzSoyvv+LcL5EvU5Sc=";
};
- checkInputs = [ pytestCheckHook ];
- pytestFlagsArray = [ "-v tests/*.py" ];
- pythonImportsCheck = [ "ellipticcurve" ];
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ preCheck = ''
+ cd tests
+ '';
+
+ pytestFlagsArray = [
+ "-v"
+ "*.py"
+ ];
+
+ pythonImportsCheck = [
+ "ellipticcurve"
+ ];
meta = with lib; {
description = "Python ECDSA library";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/stevedore/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/stevedore/default.nix
index b8a42db27f..66f99c7b01 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/stevedore/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/stevedore/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "stevedore";
- version = "3.4.0";
+ version = "3.5.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "18aaxj4nrki0bjgzmqxqy20m7763q1xmwishy6biicapgzdqxdar";
+ sha256 = "sha256-9AJTiH2HEuqiuw6jgwN0QWc23I7A4i9aZQksEXTEQzU=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/teslajsonpy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/teslajsonpy/default.nix
index b7b863101b..7a4b013abe 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/teslajsonpy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/teslajsonpy/default.nix
@@ -10,19 +10,22 @@
, poetry-core
, pytest-asyncio
, pytestCheckHook
+, pythonOlder
, wrapt
}:
buildPythonPackage rec {
pname = "teslajsonpy";
- version = "1.0.1";
+ version = "1.2.0";
format = "pyproject";
+ disabled = pythonOlder "3.6";
+
src = fetchFromGitHub {
owner = "zabuldon";
repo = pname;
rev = "v${version}";
- sha256 = "0pb0kgddyzpipa0sqrkwyg1jgh95726irb306lr0pyyg0rsk54k7";
+ sha256 = "05zn923zsr3jdilhj7bl16sabxy3ziwwlz30jq1xappbf824f9sa";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
index d441e97fee..d85446f538 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
@@ -4,30 +4,28 @@
, mock
, nose
, pyjwt
-, pysocks
+, pythonOlder
, pytz
, requests
-, six
}:
buildPythonPackage rec {
pname = "twilio";
- version = "7.1.0";
+ version = "7.2.0";
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "twilio";
repo = "twilio-python";
rev = version;
- sha256 = "sha256-pagqetDQ8/1xDCxZJVTZc9T0dmFA1opd7tMDR11wlVs=";
+ sha256 = "sha256-lhRlLZ9RpOpNIPEgrO7+JO8CnqeC3gqgGqXjznsA9ls=";
};
propagatedBuildInputs = [
pyjwt
- pysocks
pytz
requests
- six
];
checkInputs = [
@@ -35,7 +33,9 @@ buildPythonPackage rec {
nose
];
- pythonImportsCheck = [ "twilio" ];
+ pythonImportsCheck = [
+ "twilio"
+ ];
meta = with lib; {
description = "Twilio API client and TwiML generator";
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
index 603aae8585..17ed9f4eb0 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/velbus-aio/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "velbus-aio";
- version = "2021.10.1";
+ version = "2021.10.2";
disabled = pythonOlder "3.7";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "Cereal2nd";
repo = pname;
rev = version;
- sha256 = "sha256-vE25b95tWxsB+uJNVpXtY5AcJZo5qsBm6Jug1ckhz7k=";
+ sha256 = "sha256-zamFDlahHQGo5g0dlGF6uWG53K/IkEjP0dA8cWYrhtI=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/versionfinder/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/versionfinder/default.nix
index a6c36e07c5..69d77551fc 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/versionfinder/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/versionfinder/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchFromGitHub, GitPython, pytest, backoff, requests }:
+{ lib, buildPythonPackage, fetchFromGitHub, GitPython, pytestCheckHook, backoff, requests }:
buildPythonPackage rec {
pname = "versionfinder";
@@ -17,10 +17,15 @@ buildPythonPackage rec {
];
checkInputs = [
- pytest
+ pytestCheckHook
requests
];
+ disabledTestPaths = [
+ # acceptance tests use the network
+ "versionfinder/tests/test_acceptance.py"
+ ];
+
pythonImportsCheck = [ "versionfinder" ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
index c04fcf7f0d..6c40f266f3 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "yeelight";
- version = "0.7.7";
+ version = "0.7.8";
disabled = pythonOlder "3.4";
src = fetchFromGitLab {
owner = "stavros";
repo = "python-yeelight";
rev = "v${version}";
- sha256 = "sha256-unxJf//VJc21uM0njirQIOjMrkFR6KXicNrOXKus3lw=";
+ sha256 = "sha256-fKtG0D256bK1hIcQiLdzCM+IdD/mmcFpcoE3DEFt7r0=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/actionlint/default.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/actionlint/default.nix
index 0855084b31..137c966349 100644
--- a/third_party/nixpkgs/pkgs/development/tools/analysis/actionlint/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/actionlint/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "actionlint";
- version = "1.6.5";
+ version = "1.6.6";
subPackages = [ "cmd/actionlint" ];
@@ -10,7 +10,7 @@ buildGoModule rec {
owner = "rhysd";
repo = "actionlint";
rev = "v${version}";
- sha256 = "12s9ijfvnmfbcvf5lxi2jm3j7vrn7rfkas2lib5jdih77hf9270k";
+ sha256 = "17c6952cjdpbl70lnn34pl3njrvpqmdbgnrm1q69kx94bni1slnz";
};
vendorSha256 = "1i7442n621jmc974b73pfz1gyqw74ilpg1zz16yxqpfh5c958m7n";
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/Gemfile.lock b/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/Gemfile.lock
index 13425cf9ee..257d8a7fba 100644
--- a/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/Gemfile.lock
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/Gemfile.lock
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
- brakeman (5.0.4)
+ brakeman (5.1.1)
PLATFORMS
ruby
@@ -10,4 +10,4 @@ DEPENDENCIES
brakeman
BUNDLED WITH
- 2.1.4
+ 2.2.24
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/gemset.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/gemset.nix
index f37158353e..ea241dbf6e 100644
--- a/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/gemset.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/brakeman/gemset.nix
@@ -4,9 +4,9 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1czqmrqbli2cnw4vv4pzz8bk78c7lpcnnyba74cj632swv1za6jd";
+ sha256 = "0y71fqqd0azy5rn78fwiz9px0mql23zrl0ij0dzdkx22l4cscpb0";
type = "gem";
};
- version = "5.0.4";
+ version = "5.1.1";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/tools/analysis/radare2/default.nix b/third_party/nixpkgs/pkgs/development/tools/analysis/radare2/default.nix
index 198ce101bf..64301a383b 100644
--- a/third_party/nixpkgs/pkgs/development/tools/analysis/radare2/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/analysis/radare2/default.nix
@@ -31,19 +31,19 @@ let
arm64 = fetchFromGitHub {
owner = "radareorg";
repo = "vector35-arch-arm64";
- rev = "5837915960c2ce862a77c99a374abfb7d18a8534";
- sha256 = "sha256-bs8wjOX+txB193oqIIZ7yx9pwpVhR3HAaWuDLPLG7m4=";
+ rev = "3c5eaba46dab72ecb7d5f5b865a13fdeee95b464";
+ sha256 = "sha256-alcGEi+D8CptXzfznnuxQKCvU2mbzn2sQge5jSqLVpg=";
};
in
stdenv.mkDerivation rec {
pname = "radare2";
- version = "5.4.0";
+ version = "5.4.2";
src = fetchFromGitHub {
owner = "radare";
repo = "radare2";
rev = version;
- sha256 = "sha256-KRHMJ0lW0OF8ejcrigp4caPsuR3iaGcglCYxJSUhGJw=";
+ sha256 = "sha256-5GvJ7J+pAL8GIZ4Tv09wdGyihfMm1bUABhmf7ozQoxc=";
};
preBuild = ''
diff --git a/third_party/nixpkgs/pkgs/development/tools/build-managers/ekam/default.nix b/third_party/nixpkgs/pkgs/development/tools/build-managers/ekam/default.nix
new file mode 100644
index 0000000000..9247a2b213
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/build-managers/ekam/default.nix
@@ -0,0 +1,67 @@
+{ lib, stdenv, fetchFromGitHub, capnproto }:
+
+stdenv.mkDerivation {
+ pname = "ekam";
+ version = "unstable-2021-09-18";
+
+ src = fetchFromGitHub {
+ owner = "capnproto";
+ repo = "ekam";
+ rev = "77c338f8bd8f4a2ce1e6199b2a52363f1fccf388";
+ sha256 = "0q4bizlb1ykzdp4ca0kld6xm5ml9q866xrj3ijffcnyiyqr51qr8";
+ };
+
+ # The capnproto *source* is required to build ekam.
+ # https://github.com/capnproto/ekam/issues/5
+ #
+ # Specifically, the git version of the source is required, as
+ # capnproto release tarballs do not include ekam rule files.
+ postUnpack = ''
+ mkdir -p $sourceRoot/deps
+ cp -r ${capnproto.src} $sourceRoot/deps/capnproto
+ '';
+
+ postPatch = ''
+ # A single capnproto test file expects to be able to write to
+ # /var/tmp. We change it to use /tmp because /var is not available
+ # under nix-build.
+ substituteInPlace deps/capnproto/c++/src/kj/filesystem-disk-test.c++ \
+ --replace "/var/tmp" "/tmp"
+ '';
+
+ # NIX_ENFORCE_PURITY prevents ld from linking against anything outside
+ # of the nix store -- but ekam builds capnp locally and links against it,
+ # so that causes the build to fail. So, we turn this off.
+ #
+ # See: https://nixos.wiki/wiki/Development_environment_with_nix-shell#Troubleshooting
+ preBuild = ''
+ unset NIX_ENFORCE_PURITY
+ '';
+
+ makeFlags = [
+ "PARALLEL=$(NIX_BUILD_CORES)"
+ ];
+
+ installPhase = ''
+ mkdir $out
+ cp -r bin $out
+
+ # Remove capnproto tools; there's a separate nix package for that.
+ rm $out/bin/capnp*
+ # Don't distribute ekam-bootstrap, which is not needed outside this build.
+ rm $out/bin/ekam-bootstrap
+ '';
+
+ meta = with lib; {
+ description = ''Build system ("make" in reverse)'';
+ longDescription = ''
+ Ekam ("make" spelled backwards) is a build system which automatically
+ figures out what to build and how to build it purely based on the
+ source code. No separate "makefile" is needed.
+ '';
+ homepage = "https://github.com/capnproto/ekam";
+ license = licenses.asl20;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.garrison ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/build-managers/msbuild/default.nix b/third_party/nixpkgs/pkgs/development/tools/build-managers/msbuild/default.nix
index b214f89eac..5c3225c683 100644
--- a/third_party/nixpkgs/pkgs/development/tools/build-managers/msbuild/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/build-managers/msbuild/default.nix
@@ -1,7 +1,9 @@
-{ lib, stdenv, fetchurl, fetchpatch, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnet-sdk, writeText, roslyn }:
+{ lib, stdenv, fetchurl, fetchpatch, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnetCorePackages, writeText, roslyn }:
let
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+
xplat = fetchurl {
url = "https://github.com/mono/msbuild/releases/download/v16.9.0/mono_msbuild_6.12.0.137.zip";
sha256 = "1wnzbdpk4s9bmawlh359ak2b8zi0sgx1qvcjnvfncr1wsck53v7q";
diff --git a/third_party/nixpkgs/pkgs/development/tools/continuous-integration/drone-cli/default.nix b/third_party/nixpkgs/pkgs/development/tools/continuous-integration/drone-cli/default.nix
index a95f9914fe..38382ea434 100644
--- a/third_party/nixpkgs/pkgs/development/tools/continuous-integration/drone-cli/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/continuous-integration/drone-cli/default.nix
@@ -21,6 +21,7 @@ buildGoModule rec {
};
meta = with lib; {
+ mainProgram = "drone";
maintainers = with maintainers; [ ];
license = licenses.asl20;
description = "Command line client for the Drone continuous integration server";
diff --git a/third_party/nixpkgs/pkgs/development/tools/electron/default.nix b/third_party/nixpkgs/pkgs/development/tools/electron/default.nix
index 5a70d57045..2134c8e033 100644
--- a/third_party/nixpkgs/pkgs/development/tools/electron/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/electron/default.nix
@@ -135,13 +135,13 @@ rec {
headers = "1pw67w9l63xgkwp78wmnxfjgyzlrmij27bapd2yjrvj6ag7j9xgy";
};
- electron_15 = mkElectron "15.1.2" {
- armv7l-linux = "fd176f658478c56355adb0ee81949f1b1bd073a86afba54ebb703923b99ff5f0";
- aarch64-linux = "9493f410e983cb6a11f24375ea7959cc3e8ccab3b805b6095f4dafc9fa548e67";
- x86_64-linux = "7acb839f6bf9bc95ae7ce26722fb6c5e9fd09bb9d58b674415bf92bded3b808e";
- i686-linux = "018a5546baff524a649fe34957eddb88c30811dae6bd2c3bd110d15b41bc8554";
- x86_64-darwin = "f95f70790fa689684ec2d4822451e45968a2307ccd674a4378a89667f1e2c50d";
- aarch64-darwin = "edcfb7e83c5edad21b05d9babb4a2840157e68dbe4278c3ab3b609ece22e1372";
- headers = "093ndqsqxk0k13rpdnpsjajf9a9599crzhhb412xlvzf8kzdzhxy";
+ electron_15 = mkElectron "15.2.0" {
+ armv7l-linux = "b682f5adca133673c8a7488c0d7e0dab8bddf0028218a2b4b842c85c12393aea";
+ aarch64-linux = "dea4ebd0583f149909acb6fe3168e225e4f6cb5470c1d0eb6c86cb58db0fb623";
+ x86_64-linux = "35d1c7e02fde920664ca245ad694cae82e3acfdac0175a1d32345497eb455673";
+ i686-linux = "52d48fbd6a6d8cae565a0d3f7574305c6313c42cac96bbdde39621b201df0082";
+ x86_64-darwin = "32d3d4e5f7dbb8fe035a7b91dc64c042eb930461424784d4c450e06768e7162d";
+ aarch64-darwin = "a7982607416ca2d30d7f48fbc3b16ab072c46170b117123a5e9763f85227a5cb";
+ headers = "0l9hbvikkw5qd1zp4kwa5w1pj80m466skdlz6j474jzqk1qz2nzm";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/tools/gopls/default.nix b/third_party/nixpkgs/pkgs/development/tools/gopls/default.nix
index 388c34a0c0..dfbc064e0d 100644
--- a/third_party/nixpkgs/pkgs/development/tools/gopls/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/gopls/default.nix
@@ -2,16 +2,17 @@
buildGoModule rec {
pname = "gopls";
- version = "0.7.1";
+ version = "0.7.3";
src = fetchgit {
- rev = "gopls/v${version}";
url = "https://go.googlesource.com/tools";
- sha256 = "0cq8mangcc1fz1ii7v4smxbpzynhwy6gvl80n5hvhjpgkp0k4fsm";
+ rev = "gopls/v${version}";
+ name = "gopls-source-${version}";
+ sha256 = "sha256-aaRaStQ35a/SK4YIR5rjvp8gPxvoNuhLh2AGbr0c6p4=";
};
modRoot = "gopls";
- vendorSha256 = "1mzn1nn3l080lch0yhh4g2sq02g95v14nha8k3d373vwvwg45igs";
+ vendorSha256 = "sha256-8+sWd48w+ghQzznobBPcCQMuc9HLgOuAZPwD6lbbfj8=";
doCheck = false;
@@ -22,6 +23,6 @@ buildGoModule rec {
description = "Official language server for the Go language";
homepage = "https://github.com/golang/tools/tree/master/gopls";
license = licenses.bsd3;
- maintainers = with maintainers; [ mic92 zimbatm ];
+ maintainers = with maintainers; [ mic92 SuperSandro2000 zimbatm ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/tools/java/sawjap/default.nix b/third_party/nixpkgs/pkgs/development/tools/java/sawjap/default.nix
new file mode 100644
index 0000000000..13532c48d4
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/java/sawjap/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, ocamlPackages }:
+
+let inherit (ocamlPackages) ocaml findlib sawja; in
+
+stdenv.mkDerivation {
+
+ pname = "sawjap";
+
+ inherit (sawja) src version;
+
+ sourceRoot = "source/test";
+
+ buildInputs = [ ocaml findlib sawja ];
+
+ buildPhase = ''
+ runHook preBuild
+ mkdir -p $out/bin
+ ocamlfind opt -o $out/bin/sawjap -package sawja -linkpkg sawjap.ml
+ runHook postBuild
+ '';
+
+ dontInstall = true;
+
+ meta = sawja.meta // {
+ description = "Pretty-print .class files";
+ };
+
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix b/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
index 51c7d33408..04024dc3ac 100644
--- a/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "kustomize-sops";
- version = "2.6.0";
+ version = "3.0.1";
src = fetchFromGitHub {
owner = "viaduct-ai";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-3dSWIDPIT4crsJuaB1TDfrUzobn8RfRlFAhqMXzZbKI=";
+ sha256 = "sha256-ZCEgv+2WC1XLDFdRtigkiWu81zLMHvmB8vvIBWN2UYY=";
};
- vendorSha256 = "sha256-+MVViFwaApGZZxCyTwLzIEWTZDbr7WSx7e/yGbJ309Y=";
+ vendorSha256 = "sha256-LFa0s2FBkw97P0CV+9JBmUAjaKVO+RzCX+iWGPUD9iA=";
installPhase = ''
mkdir -p $out/lib/viaduct.ai/v1/ksops-exec/
diff --git a/third_party/nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix b/third_party/nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix
index 22872bdcbf..05770464de 100644
--- a/third_party/nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix
@@ -5,8 +5,8 @@ luarocks.overrideAttrs(old: {
src = fetchFromGitHub {
owner = "nix-community";
repo = "luarocks-nix";
- rev = "test-speedup";
- sha256 = "sha256-WfzLSpIp0V7Ib4sjYvoJHF+/vHaieccvfVAr5W47QsQ=";
+ rev = "standalone";
+ sha256 = "sha256-53Zi+GTayO9EQTCIVrzPeRRHeIkHLqy0mHyBDzbcQQk=";
};
patches = [];
diff --git a/third_party/nixpkgs/pkgs/development/tools/omnisharp-roslyn/default.nix b/third_party/nixpkgs/pkgs/development/tools/omnisharp-roslyn/default.nix
index da15f47b6a..25f7ce4e7a 100644
--- a/third_party/nixpkgs/pkgs/development/tools/omnisharp-roslyn/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/omnisharp-roslyn/default.nix
@@ -3,7 +3,7 @@
, fetchurl
, mono6
, msbuild
-, dotnet-sdk
+, dotnetCorePackages
, makeWrapper
, unzip
, writeText
@@ -11,6 +11,8 @@
let
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+
deps = map (package: stdenv.mkDerivation (with package; {
pname = name;
inherit version src;
diff --git a/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/default.nix b/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/default.nix
index eab000e8d8..03460f7f04 100644
--- a/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/default.nix
@@ -1,33 +1,42 @@
-# This file was originally generated by https://github.com/kamilchm/go2nix v1.2.1
-{ lib, buildGoPackage, fetchgit }:
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
-buildGoPackage rec {
- pname = "pprof-unstable";
- version = "2018-08-15";
- rev = "781f11b1fcf71fae9d185e7189b5e686f575075a";
+buildGoModule rec {
+ pname = "pprof";
+ version = "unstable-2021-09-30";
- goPackagePath = "github.com/google/pprof";
-
- src = fetchgit {
- inherit rev;
- url = "git://github.com/google/pprof";
- sha256 = "1nvzwcj6h4q0lsjlri3bym4axgv848w3xz57iz5p0wz9lcd5jsmf";
+ src = fetchFromGitHub {
+ owner = "google";
+ repo = "pprof";
+ rev = "7fe48b4c820be13151ae35ce5a5e3f54f1b53eef";
+ sha256 = "05nr3igdigs1586qplwfm17hfw0v81jy745g6vayq7cbplljfjb1";
};
- goDeps = ./deps.nix;
+ vendorSha256 = "0yl8y3m2ia3cwxhmg1km8358a0225khimv6hcvras8r2glm69h3f";
meta = with lib; {
description = "A tool for visualization and analysis of profiling data";
homepage = "https://github.com/google/pprof";
license = licenses.asl20;
longDescription = ''
- pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data. It can generate both text and graphical reports (through the use of the dot visualization package).
+ pprof reads a collection of profiling samples in profile.proto format and
+ generates reports to visualize and help analyze the data. It can generate
+ both text and graphical reports (through the use of the dot visualization
+ package).
- profile.proto is a protocol buffer that describes a set of callstacks and symbolization information. A common usage is to represent a set of sampled callstacks from statistical profiling. The format is described on the proto/profile.proto file. For details on protocol buffers, see https://developers.google.com/protocol-buffers
+ profile.proto is a protocol buffer that describes a set of callstacks and
+ symbolization information. A common usage is to represent a set of sampled
+ callstacks from statistical profiling. The format is described on the
+ proto/profile.proto file. For details on protocol buffers, see
+ https://developers.google.com/protocol-buffers
- Profiles can be read from a local file, or over http. Multiple profiles of the same type can be aggregated or compared.
+ Profiles can be read from a local file, or over http. Multiple profiles of
+ the same type can be aggregated or compared.
- If the profile samples contain machine addresses, pprof can symbolize them through the use of the native binutils tools (addr2line and nm).
+ If the profile samples contain machine addresses, pprof can symbolize them
+ through the use of the native binutils tools (addr2line and nm).
This is not an official Google product.
'';
diff --git a/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/deps.nix b/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/deps.nix
deleted file mode 100644
index e76f636799..0000000000
--- a/third_party/nixpkgs/pkgs/development/tools/profiling/pprof/deps.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
-[
- {
- goPackagePath = "github.com/chzyer/readline";
- fetch = {
- type = "git";
- url = "https://github.com/chzyer/readline";
- rev = "2972be24d48e78746da79ba8e24e8b488c9880de";
- sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r";
- };
- }
- {
- goPackagePath = "github.com/ianlancetaylor/demangle";
- fetch = {
- type = "git";
- url = "https://github.com/ianlancetaylor/demangle";
- rev = "fcd258a6f0b45dc345a407ee5568cf9a4d24a0ae";
- sha256 = "10hdzq6n4mb13g8ddqvwjwx14djfyxhh0gjc888vdihzvhyqhvrp";
- };
- }
-]
diff --git a/third_party/nixpkgs/pkgs/development/tools/sumneko-lua-language-server/default.nix b/third_party/nixpkgs/pkgs/development/tools/sumneko-lua-language-server/default.nix
index ed51a6fedc..1290da8587 100644
--- a/third_party/nixpkgs/pkgs/development/tools/sumneko-lua-language-server/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/sumneko-lua-language-server/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sumneko-lua-language-server";
- version = "2.4.3";
+ version = "2.4.5";
src = fetchFromGitHub {
owner = "sumneko";
repo = "lua-language-server";
rev = version;
- sha256 = "sha256-qap6TsqaCy+9prWiUow78eBgaWGq5eUkOXBTYFnAZyo=";
+ sha256 = "sha256-7eTYHZDJLmYTwe0K+RJMRl4tRz9o0DeniHD5+v9f1Jw=";
fetchSubmodules = true;
};
diff --git a/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock b/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock
deleted file mode 100644
index 6b50ab4c79..0000000000
--- a/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock
+++ /dev/null
@@ -1,2923 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "add"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "adler32"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
-
-[[package]]
-name = "aho-corasick"
-version = "0.7.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "ansi_term"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
-dependencies = [
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "anyhow"
-version = "1.0.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
-
-[[package]]
-name = "arrayvec"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
-
-[[package]]
-name = "ascii"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bbf56136a5198c7b01a49e3afcbef6cf84597273d298f54432926024107b0109"
-
-[[package]]
-name = "askama"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d298738b6e47e1034e560e5afe63aa488fea34e25ec11b855a76f0d7b8e73134"
-dependencies = [
- "askama_derive",
- "askama_escape",
- "askama_shared",
-]
-
-[[package]]
-name = "askama_derive"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca2925c4c290382f9d2fa3d1c1b6a63fa1427099721ecca4749b154cc9c25522"
-dependencies = [
- "askama_shared",
- "proc-macro2",
- "syn",
-]
-
-[[package]]
-name = "askama_escape"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90c108c1a94380c89d2215d0ac54ce09796823cca0fd91b299cfff3b33e346fb"
-
-[[package]]
-name = "askama_shared"
-version = "0.11.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc"
-dependencies = [
- "askama_escape",
- "humansize",
- "nom 6.2.1",
- "num-traits 0.2.14",
- "percent-encoding",
- "proc-macro2",
- "quote",
- "serde",
- "syn",
- "toml",
-]
-
-[[package]]
-name = "assert_cmd"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe"
-dependencies = [
- "bstr",
- "doc-comment",
- "predicates 2.0.3",
- "predicates-core",
- "predicates-tree",
- "wait-timeout",
-]
-
-[[package]]
-name = "atty"
-version = "0.2.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-dependencies = [
- "hermit-abi",
- "libc",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
-
-[[package]]
-name = "base64"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
-dependencies = [
- "byteorder",
- "safemem",
-]
-
-[[package]]
-name = "base64"
-version = "0.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
-
-[[package]]
-name = "bitflags"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d"
-
-[[package]]
-name = "bitflags"
-version = "1.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-[[package]]
-name = "bitvec"
-version = "0.19.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
-dependencies = [
- "funty",
- "radium",
- "tap",
- "wyz",
-]
-
-[[package]]
-name = "bstr"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
-dependencies = [
- "lazy_static",
- "memchr",
- "regex-automata",
-]
-
-[[package]]
-name = "buf_redux"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f"
-dependencies = [
- "memchr",
- "safemem",
-]
-
-[[package]]
-name = "bumpalo"
-version = "3.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9df67f7bf9ef8498769f994239c45613ef0c5899415fb58e9add412d2c1a538"
-
-[[package]]
-name = "byteorder"
-version = "1.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
-
-[[package]]
-name = "bytes"
-version = "0.5.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
-
-[[package]]
-name = "bytes"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
-
-[[package]]
-name = "canvas"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "cc"
-version = "1.0.71"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"
-
-[[package]]
-name = "cfg-if"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
-[[package]]
-name = "cfg-if"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-[[package]]
-name = "char"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "chrono"
-version = "0.4.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
-dependencies = [
- "libc",
- "num-integer",
- "num-traits 0.2.14",
- "time 0.1.43",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "chunked_transfer"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
-
-[[package]]
-name = "clap"
-version = "2.33.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
-dependencies = [
- "ansi_term",
- "atty",
- "bitflags 1.3.2",
- "strsim 0.8.0",
- "textwrap",
- "unicode-width",
- "vec_map",
-]
-
-[[package]]
-name = "closures"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "color_quant"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
-
-[[package]]
-name = "console_error_panic_hook"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
-dependencies = [
- "cfg-if 1.0.0",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "console_log"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "core-foundation"
-version = "0.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
-[[package]]
-name = "core-foundation-sys"
-version = "0.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
-
-[[package]]
-name = "crossbeam-channel"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
-dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-utils",
-]
-
-[[package]]
-name = "crossbeam-deque"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
-dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-epoch",
- "crossbeam-utils",
-]
-
-[[package]]
-name = "crossbeam-epoch"
-version = "0.9.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
-dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-utils",
- "lazy_static",
- "memoffset",
- "scopeguard",
-]
-
-[[package]]
-name = "crossbeam-utils"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
-dependencies = [
- "cfg-if 1.0.0",
- "lazy_static",
-]
-
-[[package]]
-name = "curl"
-version = "0.4.39"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aaa3b8db7f3341ddef15786d250106334d4a6c4b0ae4a46cd77082777d9849b9"
-dependencies = [
- "curl-sys",
- "libc",
- "openssl-probe",
- "openssl-sys",
- "schannel",
- "socket2 0.4.2",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "curl-sys"
-version = "0.4.49+curl-7.79.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e0f44960aea24a786a46907b8824ebc0e66ca06bf4e4978408c7499620343483"
-dependencies = [
- "cc",
- "libc",
- "libz-sys",
- "openssl-sys",
- "pkg-config",
- "vcpkg",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "deflate"
-version = "0.7.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4"
-dependencies = [
- "adler32",
- "byteorder",
-]
-
-[[package]]
-name = "deno"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "diff"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
-
-[[package]]
-name = "difference"
-version = "2.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
-
-[[package]]
-name = "difflib"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
-
-[[package]]
-name = "doc-comment"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
-
-[[package]]
-name = "docopt"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f"
-dependencies = [
- "lazy_static",
- "regex",
- "serde",
- "strsim 0.10.0",
-]
-
-[[package]]
-name = "dom"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "either"
-version = "1.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
-
-[[package]]
-name = "encoding_rs"
-version = "0.8.28"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
-dependencies = [
- "cfg-if 1.0.0",
-]
-
-[[package]]
-name = "enum_primitive"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180"
-dependencies = [
- "num-traits 0.1.43",
-]
-
-[[package]]
-name = "env_logger"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
-dependencies = [
- "atty",
- "humantime",
- "log",
- "regex",
- "termcolor",
-]
-
-[[package]]
-name = "fetch"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "serde",
- "serde_derive",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "filetime"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "redox_syscall",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "float-cmp"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4"
-dependencies = [
- "num-traits 0.2.14",
-]
-
-[[package]]
-name = "fnv"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-[[package]]
-name = "foreign-types"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
-dependencies = [
- "foreign-types-shared",
-]
-
-[[package]]
-name = "foreign-types-shared"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-
-[[package]]
-name = "form_urlencoded"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
-dependencies = [
- "matches",
- "percent-encoding",
-]
-
-[[package]]
-name = "fuchsia-zircon"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-dependencies = [
- "bitflags 1.3.2",
- "fuchsia-zircon-sys",
-]
-
-[[package]]
-name = "fuchsia-zircon-sys"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-
-[[package]]
-name = "funty"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
-
-[[package]]
-name = "futures"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-channel"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
-dependencies = [
- "futures-core",
- "futures-sink",
-]
-
-[[package]]
-name = "futures-channel-preview"
-version = "0.3.0-alpha.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a"
-dependencies = [
- "futures-core-preview",
-]
-
-[[package]]
-name = "futures-core"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
-
-[[package]]
-name = "futures-core-preview"
-version = "0.3.0-alpha.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"
-
-[[package]]
-name = "futures-executor"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
-dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-io"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
-
-[[package]]
-name = "futures-lite"
-version = "1.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
-dependencies = [
- "futures-core",
- "pin-project-lite 0.2.7",
-]
-
-[[package]]
-name = "futures-macro"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
-dependencies = [
- "autocfg",
- "proc-macro-hack",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "futures-sink"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
-
-[[package]]
-name = "futures-task"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
-
-[[package]]
-name = "futures-util"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
-dependencies = [
- "autocfg",
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "futures-task",
- "memchr",
- "pin-project-lite 0.2.7",
- "pin-utils",
- "proc-macro-hack",
- "proc-macro-nested",
- "slab",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi",
-]
-
-[[package]]
-name = "gif"
-version = "0.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2e41945ba23db3bf51b24756d73d81acb4f28d85c3dccc32c6fae904438c25f"
-dependencies = [
- "color_quant",
- "lzw",
-]
-
-[[package]]
-name = "glob"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
-
-[[package]]
-name = "gloo"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68ce6f2dfa9f57f15b848efa2aade5e1850dc72986b87a2b0752d44ca08f4967"
-dependencies = [
- "gloo-console-timer",
- "gloo-events",
- "gloo-file",
- "gloo-timers",
-]
-
-[[package]]
-name = "gloo-console-timer"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b48675544b29ac03402c6dffc31a912f716e38d19f7e74b78b7e900ec3c941ea"
-dependencies = [
- "web-sys",
-]
-
-[[package]]
-name = "gloo-events"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "088514ec8ef284891c762c88a66b639b3a730134714692ee31829765c5bc814f"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "gloo-file"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f9fecfe46b5dc3cc46f58e98ba580cc714f2c93860796d002eb3527a465ef49"
-dependencies = [
- "gloo-events",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "gloo-timers"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "guide-supported-types-examples"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "h2"
-version = "0.2.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
-dependencies = [
- "bytes 0.5.6",
- "fnv",
- "futures-core",
- "futures-sink",
- "futures-util",
- "http",
- "indexmap",
- "slab",
- "tokio",
- "tokio-util",
- "tracing",
- "tracing-futures",
-]
-
-[[package]]
-name = "hashbrown"
-version = "0.11.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
-
-[[package]]
-name = "heck"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
-dependencies = [
- "unicode-segmentation",
-]
-
-[[package]]
-name = "hello_world"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "hermit-abi"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "http"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
-dependencies = [
- "bytes 1.1.0",
- "fnv",
- "itoa",
-]
-
-[[package]]
-name = "http-body"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
-dependencies = [
- "bytes 0.5.6",
- "http",
-]
-
-[[package]]
-name = "httparse"
-version = "1.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
-
-[[package]]
-name = "httpdate"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
-
-[[package]]
-name = "humansize"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
-
-[[package]]
-name = "humantime"
-version = "2.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
-
-[[package]]
-name = "hyper"
-version = "0.13.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
-dependencies = [
- "bytes 0.5.6",
- "futures-channel",
- "futures-core",
- "futures-util",
- "h2",
- "http",
- "http-body",
- "httparse",
- "httpdate",
- "itoa",
- "pin-project",
- "socket2 0.3.19",
- "tokio",
- "tower-service",
- "tracing",
- "want",
-]
-
-[[package]]
-name = "hyper-tls"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
-dependencies = [
- "bytes 0.5.6",
- "hyper",
- "native-tls",
- "tokio",
- "tokio-tls",
-]
-
-[[package]]
-name = "id-arena"
-version = "2.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
-dependencies = [
- "rayon",
-]
-
-[[package]]
-name = "idna"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
-dependencies = [
- "matches",
- "unicode-bidi",
- "unicode-normalization",
-]
-
-[[package]]
-name = "image"
-version = "0.12.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d95816db758249fe16f23a4e23f1a3a817fe11892dbfd1c5836f625324702158"
-dependencies = [
- "byteorder",
- "enum_primitive",
- "gif",
- "jpeg-decoder",
- "num-iter",
- "num-rational",
- "num-traits 0.1.43",
- "png",
- "scoped_threadpool",
-]
-
-[[package]]
-name = "import_js"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "indexmap"
-version = "1.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
-dependencies = [
- "autocfg",
- "hashbrown",
-]
-
-[[package]]
-name = "inflate"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7e0062d2dc2f17d2f13750d95316ae8a2ff909af0fda957084f5defd87c43bb"
-
-[[package]]
-name = "iovec"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "ipnet"
-version = "2.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
-
-[[package]]
-name = "itertools"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itoa"
-version = "0.4.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
-
-[[package]]
-name = "jpeg-decoder"
-version = "0.1.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
-dependencies = [
- "rayon",
-]
-
-[[package]]
-name = "js-sys"
-version = "0.3.55"
-dependencies = [
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-test",
-]
-
-[[package]]
-name = "json"
-version = "0.12.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
-
-[[package]]
-name = "julia_set"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "kernel32-sys"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-dependencies = [
- "winapi 0.2.8",
- "winapi-build",
-]
-
-[[package]]
-name = "lazy_static"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
-[[package]]
-name = "leb128"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
-
-[[package]]
-name = "lexical-core"
-version = "0.7.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
-dependencies = [
- "arrayvec",
- "bitflags 1.3.2",
- "cfg-if 1.0.0",
- "ryu",
- "static_assertions",
-]
-
-[[package]]
-name = "libc"
-version = "0.2.103"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6"
-
-[[package]]
-name = "libz-sys"
-version = "1.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
-dependencies = [
- "cc",
- "libc",
- "pkg-config",
- "vcpkg",
-]
-
-[[package]]
-name = "log"
-version = "0.4.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
-dependencies = [
- "cfg-if 1.0.0",
-]
-
-[[package]]
-name = "lzw"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7d947cbb889ed21c2a84be6ffbaebf5b4e0f4340638cba0444907e38b56be084"
-
-[[package]]
-name = "matches"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
-
-[[package]]
-name = "memchr"
-version = "2.3.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
-
-[[package]]
-name = "memoffset"
-version = "0.6.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "mime"
-version = "0.3.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
-
-[[package]]
-name = "mime_guess"
-version = "2.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
-dependencies = [
- "mime",
- "unicase",
-]
-
-[[package]]
-name = "mio"
-version = "0.6.23"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
-dependencies = [
- "cfg-if 0.1.10",
- "fuchsia-zircon",
- "fuchsia-zircon-sys",
- "iovec",
- "kernel32-sys",
- "libc",
- "log",
- "miow",
- "net2",
- "slab",
- "winapi 0.2.8",
-]
-
-[[package]]
-name = "miow"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
-dependencies = [
- "kernel32-sys",
- "net2",
- "winapi 0.2.8",
- "ws2_32-sys",
-]
-
-[[package]]
-name = "multipart"
-version = "0.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
-dependencies = [
- "buf_redux",
- "httparse",
- "log",
- "mime",
- "mime_guess",
- "quick-error",
- "rand",
- "safemem",
- "tempfile",
- "twoway",
-]
-
-[[package]]
-name = "native-tls"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
-dependencies = [
- "lazy_static",
- "libc",
- "log",
- "openssl",
- "openssl-probe",
- "openssl-sys",
- "schannel",
- "security-framework",
- "security-framework-sys",
- "tempfile",
-]
-
-[[package]]
-name = "net2"
-version = "0.2.37"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
-dependencies = [
- "cfg-if 0.1.10",
- "libc",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "no-std"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "nom"
-version = "5.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
-dependencies = [
- "memchr",
- "version_check",
-]
-
-[[package]]
-name = "nom"
-version = "6.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c5c51b9083a3c620fa67a2a635d1ce7d95b897e957d6b28ff9a5da960a103a6"
-dependencies = [
- "bitvec",
- "funty",
- "lexical-core",
- "memchr",
- "version_check",
-]
-
-[[package]]
-name = "normalize-line-endings"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
-
-[[package]]
-name = "num-integer"
-version = "0.1.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
-dependencies = [
- "autocfg",
- "num-traits 0.2.14",
-]
-
-[[package]]
-name = "num-iter"
-version = "0.1.42"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
-dependencies = [
- "autocfg",
- "num-integer",
- "num-traits 0.2.14",
-]
-
-[[package]]
-name = "num-rational"
-version = "0.1.42"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee314c74bd753fc86b4780aa9475da469155f3848473a261d2d18e35245a784e"
-dependencies = [
- "num-integer",
- "num-traits 0.2.14",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.1.43"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
-dependencies = [
- "num-traits 0.2.14",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.2.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "num_cpus"
-version = "1.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
-dependencies = [
- "hermit-abi",
- "libc",
-]
-
-[[package]]
-name = "once_cell"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
-
-[[package]]
-name = "openssl"
-version = "0.10.36"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a"
-dependencies = [
- "bitflags 1.3.2",
- "cfg-if 1.0.0",
- "foreign-types",
- "libc",
- "once_cell",
- "openssl-sys",
-]
-
-[[package]]
-name = "openssl-probe"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
-
-[[package]]
-name = "openssl-src"
-version = "111.16.0+1.1.1l"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ab2173f69416cf3ec12debb5823d244127d23a9b127d5a5189aa97c5fa2859f"
-dependencies = [
- "cc",
-]
-
-[[package]]
-name = "openssl-sys"
-version = "0.9.67"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69df2d8dfc6ce3aaf44b40dec6f487d5a886516cf6879c49e98e0710f310a058"
-dependencies = [
- "autocfg",
- "cc",
- "libc",
- "openssl-src",
- "pkg-config",
- "vcpkg",
-]
-
-[[package]]
-name = "percent-encoding"
-version = "2.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
-
-[[package]]
-name = "performance"
-version = "0.1.0"
-dependencies = [
- "humantime",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "pin-project"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
-dependencies = [
- "pin-project-internal",
-]
-
-[[package]]
-name = "pin-project-internal"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "pin-project-lite"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
-
-[[package]]
-name = "pin-project-lite"
-version = "0.2.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
-
-[[package]]
-name = "pin-utils"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-[[package]]
-name = "pkg-config"
-version = "0.3.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7c9b1041b4387893b91ee6746cddfc28516aff326a3519fb2adf820932c5e6cb"
-
-[[package]]
-name = "png"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3cb773e9a557edb568ce9935cf783e3cdcabe06a9449d41b3e5506d88e582c82"
-dependencies = [
- "bitflags 0.7.0",
- "deflate",
- "inflate",
- "num-iter",
-]
-
-[[package]]
-name = "ppv-lite86"
-version = "0.2.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
-
-[[package]]
-name = "predicates"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f49cfaf7fdaa3bfacc6fa3e7054e65148878354a5cfddcf661df4c851f8021df"
-dependencies = [
- "difference",
- "float-cmp",
- "normalize-line-endings",
- "predicates-core",
- "regex",
-]
-
-[[package]]
-name = "predicates"
-version = "2.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c6ce811d0b2e103743eec01db1c50612221f173084ce2f7941053e94b6bb474"
-dependencies = [
- "difflib",
- "itertools",
- "predicates-core",
-]
-
-[[package]]
-name = "predicates-core"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "57e35a3326b75e49aa85f5dc6ec15b41108cf5aee58eabb1f274dd18b73c2451"
-
-[[package]]
-name = "predicates-tree"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "338c7be2905b732ae3984a2f40032b5e94fd8f52505b186c7d4d68d193445df7"
-dependencies = [
- "predicates-core",
- "termtree",
-]
-
-[[package]]
-name = "proc-macro-error"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-dependencies = [
- "proc-macro-error-attr",
- "proc-macro2",
- "quote",
- "syn",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro-error-attr"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-dependencies = [
- "proc-macro2",
- "quote",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro-hack"
-version = "0.5.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
-
-[[package]]
-name = "proc-macro-nested"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70"
-dependencies = [
- "unicode-xid",
-]
-
-[[package]]
-name = "quick-error"
-version = "1.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
-
-[[package]]
-name = "quote"
-version = "1.0.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "radium"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
-
-[[package]]
-name = "rand"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
-dependencies = [
- "libc",
- "rand_chacha",
- "rand_core",
- "rand_hc",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-dependencies = [
- "ppv-lite86",
- "rand_core",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
-dependencies = [
- "getrandom",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
-dependencies = [
- "rand_core",
-]
-
-[[package]]
-name = "rayon"
-version = "1.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
-dependencies = [
- "autocfg",
- "crossbeam-deque",
- "either",
- "rayon-core",
-]
-
-[[package]]
-name = "rayon-core"
-version = "1.9.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
-dependencies = [
- "crossbeam-channel",
- "crossbeam-deque",
- "crossbeam-utils",
- "lazy_static",
- "num_cpus",
-]
-
-[[package]]
-name = "raytrace-parallel"
-version = "0.1.0"
-dependencies = [
- "console_error_panic_hook",
- "futures-channel-preview",
- "js-sys",
- "rayon",
- "rayon-core",
- "raytracer",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "raytracer"
-version = "0.1.0"
-source = "git+https://github.com/alexcrichton/raytracer?branch=update-deps#42faa13859f7d8d47fd18be785c108003a207786"
-dependencies = [
- "image",
- "serde",
- "serde_derive",
-]
-
-[[package]]
-name = "redox_syscall"
-version = "0.2.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
-dependencies = [
- "bitflags 1.3.2",
-]
-
-[[package]]
-name = "regex"
-version = "1.4.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759"
-dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
-]
-
-[[package]]
-name = "regex-automata"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
-
-[[package]]
-name = "regex-syntax"
-version = "0.6.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
-
-[[package]]
-name = "remove_dir_all"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
-dependencies = [
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "request-animation-frame"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "reqwest"
-version = "0.10.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c"
-dependencies = [
- "base64 0.13.0",
- "bytes 0.5.6",
- "encoding_rs",
- "futures-core",
- "futures-util",
- "http",
- "http-body",
- "hyper",
- "hyper-tls",
- "ipnet",
- "js-sys",
- "lazy_static",
- "log",
- "mime",
- "mime_guess",
- "native-tls",
- "percent-encoding",
- "pin-project-lite 0.2.7",
- "serde",
- "serde_urlencoded",
- "tokio",
- "tokio-tls",
- "url",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- "winreg",
-]
-
-[[package]]
-name = "rouille"
-version = "3.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dfc1bcf3b32bd9ef568402e750404c369ff172a6a34597c858f8ccf5f3bed013"
-dependencies = [
- "base64 0.13.0",
- "chrono",
- "filetime",
- "multipart",
- "num_cpus",
- "percent-encoding",
- "rand",
- "serde",
- "serde_derive",
- "serde_json",
- "sha1",
- "threadpool",
- "time 0.3.3",
- "tiny_http",
- "url",
-]
-
-[[package]]
-name = "rust-duck-typed-interfaces"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "rust-webassembly-weather-reports"
-version = "0.1.1"
-dependencies = [
- "chrono",
- "gloo",
- "json",
- "reqwest",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "rustc-demangle"
-version = "0.1.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
-
-[[package]]
-name = "ryu"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
-
-[[package]]
-name = "safemem"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
-
-[[package]]
-name = "sample"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-test",
-]
-
-[[package]]
-name = "schannel"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
-dependencies = [
- "lazy_static",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "scoped-tls"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
-
-[[package]]
-name = "scoped_threadpool"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
-
-[[package]]
-name = "scopeguard"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-
-[[package]]
-name = "security-framework"
-version = "2.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
-dependencies = [
- "bitflags 1.3.2",
- "core-foundation",
- "core-foundation-sys",
- "libc",
- "security-framework-sys",
-]
-
-[[package]]
-name = "security-framework-sys"
-version = "2.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
-[[package]]
-name = "serde"
-version = "1.0.130"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.130"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.68"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
-dependencies = [
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "serde_urlencoded"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
-dependencies = [
- "form_urlencoded",
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "sha1"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
-
-[[package]]
-name = "slab"
-version = "0.4.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
-
-[[package]]
-name = "socket2"
-version = "0.3.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "socket2"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
-dependencies = [
- "libc",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "sourcefile"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3"
-
-[[package]]
-name = "static_assertions"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
-
-[[package]]
-name = "strsim"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-
-[[package]]
-name = "strsim"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
-
-[[package]]
-name = "structopt"
-version = "0.3.23"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf9d950ef167e25e0bdb073cf1d68e9ad2795ac826f2f3f59647817cf23c0bfa"
-dependencies = [
- "clap",
- "lazy_static",
- "structopt-derive",
-]
-
-[[package]]
-name = "structopt-derive"
-version = "0.4.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "134d838a2c9943ac3125cf6df165eda53493451b719f3255b2a26b85f772d0ba"
-dependencies = [
- "heck",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.80"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-xid",
-]
-
-[[package]]
-name = "tap"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
-
-[[package]]
-name = "tempfile"
-version = "3.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "rand",
- "redox_syscall",
- "remove_dir_all",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "termcolor"
-version = "1.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
-dependencies = [
- "winapi-util",
-]
-
-[[package]]
-name = "termtree"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "78fbf2dd23e79c28ccfa2472d3e6b3b189866ffef1aeb91f17c2d968b6586378"
-
-[[package]]
-name = "textwrap"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-dependencies = [
- "unicode-width",
-]
-
-[[package]]
-name = "threadpool"
-version = "1.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
-dependencies = [
- "num_cpus",
-]
-
-[[package]]
-name = "time"
-version = "0.1.43"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
-dependencies = [
- "libc",
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "time"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cde1cf55178e0293453ba2cca0d5f8392a922e52aa958aee9c28ed02becc6d03"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "tiny_http"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ce51b50006056f590c9b7c3808c3bd70f0d1101666629713866c227d6e58d39"
-dependencies = [
- "ascii",
- "chrono",
- "chunked_transfer",
- "log",
- "url",
-]
-
-[[package]]
-name = "tinyvec"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"
-dependencies = [
- "tinyvec_macros",
-]
-
-[[package]]
-name = "tinyvec_macros"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
-
-[[package]]
-name = "todomvc"
-version = "0.1.0"
-dependencies = [
- "askama",
- "console_error_panic_hook",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "tokio"
-version = "0.2.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
-dependencies = [
- "bytes 0.5.6",
- "fnv",
- "futures-core",
- "iovec",
- "lazy_static",
- "memchr",
- "mio",
- "pin-project-lite 0.1.12",
- "slab",
-]
-
-[[package]]
-name = "tokio-tls"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
-dependencies = [
- "native-tls",
- "tokio",
-]
-
-[[package]]
-name = "tokio-util"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
-dependencies = [
- "bytes 0.5.6",
- "futures-core",
- "futures-sink",
- "log",
- "pin-project-lite 0.1.12",
- "tokio",
-]
-
-[[package]]
-name = "toml"
-version = "0.5.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "tower-service"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
-
-[[package]]
-name = "tracing"
-version = "0.1.29"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
-dependencies = [
- "cfg-if 1.0.0",
- "log",
- "pin-project-lite 0.2.7",
- "tracing-core",
-]
-
-[[package]]
-name = "tracing-core"
-version = "0.1.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
-dependencies = [
- "lazy_static",
-]
-
-[[package]]
-name = "tracing-futures"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
-dependencies = [
- "pin-project",
- "tracing",
-]
-
-[[package]]
-name = "try-lock"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
-
-[[package]]
-name = "trybuild"
-version = "1.0.50"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbaccfa9796293406a02ec790614628c88d0b3246249a620ac1ee7076274716b"
-dependencies = [
- "glob",
- "lazy_static",
- "serde",
- "serde_json",
- "termcolor",
- "toml",
-]
-
-[[package]]
-name = "twoway"
-version = "0.1.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "typescript-tests"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "unicase"
-version = "2.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
-dependencies = [
- "version_check",
-]
-
-[[package]]
-name = "unicode-bidi"
-version = "0.3.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
-
-[[package]]
-name = "unicode-normalization"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
-dependencies = [
- "tinyvec",
-]
-
-[[package]]
-name = "unicode-segmentation"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
-
-[[package]]
-name = "unicode-width"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
-
-[[package]]
-name = "unicode-xid"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
-
-[[package]]
-name = "url"
-version = "2.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
-dependencies = [
- "form_urlencoded",
- "idna",
- "matches",
- "percent-encoding",
-]
-
-[[package]]
-name = "vcpkg"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
-
-[[package]]
-name = "vec_map"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-
-[[package]]
-name = "version_check"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
-
-[[package]]
-name = "wait-timeout"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "walrus"
-version = "0.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4eb08e48cde54c05f363d984bb54ce374f49e242def9468d2e1b6c2372d291f8"
-dependencies = [
- "anyhow",
- "id-arena",
- "leb128",
- "log",
- "rayon",
- "walrus-macro",
- "wasmparser 0.77.0",
-]
-
-[[package]]
-name = "walrus-macro"
-version = "0.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0a6e5bd22c71e77d60140b0bd5be56155a37e5bd14e24f5f87298040d0cc40d7"
-dependencies = [
- "heck",
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "want"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
-dependencies = [
- "log",
- "try-lock",
-]
-
-[[package]]
-name = "wasi"
-version = "0.10.2+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
-
-[[package]]
-name = "wasm-bindgen"
-version = "0.2.78"
-dependencies = [
- "cfg-if 1.0.0",
- "js-sys",
- "serde",
- "serde_derive",
- "serde_json",
- "wasm-bindgen-futures",
- "wasm-bindgen-macro",
- "wasm-bindgen-test",
- "wasm-bindgen-test-crate-a",
- "wasm-bindgen-test-crate-b",
-]
-
-[[package]]
-name = "wasm-bindgen-backend"
-version = "0.2.78"
-dependencies = [
- "bumpalo",
- "lazy_static",
- "log",
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-shared",
-]
-
-[[package]]
-name = "wasm-bindgen-benchmark"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "wasm-bindgen-cli"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "assert_cmd",
- "curl",
- "diff",
- "docopt",
- "env_logger",
- "log",
- "openssl",
- "predicates 1.0.8",
- "rayon",
- "rouille",
- "serde",
- "serde_derive",
- "serde_json",
- "tempfile",
- "walrus",
- "wasm-bindgen-cli-support",
- "wasm-bindgen-shared",
- "wit-printer",
- "wit-text",
- "wit-validator",
- "wit-walrus",
-]
-
-[[package]]
-name = "wasm-bindgen-cli-support"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "base64 0.9.3",
- "log",
- "rustc-demangle",
- "serde_json",
- "tempfile",
- "walrus",
- "wasm-bindgen-externref-xform",
- "wasm-bindgen-multi-value-xform",
- "wasm-bindgen-shared",
- "wasm-bindgen-threads-xform",
- "wasm-bindgen-wasm-conventions",
- "wasm-bindgen-wasm-interpreter",
- "wit-text",
- "wit-validator",
- "wit-walrus",
-]
-
-[[package]]
-name = "wasm-bindgen-externref-xform"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "rayon",
- "walrus",
- "wasmprinter",
- "wast 21.0.0",
- "wat",
-]
-
-[[package]]
-name = "wasm-bindgen-futures"
-version = "0.4.28"
-dependencies = [
- "cfg-if 1.0.0",
- "futures-channel-preview",
- "futures-core",
- "futures-lite",
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-test",
- "web-sys",
-]
-
-[[package]]
-name = "wasm-bindgen-macro"
-version = "0.2.78"
-dependencies = [
- "quote",
- "trybuild",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-macro-support",
-]
-
-[[package]]
-name = "wasm-bindgen-macro-support"
-version = "0.2.78"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-backend",
- "wasm-bindgen-shared",
-]
-
-[[package]]
-name = "wasm-bindgen-multi-value-xform"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "rayon",
- "walrus",
- "wasmprinter",
- "wast 21.0.0",
- "wat",
-]
-
-[[package]]
-name = "wasm-bindgen-paint"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "wasm-bindgen-shared"
-version = "0.2.78"
-
-[[package]]
-name = "wasm-bindgen-test"
-version = "0.3.28"
-dependencies = [
- "console_error_panic_hook",
- "js-sys",
- "scoped-tls",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-test-macro",
-]
-
-[[package]]
-name = "wasm-bindgen-test-crate-a"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "wasm-bindgen-test-crate-b"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "wasm-bindgen-test-macro"
-version = "0.3.28"
-dependencies = [
- "proc-macro2",
- "quote",
-]
-
-[[package]]
-name = "wasm-bindgen-threads-xform"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "walrus",
- "wasm-bindgen-wasm-conventions",
-]
-
-[[package]]
-name = "wasm-bindgen-wasm-conventions"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "walrus",
-]
-
-[[package]]
-name = "wasm-bindgen-wasm-interpreter"
-version = "0.2.78"
-dependencies = [
- "anyhow",
- "log",
- "tempfile",
- "walrus",
- "wasm-bindgen-wasm-conventions",
- "wat",
-]
-
-[[package]]
-name = "wasm-bindgen-webidl"
-version = "0.2.76"
-dependencies = [
- "anyhow",
- "env_logger",
- "heck",
- "lazy_static",
- "log",
- "proc-macro2",
- "quote",
- "sourcefile",
- "structopt",
- "syn",
- "wasm-bindgen-backend",
- "weedle",
-]
-
-[[package]]
-name = "wasm-in-wasm"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
-]
-
-[[package]]
-name = "wasm-in-wasm-imports"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
-]
-
-[[package]]
-name = "wasm-in-web-worker"
-version = "0.1.0"
-dependencies = [
- "console_error_panic_hook",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "wasm2js"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
-]
-
-[[package]]
-name = "wasmparser"
-version = "0.59.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a950e6a618f62147fd514ff445b2a0b53120d382751960797f85f058c7eda9b9"
-
-[[package]]
-name = "wasmparser"
-version = "0.77.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b35c86d22e720a07d954ebbed772d01180501afe7d03d464f413bb5f8914a8d6"
-
-[[package]]
-name = "wasmparser"
-version = "0.80.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b"
-
-[[package]]
-name = "wasmprinter"
-version = "0.2.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf83acd0a74a68f7b96acddc6035af45a09659d53f877b73aa22c816ed3e71e7"
-dependencies = [
- "anyhow",
- "wasmparser 0.80.2",
-]
-
-[[package]]
-name = "wast"
-version = "21.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b1844f66a2bc8526d71690104c0e78a8e59ffa1597b7245769d174ebb91deb5"
-dependencies = [
- "leb128",
-]
-
-[[package]]
-name = "wast"
-version = "38.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae0d7b256bef26c898fa7344a2d627e8499f5a749432ce0a05eae1a64ff0c271"
-dependencies = [
- "leb128",
-]
-
-[[package]]
-name = "wat"
-version = "1.0.40"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "adcfaeb27e2578d2c6271a45609f4a055e6d7ba3a12eff35b1fd5ba147bdf046"
-dependencies = [
- "wast 38.0.1",
-]
-
-[[package]]
-name = "web-sys"
-version = "0.3.55"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-test",
-]
-
-[[package]]
-name = "webaudio"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "webgl"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "webidl-tests"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-bindgen-test",
- "wasm-bindgen-webidl",
-]
-
-[[package]]
-name = "webrtc_datachannel"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "websockets"
-version = "0.1.0"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "webxr"
-version = "0.1.0"
-dependencies = [
- "futures",
- "js-sys",
- "serde",
- "serde_derive",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "weedle"
-version = "0.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "610950904727748ca09682e857f0d6d6437f0ca862f32f9229edba8cec8b2635"
-dependencies = [
- "nom 5.1.2",
-]
-
-[[package]]
-name = "winapi"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-
-[[package]]
-name = "winapi"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-dependencies = [
- "winapi-i686-pc-windows-gnu",
- "winapi-x86_64-pc-windows-gnu",
-]
-
-[[package]]
-name = "winapi-build"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-
-[[package]]
-name = "winapi-i686-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-[[package]]
-name = "winapi-util"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
-dependencies = [
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "winapi-x86_64-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
-[[package]]
-name = "winreg"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
-dependencies = [
- "winapi 0.3.9",
-]
-
-[[package]]
-name = "wit-parser"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f5fd97866f4b9c8e1ed57bcf9446f3d0d8ba37e2dd01c3c612c046c053b06f7"
-dependencies = [
- "anyhow",
- "leb128",
- "wit-schema-version",
-]
-
-[[package]]
-name = "wit-printer"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93f19ca44555a3c14d69acee6447a6e4f52771b0c6e5d8db3e42db3b90f6fce9"
-dependencies = [
- "anyhow",
- "wasmprinter",
- "wit-parser",
- "wit-schema-version",
-]
-
-[[package]]
-name = "wit-schema-version"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfee4a6a4716eefa0682e7a3b836152e894a3e4f34a9d6c2c3e1c94429bfe36a"
-
-[[package]]
-name = "wit-text"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "33358e95c77d660f1c7c07f4a93c2bd89768965e844e3c50730bb4b42658df5f"
-dependencies = [
- "anyhow",
- "wast 21.0.0",
- "wit-writer",
-]
-
-[[package]]
-name = "wit-validator"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3c11d93d925420e7872b226c4161849c32be38385ccab026b88df99d8ddc6ba6"
-dependencies = [
- "anyhow",
- "wasmparser 0.59.0",
- "wit-parser",
- "wit-schema-version",
-]
-
-[[package]]
-name = "wit-walrus"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ad559e3e4c6404b2a6a675d44129d62a3836e3b951b90112fa1c5feb852757cd"
-dependencies = [
- "anyhow",
- "id-arena",
- "walrus",
- "wit-parser",
- "wit-schema-version",
- "wit-writer",
-]
-
-[[package]]
-name = "wit-writer"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2ad01ba5e9cbcff799a0689e56a153776ea694cec777f605938cb9880d41a09"
-dependencies = [
- "leb128",
- "wit-schema-version",
-]
-
-[[package]]
-name = "without-a-bundler"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "without-a-bundler-no-modules"
-version = "0.1.0"
-dependencies = [
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "ws2_32-sys"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
-dependencies = [
- "winapi 0.2.8",
- "winapi-build",
-]
-
-[[package]]
-name = "wyz"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
diff --git a/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/default.nix b/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/default.nix
index 9eada274be..4416ce1b6c 100644
--- a/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/wasm-bindgen-cli/default.nix
@@ -1,8 +1,9 @@
-{ rustPlatform
-, fetchFromGitHub
-, lib
-, openssl
+{ lib
+, rustPlatform
+, fetchCrate
+, nodejs
, pkg-config
+, openssl
, stdenv
, curl
, Security
@@ -13,32 +14,27 @@ rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
version = "0.2.78";
- src =
- let
- tarball = fetchFromGitHub {
- owner = "rustwasm";
- repo = "wasm-bindgen";
- rev = version;
- hash = "sha256-1Z5d4gjZUic6Yrd+O8oLWYpJqAYGcByZYP0H1iInXHA=";
- };
- in
- runCommand "source" { } ''
- cp -R ${tarball} $out
- chmod -R +w $out
- cp ${./Cargo.lock} $out/Cargo.lock
- '';
+ src = fetchCrate {
+ inherit pname version;
+ sha256 = "sha256-5s+HidnVfDV0AXA+/YcXNGVjv/E9JeK0Ttng4mCVX8M=";
+ };
+
+ cargoSha256 = "sha256-CbtjUFwowP/QqyAMCzmUiSib4EpRhQAmO4ekX00xYGE=";
- buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security curl ];
nativeBuildInputs = [ pkg-config ];
- cargoHash = "sha256-RixIEat7EzGzgSQTnPennePpiucmAatrDGhbFSfTajo=";
- cargoBuildFlags = [ "-p" pname ];
+ buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl Security ];
+
+ checkInputs = [ nodejs ];
+
+ # other tests require it to be ran in the wasm-bindgen monorepo
+ cargoTestFlags = [ "--test=interface-types" ];
meta = with lib; {
homepage = "https://rustwasm.github.io/docs/wasm-bindgen/";
- license = licenses.asl20;
+ license = with licenses; [ asl20 /* or */ mit ];
description = "Facilitating high-level interactions between wasm modules and JavaScript";
maintainers = with maintainers; [ ma27 nitsky rizary ];
- platforms = platforms.unix;
+ mainProgram = "wasm-bindgen";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/tools/wrangler/default.nix b/third_party/nixpkgs/pkgs/development/tools/wrangler/default.nix
index cdcb95b434..3c16977ae7 100644
--- a/third_party/nixpkgs/pkgs/development/tools/wrangler/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/wrangler/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "wrangler";
- version = "1.19.3";
+ version = "1.19.4";
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-2LtjaxDClVYPcsCA7v+5GN3MY5VkTJ8TDxz5l0Oq4sQ=";
+ sha256 = "sha256-Qe/bl5H+ieHGC2GXdWlXCR+ZI1SNfy4l+VIGMy193lk=";
};
- cargoSha256 = "sha256-f/nYBBfxl9JHhdo00smm6rYYH2kfgJKaCw/wflVgABc=";
+ cargoSha256 = "sha256-KYxqir/wxvyn9sgLF0OjM2Zn42Wt9eUqIX0Xbsvq1c4=";
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix b/third_party/nixpkgs/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix
index cba0227fd1..0d0e2baccc 100644
--- a/third_party/nixpkgs/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix
@@ -68,6 +68,7 @@ in rec {
packageJSON,
yarnLock,
yarnNix ? mkYarnNix { inherit yarnLock; },
+ offlineCache ? importOfflineCache yarnNix,
yarnFlags ? defaultYarnFlags,
pkgConfig ? {},
preBuild ? "",
@@ -75,8 +76,6 @@ in rec {
workspaceDependencies ? [], # List of yarn packages
}:
let
- offlineCache = importOfflineCache yarnNix;
-
extraBuildInputs = (lib.flatten (builtins.map (key:
pkgConfig.${key}.buildInputs or []
) (builtins.attrNames pkgConfig)));
@@ -109,7 +108,12 @@ in rec {
dontInstall = true;
buildInputs = [ yarn nodejs git ] ++ extraBuildInputs;
- configurePhase = ''
+ configurePhase = lib.optionalString (offlineCache ? outputHash) ''
+ if ! cmp -s ${yarnLock} ${offlineCache}/yarn.lock; then
+ echo "yarn.lock changed, you need to update the fetchYarnDeps hash"
+ exit 1
+ fi
+ '' + ''
# Yarn writes cache directories etc to $HOME.
export HOME=$PWD/yarn_home
'';
@@ -227,6 +231,7 @@ in rec {
packageJSON ? src + "/package.json",
yarnLock ? src + "/yarn.lock",
yarnNix ? mkYarnNix { inherit yarnLock; },
+ offlineCache ? importOfflineCache yarnNix,
yarnFlags ? defaultYarnFlags,
yarnPreBuild ? "",
yarnPostBuild ? "",
@@ -253,7 +258,7 @@ in rec {
preBuild = yarnPreBuild;
postBuild = yarnPostBuild;
workspaceDependencies = workspaceDependenciesTransitive;
- inherit packageJSON pname version yarnLock yarnNix yarnFlags pkgConfig;
+ inherit packageJSON pname version yarnLock offlineCache yarnFlags pkgConfig;
};
publishBinsFor_ = unlessNull publishBinsFor [pname];
diff --git a/third_party/nixpkgs/pkgs/development/web/deno/default.nix b/third_party/nixpkgs/pkgs/development/web/deno/default.nix
index ce2558a7c0..4cfb2c1435 100644
--- a/third_party/nixpkgs/pkgs/development/web/deno/default.nix
+++ b/third_party/nixpkgs/pkgs/development/web/deno/default.nix
@@ -17,15 +17,15 @@
rustPlatform.buildRustPackage rec {
pname = "deno";
- version = "1.15.1";
+ version = "1.15.2";
src = fetchFromGitHub {
owner = "denoland";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-1lODB7k0HGfwlrCWh7TKafPezytKo66EnyDHD3eyAl0=";
+ sha256 = "sha256-ABCItd90mtASpyf+HSQeIcn70Wjvloj7L36WM+FUt0g=";
};
- cargoSha256 = "sha256-qCXGYxvOAbVrlk3X431n+soxcGQBIjZcibMcAP4uAh8=";
+ cargoSha256 = "sha256-crSx122kE7lvV32YnFsZIGRwHMb8z4bEdg5s+6Qeih8=";
# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/composition.nix b/third_party/nixpkgs/pkgs/development/web/netlify-cli/composition.nix
new file mode 100644
index 0000000000..f929727d59
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/composition.nix
@@ -0,0 +1,17 @@
+# This file has been generated by node2nix 1.9.0. Do not edit!
+
+{pkgs ? import {
+ inherit system;
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:
+
+let
+ nodeEnv = import ./node-env.nix {
+ inherit (pkgs) stdenv lib python2 runCommand writeTextFile;
+ inherit pkgs nodejs;
+ libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
+ };
+in
+import ./node-packages.nix {
+ inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
+ inherit nodeEnv;
+}
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/default.nix b/third_party/nixpkgs/pkgs/development/web/netlify-cli/default.nix
new file mode 100644
index 0000000000..f16cce4c15
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/default.nix
@@ -0,0 +1,14 @@
+{ callPackage, fetchFromGitHub, lib, pkgs }:
+let
+ nodePackages = import ./composition.nix { inherit pkgs; };
+in
+ nodePackages.package.override {
+ preRebuild = ''
+ export ESBUILD_BINARY_PATH="${pkgs.esbuild_netlify}/bin/esbuild"
+ '';
+ src = fetchFromGitHub (builtins.fromJSON (builtins.readFile ./netlify-cli.json));
+ bypassCache = true;
+ reconstructLock = true;
+ passthru.tests.test = callPackage ./test.nix { };
+ meta.maintainers = with lib.maintainers; [ roberth ];
+ }
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/generate.sh b/third_party/nixpkgs/pkgs/development/web/netlify-cli/generate.sh
new file mode 100755
index 0000000000..41858cd980
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/generate.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+set -eu -o pipefail
+cd "$( dirname "${BASH_SOURCE[0]}" )"
+rm -f ./node-env.nix
+src="$(nix-build --expr '(import ../../../.. {}).fetchFromGitHub (builtins.fromJSON (builtins.readFile ./netlify-cli.json))')"
+echo $src
+node2nix \
+ --input $src/package.json \
+ --lock $src/npm-shrinkwrap.json \
+ --output node-packages.nix \
+ --composition composition.nix \
+ --node-env node-env.nix \
+ --nodejs-14 \
+ ;
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/netlify-cli.json b/third_party/nixpkgs/pkgs/development/web/netlify-cli/netlify-cli.json
new file mode 100644
index 0000000000..efd5fb1396
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/netlify-cli.json
@@ -0,0 +1,7 @@
+{
+ "owner": "netlify",
+ "repo": "cli",
+ "rev": "a50e410fddda92d3f3f256321eddefb8cb8ba6e1",
+ "sha256": "sisX58I5UxxEPGCh5JGtQHw72A4+pLuENpBB9WKRTZc=",
+ "fetchSubmodules": false
+}
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/node-env.nix b/third_party/nixpkgs/pkgs/development/web/netlify-cli/node-env.nix
new file mode 100644
index 0000000000..21089c4d54
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/node-env.nix
@@ -0,0 +1,573 @@
+# This file originates from node2nix
+
+{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile}:
+
+let
+ # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
+ utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux;
+
+ python = if nodejs ? python then nodejs.python else python2;
+
+ # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
+ tarWrapper = runCommand "tarWrapper" {} ''
+ mkdir -p $out/bin
+
+ cat > $out/bin/tar <> $out/nix-support/hydra-build-products
+ '';
+ };
+
+ includeDependencies = {dependencies}:
+ lib.optionalString (dependencies != [])
+ (lib.concatMapStrings (dependency:
+ ''
+ # Bundle the dependencies of the package
+ mkdir -p node_modules
+ cd node_modules
+
+ # Only include dependencies if they don't exist. They may also be bundled in the package.
+ if [ ! -e "${dependency.name}" ]
+ then
+ ${composePackage dependency}
+ fi
+
+ cd ..
+ ''
+ ) dependencies);
+
+ # Recursively composes the dependencies of a package
+ composePackage = { name, packageName, src, dependencies ? [], ... }@args:
+ builtins.addErrorContext "while evaluating node package '${packageName}'" ''
+ DIR=$(pwd)
+ cd $TMPDIR
+
+ unpackFile ${src}
+
+ # Make the base dir in which the target dependency resides first
+ mkdir -p "$(dirname "$DIR/${packageName}")"
+
+ if [ -f "${src}" ]
+ then
+ # Figure out what directory has been unpacked
+ packageDir="$(find . -maxdepth 1 -type d | tail -1)"
+
+ # Restore write permissions to make building work
+ find "$packageDir" -type d -exec chmod u+x {} \;
+ chmod -R u+w "$packageDir"
+
+ # Move the extracted tarball into the output folder
+ mv "$packageDir" "$DIR/${packageName}"
+ elif [ -d "${src}" ]
+ then
+ # Get a stripped name (without hash) of the source directory.
+ # On old nixpkgs it's already set internally.
+ if [ -z "$strippedName" ]
+ then
+ strippedName="$(stripHash ${src})"
+ fi
+
+ # Restore write permissions to make building work
+ chmod -R u+w "$strippedName"
+
+ # Move the extracted directory into the output folder
+ mv "$strippedName" "$DIR/${packageName}"
+ fi
+
+ # Unset the stripped name to not confuse the next unpack step
+ unset strippedName
+
+ # Include the dependencies of the package
+ cd "$DIR/${packageName}"
+ ${includeDependencies { inherit dependencies; }}
+ cd ..
+ ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+ '';
+
+ pinpointDependencies = {dependencies, production}:
+ let
+ pinpointDependenciesFromPackageJSON = writeTextFile {
+ name = "pinpointDependencies.js";
+ text = ''
+ var fs = require('fs');
+ var path = require('path');
+
+ function resolveDependencyVersion(location, name) {
+ if(location == process.env['NIX_STORE']) {
+ return null;
+ } else {
+ var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
+
+ if(fs.existsSync(dependencyPackageJSON)) {
+ var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
+
+ if(dependencyPackageObj.name == name) {
+ return dependencyPackageObj.version;
+ }
+ } else {
+ return resolveDependencyVersion(path.resolve(location, ".."), name);
+ }
+ }
+ }
+
+ function replaceDependencies(dependencies) {
+ if(typeof dependencies == "object" && dependencies !== null) {
+ for(var dependency in dependencies) {
+ var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
+
+ if(resolvedVersion === null) {
+ process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
+ } else {
+ dependencies[dependency] = resolvedVersion;
+ }
+ }
+ }
+ }
+
+ /* Read the package.json configuration */
+ var packageObj = JSON.parse(fs.readFileSync('./package.json'));
+
+ /* Pinpoint all dependencies */
+ replaceDependencies(packageObj.dependencies);
+ if(process.argv[2] == "development") {
+ replaceDependencies(packageObj.devDependencies);
+ }
+ replaceDependencies(packageObj.optionalDependencies);
+
+ /* Write the fixed package.json file */
+ fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
+ '';
+ };
+ in
+ ''
+ node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
+
+ ${lib.optionalString (dependencies != [])
+ ''
+ if [ -d node_modules ]
+ then
+ cd node_modules
+ ${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}
+ cd ..
+ fi
+ ''}
+ '';
+
+ # Recursively traverses all dependencies of a package and pinpoints all
+ # dependencies in the package.json file to the versions that are actually
+ # being used.
+
+ pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
+ ''
+ if [ -d "${packageName}" ]
+ then
+ cd "${packageName}"
+ ${pinpointDependencies { inherit dependencies production; }}
+ cd ..
+ ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+ fi
+ '';
+
+ # Extract the Node.js source code which is used to compile packages with
+ # native bindings
+ nodeSources = runCommand "node-sources" {} ''
+ tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
+ mv node-* $out
+ '';
+
+ # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
+ addIntegrityFieldsScript = writeTextFile {
+ name = "addintegrityfields.js";
+ text = ''
+ var fs = require('fs');
+ var path = require('path');
+
+ function augmentDependencies(baseDir, dependencies) {
+ for(var dependencyName in dependencies) {
+ var dependency = dependencies[dependencyName];
+
+ // Open package.json and augment metadata fields
+ var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
+ var packageJSONPath = path.join(packageJSONDir, "package.json");
+
+ if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
+ console.log("Adding metadata fields to: "+packageJSONPath);
+ var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
+
+ if(dependency.integrity) {
+ packageObj["_integrity"] = dependency.integrity;
+ } else {
+ packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads.
+ }
+
+ if(dependency.resolved) {
+ packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided
+ } else {
+ packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
+ }
+
+ if(dependency.from !== undefined) { // Adopt from property if one has been provided
+ packageObj["_from"] = dependency.from;
+ }
+
+ fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
+ }
+
+ // Augment transitive dependencies
+ if(dependency.dependencies !== undefined) {
+ augmentDependencies(packageJSONDir, dependency.dependencies);
+ }
+ }
+ }
+
+ if(fs.existsSync("./package-lock.json")) {
+ var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
+
+ if(![1, 2].includes(packageLock.lockfileVersion)) {
+ process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n");
+ process.exit(1);
+ }
+
+ if(packageLock.dependencies !== undefined) {
+ augmentDependencies(".", packageLock.dependencies);
+ }
+ }
+ '';
+ };
+
+ # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
+ reconstructPackageLock = writeTextFile {
+ name = "addintegrityfields.js";
+ text = ''
+ var fs = require('fs');
+ var path = require('path');
+
+ var packageObj = JSON.parse(fs.readFileSync("package.json"));
+
+ var lockObj = {
+ name: packageObj.name,
+ version: packageObj.version,
+ lockfileVersion: 1,
+ requires: true,
+ dependencies: {}
+ };
+
+ function augmentPackageJSON(filePath, dependencies) {
+ var packageJSON = path.join(filePath, "package.json");
+ if(fs.existsSync(packageJSON)) {
+ var packageObj = JSON.parse(fs.readFileSync(packageJSON));
+ dependencies[packageObj.name] = {
+ version: packageObj.version,
+ integrity: "sha1-000000000000000000000000000=",
+ dependencies: {}
+ };
+ processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies);
+ }
+ }
+
+ function processDependencies(dir, dependencies) {
+ if(fs.existsSync(dir)) {
+ var files = fs.readdirSync(dir);
+
+ files.forEach(function(entry) {
+ var filePath = path.join(dir, entry);
+ var stats = fs.statSync(filePath);
+
+ if(stats.isDirectory()) {
+ if(entry.substr(0, 1) == "@") {
+ // When we encounter a namespace folder, augment all packages belonging to the scope
+ var pkgFiles = fs.readdirSync(filePath);
+
+ pkgFiles.forEach(function(entry) {
+ if(stats.isDirectory()) {
+ var pkgFilePath = path.join(filePath, entry);
+ augmentPackageJSON(pkgFilePath, dependencies);
+ }
+ });
+ } else {
+ augmentPackageJSON(filePath, dependencies);
+ }
+ }
+ });
+ }
+ }
+
+ processDependencies("node_modules", lockObj.dependencies);
+
+ fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
+ '';
+ };
+
+ prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}:
+ let
+ forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
+ in
+ ''
+ # Pinpoint the versions of all dependencies to the ones that are actually being used
+ echo "pinpointing versions of dependencies..."
+ source $pinpointDependenciesScriptPath
+
+ # Patch the shebangs of the bundled modules to prevent them from
+ # calling executables outside the Nix store as much as possible
+ patchShebangs .
+
+ # Deploy the Node.js package by running npm install. Since the
+ # dependencies have been provided already by ourselves, it should not
+ # attempt to install them again, which is good, because we want to make
+ # it Nix's responsibility. If it needs to install any dependencies
+ # anyway (e.g. because the dependency parameters are
+ # incomplete/incorrect), it fails.
+ #
+ # The other responsibilities of NPM are kept -- version checks, build
+ # steps, postprocessing etc.
+
+ export HOME=$TMPDIR
+ cd "${packageName}"
+ runHook preRebuild
+
+ ${lib.optionalString bypassCache ''
+ ${lib.optionalString reconstructLock ''
+ if [ -f package-lock.json ]
+ then
+ echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
+ echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
+ rm package-lock.json
+ else
+ echo "No package-lock.json file found, reconstructing..."
+ fi
+
+ node ${reconstructPackageLock}
+ ''}
+
+ node ${addIntegrityFieldsScript}
+ ''}
+
+ npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
+
+ if [ "''${dontNpmInstall-}" != "1" ]
+ then
+ # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
+ rm -f npm-shrinkwrap.json
+
+ npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} install
+ fi
+ '';
+
+ # Builds and composes an NPM package including all its dependencies
+ buildNodePackage =
+ { name
+ , packageName
+ , version
+ , dependencies ? []
+ , buildInputs ? []
+ , production ? true
+ , npmFlags ? ""
+ , dontNpmInstall ? false
+ , bypassCache ? false
+ , reconstructLock ? false
+ , preRebuild ? ""
+ , dontStrip ? true
+ , unpackPhase ? "true"
+ , buildPhase ? "true"
+ , meta ? {}
+ , ... }@args:
+
+ let
+ extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ];
+ in
+ stdenv.mkDerivation ({
+ name = "${name}-${version}";
+ buildInputs = [ tarWrapper python nodejs ]
+ ++ lib.optional (stdenv.isLinux) utillinux
+ ++ lib.optional (stdenv.isDarwin) libtool
+ ++ buildInputs;
+
+ inherit nodejs;
+
+ inherit dontStrip; # Stripping may fail a build for some package deployments
+ inherit dontNpmInstall preRebuild unpackPhase buildPhase;
+
+ compositionScript = composePackage args;
+ pinpointDependenciesScript = pinpointDependenciesOfPackage args;
+
+ passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
+
+ installPhase = ''
+ # Create and enter a root node_modules/ folder
+ mkdir -p $out/lib/node_modules
+ cd $out/lib/node_modules
+
+ # Compose the package and all its dependencies
+ source $compositionScriptPath
+
+ ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
+
+ # Create symlink to the deployed executable folder, if applicable
+ if [ -d "$out/lib/node_modules/.bin" ]
+ then
+ ln -s $out/lib/node_modules/.bin $out/bin
+ fi
+
+ # Create symlinks to the deployed manual page folders, if applicable
+ if [ -d "$out/lib/node_modules/${packageName}/man" ]
+ then
+ mkdir -p $out/share
+ for dir in "$out/lib/node_modules/${packageName}/man/"*
+ do
+ mkdir -p $out/share/man/$(basename "$dir")
+ for page in "$dir"/*
+ do
+ ln -s $page $out/share/man/$(basename "$dir")
+ done
+ done
+ fi
+
+ # Run post install hook, if provided
+ runHook postInstall
+ '';
+
+ meta = {
+ # default to Node.js' platforms
+ platforms = nodejs.meta.platforms;
+ } // meta;
+ } // extraArgs);
+
+ # Builds a node environment (a node_modules folder and a set of binaries)
+ buildNodeDependencies =
+ { name
+ , packageName
+ , version
+ , src
+ , dependencies ? []
+ , buildInputs ? []
+ , production ? true
+ , npmFlags ? ""
+ , dontNpmInstall ? false
+ , bypassCache ? false
+ , reconstructLock ? false
+ , dontStrip ? true
+ , unpackPhase ? "true"
+ , buildPhase ? "true"
+ , ... }@args:
+
+ let
+ extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
+ in
+ stdenv.mkDerivation ({
+ name = "node-dependencies-${name}-${version}";
+
+ buildInputs = [ tarWrapper python nodejs ]
+ ++ lib.optional (stdenv.isLinux) utillinux
+ ++ lib.optional (stdenv.isDarwin) libtool
+ ++ buildInputs;
+
+ inherit dontStrip; # Stripping may fail a build for some package deployments
+ inherit dontNpmInstall unpackPhase buildPhase;
+
+ includeScript = includeDependencies { inherit dependencies; };
+ pinpointDependenciesScript = pinpointDependenciesOfPackage args;
+
+ passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
+
+ installPhase = ''
+ mkdir -p $out/${packageName}
+ cd $out/${packageName}
+
+ source $includeScriptPath
+
+ # Create fake package.json to make the npm commands work properly
+ cp ${src}/package.json .
+ chmod 644 package.json
+ ${lib.optionalString bypassCache ''
+ if [ -f ${src}/package-lock.json ]
+ then
+ cp ${src}/package-lock.json .
+ fi
+ ''}
+
+ # Go to the parent folder to make sure that all packages are pinpointed
+ cd ..
+ ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+
+ ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
+
+ # Expose the executables that were installed
+ cd ..
+ ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+
+ mv ${packageName} lib
+ ln -s $out/lib/node_modules/.bin $out/bin
+ '';
+ } // extraArgs);
+
+ # Builds a development shell
+ buildNodeShell =
+ { name
+ , packageName
+ , version
+ , src
+ , dependencies ? []
+ , buildInputs ? []
+ , production ? true
+ , npmFlags ? ""
+ , dontNpmInstall ? false
+ , bypassCache ? false
+ , reconstructLock ? false
+ , dontStrip ? true
+ , unpackPhase ? "true"
+ , buildPhase ? "true"
+ , ... }@args:
+
+ let
+ nodeDependencies = buildNodeDependencies args;
+ in
+ stdenv.mkDerivation {
+ name = "node-shell-${name}-${version}";
+
+ buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
+ buildCommand = ''
+ mkdir -p $out/bin
+ cat > $out/bin/shell <hi' >index.html
+ echo '/with-redirect /' >_redirects
+
+ # Start a local server and wait for it to respond
+ netlify dev --offline --port 8888 2>&1 | tee log &
+ sleep 0.1 || true
+ for (( i=0; i<300; i++ )); do
+ if grep --ignore-case 'Server now ready' hi'
+
+ # Success
+ touch $out
+''
diff --git a/third_party/nixpkgs/pkgs/development/web/netlify-cli/update.sh b/third_party/nixpkgs/pkgs/development/web/netlify-cli/update.sh
new file mode 100755
index 0000000000..616b3757db
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/netlify-cli/update.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -i bash
+set -euo pipefail
+mv netlify-cli.json{,.old}
+nix-prefetch-github-latest-release netlify cli >netlify-cli.json
+
+if ! diff -U3 netlify-cli.json{.old,}; then
+ echo New version detected\; generating expressions...
+ ./generate.sh
+fi
+rm -f netlify-cli.json.old
diff --git a/third_party/nixpkgs/pkgs/development/web/nodejs/nodejs.nix b/third_party/nixpkgs/pkgs/development/web/nodejs/nodejs.nix
index 86332bf7b6..7b88b0f8fd 100644
--- a/third_party/nixpkgs/pkgs/development/web/nodejs/nodejs.nix
+++ b/third_party/nixpkgs/pkgs/development/web/nodejs/nodejs.nix
@@ -139,7 +139,7 @@ in
meta = {
description = "Event-driven I/O framework for the V8 JavaScript engine";
homepage = "https://nodejs.org";
- changelog = "https://github.com/nodejs/node/blob/v${version}/doc/changelogs/CHANGELOG_V${majorVersion}.md#${version}";
+ changelog = "https://github.com/nodejs/node/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu gilligan cko marsam ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/third_party/nixpkgs/pkgs/development/web/nodejs/v16.nix b/third_party/nixpkgs/pkgs/development/web/nodejs/v16.nix
index 698108a42b..9cbe093c7a 100644
--- a/third_party/nixpkgs/pkgs/development/web/nodejs/v16.nix
+++ b/third_party/nixpkgs/pkgs/development/web/nodejs/v16.nix
@@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "16.11.1";
- sha256 = "0y32mdv8zs35la2bny8d9rxjvj1vr8z079ji1g6ajc2yw96pyn37";
+ version = "16.12.0";
+ sha256 = "1b3bschfa7946jwyqp3nmbdv7ap3rl4p7h50b9bac08981m0lqjz";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
}
diff --git a/third_party/nixpkgs/pkgs/development/web/nodejs/v17.nix b/third_party/nixpkgs/pkgs/development/web/nodejs/v17.nix
new file mode 100644
index 0000000000..e417582b16
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/web/nodejs/v17.nix
@@ -0,0 +1,13 @@
+{ callPackage, python3, enableNpm ? true }:
+
+let
+ buildNodejs = callPackage ./nodejs.nix {
+ python = python3;
+ };
+in
+buildNodejs {
+ inherit enableNpm;
+ version = "17.0.1";
+ sha256 = "071lhqbn103rnn8avqmqwnn2k4yqgcymx624f23k8z6bfbw81i3f";
+ patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
+}
diff --git a/third_party/nixpkgs/pkgs/games/openttd/default.nix b/third_party/nixpkgs/pkgs/games/openttd/default.nix
index 5c77e8a2c1..8953ff94e1 100644
--- a/third_party/nixpkgs/pkgs/games/openttd/default.nix
+++ b/third_party/nixpkgs/pkgs/games/openttd/default.nix
@@ -6,18 +6,18 @@
let
opengfx = fetchzip {
- url = "https://cdn.openttd.org/opengfx-releases/0.6.1/opengfx-0.6.1-all.zip";
- sha256 = "sha256-DeeIlLcmPeMZ0ju9DwXUInnQp2rWu60besDVto4+lDQ=";
+ url = "https://cdn.openttd.org/opengfx-releases/7.1/opengfx-7.1-all.zip";
+ sha256 = "sha256-daJ/Qwg/okpmLQkXcCjruIiP8GEwyyp02YWcGQepxzs=";
};
opensfx = fetchzip {
- url = "https://cdn.openttd.org/opensfx-releases/1.0.1/opensfx-1.0.1-all.zip";
- sha256 = "sha256-U1PIKbMZHRJ0Z9Cp2RqqCMhD1xRyudoNHAYIZyotxVk=";
+ url = "https://cdn.openttd.org/opensfx-releases/1.0.2/opensfx-1.0.2-all.zip";
+ sha256 = "sha256-yRCb49/k8uUUAe9VzUG0LQaBDFP7n9QdrLSJDIthdbA=";
};
openmsx = fetchzip {
- url = "https://cdn.openttd.org/openmsx-releases/0.4.0/openmsx-0.4.0-all.zip";
- sha256 = "sha256-Ok6W+iqi4SP7cD4HUQERrAysvVibnN7Q4/tkugffDgQ=";
+ url = "https://cdn.openttd.org/openmsx-releases/0.4.2/openmsx-0.4.2-all.zip";
+ sha256 = "sha256-Cgrg2m+uTODFg39mKgX+hE8atV7v5bVyZd716vSZB8M=";
};
playmidi = writeScriptBin "playmidi" ''
@@ -29,11 +29,11 @@ let
in
stdenv.mkDerivation rec {
pname = "openttd";
- version = "1.11.2";
+ version = "12.0";
src = fetchurl {
url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz";
- sha256 = "sha256-D7qTWiqBX0/ozW3C4q4z9ydpU4cxIo+EimOzpulILm0=";
+ sha256 = "sha256-u6D9OADfA3AlnmQtJR82LHwAtHii41Mfa6f4TBwrMtw=";
};
nativeBuildInputs = [ cmake makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/games/openttd/jgrpp.nix b/third_party/nixpkgs/pkgs/games/openttd/jgrpp.nix
index 3dcb621db4..2806653895 100644
--- a/third_party/nixpkgs/pkgs/games/openttd/jgrpp.nix
+++ b/third_party/nixpkgs/pkgs/games/openttd/jgrpp.nix
@@ -2,12 +2,12 @@
openttd.overrideAttrs (oldAttrs: rec {
pname = "openttd-jgrpp";
- version = "0.41.0";
+ version = "0.43.1";
src = fetchFromGitHub rec {
owner = "JGRennison";
repo = "OpenTTD-patches";
rev = "jgrpp-${version}";
- sha256 = "sha256-DrtxqXyeqA+X4iLTvTSPFDKDoLCyVd458+nJWc+9MF4=";
+ sha256 = "sha256-nCZ3UN2BdpDGbW0CKX/ijxlA3cQ7FPflajQ5TBM1Hdk=";
};
})
diff --git a/third_party/nixpkgs/pkgs/games/osu-lazer/default.nix b/third_party/nixpkgs/pkgs/games/osu-lazer/default.nix
index dda34a113a..93641a1651 100644
--- a/third_party/nixpkgs/pkgs/games/osu-lazer/default.nix
+++ b/third_party/nixpkgs/pkgs/games/osu-lazer/default.nix
@@ -9,7 +9,7 @@ let
];
dotnet-sdk = dotnetCorePackages.sdk_5_0;
- dotnet-net = dotnetCorePackages.net_5_0;
+ dotnet-runtime = dotnetCorePackages.runtime_5_0;
# https://docs.microsoft.com/en-us/dotnet/core/rid-catalog#using-rids
runtimeId = "linux-x64";
@@ -79,7 +79,7 @@ in stdenv.mkDerivation rec {
--output $out/lib/osu
makeWrapper $out/lib/osu/osu\! $out/bin/osu\! \
- --set DOTNET_ROOT "${dotnet-net}" \
+ --set DOTNET_ROOT "${dotnet-runtime}" \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeDeps}"
for i in 16 32 48 64 96 128 256 512 1024; do
install -D ./assets/lazer.png $out/share/icons/hicolor/''${i}x$i/apps/osu\!.png
diff --git a/third_party/nixpkgs/pkgs/games/runescape-launcher/default.nix b/third_party/nixpkgs/pkgs/games/runescape-launcher/default.nix
new file mode 100644
index 0000000000..8b678d792f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/games/runescape-launcher/default.nix
@@ -0,0 +1,103 @@
+{ stdenv, lib, buildFHSUserEnv, dpkg, glibc, gcc-unwrapped, autoPatchelfHook, fetchurl, wrapGAppsHook
+, gnome2, xorg
+, libSM, libXxf86vm, libX11, glib, pango, cairo, gtk2-x11, zlib, openssl
+, libpulseaudio
+, SDL2, xorg_sys_opengl, libGL
+}:
+let
+
+ runescape = stdenv.mkDerivation rec {
+ pname = "runescape-launcher";
+ version = "2.2.9";
+
+ src = fetchurl {
+ url = "https://content.runescape.com/downloads/ubuntu/pool/non-free/r/${pname}/${pname}_${version}_amd64.deb";
+ sha256 = "0r5v1pwh0aas31b1d3pkrc8lqmqz9b4fml2b4kxmg5xzp677h271";
+ };
+
+ nativeBuildInputs = [
+ autoPatchelfHook
+ wrapGAppsHook
+ dpkg
+ ];
+
+ buildInputs = [
+ glibc
+ gcc-unwrapped
+ libSM
+ libXxf86vm
+ libX11
+ glib
+ pango
+ cairo
+ gtk2-x11
+ zlib
+ openssl
+ ];
+
+ runtimeDependencies = [
+ libpulseaudio
+ libGL
+ SDL2
+ xorg_sys_opengl
+ openssl
+ zlib
+ ];
+
+ dontUnpack = true;
+
+ preBuild = ''
+ export DH_VERBOSE=1
+ '';
+
+ envVarsWithXmodifiers = ''
+ export MESA_GLSL_CACHE_DIR=~/Jagex
+ export GDK_SCALE=2
+ unset XMODIFIERS
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share
+ dpkg -x $src $out
+
+ patchShebangs $out/usr/bin/runescape-launcher
+ substituteInPlace $out/usr/bin/runescape-launcher \
+ --replace "unset XMODIFIERS" "$envVarsWithXmodifiers" \
+ --replace "/usr/share/games/runescape-launcher/runescape" "$out/share/games/runescape-launcher/runescape"
+
+ cp -r $out/usr/bin $out/
+ cp -r $out/usr/share $out/
+
+ rm -r $out/usr
+ '';
+
+
+ meta = with lib; {
+ description = "Launcher for RuneScape 3, the current main RuneScape";
+ homepage = "https://www.runescape.com/";
+ license = licenses.unfree;
+ maintainers = with lib.maintainers; [ grburst ];
+ platforms = [ "x86_64-linux" ];
+ };
+ };
+
+in
+
+ /*
+ * We can patch the runescape launcher, but it downloads a client at runtime and checks it for changes.
+ * For that we need use a buildFHSUserEnv.
+ * FHS simulates a classic linux shell
+ */
+ buildFHSUserEnv {
+ name = "RuneScape";
+ targetPkgs = pkgs: [
+ runescape
+ dpkg glibc gcc-unwrapped
+ libSM libXxf86vm libX11 glib pango cairo gtk2-x11 zlib openssl
+ libpulseaudio
+ xorg.libX11
+ SDL2 xorg_sys_opengl libGL
+ ];
+ multiPkgs = pkgs: [ libGL ];
+ runScript = "runescape-launcher";
+}
diff --git a/third_party/nixpkgs/pkgs/games/scummvm/default.nix b/third_party/nixpkgs/pkgs/games/scummvm/default.nix
index b22d292f20..d7208265e3 100644
--- a/third_party/nixpkgs/pkgs/games/scummvm/default.nix
+++ b/third_party/nixpkgs/pkgs/games/scummvm/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "scummvm";
- version = "2.2.0";
+ version = "2.5.0";
src = fetchurl {
url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
- sha256 = "FGllflk72Ky8+sC4ObCG9kDr8SBjPpPxFsq2UrWyc4c=";
+ sha256 = "sha256:08ynw1cmld41p4bwrw84gb1nv229va70i91qiqsjr3c2jnqy8zml";
};
nativeBuildInputs = [ nasm ];
diff --git a/third_party/nixpkgs/pkgs/misc/uboot/default.nix b/third_party/nixpkgs/pkgs/misc/uboot/default.nix
index ee3d497921..2d234aa9e0 100644
--- a/third_party/nixpkgs/pkgs/misc/uboot/default.nix
+++ b/third_party/nixpkgs/pkgs/misc/uboot/default.nix
@@ -171,6 +171,12 @@ in {
filesToInstall = ["u-boot-spl.kwb"];
};
+ ubootCubieboard2 = buildUBoot {
+ defconfig = "Cubieboard2_defconfig";
+ extraMeta.platforms = ["armv7l-linux"];
+ filesToInstall = ["u-boot-sunxi-with-spl.bin"];
+ };
+
ubootGuruplug = buildUBoot {
defconfig = "guruplug_defconfig";
extraMeta.platforms = ["armv5tel-linux"];
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix b/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
index 57f824dc21..34cf4d4e9e 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
@@ -327,6 +327,18 @@ final: prev:
meta.homepage = "https://github.com/rbgrouleff/bclose.vim/";
};
+ better-escape-nvim = buildVimPluginFrom2Nix {
+ pname = "better-escape.nvim";
+ version = "2021-10-18";
+ src = fetchFromGitHub {
+ owner = "max397574";
+ repo = "better-escape.nvim";
+ rev = "bbb8b0e3d1b1088a1db6b5ece776a41709929128";
+ sha256 = "1xiaywjy12rj25qdq5ys8ayrwlw9p9frpjzzagx1p6zgp03jpq63";
+ };
+ meta.homepage = "https://github.com/max397574/better-escape.nvim/";
+ };
+
BetterLua-vim = buildVimPluginFrom2Nix {
pname = "BetterLua.vim";
version = "2020-08-14";
@@ -449,12 +461,12 @@ final: prev:
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-10-16";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "949731d96f14872bb6764f305f38415d70c220a3";
- sha256 = "1lq4c47i55gza7mdn1nzsfxq78vkl5hhsrfv2dk97sbmbyfmr83j";
+ rev = "47071cacfb9bcd5ac86dddb1e3ef272ca7ac254d";
+ sha256 = "1b2dx5j44441xgfk3dj8f135kim38fnp2s8rpf098q8r2gn3zv8d";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -617,12 +629,12 @@ final: prev:
cmp-nvim-lsp = buildVimPluginFrom2Nix {
pname = "cmp-nvim-lsp";
- version = "2021-09-30";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "cmp-nvim-lsp";
- rev = "f93a6cf9761b096ff2c28a4f0defe941a6ffffb5";
- sha256 = "02x4jp79lll4fm34x7rjkimlx32gfp2jd1kl6zjwszbfg8wziwmx";
+ rev = "accbe6d97548d8d3471c04d512d36fa61d0e4be8";
+ sha256 = "1dqx6yrd60x9ncjnpja87wv5zgnij7qmzbyh5xfyslk67c0i6mwm";
};
meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/";
};
@@ -856,6 +868,18 @@ final: prev:
meta.homepage = "https://github.com/wincent/command-t/";
};
+ comment-nvim = buildVimPluginFrom2Nix {
+ pname = "comment.nvim";
+ version = "2021-10-18";
+ src = fetchFromGitHub {
+ owner = "numtostr";
+ repo = "comment.nvim";
+ rev = "5365cc7f1fc2522ffa1b560830d3125372928d6a";
+ sha256 = "0lvcl3pykcry35r6c9fxmjklzvzz7lpxfchbz1qgadpq45pidyir";
+ };
+ meta.homepage = "https://github.com/numtostr/comment.nvim/";
+ };
+
committia-vim = buildVimPluginFrom2Nix {
pname = "committia.vim";
version = "2020-08-27";
@@ -990,12 +1014,12 @@ final: prev:
conflict-marker-vim = buildVimPluginFrom2Nix {
pname = "conflict-marker.vim";
- version = "2020-09-23";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "rhysd";
repo = "conflict-marker.vim";
- rev = "6a9b8f92a57ea8a90cbf62c960db9e5894be2d7a";
- sha256 = "0vw5kvnmwwia65gni97vk42b9s47r3p5bglrhpcxsvs3f4s250vq";
+ rev = "22b6133116795ea8fb6705ddca981aa8faecedda";
+ sha256 = "0rh3c1sl145hwyh6idwgyqbrgnwvd91spxc5qs2hfr1xsh53ssx2";
};
meta.homepage = "https://github.com/rhysd/conflict-marker.vim/";
};
@@ -1883,12 +1907,12 @@ final: prev:
floobits-neovim = buildVimPluginFrom2Nix {
pname = "floobits-neovim";
- version = "2018-08-01";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "floobits";
repo = "floobits-neovim";
- rev = "29ab2ed4bd5c879df0bd6df313a776155eb98ad8";
- sha256 = "0bnncn3waw9birpd51j27hrzlriz8dk4naxdajmbwznwcnbkkgwx";
+ rev = "dbfa051e4f097dfa3f46997a2019556a62861258";
+ sha256 = "1zsr1536qf7zqdskpshf366m333w66hfjrfdw3ws5yz2l7kq5bcm";
};
meta.homepage = "https://github.com/floobits/floobits-neovim/";
};
@@ -2135,12 +2159,12 @@ final: prev:
gitlinker-nvim = buildVimPluginFrom2Nix {
pname = "gitlinker.nvim";
- version = "2021-10-12";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "ruifm";
repo = "gitlinker.nvim";
- rev = "a727080a527cb0f01843b59e9c445d7c4dce0f12";
- sha256 = "0mbnbiikavl6p0jsaal7vmxafrzdcn59xngwszx16qw8f00l76hw";
+ rev = "a6fb6d1ec2746fc18f81433648416edfb1a96d43";
+ sha256 = "0c417li0jx970h8qkgrww7ifzjjknfi26i7n13qx96c5axjxady5";
};
meta.homepage = "https://github.com/ruifm/gitlinker.nvim/";
};
@@ -2940,12 +2964,12 @@ final: prev:
lightspeed-nvim = buildVimPluginFrom2Nix {
pname = "lightspeed.nvim";
- version = "2021-10-09";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "ggandor";
repo = "lightspeed.nvim";
- rev = "0836af9ad0c4bb913c8e00595bb25620c894fb97";
- sha256 = "0vj84656vifg5c47m2pj7sfp9gz5ikpq9n0p57047d8r1arw50xg";
+ rev = "d2d47534b00d6fcd16cabab8ec8a6cd15c40ebf3";
+ sha256 = "13yb0srx7g9yf6rrr0bycxr4kac1ip1a1nzz27hamfkq3l9rcgn5";
};
meta.homepage = "https://github.com/ggandor/lightspeed.nvim/";
};
@@ -2964,12 +2988,12 @@ final: prev:
lir-nvim = buildVimPluginFrom2Nix {
pname = "lir.nvim";
- version = "2021-09-20";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "tamago324";
repo = "lir.nvim";
- rev = "bc14ddcb173d332e62ce3712eb0ca3ac6d9fa59a";
- sha256 = "1sh13m98dni9dspjiwsaafzvg3nlwd41v5ma5achpzla80hzm2h1";
+ rev = "5a7b21b0fdafe73719902b9848880fb3eb8500aa";
+ sha256 = "0pdswmrmc2nicii5szhig4qnmcx2cks6rc5g7s787cc0c458l98p";
};
meta.homepage = "https://github.com/tamago324/lir.nvim/";
};
@@ -3876,12 +3900,12 @@ final: prev:
null-ls-nvim = buildVimPluginFrom2Nix {
pname = "null-ls.nvim";
- version = "2021-10-15";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
- rev = "f9d3acd1a4e3b7e6d84951754fbdaadb196ae0fd";
- sha256 = "15jk540qb2zwpq3vh31skdl1gn9v6y28vqv9jrw78fjmhrs99lld";
+ rev = "9534bda66ec8e919bace771bec74678b50b87a88";
+ sha256 = "0n61rf8qg8kqxa9hmf7jvnrj36xqi5ml9h3kfwszzbjmq89533kw";
};
meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/";
};
@@ -3924,12 +3948,12 @@ final: prev:
nvim-autopairs = buildVimPluginFrom2Nix {
pname = "nvim-autopairs";
- version = "2021-10-15";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "windwp";
repo = "nvim-autopairs";
- rev = "2cab63437f05551d79ee959eb88fee1ba437a5a7";
- sha256 = "14zrgri491jshg57wcw8nf5nzviw1b6a88qkx0km1v15knihbc68";
+ rev = "7becc6bc9d8baa62eb0dbf65305f8e7f1470ace7";
+ sha256 = "1ihz1kci00r93f52fzz5nx9byh7rrax1sknmj9q232z1wv7dxb06";
};
meta.homepage = "https://github.com/windwp/nvim-autopairs/";
};
@@ -3984,12 +4008,12 @@ final: prev:
nvim-cmp = buildVimPluginFrom2Nix {
pname = "nvim-cmp";
- version = "2021-10-16";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-cmp";
- rev = "4ecf2a24265626a2c00427394deb4747c7b9d5dc";
- sha256 = "1p134wb9g2ki0gn7aqhsh64frcx5n00npkcj1lgnzcc4cc95p7d4";
+ rev = "a6a98856c3986de675bc40c9c98b7458fb19e95c";
+ sha256 = "0x0hzymvna939iscz0llm64ic28iinh4bn6xihv8afgm693j3jbi";
};
meta.homepage = "https://github.com/hrsh7th/nvim-cmp/";
};
@@ -4140,12 +4164,12 @@ final: prev:
nvim-hlslens = buildVimPluginFrom2Nix {
pname = "nvim-hlslens";
- version = "2021-10-09";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-hlslens";
- rev = "0bbfcaf40b8c3fee758eda51e728a5b7aff08412";
- sha256 = "07n8i6ggk4qnhr3zda2qpfvqfnilnnkymak1dw6f0wcjbfqdk8h6";
+ rev = "5217443bb675539d87b90133a91a7e36ad1e517d";
+ sha256 = "17p3x7s50r5fj1fhzx7nm7hk81h85hihk6svsgp99a1cjys6w9zk";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/";
};
@@ -4176,36 +4200,36 @@ final: prev:
nvim-lightbulb = buildVimPluginFrom2Nix {
pname = "nvim-lightbulb";
- version = "2021-10-16";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "kosayoda";
repo = "nvim-lightbulb";
- rev = "9838d3a0f9268d89c9f238c67928d3b6a0ceaaf5";
- sha256 = "157x2i6paqz626bvbjly5k1yg2939v6j8riicrw8gxbb3s5z5fh5";
+ rev = "66223954d7bd7d4358c36d157c25503168d04319";
+ sha256 = "0jghq2fkvibilb1zglkckhpmq6dgi1q87fcwpvcv9slk1qlgw19d";
};
meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/";
};
nvim-lsp-ts-utils = buildVimPluginFrom2Nix {
pname = "nvim-lsp-ts-utils";
- version = "2021-10-03";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "nvim-lsp-ts-utils";
- rev = "efa321ad03fbffeca699bc04ca1a59db0c54d16f";
- sha256 = "1bxj37jfcq6vrxpl5cslzmg03aqf2i13i71birvcvlw6n4p3kbbm";
+ rev = "cae4c06308c1ba4f2fdde31836fd98de3fc3e2b5";
+ sha256 = "1s2jbl4wpylvqfc4mrycd211xsi1p97r8r579fccjxpswvsm4bbk";
};
meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/";
};
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2021-10-16";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "28a8e5258cb8140cc50a030b9b3c15e39376028a";
- sha256 = "02n5kacdb6my8mn0iayr5l1rm6nx4pqc6fx6a7l5minww9vh8na2";
+ rev = "7f902f952944aa708c78138f6536c0dc55aec3a2";
+ sha256 = "1n8srlrfliak2587r30la87x3jgl9iq1x8jdxlhrx7i874ha3ykp";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -4680,12 +4704,12 @@ final: prev:
plenary-nvim = buildVimPluginFrom2Nix {
pname = "plenary.nvim";
- version = "2021-10-06";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
- rev = "80bb2b9bb74bdca38a46480b6f2e15af990406e4";
- sha256 = "11akcpxcp4m997a2y76ajknnmsifac2hj4nq9i4a8b1j08bxinim";
+ rev = "901b96d37a30be0504c97cc2c05d3a99b4cca842";
+ sha256 = "14nkpj4x9213waqsy93sdgnll42s4dxxpq5kv6g8w015drjrbwhv";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@@ -4873,12 +4897,12 @@ final: prev:
rainbow = buildVimPluginFrom2Nix {
pname = "rainbow";
- version = "2020-05-28";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "luochen1990";
repo = "rainbow";
- rev = "4d15633cdaf61602e1d9fd216a77fc02e0881b2d";
- sha256 = "168mbdf2h3zhkqrdyyhh0pbkjdvxwida80rdwk8ml97mxxii8ziw";
+ rev = "e96f502eb0e88968858a2cb0348c8e2253637bcc";
+ sha256 = "02lj86yrqjpcs83z4qfh3nhiy4nsq1fdrrcy3x56701zsiml511i";
};
meta.homepage = "https://github.com/luochen1990/rainbow/";
};
@@ -4969,12 +4993,12 @@ final: prev:
registers-nvim = buildVimPluginFrom2Nix {
pname = "registers.nvim";
- version = "2021-10-16";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "tversteeg";
repo = "registers.nvim";
- rev = "6445f9131d872d6bf2236ea301e5d400a96f961d";
- sha256 = "0g60vks084jcajv1rsjnkn4idcwvzfbwqwnpkcw0xh009p71wyjd";
+ rev = "35227ec930cfa836f9a82bfdc3afc302b68a372f";
+ sha256 = "1pcc5bhacs6h0bxr3ksr6bwdgl75irqwmiwk4l3dwifdj1arhvq7";
};
meta.homepage = "https://github.com/tversteeg/registers.nvim/";
};
@@ -5069,8 +5093,8 @@ final: prev:
src = fetchFromGitHub {
owner = "simrat39";
repo = "rust-tools.nvim";
- rev = "e3b0ace51db01e6fbecae489645b911a8f4b3441";
- sha256 = "0syshs383j1fhj381fy9d9chrqa11fk333c2kzak08j5l471z486";
+ rev = "441e0104648e1bae89e3eac6857590a64f17583d";
+ sha256 = "13g6vlg3r49vmzl0q6z2mqwz2p2chcjc74bfgn89c284bjri8x94";
};
meta.homepage = "https://github.com/simrat39/rust-tools.nvim/";
};
@@ -5571,12 +5595,12 @@ final: prev:
syntastic = buildVimPluginFrom2Nix {
pname = "syntastic";
- version = "2021-09-06";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "vim-syntastic";
repo = "syntastic";
- rev = "97bf9ec720662af51ae403b6dfe720d4a24bfcbc";
- sha256 = "0rcivwwvb6hmd420jkgy8gnzyv78z0bb8gw6232qrwf9m2lskzad";
+ rev = "d086f49d389e1c2d58211b1f92cf20c9f63dc325";
+ sha256 = "0cnd2m1dnx69657dpckiiy1slx2fpnpggm3qs0nzm5rm3qpzx185";
};
meta.homepage = "https://github.com/vim-syntastic/syntastic/";
};
@@ -5644,12 +5668,12 @@ final: prev:
tagalong-vim = buildVimPluginFrom2Nix {
pname = "tagalong.vim";
- version = "2021-10-15";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "AndrewRadev";
repo = "tagalong.vim";
- rev = "9d37eeb2463bfa1150a9353d3bf9a4f6d7395ab9";
- sha256 = "0i2vnd0rhp5ix0p78np0vk45pnpidi1y7z6b5z8pwh442ma8f86f";
+ rev = "18c010e0f28fea012f537bc1abd468a063c36b9c";
+ sha256 = "0qq1saqkk0cd09zppz469idzvl5d0aagq5gw908whz5dd72yl8al";
};
meta.homepage = "https://github.com/AndrewRadev/tagalong.vim/";
};
@@ -5714,6 +5738,18 @@ final: prev:
meta.homepage = "https://github.com/tomtom/tcomment_vim/";
};
+ telescope-cheat-nvim = buildVimPluginFrom2Nix {
+ pname = "telescope-cheat.nvim";
+ version = "2021-09-24";
+ src = fetchFromGitHub {
+ owner = "nvim-telescope";
+ repo = "telescope-cheat.nvim";
+ rev = "4a58b92fc70af622ddc115f843b0e552ca5bd6ea";
+ sha256 = "132drgpak97sbwjma6h7zwflg386xhqmdb3rqvzgxav36p9f0xsw";
+ };
+ meta.homepage = "https://github.com/nvim-telescope/telescope-cheat.nvim/";
+ };
+
telescope-coc-nvim = buildVimPluginFrom2Nix {
pname = "telescope-coc.nvim";
version = "2021-10-13";
@@ -7546,8 +7582,8 @@ final: prev:
src = fetchFromGitHub {
owner = "rbong";
repo = "vim-flog";
- rev = "1cb504538bf1e46b16d239cfc7fa22229dd1301b";
- sha256 = "1z5dggdjfc7fi7q58rfbh5whw7qw6jzfxbf87mlnyr9vij72v53q";
+ rev = "d8e62cea4c57c9284a0d6bc92140deb1a7034a1d";
+ sha256 = "0a5yh0w143lvg934pwsln2n34zh7x2d6bxfp9cmw897nl6qlzrdj";
};
meta.homepage = "https://github.com/rbong/vim-flog/";
};
@@ -7602,12 +7638,12 @@ final: prev:
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2021-10-16";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "0615cd2baf15ed0aebacd3546015a89d491553ef";
- sha256 = "0j6hl5561jhhcbxwiwc1030ip4bzqypqnj1ycxhg3vl630d18kla";
+ rev = "4d29c1d6a0def18923b4762c8f85ca3ee5ae6c83";
+ sha256 = "1m8qw6pqgyvfnbph8xwpsvgwdyapsg2abxbpqvsjhcg6ylbxfx17";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
@@ -7734,12 +7770,12 @@ final: prev:
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2021-10-11";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "f75762b6252fcdcfe6167e895e8171fb1ecfcd34";
- sha256 = "0xgzl4ms1x9gp6pa5krasks106958cr69kza1ybqy56kbngghzq0";
+ rev = "66ce1595569513a23e3e0dc7aeb8bcacec3b220c";
+ sha256 = "0bcbrbyqbn993g1i5py2ix8rnsvcxzyhn9fbk7c08257l2i7cc6x";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -8468,12 +8504,12 @@ final: prev:
vim-lsp-cxx-highlight = buildVimPluginFrom2Nix {
pname = "vim-lsp-cxx-highlight";
- version = "2021-04-29";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "jackguo380";
repo = "vim-lsp-cxx-highlight";
- rev = "9e42350272a413a51ce9a93b00c98682815ff7c1";
- sha256 = "1nsac8f2c0lj42a77wxcv3k6i8sbpm5ghip6nx7yz0dj7zd4xm10";
+ rev = "679db721db12c2a1c3ae7addf2cc17ae9a26cf08";
+ sha256 = "064sqa11hnnxj6fnnp9dvd7m367ywg6vzwvqxawqv3cwvgr7123w";
};
meta.homepage = "https://github.com/jackguo380/vim-lsp-cxx-highlight/";
};
@@ -9681,12 +9717,12 @@ final: prev:
vim-sneak = buildVimPluginFrom2Nix {
pname = "vim-sneak";
- version = "2021-07-11";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "justinmk";
repo = "vim-sneak";
- rev = "95374ad3e4b5ef902854e8f4bcfa9a7a31a91d71";
- sha256 = "0ns80kjirk72l5lapl7m32ybyr5q71p2mr8a45ihh1k2dlc2wv06";
+ rev = "94c2de47ab301d476a2baec9ffda07367046bec9";
+ sha256 = "110f06rf1m6p0asr5h4sr80wpwji3krwna5vdn6aakvcr8a7qqdi";
};
meta.homepage = "https://github.com/justinmk/vim-sneak/";
};
@@ -9705,12 +9741,12 @@ final: prev:
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2021-10-07";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "be519f70ab806c290a7b3d2e38fc22da07834052";
- sha256 = "0d22x0az6ca232x04mvkk9jphn3qfcz24a9wwvz0jdyy3pk8zfbi";
+ rev = "c28bef69fdb26825a93ac1e90ca6f5ba19116d88";
+ sha256 = "1fg60jfm5bw1m20133vl06nb8z9ckrwqq37jz493xi34j5fymi4w";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -9946,12 +9982,12 @@ final: prev:
vim-test = buildVimPluginFrom2Nix {
pname = "vim-test";
- version = "2021-10-15";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "vim-test";
repo = "vim-test";
- rev = "5fe8ada99a3c711c8db65eb341c3f631043c4a26";
- sha256 = "1vz28llgmjybg2hgxlv6d9q69f7lhj32id531p2hlnhxl49s9jbn";
+ rev = "2052bd926c37b5c828dd07c47ac676102ca34a0e";
+ sha256 = "1lyx57jryxx5r9s60hg3v6y0kx5p2qc408nl8zhffqhzzmxvkgp9";
};
meta.homepage = "https://github.com/vim-test/vim-test/";
};
@@ -10186,12 +10222,12 @@ final: prev:
vim-ultest = buildVimPluginFrom2Nix {
pname = "vim-ultest";
- version = "2021-10-05";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "vim-ultest";
- rev = "7861d1925baef8fe3fa313affdfbdcaa6b2af26f";
- sha256 = "165klmixdch1nc9cxdldl5yg4q79q58riw0mg0mahqvvr5m1yrw3";
+ rev = "71290da8930cddb946758e108f01a9546c5dda75";
+ sha256 = "0jjb8b20dy65rjfmhhxq4jlcpdfqvmi4ianc6h2m6n08h5a4iw61";
};
meta.homepage = "https://github.com/rcarriga/vim-ultest/";
};
@@ -10210,12 +10246,12 @@ final: prev:
vim-unimpaired = buildVimPluginFrom2Nix {
pname = "vim-unimpaired";
- version = "2021-09-24";
+ version = "2021-10-18";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-unimpaired";
- rev = "39f195d7e66141d7f1fa683927547026501e9961";
- sha256 = "0bbiv32brznns82v8s0s2fylcn4j5d3vw4x2kp5h6zb4lqgya30q";
+ rev = "e4006d68cd4f390efef935bc09be0ce3bd022e72";
+ sha256 = "048n8p7bjpcwdk924glqkwkp10fl813ffrjsagwwzsnakax3da5f";
};
meta.homepage = "https://github.com/tpope/vim-unimpaired/";
};
@@ -10619,12 +10655,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2021-10-13";
+ version = "2021-10-17";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "4b3ceb9eb7f0e12c239d7ef4262728491aee89ba";
- sha256 = "1q3ygk39pbm2bhq463c0rc7zqm5zzg2ln2k1qka1v2i4ghngaszi";
+ rev = "0824ade4187472fcdc1634f462da84b3cfc5931f";
+ sha256 = "0p7308x3yy9n43jhpggqb1vmz39k00ckx3svpxbckwh9y21hjxnc";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix b/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
index 3fe11c3a2d..887a0fb177 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
@@ -560,6 +560,10 @@ self: super: {
};
});
+ telescope-cheat-nvim = super.telescope-cheat-nvim.overrideAttrs (old: {
+ dependencies = with self; [ sqlite-lua telescope-nvim ];
+ });
+
telescope-frecency-nvim = super.telescope-frecency-nvim.overrideAttrs (old: {
dependencies = with self; [ sqlite-lua telescope-nvim ];
});
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names b/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
index 6937233cf3..90ec235376 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
@@ -429,6 +429,7 @@ mattn/emmet-vim
mattn/vim-gist
mattn/webapi-vim
matze/vim-move
+max397574/better-escape.nvim
maximbaz/lightline-ale
MaxMEllon/vim-jsx-pretty
mbbill/undotree
@@ -518,6 +519,7 @@ norcalli/nvim-terminal.lua
norcalli/snippets.nvim
ntpeters/vim-better-whitespace
numirias/semshi
+numtostr/comment.nvim
nvie/vim-flake8
nvim-lua/completion-nvim
nvim-lua/diagnostic-nvim
@@ -526,6 +528,7 @@ nvim-lua/lsp_extensions.nvim
nvim-lua/plenary.nvim
nvim-lua/popup.nvim
nvim-neorg/neorg@main
+nvim-telescope/telescope-cheat.nvim
nvim-telescope/telescope-dap.nvim
nvim-telescope/telescope-frecency.nvim
nvim-telescope/telescope-fzf-native.nvim@main
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs-lib.sh b/third_party/nixpkgs/pkgs/misc/vscode-extensions/_maintainers/update-bin-srcs-lib.sh
similarity index 93%
rename from third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs-lib.sh
rename to third_party/nixpkgs/pkgs/misc/vscode-extensions/_maintainers/update-bin-srcs-lib.sh
index ad494a3790..f3058755d6 100755
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs-lib.sh
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/_maintainers/update-bin-srcs-lib.sh
@@ -107,11 +107,13 @@ formatExtRuntimeDeps() {
declare jqQuery
jqQuery=$(cat <<'EOF'
-.runtimeDependencies \
-| map(select(.platforms[] | in({"linux": null}))) \
-| map(select(.architectures[] | in({"x86_64": null}))) \
-| .[] | {(.id + "-" + (.architectures[0]) + "-" + (.platforms[0])): \
-{installPath, binaries, urls: [.url, .fallbackUrl]}}
+.runtimeDependencies
+| map(select(.platforms[] | in({"linux": null})))
+| map(select(.architectures[] | in({"x86_64": null})))
+| .[] | {
+ (.id + "__" + (.architectures[0]) + "-" + (.platforms[0])):
+ {installPath, binaries, urls: [.url, .fallbackUrl] | map(select(. != null))}
+}
EOF
)
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix b/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
index d464e735b8..7fc03228f6 100644
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
@@ -852,8 +852,8 @@ let
mktplcRef = {
name = "todo-tree";
publisher = "Gruntfuggly";
- version = "0.0.213";
- sha256 = "0fj7vvaqdldhbzm9dqh2plqlhg34jv5khd690xd87h418sv8rk95";
+ version = "0.0.214";
+ sha256 = "0rwxjnrl44rnhx3183037k6435xs4772p58a37azl5cahsyav1hk";
};
meta = with lib; {
license = licenses.mit;
@@ -1176,17 +1176,7 @@ let
};
};
- ms-toolsai.jupyter = buildVscodeMarketplaceExtension {
- mktplcRef = {
- name = "jupyter";
- publisher = "ms-toolsai";
- version = "2021.5.745244803";
- sha256 = "0gjpsp61l8daqa87mpmxcrvsvb0pc2vwg7xbkvwn0f13c1739w9p";
- };
- meta = {
- license = lib.licenses.unfree;
- };
- };
+ ms-toolsai.jupyter = callPackage ./ms-toolsai-jupyter {};
mvllow.rose-pine = buildVscodeMarketplaceExtension {
mktplcRef = {
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix
index 6f4bbfb7e9..8683da040d 100644
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix
@@ -18,13 +18,12 @@ let
rtDepsBinSrcs = builtins.mapAttrs (k: v:
let
# E.g: "OmniSharp-x86_64-linux"
- kSplit = builtins.split "(-)" k;
+ kSplit = builtins.split "(__)" k;
name = builtins.elemAt kSplit 0;
- arch = builtins.elemAt kSplit 2;
- platform = builtins.elemAt kSplit 4;
+ system = builtins.elemAt kSplit 2;
in
{
- inherit name arch platform;
+ inherit name system;
installPath = v.installPath;
binaries = v.binaries;
bin-src = fetchurl {
@@ -35,11 +34,8 @@ let
)
rtDepsSrcsFromJson;
- arch = "x86_64";
- platform = "linux";
-
rtDepBinSrcByName = bSrcName:
- rtDepsBinSrcs."${bSrcName}-${arch}-${platform}";
+ rtDepsBinSrcs."${bSrcName}__${stdenv.targetPlatform.system}";
omnisharp = rtDepBinSrcByName "OmniSharp";
vsdbg = rtDepBinSrcByName "Debugger";
@@ -50,8 +46,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "csharp";
publisher = "ms-dotnettools";
- version = "1.23.2";
- sha256 = "0ydaiy8jfd1bj50bqiaz5wbl7r6qwmbz9b29bydimq0rdjgapaar";
+ version = "1.23.15";
+ sha256 = "0b74jr45zl7lzirjgj8s2lbf3viy9pbwlgjh055rcwmy77wcml1x";
};
nativeBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json
index 91ee056efc..8f90fda228 100644
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json
@@ -1,37 +1,36 @@
{
- "OmniSharp-x86_64-linux": {
- "installPath": ".omnisharp/1.37.1",
+ "OmniSharp__x86_64-linux": {
+ "installPath": ".omnisharp/1.37.15",
"binaries": [
"./mono.linux-x86_64",
"./run"
],
"urls": [
- "https://download.visualstudio.microsoft.com/download/pr/46933d64-075c-4f9f-b205-da4a839e2e3c/4bba2c3f40106056b53721c164ff86fa/omnisharp-linux-x64-1.37.1.zip",
- "https://roslynomnisharp.blob.core.windows.net/releases/1.37.1/omnisharp-linux-x64-1.37.1.zip"
+ "https://download.visualstudio.microsoft.com/download/pr/4fbf71ce-5375-4ca9-b70d-8024ba1b9e0a/b96375395e639233d546a4937be3bd32/omnisharp-linux-x64-1.37.15.zip",
+ "https://roslynomnisharp.blob.core.windows.net/releases/1.37.15/omnisharp-linux-x64-1.37.15.zip"
],
- "sha256": "0yzxkbq0fyq2bv0s7qmycxl0w54lla0vykg1a5lpv9j38k062vvz"
+ "sha256": "0pchywkxy8niq0i6gq2r43cmf58blfhhj8w8zyibf0m9h09h165s"
},
- "Debugger-x86_64-linux": {
+ "Debugger__x86_64-linux": {
"installPath": ".debugger",
"binaries": [
"./vsdbg-ui",
"./vsdbg"
],
"urls": [
- "https://download.visualstudio.microsoft.com/download/pr/292d2e01-fb93-455f-a6b3-76cddad4f1ef/2e9b8bc5431d8f6c56025e76eaabbdff/coreclr-debug-linux-x64.zip",
- "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-22-2/coreclr-debug-linux-x64.zip"
+ "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/dd019b4c839f458596e26bfcfe6a3e7f/coreclr-debug-linux-x64.zip",
+ "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-linux-x64.zip"
],
- "sha256": "1lhyjq6g6lc1b4n4z57g0ssr5msqgsmrl8yli8j9ah5s3jq1lrda"
+ "sha256": "0c5y0035sa07bl3m3iiqccqd92xjwpcfjrqhmi5xligk40q2i2gk"
},
- "Razor-x86_64-linux": {
+ "Razor__x86_64-linux": {
"installPath": ".razor",
"binaries": [
"./rzls"
],
"urls": [
- "https://download.visualstudio.microsoft.com/download/pr/757f5246-2b09-43fe-9a8d-840cfd15092b/2b6d8eee0470acf725c1c7a09f8b6475/razorlanguageserver-linux-x64-6.0.0-alpha.1.20418.9.zip",
- "https://razorvscodetest.blob.core.windows.net/languageserver/RazorLanguageServer-linux-x64-6.0.0-alpha.1.20418.9.zip"
+ "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/b846e9c7d7afdba54a72fae1dcb6c42c/razorlanguageserver-linux-x64-6.0.0-preview.5.21358.6.zip"
],
- "sha256": "1hksxq867anb9h040497phszq64f6krg4a46w0xqrm6crj8znqr5"
+ "sha256": "0gb36nlb7fgcv03a0awna1qyrsky6ys5gkpsmvxc5j35f1yq337b"
}
}
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs
index ecd7efba05..83230915d0 100755
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs
@@ -6,11 +6,11 @@ declare scriptDir
scriptDir=$(cd "$(dirname "$0")"; pwd)
1>&2 echo "scriptDir='$scriptDir'"
-. "$scriptDir/update-bin-srcs-lib.sh"
+. "$scriptDir/../_maintainers/update-bin-srcs-lib.sh"
declare extPublisher="ms-dotnettools"
declare extName="csharp"
-declare defaultExtVersion="1.23.2"
+declare defaultExtVersion="1.23.15"
declare extVersion="${1:-$defaultExtVersion}"
formatExtRuntimeDeps \
@@ -19,7 +19,3 @@ formatExtRuntimeDeps \
| jqStreamToJson \
| tee "$scriptDir/rt-deps-bin-srcs.json" \
| jq '.'
-
-# TODO: Unfortunatly no simple json to nix implementation available.
-# This would allow us to dump to './rt-deps-bin-srcs.nix' instead.
-# jsonToNix
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-toolsai-jupyter/default.nix b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-toolsai-jupyter/default.nix
new file mode 100644
index 0000000000..6be5e225fa
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/ms-toolsai-jupyter/default.nix
@@ -0,0 +1,42 @@
+{ lib, vscode-utils, jq, moreutils }:
+
+let
+ inherit (vscode-utils) buildVscodeMarketplaceExtension;
+
+in buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "jupyter";
+ publisher = "ms-toolsai";
+ version = "2021.9.1101343141";
+ sha256 = "1c5dgkk5yn6a8k3blbqakqdy8ppwgfbm0ciki7ix696bvlksbpdg";
+ };
+
+ nativeBuildInputs = [
+ jq
+ moreutils
+ ];
+
+ postPatch = ''
+ # Patch 'packages.json' so that the expected '__metadata' field exists.
+ # This works around observed extension load failure on vscode's attempt
+ # to rewrite 'packages.json' with this new information.
+ print_jq_query() {
+ cat <<"EOF"
+ .__metadata = {
+ "id": "6c2f1801-1e7f-45b2-9b5c-7782f1e076e8",
+ "publisherId": "ac8eb7c9-3e59-4b39-8040-f0484d8170ce",
+ "publisherDisplayName": "Microsoft",
+ "installedTimestamp": 0
+ }
+ EOF
+ }
+ jq "$(print_jq_query)" ./package.json | sponge ./package.json
+ '';
+
+ meta = with lib; {
+ description = "Jupyter extension for vscode";
+ homepage = "https://github.com/microsoft/vscode-jupyter";
+ license = licenses.mit;
+ maintainers = with maintainers; [ jraygauthier ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/i2c-tools/default.nix b/third_party/nixpkgs/pkgs/os-specific/linux/i2c-tools/default.nix
index 5c05ca6082..556bc2d897 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/i2c-tools/default.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/i2c-tools/default.nix
@@ -7,19 +7,22 @@
stdenv.mkDerivation rec {
pname = "i2c-tools";
- version = "4.2";
+ version = "4.3";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/utils/i2c-tools/i2c-tools.git";
rev = "v${version}";
- sha256 = "0vqrbp10klr7ylarr6cy1q7nafiqaky4iq5my5dqy101h93vg4pg";
+ sha256 = "sha256-HlmIocum+HZEKNiS5BUwEIswRfTMUhD1vCPibAuAK0Q=";
};
buildInputs = [ perl ];
postPatch = ''
- substituteInPlace eeprom/decode-edid --replace "/usr/sbin/parse-edid" "${read-edid}/bin/parse-edid"
- substituteInPlace stub/i2c-stub-from-dump --replace "/sbin/" ""
+ substituteInPlace eeprom/decode-edid \
+ --replace "/usr/sbin/parse-edid" "${read-edid}/bin/parse-edid"
+
+ substituteInPlace stub/i2c-stub-from-dump \
+ --replace "/sbin/" ""
'';
makeFlags = [ "PREFIX=${placeholder "out"}" ];
@@ -27,7 +30,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "man" ];
postInstall = ''
- rm -rf $out/include # Installs include/linux/i2c-dev.h that conflics with kernel headers
+ rm -rf $out/include/linux/i2c-dev.h # conflics with kernel headers
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
index 8e1902b61d..c0f9882cc1 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
@@ -1,32 +1,52 @@
{
"4.14": {
- "extra": "-hardened1",
- "name": "linux-hardened-4.14.250-hardened1.patch",
- "sha256": "1jgqmrj5djapvk56jwlfq181knhywzrk9cswv1lp5y2jwnnvlj9x",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.250-hardened1/linux-hardened-4.14.250-hardened1.patch"
+ "patch": {
+ "extra": "-hardened1",
+ "name": "linux-hardened-4.14.252-hardened1.patch",
+ "sha256": "1isqlqg4diz0i3f77rigvb07fs2p1v9w2h5165l0rnkb6h26i1gn",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.252-hardened1/linux-hardened-4.14.252-hardened1.patch"
+ },
+ "sha256": "022rw51s8fzz6wcxa9xq6h60fglfx0hq7bmqgs5dlrci6plv4fwk",
+ "version": "4.14.252"
},
"4.19": {
- "extra": "-hardened1",
- "name": "linux-hardened-4.19.210-hardened1.patch",
- "sha256": "0lnv0ym6jcf460hsn26lax65n2yb1vvzsfmckaz04jb2kdgm6hr5",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.210-hardened1/linux-hardened-4.19.210-hardened1.patch"
+ "patch": {
+ "extra": "-hardened1",
+ "name": "linux-hardened-4.19.213-hardened1.patch",
+ "sha256": "03lk4m6sm3545s0xxx0w4sqgrsvrxqm8qg7swn05s36jj20viprm",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.213-hardened1/linux-hardened-4.19.213-hardened1.patch"
+ },
+ "sha256": "162f5y3jplql3ca5xy889mq6izjinryx2kx16zp582yvsqf8rwiq",
+ "version": "4.19.213"
},
"5.10": {
- "extra": "-hardened1",
- "name": "linux-hardened-5.10.72-hardened1.patch",
- "sha256": "14zchx1hc4jrq7prv4kkswjnmyqv74wfkjvky57scc8yl04yaqs6",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.72-hardened1/linux-hardened-5.10.72-hardened1.patch"
+ "patch": {
+ "extra": "-hardened1",
+ "name": "linux-hardened-5.10.75-hardened1.patch",
+ "sha256": "17gm50aislxihfnmr4vi0p0gpg13m2pbldjpi81clnx93a7rrfw2",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.75-hardened1/linux-hardened-5.10.75-hardened1.patch"
+ },
+ "sha256": "0jrhhk89587caw54nhnwms93kq33qdm75x5f18cp61xrxxgjyaqa",
+ "version": "5.10.75"
},
"5.14": {
- "extra": "-hardened1",
- "name": "linux-hardened-5.14.11-hardened1.patch",
- "sha256": "05n74rnq5c2jx7iynxwgj5wypb0i0p3dar0ri2zxmyssasmbkfa7",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.14.11-hardened1/linux-hardened-5.14.11-hardened1.patch"
+ "patch": {
+ "extra": "-hardened1",
+ "name": "linux-hardened-5.14.14-hardened1.patch",
+ "sha256": "1hx5yal8jqnxr9c9ikvc6d0xp99kqjarj67720v9d4wvlmgsfabj",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.14.14-hardened1/linux-hardened-5.14.14-hardened1.patch"
+ },
+ "sha256": "0snh17ah49wmfmazy6x42rhvl484h657y0iq4l09a885sjb4xzsd",
+ "version": "5.14.14"
},
"5.4": {
- "extra": "-hardened1",
- "name": "linux-hardened-5.4.152-hardened1.patch",
- "sha256": "01rf9za9sv14pxpi0pj1izq4bihhldi2qnhaka5rxlw7nifzzsj2",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.152-hardened1/linux-hardened-5.4.152-hardened1.patch"
+ "patch": {
+ "extra": "-hardened1",
+ "name": "linux-hardened-5.4.155-hardened1.patch",
+ "sha256": "0l8h9i6asiypgbxl90370kzfsyyc3f4vwl2r191arvrsgw863bid",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.155-hardened1/linux-hardened-5.4.155-hardened1.patch"
+ },
+ "sha256": "0f2hfz76rnhmv99zhbh7n1z48316ilxrxrnh4b5m3lj84y80y36c",
+ "version": "5.4.155"
}
}
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/update.py b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/update.py
index f278b518c0..48567b68dc 100755
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/update.py
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/update.py
@@ -31,7 +31,12 @@ VersionComponent = Union[int, str]
Version = List[VersionComponent]
-Patch = TypedDict("Patch", {"name": str, "url": str, "sha256": str, "extra": str})
+PatchData = TypedDict("PatchData", {"name": str, "url": str, "sha256": str, "extra": str})
+Patch = TypedDict("Patch", {
+ "patch": PatchData,
+ "version": str,
+ "sha256": str,
+})
@dataclass
@@ -133,7 +138,15 @@ def fetch_patch(*, name: str, release_info: ReleaseInfo) -> Optional[Patch]:
if not sig_ok:
return None
- return Patch(name=patch_filename, url=patch_url, sha256=sha256, extra=extra)
+ kernel_ver = release_info.release.tag_name.replace("-hardened1", "")
+ major = kernel_ver.split('.')[0]
+ sha256_kernel, _ = nix_prefetch_url(f"mirror://kernel/linux/kernel/v{major}.x/linux-{kernel_ver}.tar.xz")
+
+ return Patch(
+ patch=PatchData(name=patch_filename, url=patch_url, sha256=sha256, extra=extra),
+ version=kernel_ver,
+ sha256=sha256_kernel
+ )
def parse_version(version_str: str) -> Version:
@@ -249,7 +262,7 @@ for kernel_key in sorted(releases.keys()):
old_version_str: Optional[str] = None
update: bool
try:
- old_filename = patches[kernel_key]["name"]
+ old_filename = patches[kernel_key]["patch"]["name"]
old_version_str = old_filename.replace("linux-hardened-", "").replace(
".patch", ""
)
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
index 69ca1d3e25..9ab5f2683b 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.14.250";
+ version = "4.14.252";
# 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 = "0zbf6gxm8iwf7cra310gfd0zyj8l9ckdahky9w6wb9wlznwkvd54";
+ sha256 = "022rw51s8fzz6wcxa9xq6h60fglfx0hq7bmqgs5dlrci6plv4fwk";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 5ee2a08f5a..c4b05e1482 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.19.211";
+ version = "4.19.213";
# 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 = "1m3y5gsf5s8bb4jxkri20dlxi8aiqabzaijj2h1svz4r19ca8j7v";
+ sha256 = "162f5y3jplql3ca5xy889mq6izjinryx2kx16zp582yvsqf8rwiq";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
index 8f52d3af51..a0d6115a85 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
- version = "4.4.288";
+ version = "4.4.289";
extraMeta.branch = "4.4";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "028w3yzmzymy7l1nf3n1pfbg95hfi4ilphkyl00ddgj8sfm542c7";
+ sha256 = "1g77kf0yzwvpdxs3kw7wdvb07mmk3zm6ydjcw5dnsza8q2inl69k";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
index 4c00580a8a..b4952dcb92 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
- version = "4.9.286";
+ version = "4.9.287";
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0id62p43dmkl9ir278p0dsfg3q7m1d8rlxv0c9qi1pzalkygv8p2";
+ sha256 = "1hlpxnlz0y5vxcmkavsirk2kfb2l34fcvmhlcb99slh28xkjhhfl";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
index 0da279cfc5..5531a49f1c 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.10.73";
+ version = "5.10.75";
# 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 = "0xhf0g5pra27hnavpy0y3mn05m5hqn5rd3d6fx0a3vr35c1jicpd";
+ sha256 = "0jrhhk89587caw54nhnwms93kq33qdm75x5f18cp61xrxxgjyaqa";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.14.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.14.nix
index 5722faf3bd..337ef105d7 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.14.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.14.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.14.12";
+ version = "5.14.14";
# 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 = "0dswxf1qk70lms5lph15i7nz3ybwiia58v8zzrmi71ajviwjc9wd";
+ sha256 = "0snh17ah49wmfmazy6x42rhvl484h657y0iq4l09a885sjb4xzsd";
};
} // (args.argsOverride or { }))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 1ff0803114..d34ada307b 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.4.153";
+ version = "5.4.155";
# 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 = "0jaz57sd51xqc7w8k3f43bfc5mdsh1413mdngqqsgr8isv4hg7vd";
+ sha256 = "0f2hfz76rnhmv99zhbh7n1z48316ilxrxrnh4b5m3lj84y80y36c";
};
} // (args.argsOverride or {}))
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
index daa3c67da9..6ef781f609 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
@@ -6,7 +6,7 @@
, ... } @ args:
let
- version = "5.10.65-rt53"; # updated by ./update-rt.sh
+ version = "5.10.73-rt54"; # 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 = "0riyq1gdm18642fpnhpcw8hspcjqzprzhqnygjxabjjvrvdxxlzd";
+ sha256 = "0xhf0g5pra27hnavpy0y3mn05m5hqn5rd3d6fx0a3vr35c1jicpd";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "1sxyic3895dch3x7cabiip5lxv9wqypn22hcy02jg9825260cmd3";
+ sha256 = "0szqm9f939p9z701i5hj881nf5bhfa0a6037bbcz974y0x8g9nmk";
};
}; in [ rt-patch ] ++ kernelPatches;
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-xanmod.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-xanmod.nix
index 08ed46bb0d..52e5b86133 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-xanmod.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-xanmod.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
let
- version = "5.14.12";
+ version = "5.14.14";
release = "1";
suffix = "xanmod${release}-cacule";
in
@@ -13,7 +13,7 @@ buildLinux (args // rec {
owner = "xanmod";
repo = "linux";
rev = modDirVersion;
- sha256 = "sha256-JVTi319BLHM4CgF7KaN3C/92N4uwh59po1AcOinNpww=";
+ sha256 = "sha256-/cbTByyV+hYjn9PHSIb6FeKcl6ejbaVG6hj0VXgaHDg=";
};
structuredExtraConfig = with lib.kernel; {
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/manual-config.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/manual-config.nix
index 9c67df13d3..d9a959c50b 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/manual-config.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/manual-config.nix
@@ -293,7 +293,7 @@ let
license = lib.licenses.gpl2Only;
homepage = "https://www.kernel.org/";
repositories.git = "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git";
- maintainers = [
+ maintainers = lib.teams.linux-kernel.members ++ [
maintainers.thoughtpolice
];
platforms = platforms.linux;
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/patches.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/patches.nix
index f41cedca0f..b818ddc5f2 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/patches.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/patches.nix
@@ -47,10 +47,11 @@
cpu-cgroup-v2 = import ./cpu-cgroup-v2-patches;
hardened = let
- mkPatch = kernelVersion: src: {
+ mkPatch = kernelVersion: { version, sha256, patch }: let src = patch; in {
name = lib.removeSuffix ".patch" src.name;
patch = fetchurl (lib.filterAttrs (k: v: k != "extra") src);
extra = src.extra;
+ inherit version sha256;
};
patches = builtins.fromJSON (builtins.readFile ./hardened/patches.json);
in lib.mapAttrs mkPatch patches;
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/nmon/default.nix b/third_party/nixpkgs/pkgs/os-specific/linux/nmon/default.nix
index 7ec84443cf..18adf9c690 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/nmon/default.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/nmon/default.nix
@@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ];
dontUnpack = true;
- buildPhase = "cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D X86";
+ buildPhase = "${stdenv.cc.targetPrefix}cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D ${
+ with stdenv.targetPlatform;
+ if isx86_32 || isx86_64 then "X86"
+ else if isAarch32 || isAarch64 then "ARM"
+ else if isPower then "POWER"
+ else "UNKNOWN"
+ }";
installPhase = ''
mkdir -p $out/bin
cp nmon $out/bin
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/zfs/default.nix b/third_party/nixpkgs/pkgs/os-specific/linux/zfs/default.nix
index c9f0438c86..cd25f0e981 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/zfs/default.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/zfs/default.nix
@@ -140,6 +140,13 @@ let
"INSTALL_MOD_PATH=\${out}"
];
+ # Enabling BTF causes zfs to be build with debug symbols.
+ # Since zfs compress kernel modules on installation, our strip hooks skip stripping them.
+ # Hence we strip modules prior to compression.
+ postBuild = optionalString buildKernel ''
+ find . -name "*.ko" -print0 | xargs -0 -P$NIX_BUILD_CORES strip --strip-debug
+ '';
+
postInstall = optionalString buildKernel ''
# Add reference that cannot be detected due to compressed kernel module
mkdir -p "$out/nix-support"
diff --git a/third_party/nixpkgs/pkgs/servers/dns/knot-dns/default.nix b/third_party/nixpkgs/pkgs/servers/dns/knot-dns/default.nix
index 4363f9665f..6f0c7c9ab8 100644
--- a/third_party/nixpkgs/pkgs/servers/dns/knot-dns/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/dns/knot-dns/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "knot-dns";
- version = "3.1.2";
+ version = "3.1.3";
src = fetchurl {
url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz";
- sha256 = "580087695df350898b2da8a5c2bdf1dc5eb262ed5ff2cb1538cee480a50fa094";
+ sha256 = "a3fc448cbce3209575f93a3cf1224fa37802fc6606f7c7d4bb3aa6dbeaed2c64";
};
outputs = [ "bin" "out" "dev" ];
diff --git a/third_party/nixpkgs/pkgs/servers/dns/pdns-recursor/default.nix b/third_party/nixpkgs/pkgs/servers/dns/pdns-recursor/default.nix
index da57282ae0..881fef7f32 100644
--- a/third_party/nixpkgs/pkgs/servers/dns/pdns-recursor/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/dns/pdns-recursor/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "pdns-recursor";
- version = "4.5.4";
+ version = "4.5.6";
src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
- sha256 = "0sl98ykk2bh0v2aw2hyak7wk9k3pbhvmfkb3i4a72jlsixm60p81";
+ sha256 = "004jwyg64ww6sfwlfpyfvh6vymildygwkjhkin2fsrq4h79wv2dv";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix b/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
index d7bdbb451f..56e30167ad 100644
--- a/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
+++ b/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2021.10.4";
+ version = "2021.10.6";
components = {
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];
@@ -19,7 +19,7 @@
"air_quality" = ps: with ps; [ ];
"airly" = ps: with ps; [ airly ];
"airnow" = ps: with ps; [ pyairnow ];
- "airthings" = ps: with ps; [ ]; # missing inputs: airthings_cloud
+ "airthings" = ps: with ps; [ airthings-cloud ];
"airtouch4" = ps: with ps; [ ]; # missing inputs: airtouch4pyapi
"airvisual" = ps: with ps; [ pyairvisual ];
"aladdin_connect" = ps: with ps; [ aladdin-connect ];
@@ -151,7 +151,7 @@
"cover" = ps: with ps; [ ];
"cppm_tracker" = ps: with ps; [ ]; # missing inputs: clearpasspy
"cpuspeed" = ps: with ps; [ py-cpuinfo ];
- "crownstone" = ps: with ps; [ aiohttp-cors pyserial pyudev ]; # missing inputs: crownstone-cloud crownstone-sse crownstone-uart
+ "crownstone" = ps: with ps; [ aiohttp-cors crownstone-cloud crownstone-sse crownstone-uart pyserial pyudev ];
"cups" = ps: with ps; [ pycups ];
"currencylayer" = ps: with ps; [ ];
"daikin" = ps: with ps; [ pydaikin ];
diff --git a/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix b/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
index b2c3196bdb..ef1ce97ae7 100644
--- a/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
@@ -68,6 +68,20 @@ let
# Pinned due to API changes in 0.1.0
(mkOverride "poolsense" "0.0.8" "09y4fq0gdvgkfsykpxnvmfv92dpbknnq5v82spz43ak6hjnhgcyp")
+ # Pinned due to missing simpliypy.errors.PendingAuthorizationError in simplisafe-python>12 which results in a failing import
+ (self: super: {
+ simplisafe-python = super.simplisafe-python.overridePythonAttrs (oldAttrs: rec {
+ version = "11.0.7";
+ src = fetchFromGitHub {
+ owner = "bachya";
+ repo = "simplisafe-python";
+ rev = version;
+ sha256 = "02nrighkdcd5n9qgbizm9gyfnpgdm4iibw7y8nbyfaxpng069fzp";
+ };
+ checkInputs = oldAttrs.checkInputs ++ [ super.aioresponses ];
+ });
+ })
+
# Pinned due to changes in total-connect-client>0.58 which made the tests fails at the moment
(self: super: {
total-connect-client = super.total-connect-client.overridePythonAttrs (oldAttrs: rec {
@@ -114,7 +128,7 @@ let
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2021.10.4";
+ hassVersion = "2021.10.6";
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
@@ -131,7 +145,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
- sha256 = "1cl0h15285x7xba425d9anv882adi6bdqx4i3cicg3gf0nzcc8am";
+ sha256 = "0275f327dzr4cggfw5n8x533b4h8zz8yli5d0js7cw1rmi3cmkbc";
};
# leave this in, so users don't have to constantly update their downstream patch handling
@@ -214,6 +228,7 @@ in with py.pkgs; buildPythonApplication rec {
"air_quality"
"airly"
"airnow"
+ "airthings"
"airvisual"
"alarm_control_panel"
"alarmdecoder"
diff --git a/third_party/nixpkgs/pkgs/servers/hqplayerd/default.nix b/third_party/nixpkgs/pkgs/servers/hqplayerd/default.nix
index 92ce3294f1..d2b46097ac 100644
--- a/third_party/nixpkgs/pkgs/servers/hqplayerd/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/hqplayerd/default.nix
@@ -17,11 +17,11 @@
stdenv.mkDerivation rec {
pname = "hqplayerd";
- version = "4.25.2-66";
+ version = "4.26.0-67";
src = fetchurl {
url = "https://www.signalyst.eu/bins/${pname}/fc34/${pname}-${version}.fc34.x86_64.rpm";
- sha256 = "sha256-BZGtv/Bumkltk6fJw3+RG1LZc3pGpd8e4DvgLxOTvcQ=";
+ sha256 = "sha256-Wbtt1yO/CE2cewOE5RynwEm+fCdOV1cxzR/XiCwj0NU=";
};
unpackPhase = ''
diff --git a/third_party/nixpkgs/pkgs/servers/http/nginx/modules.nix b/third_party/nixpkgs/pkgs/servers/http/nginx/modules.nix
index c5d9d8c781..2919438d1e 100644
--- a/third_party/nixpkgs/pkgs/servers/http/nginx/modules.nix
+++ b/third_party/nixpkgs/pkgs/servers/http/nginx/modules.nix
@@ -509,10 +509,10 @@ in
name = "vod";
owner = "kaltura";
repo = "nginx-vod-module";
- rev = "e46079f51282d5a378e6911714b5f3a533bb7700";
- sha256 = "0pzzq4xcq7jg8mxwnz7srj1nczg9ajd1b8q58qlm03lny8nd2hr5";
+ rev = "1.29";
+ sha256 = "1z0ka0cwqbgh3fv2d5yva395sf90626rdzx7lyfrgs89gy4h9nrr";
};
- inputs = [ pkgs.ffmpeg_3 pkgs.fdk_aac pkgs.openssl pkgs.libxml2 pkgs.libiconv ];
+ inputs = with pkgs; [ ffmpeg fdk_aac openssl libxml2 libiconv ];
};
vts = {
diff --git a/third_party/nixpkgs/pkgs/servers/http/nginx/quic.nix b/third_party/nixpkgs/pkgs/servers/http/nginx/quic.nix
index 8bb383d599..a6efda3bed 100644
--- a/third_party/nixpkgs/pkgs/servers/http/nginx/quic.nix
+++ b/third_party/nixpkgs/pkgs/servers/http/nginx/quic.nix
@@ -6,8 +6,8 @@
callPackage ./generic.nix args {
src = fetchhg {
url = "https://hg.nginx.org/nginx-quic";
- rev = "5b0c229ba5fe"; # branch=quic
- sha256 = "1bb6n6b4nkc1cfllj75lwr4gjijl8883bkcvq8ncg7r4s5xs7r90";
+ rev = "404de224517e"; # branch=quic
+ sha256 = "00x8djp3hqnq60jzpddfrj0v23j2fbl27jyw609ha3wqkkbxrip9";
};
preConfigure = ''
diff --git a/third_party/nixpkgs/pkgs/servers/jellyfin/default.nix b/third_party/nixpkgs/pkgs/servers/jellyfin/default.nix
index c2c9df4b81..b9924c69e8 100644
--- a/third_party/nixpkgs/pkgs/servers/jellyfin/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/jellyfin/default.nix
@@ -15,6 +15,8 @@
}:
let
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+ dotnet-aspnetcore = dotnetCorePackages.aspnetcore_5_0;
runtimeDeps = [
ffmpeg
fontconfig
@@ -34,10 +36,6 @@ let
"musl-");
# https://docs.microsoft.com/en-us/dotnet/core/rid-catalog#using-rids
runtimeId = "${os}-${musl}${arch}";
-
- dotnet-sdk = dotnetCorePackages.sdk_5_0;
- dotnet-net = dotnetCorePackages.net_5_0;
- dotnet-aspnetcore = dotnetCorePackages.aspnetcore_5_0;
in
stdenv.mkDerivation rec {
pname = "jellyfin";
diff --git a/third_party/nixpkgs/pkgs/servers/matrix-synapse/default.nix b/third_party/nixpkgs/pkgs/servers/matrix-synapse/default.nix
index e87bead4b6..5236f85a4f 100644
--- a/third_party/nixpkgs/pkgs/servers/matrix-synapse/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/matrix-synapse/default.nix
@@ -27,11 +27,11 @@ let
in
buildPythonApplication rec {
pname = "matrix-synapse";
- version = "1.44.0";
+ version = "1.45.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-oH8FXHSa120/Fys21UJfAAFPehJxEbQ8Op98PYkK8dE=";
+ sha256 = "sha256-8ZcZdQbNxrRy91gxKSoasu8QmdV27T7HeWIRz0bStzY=";
};
patches = [
diff --git a/third_party/nixpkgs/pkgs/servers/mattermost/default.nix b/third_party/nixpkgs/pkgs/servers/mattermost/default.nix
index 14996cecc6..4bf4a41234 100644
--- a/third_party/nixpkgs/pkgs/servers/mattermost/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/mattermost/default.nix
@@ -1,23 +1,24 @@
-{ lib, stdenv, fetchurl, fetchFromGitHub, buildGoPackage, buildEnv }:
+{ lib, stdenv, fetchurl, fetchFromGitHub, buildGoModule, buildEnv }:
let
- version = "5.32.1";
+ version = "5.37.2";
- mattermost-server = buildGoPackage rec {
+ mattermost-server = buildGoModule rec {
pname = "mattermost-server";
inherit version;
src = fetchFromGitHub {
owner = "mattermost";
- repo = "mattermost-server";
+ repo = pname;
rev = "v${version}";
- sha256 = "BssrTfkIxUbXYXIfz9i+5b4rEYSzBim+/riK78m8Bxo=";
+ sha256 = "sha256-kO5wSj/ApPhS2k9a9VjS3Qk55azNZeiFmevAxSkdGe0=";
};
- goPackagePath = "github.com/mattermost/mattermost-server";
+ vendorSha256 = null;
+ doCheck = false;
ldflags = [
- "-X ${goPackagePath}/model.BuildNumber=nixpkgs-${version}"
+ "-s" "-w" "-X github.com/mattermost/mattermost-server/v${lib.versions.major version}/model.BuildNumber=${version}"
];
};
@@ -28,7 +29,7 @@ let
src = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
- sha256 = "kRerl3fYRTrotj86AIFSor3GpjhABkCmego1ms9HmkQ=";
+ sha256 = "sha256-BzQVkOPo/f6O2ncQ0taS3cZkglOL+D+zBcfNYrpMgTM=";
};
installPhase = ''
diff --git a/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/promscale.nix b/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/promscale.nix
index 255cc2523e..5940d033de 100644
--- a/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/promscale.nix
+++ b/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/promscale.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "promscale";
- version = "0.6.0";
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = version;
- sha256 = "sha256-2zbvibnmYAUyl7zkwcRgJKP24mid8/IUIUwfy7yaCzM=";
+ sha256 = "sha256-YGT+VaHX6dqYdJz002fGZxRYE3gFqY8Q7VdhtSTPpjU=";
};
vendorSha256 = "sha256-o7vRSCEEqzhruHEnRPuxC1e4NzCl8Br4vvqg0pwGIgA=";
diff --git a/third_party/nixpkgs/pkgs/servers/monitoring/telegraf/default.nix b/third_party/nixpkgs/pkgs/servers/monitoring/telegraf/default.nix
index a830cfe342..918aea2243 100644
--- a/third_party/nixpkgs/pkgs/servers/monitoring/telegraf/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/monitoring/telegraf/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "telegraf";
- version = "1.20.0";
+ version = "1.20.2";
excludedPackages = "test";
@@ -12,10 +12,10 @@ buildGoModule rec {
owner = "influxdata";
repo = "telegraf";
rev = "v${version}";
- sha256 = "sha256-whsPXevnN/Kg09hcjEAeAduLZsYbo7IvUm5z4HodwrQ=";
+ sha256 = "sha256-6XPdqTW5dP5nOfV9fdnXkyzWPYEILEx4AF61u691b6c=";
};
- vendorSha256 = "sha256-VywVlCcdOV/TdXQBa88oU9V8U4EbuYMId4aT4YAY1Wk=";
+ vendorSha256 = "sha256-7Crf2mQy0C7Fw6S7KY3bQj4Cu8GceFxoB7D2Vkv6X9U=";
proxyVendor = true;
ldflags = [
diff --git a/third_party/nixpkgs/pkgs/servers/nosql/eventstore/default.nix b/third_party/nixpkgs/pkgs/servers/nosql/eventstore/default.nix
index 4a6db24bc4..769c45ffc6 100644
--- a/third_party/nixpkgs/pkgs/servers/nosql/eventstore/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/nosql/eventstore/default.nix
@@ -2,13 +2,15 @@
, fetchFromGitHub
, fetchurl
, makeWrapper
-, dotnet-sdk
+, dotnetCorePackages
, mono
, Nuget
}:
let
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+
deps = import ./deps.nix { inherit fetchurl; };
in
diff --git a/third_party/nixpkgs/pkgs/servers/prowlarr/default.nix b/third_party/nixpkgs/pkgs/servers/prowlarr/default.nix
index 511217a48f..9cfc26925c 100644
--- a/third_party/nixpkgs/pkgs/servers/prowlarr/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/prowlarr/default.nix
@@ -38,7 +38,7 @@ in stdenv.mkDerivation rec {
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}/.
- makeWrapper "${dotnetCorePackages.netcore_3_1}/bin/dotnet" $out/bin/Prowlarr \
+ makeWrapper "${dotnetCorePackages.runtime_3_1}/bin/dotnet" $out/bin/Prowlarr \
--add-flags "$out/share/${pname}-${version}/Prowlarr.dll" \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
curl sqlite libmediainfo mono openssl icu ]}
diff --git a/third_party/nixpkgs/pkgs/servers/radarr/default.nix b/third_party/nixpkgs/pkgs/servers/radarr/default.nix
index dd2480de2e..acb3ba82a4 100644
--- a/third_party/nixpkgs/pkgs/servers/radarr/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/radarr/default.nix
@@ -31,7 +31,7 @@ in stdenv.mkDerivation rec {
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}/.
- makeWrapper "${dotnetCorePackages.netcore_3_1}/bin/dotnet" $out/bin/Radarr \
+ makeWrapper "${dotnetCorePackages.runtime_3_1}/bin/dotnet" $out/bin/Radarr \
--add-flags "$out/share/${pname}-${version}/Radarr.dll" \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
curl sqlite libmediainfo mono openssl icu ]}
diff --git a/third_party/nixpkgs/pkgs/servers/roundcube/default.nix b/third_party/nixpkgs/pkgs/servers/roundcube/default.nix
index 0b0b5a0f82..4ae18f7953 100644
--- a/third_party/nixpkgs/pkgs/servers/roundcube/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/roundcube/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "roundcube";
- version = "1.4.11";
+ version = "1.5.0";
src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
- sha256 = "sha256-rHMZBwwwX8LIjHcjYFVi2GBwMHMr7ukxzbQJHPBeabc=";
+ sha256 = "sha256-L9x7FmPl6ZcGv/NAk6pHMdS/IqWMtVWiUg7RveeNASw=";
};
patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
diff --git a/third_party/nixpkgs/pkgs/servers/routinator/Cargo.toml.patch b/third_party/nixpkgs/pkgs/servers/routinator/Cargo.toml.patch
deleted file mode 100644
index 8bda0299bc..0000000000
--- a/third_party/nixpkgs/pkgs/servers/routinator/Cargo.toml.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Cargo.toml b/Cargo.toml
-index 7f07b3b..7d7af0a 100644
---- a/Cargo.toml
-+++ b/Cargo.toml
-@@ -48,7 +48,7 @@ syslog = "5.0.0"
- rustc_version = "0.4.0"
-
- [features]
--default = [ "socks", "ui"]
-+default = [ "socks" ]
- extra-debug = ["rpki/extra-debug"]
- socks = [ "reqwest/socks" ]
- rta = []
diff --git a/third_party/nixpkgs/pkgs/servers/routinator/default.nix b/third_party/nixpkgs/pkgs/servers/routinator/default.nix
index 4f85650b87..aff0499b98 100644
--- a/third_party/nixpkgs/pkgs/servers/routinator/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/routinator/default.nix
@@ -1,7 +1,7 @@
{ lib
-, stdenv
-, fetchFromGitHub
, rustPlatform
+, fetchFromGitHub
+, stdenv
, Security
}:
@@ -16,18 +16,19 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
};
- cargoPatches = [
- ./Cargo.toml.patch
- ];
cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+ cargoBuildFlags = [ "--no-default-features" "--features=socks" ];
+
+ cargoTestFlags = cargoBuildFlags;
+
meta = with lib; {
description = "An RPKI Validator written in Rust";
homepage = "https://github.com/NLnetLabs/routinator";
+ changelog = "https://github.com/NLnetLabs/routinator/blob/v${version}/Changelog.md";
license = licenses.bsd3;
maintainers = with maintainers; [ _0x4A6F ];
- platforms = platforms.all;
};
}
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
index 2766b64534..947e0ff919 100644
--- a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
@@ -11,6 +11,7 @@ in
discourse-ldap-auth = callPackage ./discourse-ldap-auth {};
discourse-math = callPackage ./discourse-math {};
discourse-migratepassword = callPackage ./discourse-migratepassword {};
+ discourse-openid-connect = callPackage ./discourse-openid-connect {};
discourse-solved = callPackage ./discourse-solved {};
discourse-spoiler-alert = callPackage ./discourse-spoiler-alert {};
discourse-yearly-review = callPackage ./discourse-yearly-review {};
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile
new file mode 100644
index 0000000000..7da32ec039
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+source 'https://rubygems.org'
+
+group :development do
+ gem 'rubocop-discourse'
+end
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile.lock b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile.lock
new file mode 100644
index 0000000000..0987b206fa
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/Gemfile.lock
@@ -0,0 +1,37 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ ast (2.4.1)
+ parallel (1.19.2)
+ parser (2.7.2.0)
+ ast (~> 2.4.1)
+ rainbow (3.0.0)
+ regexp_parser (1.8.1)
+ rexml (3.2.5)
+ rubocop (0.93.0)
+ parallel (~> 1.10)
+ parser (>= 2.7.1.5)
+ rainbow (>= 2.2.2, < 4.0)
+ regexp_parser (>= 1.8)
+ rexml
+ rubocop-ast (>= 0.6.0)
+ ruby-progressbar (~> 1.7)
+ unicode-display_width (>= 1.4.0, < 2.0)
+ rubocop-ast (0.7.1)
+ parser (>= 2.7.1.5)
+ rubocop-discourse (2.3.2)
+ rubocop (>= 0.69.0)
+ rubocop-rspec (>= 1.39.0)
+ rubocop-rspec (1.43.2)
+ rubocop (~> 0.87)
+ ruby-progressbar (1.10.1)
+ unicode-display_width (1.7.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ rubocop-discourse
+
+BUNDLED WITH
+ 2.1.4
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
new file mode 100644
index 0000000000..7162aa8a16
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
@@ -0,0 +1,19 @@
+{ lib, mkDiscoursePlugin, fetchFromGitHub }:
+
+mkDiscoursePlugin {
+ name = "discourse-openid-connect";
+ bundlerEnvArgs.gemdir = ./.;
+ src = fetchFromGitHub {
+ owner = "discourse";
+ repo = "discourse-openid-connect";
+ rev = "615038bd65f4fbe4dfdf8444b2f5eb06986b80b8";
+ sha256 = "n8feZkP80iNc+BzTPyKD7kEgFSIkk091eJYuqonN/NU=";
+ };
+ meta = with lib; {
+ homepage = "https://github.com/discourse/discourse-openid-connect";
+ maintainers = with maintainers; [ mkg20001 ];
+ license = licenses.mit;
+ description = "Discourse plugin to integrate Discourse with an openid-connect login provider.";
+ };
+}
+
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/gemset.nix b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/gemset.nix
new file mode 100644
index 0000000000..2a546e7a1c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/gemset.nix
@@ -0,0 +1,127 @@
+{
+ ast = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1l3468czzjmxl93ap40hp7z94yxp4nbag0bxqs789bm30md90m2a";
+ type = "gem";
+ };
+ version = "2.4.1";
+ };
+ parallel = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "17b127xxmm2yqdz146qwbs57046kn0js1h8synv01dwqz2z1kp2l";
+ type = "gem";
+ };
+ version = "1.19.2";
+ };
+ parser = {
+ dependencies = ["ast"];
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1f7gmm60yla325wlnd3qkxs59qm2y0aan8ljpg6k18rwzrrfil6z";
+ type = "gem";
+ };
+ version = "2.7.2.0";
+ };
+ rainbow = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0bb2fpjspydr6x0s8pn1pqkzmxszvkfapv0p4627mywl7ky4zkhk";
+ type = "gem";
+ };
+ version = "3.0.0";
+ };
+ regexp_parser = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0n9d14ppshnx71i3mi1pnm3hwhcbb6m6vsc0b0dqgsab8r2rs96n";
+ type = "gem";
+ };
+ version = "1.8.1";
+ };
+ rexml = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
+ type = "gem";
+ };
+ version = "3.2.5";
+ };
+ rubocop = {
+ dependencies = ["parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1nrv7i81549addig09grw17qkab3l4319dcsf9y7psl7aa76ng3a";
+ type = "gem";
+ };
+ version = "0.93.0";
+ };
+ rubocop-ast = {
+ dependencies = ["parser"];
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "129hgz4swc8n0g01715v7y00k0h4mlzkxh63q7z27q7mjp54rl74";
+ type = "gem";
+ };
+ version = "0.7.1";
+ };
+ rubocop-discourse = {
+ dependencies = ["rubocop" "rubocop-rspec"];
+ groups = ["development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "10l2wwnvd4xccgqsyhxrhc5bw10b7an4awl0v90fw5xf2qdjiflw";
+ type = "gem";
+ };
+ version = "2.3.2";
+ };
+ rubocop-rspec = {
+ dependencies = ["rubocop"];
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1sc0bwdxzfr8byxzwvfyf22lwzqcaa6ca7wzxx31mk7vvy7r7dhl";
+ type = "gem";
+ };
+ version = "1.43.2";
+ };
+ ruby-progressbar = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1k77i0d4wsn23ggdd2msrcwfy0i376cglfqypkk2q77r2l3408zf";
+ type = "gem";
+ };
+ version = "1.10.1";
+ };
+ unicode-display_width = {
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "06i3id27s60141x6fdnjn5rar1cywdwy64ilc59cz937303q3mna";
+ type = "gem";
+ };
+ version = "1.7.0";
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/up-plugin.sh b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/up-plugin.sh
new file mode 100755
index 0000000000..ba103c5f6b
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/discourse/plugins/up-plugin.sh
@@ -0,0 +1,39 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -i bash -p bash curl ruby.devEnv git sqlite libpcap postgresql libxml2 libxslt pkg-config bundix gnumake
+# src https://nixos.wiki/wiki/Packaging/Ruby
+
+# This script should be ran afte rupdating a plugin that has a gemset.nix
+# Usage: ./up-plugin.sh
+# NOTE: Script must be ran directly as ./up-plugin, otherwise the nix-shell won't work
+
+set -exuo pipefail
+
+PLUGIN="$1"
+SELF="$(dirname "$(readlink -f "$0")")"
+
+PL_DIR="$SELF/$PLUGIN"
+TOP="$SELF/../../../../.."
+TMP=$(mktemp -d)
+
+pushd "$TMP"
+
+if cat "$PL_DIR/default.nix" | grep gemdir >/dev/null; then
+ nix-build -A discourse.plugins.$PLUGIN.src "$TOP"
+ if [ -e result/Gemfile ]; then
+ cp result/Gemfile Gemfile
+ if [ -e result/Gemfile.lock ]; then
+ cp result/Gemfile.lock Gemfile.lock
+ fi
+ else
+ echo '# frozen_string_literal: true
+
+source "https://rubygems.org"' > Gemfile
+ cat result/plugin.rb | grep "^gem" >> Gemfile
+ fi
+ if [ ! -e Gemfile.lock ]; then
+ bundle install
+ fi
+ bundix
+ cp Gemfile Gemfile.lock gemset.nix "$PL_DIR"
+fi
+
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/default.nix b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/default.nix
index b7fd374cb6..0d9ac5d192 100644
--- a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/default.nix
@@ -6,12 +6,15 @@
, which
, nodejs
, mkYarnPackage
+, fetchYarnDeps
, python2
, nixosTests
, buildGoModule
}:
let
+ pinData = (builtins.fromJSON (builtins.readFile ./pin.json));
+
# we need a different version than the one already available in nixpkgs
esbuild-hedgedoc = buildGoModule rec {
pname = "esbuild";
@@ -30,19 +33,22 @@ in
mkYarnPackage rec {
pname = "hedgedoc";
- version = "1.9.0";
+ inherit (pinData) version;
src = fetchFromGitHub {
owner = "hedgedoc";
repo = "hedgedoc";
rev = version;
- sha256 = "sha256-hSKQGkI1+68Zf05RhgRKZo47buyobzjhURSZ30/h0PA=";
+ sha256 = pinData.srcHash;
};
nativeBuildInputs = [ which makeWrapper ];
extraBuildInputs = [ python2 esbuild-hedgedoc ];
- yarnNix = ./yarn.nix;
+ offlineCache = fetchYarnDeps {
+ inherit yarnLock;
+ sha256 = pinData.yarnHash;
+ };
# FIXME(@Ma27) on the bump to 1.9.0 I had to patch this file manually:
# I replaced `midi "https://github.com/paulrosen/MIDI.js.git#abcjs"` with
@@ -101,7 +107,10 @@ mkYarnPackage rec {
runHook postDist
'';
- passthru.tests = { inherit (nixosTests) hedgedoc; };
+ passthru = {
+ updateScript = ./update.sh;
+ tests = { inherit (nixosTests) hedgedoc; };
+ };
meta = with lib; {
description = "Realtime collaborative markdown notes on all platforms";
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/pin.json b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/pin.json
new file mode 100644
index 0000000000..a27498808f
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/pin.json
@@ -0,0 +1,5 @@
+{
+ "version": "1.9.0",
+ "srcHash": "hSKQGkI1+68Zf05RhgRKZo47buyobzjhURSZ30/h0PA=",
+ "yarnHash": "0v51jmmbg8fx66ay2glby0gxw07in95igz325p42g5hjd5kankf6"
+}
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/update.sh b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/update.sh
new file mode 100755
index 0000000000..e61101e457
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/update.sh
@@ -0,0 +1,32 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -I nixpkgs=../../../../ -i bash -p nix wget prefetch-yarn-deps nix-prefetch-github
+
+if [ "$#" -gt 1 ] || [[ "$1" == -* ]]; then
+ echo "Regenerates packaging data for the element packages."
+ echo "Usage: $0 [git release tag]"
+ exit 1
+fi
+
+version="$1"
+
+set -euo pipefail
+
+if [ -z "$version" ]; then
+ version="$(wget -O- "https://api.github.com/repos/hedgedoc/hedgedoc/releases?per_page=1" | jq -r '.[0].tag_name')"
+fi
+
+src="https://raw.githubusercontent.com/hedgedoc/hedgedoc/$version"
+wget "$src/package.json" -O package.json
+wget "$src/yarn.lock" -O yarn.lock
+sed 's;midi "https://github\.com/paulrosen/MIDI\.js\.git;midi "git+https://github.com/paulrosen/MIDI.js.git;g' -i yarn.lock
+
+src_hash=$(nix-prefetch-github hedgedoc hedgedoc --rev ${version} | jq -r .sha256)
+yarn_hash=$(prefetch-yarn-deps yarn.lock)
+
+cat > pin.json << EOF
+{
+ "version": "$version",
+ "srcHash": "$src_hash",
+ "yarnHash": "$yarn_hash"
+}
+EOF
diff --git a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/yarn.nix b/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/yarn.nix
deleted file mode 100644
index 9c71c0695f..0000000000
--- a/third_party/nixpkgs/pkgs/servers/web-apps/hedgedoc/yarn.nix
+++ /dev/null
@@ -1,12589 +0,0 @@
-{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec {
- offline_cache = linkFarm "offline" packages;
- packages = [
- {
- name = "_babel_code_frame___code_frame_7.12.11.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.12.11.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz";
- sha1 = "f4ad435aa263db935b8f10f2c552d23fb716a63f";
- };
- }
- {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_code_frame___code_frame_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz";
- sha1 = "23b08d740e83f49c5e59945fbf1b43e80bbf4edb";
- };
- }
- {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- path = fetchurl {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz";
- sha1 = "6654d171b2024f6d8ee151bf2509699919131d48";
- };
- }
- {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- path = fetchurl {
- name = "_babel_highlight___highlight_7.14.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz";
- sha1 = "6861a52f03966405001f6aa534a01a24d99e8cd9";
- };
- }
- {
- name = "_braintree_sanitize_url___sanitize_url_3.1.0.tgz";
- path = fetchurl {
- name = "_braintree_sanitize_url___sanitize_url_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-3.1.0.tgz";
- sha1 = "8ff71d51053cd5ee4981e5a501d80a536244f7fd";
- };
- }
- {
- name = "_dabh_diagnostics___diagnostics_2.0.2.tgz";
- path = fetchurl {
- name = "_dabh_diagnostics___diagnostics_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.2.tgz";
- sha1 = "290d08f7b381b8f94607dc8f471a12c675f9db31";
- };
- }
- {
- name = "_discoveryjs_json_ext___json_ext_0.5.3.tgz";
- path = fetchurl {
- name = "_discoveryjs_json_ext___json_ext_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz";
- sha1 = "90420f9f9c6d3987f176a19a7d8e764271a2f55d";
- };
- }
- {
- name = "_eslint_eslintrc___eslintrc_0.4.3.tgz";
- path = fetchurl {
- name = "_eslint_eslintrc___eslintrc_0.4.3.tgz";
- url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz";
- sha1 = "9e42981ef035beb3dd49add17acb96e8ff6f394c";
- };
- }
- {
- name = "_gar_promisify___promisify_1.1.2.tgz";
- path = fetchurl {
- name = "_gar_promisify___promisify_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz";
- sha1 = "30aa825f11d438671d585bd44e7fd564535fc210";
- };
- }
- {
- name = "_humanwhocodes_config_array___config_array_0.5.0.tgz";
- path = fetchurl {
- name = "_humanwhocodes_config_array___config_array_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz";
- sha1 = "1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9";
- };
- }
- {
- name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz";
- path = fetchurl {
- name = "_humanwhocodes_object_schema___object_schema_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz";
- sha1 = "87de7af9c231826fdd68ac7258f77c429e0e5fcf";
- };
- }
- {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz";
- path = fetchurl {
- name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz";
- sha1 = "7619c2eb21b25483f6d167548b4cfd5a7488c3d5";
- };
- }
- {
- name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz";
- path = fetchurl {
- name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz";
- sha1 = "5bd262af94e9d25bd1e71b05deed44876a222e8b";
- };
- }
- {
- name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz";
- path = fetchurl {
- name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz";
- sha1 = "e95737e8bb6746ddedf69c556953494f196fe69a";
- };
- }
- {
- name = "_npmcli_fs___fs_1.0.0.tgz";
- path = fetchurl {
- name = "_npmcli_fs___fs_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.0.0.tgz";
- sha1 = "589612cfad3a6ea0feafcb901d29c63fd52db09f";
- };
- }
- {
- name = "_npmcli_move_file___move_file_1.1.2.tgz";
- path = fetchurl {
- name = "_npmcli_move_file___move_file_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz";
- sha1 = "1a82c3e372f7cae9253eb66d72543d6b8685c674";
- };
- }
- {
- name = "_passport_next_passport_openid___passport_openid_1.0.0.tgz";
- path = fetchurl {
- name = "_passport_next_passport_openid___passport_openid_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/@passport-next/passport-openid/-/passport-openid-1.0.0.tgz";
- sha1 = "d3b5e067a9aa1388ed172ab7cc02c39b8634283d";
- };
- }
- {
- name = "_passport_next_passport_strategy___passport_strategy_1.1.0.tgz";
- path = fetchurl {
- name = "_passport_next_passport_strategy___passport_strategy_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/@passport-next/passport-strategy/-/passport-strategy-1.1.0.tgz";
- sha1 = "4c0df069e2ec9262791b9ef1e23320c1d73bdb74";
- };
- }
- {
- name = "_tokenizer_token___token_0.3.0.tgz";
- path = fetchurl {
- name = "_tokenizer_token___token_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.3.0.tgz";
- sha1 = "fe98a93fe789247e998c75e74e9c7c63217aa276";
- };
- }
- {
- name = "_trysound_sax___sax_0.2.0.tgz";
- path = fetchurl {
- name = "_trysound_sax___sax_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz";
- sha1 = "cccaab758af56761eb7bf37af6f03f326dd798ad";
- };
- }
- {
- name = "_types_accepts___accepts_1.3.5.tgz";
- path = fetchurl {
- name = "_types_accepts___accepts_1.3.5.tgz";
- url = "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz";
- sha1 = "c34bec115cfc746e04fe5a059df4ce7e7b391575";
- };
- }
- {
- name = "_types_body_parser___body_parser_1.19.1.tgz";
- path = fetchurl {
- name = "_types_body_parser___body_parser_1.19.1.tgz";
- url = "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.1.tgz";
- sha1 = "0c0174c42a7d017b818303d4b5d969cb0b75929c";
- };
- }
- {
- name = "_types_concat_stream___concat_stream_1.6.1.tgz";
- path = fetchurl {
- name = "_types_concat_stream___concat_stream_1.6.1.tgz";
- url = "https://registry.yarnpkg.com/@types/concat-stream/-/concat-stream-1.6.1.tgz";
- sha1 = "24bcfc101ecf68e886aaedce60dfd74b632a1b74";
- };
- }
- {
- name = "_types_connect___connect_3.4.35.tgz";
- path = fetchurl {
- name = "_types_connect___connect_3.4.35.tgz";
- url = "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz";
- sha1 = "5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1";
- };
- }
- {
- name = "_types_content_disposition___content_disposition_0.5.4.tgz";
- path = fetchurl {
- name = "_types_content_disposition___content_disposition_0.5.4.tgz";
- url = "https://registry.yarnpkg.com/@types/content-disposition/-/content-disposition-0.5.4.tgz";
- sha1 = "de48cf01c79c9f1560bcfd8ae43217ab028657f8";
- };
- }
- {
- name = "_types_cookies___cookies_0.7.7.tgz";
- path = fetchurl {
- name = "_types_cookies___cookies_0.7.7.tgz";
- url = "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.7.7.tgz";
- sha1 = "7a92453d1d16389c05a5301eef566f34946cfd81";
- };
- }
- {
- name = "_types_debug___debug_4.1.7.tgz";
- path = fetchurl {
- name = "_types_debug___debug_4.1.7.tgz";
- url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz";
- sha1 = "7cc0ea761509124709b8b2d1090d8f6c17aadb82";
- };
- }
- {
- name = "_types_express_serve_static_core___express_serve_static_core_4.17.24.tgz";
- path = fetchurl {
- name = "_types_express_serve_static_core___express_serve_static_core_4.17.24.tgz";
- url = "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz";
- sha1 = "ea41f93bf7e0d59cd5a76665068ed6aab6815c07";
- };
- }
- {
- name = "_types_express___express_4.17.13.tgz";
- path = fetchurl {
- name = "_types_express___express_4.17.13.tgz";
- url = "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz";
- sha1 = "a76e2995728999bab51a33fabce1d705a3709034";
- };
- }
- {
- name = "_types_geojson___geojson_7946.0.8.tgz";
- path = fetchurl {
- name = "_types_geojson___geojson_7946.0.8.tgz";
- url = "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.8.tgz";
- sha1 = "30744afdb385e2945e22f3b033f897f76b1f12ca";
- };
- }
- {
- name = "_types_hast___hast_2.3.4.tgz";
- path = fetchurl {
- name = "_types_hast___hast_2.3.4.tgz";
- url = "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz";
- sha1 = "8aa5ef92c117d20d974a82bdfb6a648b08c0bafc";
- };
- }
- {
- name = "_types_html_minifier_terser___html_minifier_terser_5.1.2.tgz";
- path = fetchurl {
- name = "_types_html_minifier_terser___html_minifier_terser_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz";
- sha1 = "693b316ad323ea97eed6b38ed1a3cc02b1672b57";
- };
- }
- {
- name = "_types_http_assert___http_assert_1.5.3.tgz";
- path = fetchurl {
- name = "_types_http_assert___http_assert_1.5.3.tgz";
- url = "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.3.tgz";
- sha1 = "ef8e3d1a8d46c387f04ab0f2e8ab8cb0c5078661";
- };
- }
- {
- name = "_types_http_errors___http_errors_1.8.1.tgz";
- path = fetchurl {
- name = "_types_http_errors___http_errors_1.8.1.tgz";
- url = "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.1.tgz";
- sha1 = "e81ad28a60bee0328c6d2384e029aec626f1ae67";
- };
- }
- {
- name = "_types_is_empty___is_empty_1.2.0.tgz";
- path = fetchurl {
- name = "_types_is_empty___is_empty_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@types/is-empty/-/is-empty-1.2.0.tgz";
- sha1 = "16bc578060c9b0b6953339eea906c255a375bf86";
- };
- }
- {
- name = "_types_js_yaml___js_yaml_4.0.3.tgz";
- path = fetchurl {
- name = "_types_js_yaml___js_yaml_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.3.tgz";
- sha1 = "9f33cd6fbf0d5ec575dc8c8fc69c7fec1b4eb200";
- };
- }
- {
- name = "_types_json_schema___json_schema_7.0.9.tgz";
- path = fetchurl {
- name = "_types_json_schema___json_schema_7.0.9.tgz";
- url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz";
- sha1 = "97edc9037ea0c38585320b28964dde3b39e4660d";
- };
- }
- {
- name = "_types_json5___json5_0.0.29.tgz";
- path = fetchurl {
- name = "_types_json5___json5_0.0.29.tgz";
- url = "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz";
- sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee";
- };
- }
- {
- name = "_types_keygrip___keygrip_1.0.2.tgz";
- path = fetchurl {
- name = "_types_keygrip___keygrip_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz";
- sha1 = "513abfd256d7ad0bf1ee1873606317b33b1b2a72";
- };
- }
- {
- name = "_types_koa_compose___koa_compose_3.2.5.tgz";
- path = fetchurl {
- name = "_types_koa_compose___koa_compose_3.2.5.tgz";
- url = "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz";
- sha1 = "85eb2e80ac50be95f37ccf8c407c09bbe3468e9d";
- };
- }
- {
- name = "_types_koa___koa_2.13.4.tgz";
- path = fetchurl {
- name = "_types_koa___koa_2.13.4.tgz";
- url = "https://registry.yarnpkg.com/@types/koa/-/koa-2.13.4.tgz";
- sha1 = "10620b3f24a8027ef5cbae88b393d1b31205726b";
- };
- }
- {
- name = "_types_ldapjs___ldapjs_1.0.11.tgz";
- path = fetchurl {
- name = "_types_ldapjs___ldapjs_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.11.tgz";
- sha1 = "34077176af2b06186bd54e4a38ceb6e852387fa4";
- };
- }
- {
- name = "_types_mdast___mdast_3.0.10.tgz";
- path = fetchurl {
- name = "_types_mdast___mdast_3.0.10.tgz";
- url = "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz";
- sha1 = "4724244a82a4598884cbbe9bcfd73dff927ee8af";
- };
- }
- {
- name = "_types_mime___mime_1.3.2.tgz";
- path = fetchurl {
- name = "_types_mime___mime_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz";
- sha1 = "93e25bf9ee75fe0fd80b594bc4feb0e862111b5a";
- };
- }
- {
- name = "_types_ms___ms_0.7.31.tgz";
- path = fetchurl {
- name = "_types_ms___ms_0.7.31.tgz";
- url = "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz";
- sha1 = "31b7ca6407128a3d2bbc27fe2d21b345397f6197";
- };
- }
- {
- name = "_types_node___node_16.9.1.tgz";
- path = fetchurl {
- name = "_types_node___node_16.9.1.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz";
- sha1 = "0611b37db4246c937feef529ddcc018cf8e35708";
- };
- }
- {
- name = "_types_node___node_14.17.15.tgz";
- path = fetchurl {
- name = "_types_node___node_14.17.15.tgz";
- url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.15.tgz";
- sha1 = "d5ebfb62a69074ebb85cbe0529ad917bb8f2bae8";
- };
- }
- {
- name = "_types_parse5___parse5_6.0.1.tgz";
- path = fetchurl {
- name = "_types_parse5___parse5_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/@types/parse5/-/parse5-6.0.1.tgz";
- sha1 = "f8ae4fbcd2b9ba4ff934698e28778961f9cb22ca";
- };
- }
- {
- name = "_types_qs___qs_6.9.7.tgz";
- path = fetchurl {
- name = "_types_qs___qs_6.9.7.tgz";
- url = "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz";
- sha1 = "63bb7d067db107cc1e457c303bc25d511febf6cb";
- };
- }
- {
- name = "_types_range_parser___range_parser_1.2.4.tgz";
- path = fetchurl {
- name = "_types_range_parser___range_parser_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz";
- sha1 = "cd667bcfdd025213aafb7ca5915a932590acdcdc";
- };
- }
- {
- name = "_types_serve_static___serve_static_1.13.10.tgz";
- path = fetchurl {
- name = "_types_serve_static___serve_static_1.13.10.tgz";
- url = "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.10.tgz";
- sha1 = "f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9";
- };
- }
- {
- name = "_types_source_list_map___source_list_map_0.1.2.tgz";
- path = fetchurl {
- name = "_types_source_list_map___source_list_map_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz";
- sha1 = "0078836063ffaf17412349bba364087e0ac02ec9";
- };
- }
- {
- name = "_types_supports_color___supports_color_8.1.1.tgz";
- path = fetchurl {
- name = "_types_supports_color___supports_color_8.1.1.tgz";
- url = "https://registry.yarnpkg.com/@types/supports-color/-/supports-color-8.1.1.tgz";
- sha1 = "1b44b1b096479273adf7f93c75fc4ecc40a61ee4";
- };
- }
- {
- name = "_types_tapable___tapable_1.0.8.tgz";
- path = fetchurl {
- name = "_types_tapable___tapable_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz";
- sha1 = "b94a4391c85666c7b73299fd3ad79d4faa435310";
- };
- }
- {
- name = "_types_text_table___text_table_0.2.2.tgz";
- path = fetchurl {
- name = "_types_text_table___text_table_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/@types/text-table/-/text-table-0.2.2.tgz";
- sha1 = "774c90cfcfbc8b4b0ebb00fecbe861dc8b1e8e26";
- };
- }
- {
- name = "_types_uglify_js___uglify_js_3.13.1.tgz";
- path = fetchurl {
- name = "_types_uglify_js___uglify_js_3.13.1.tgz";
- url = "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.1.tgz";
- sha1 = "5e889e9e81e94245c75b6450600e1c5ea2878aea";
- };
- }
- {
- name = "_types_unist___unist_2.0.6.tgz";
- path = fetchurl {
- name = "_types_unist___unist_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz";
- sha1 = "250a7b16c3b91f672a24552ec64678eeb1d3a08d";
- };
- }
- {
- name = "_types_webpack_sources___webpack_sources_3.2.0.tgz";
- path = fetchurl {
- name = "_types_webpack_sources___webpack_sources_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz";
- sha1 = "16d759ba096c289034b26553d2df1bf45248d38b";
- };
- }
- {
- name = "_types_webpack___webpack_4.41.31.tgz";
- path = fetchurl {
- name = "_types_webpack___webpack_4.41.31.tgz";
- url = "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.31.tgz";
- sha1 = "c35f252a3559ddf9c85c0d8b0b42019025e581aa";
- };
- }
- {
- name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz";
- path = fetchurl {
- name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz";
- sha1 = "aa58042711d6e3275dd37dc597e5d31e8c290a44";
- };
- }
- {
- name = "_webassemblyjs_ast___ast_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_ast___ast_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz";
- sha1 = "bd850604b4042459a5a41cd7d338cbed695ed964";
- };
- }
- {
- name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz";
- sha1 = "3c3d3b271bddfc84deb00f71344438311d52ffb4";
- };
- }
- {
- name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz";
- sha1 = "203f676e333b96c9da2eeab3ccef33c45928b6a2";
- };
- }
- {
- name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz";
- sha1 = "a1442d269c5feb23fcbc9ef759dac3547f29de00";
- };
- }
- {
- name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz";
- sha1 = "647f8892cd2043a82ac0c8c5e75c36f1d9159f27";
- };
- }
- {
- name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz";
- sha1 = "c05256b71244214671f4b08ec108ad63b70eddb8";
- };
- }
- {
- name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz";
- sha1 = "25d8884b76839871a08a6c6f806c3979ef712f07";
- };
- }
- {
- name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz";
- sha1 = "4fed8beac9b8c14f8c58b70d124d549dd1fe5790";
- };
- }
- {
- name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz";
- sha1 = "5a4138d5a6292ba18b04c5ae49717e4167965346";
- };
- }
- {
- name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz";
- sha1 = "15c7a0fbaae83fb26143bbacf6d6df1702ad39e4";
- };
- }
- {
- name = "_webassemblyjs_leb128___leb128_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_leb128___leb128_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz";
- sha1 = "f19ca0b76a6dc55623a09cffa769e838fa1e1c95";
- };
- }
- {
- name = "_webassemblyjs_utf8___utf8_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_utf8___utf8_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz";
- sha1 = "04d33b636f78e6a6813227e82402f7637b6229ab";
- };
- }
- {
- name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz";
- sha1 = "3fe6d79d3f0f922183aa86002c42dd256cfee9cf";
- };
- }
- {
- name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz";
- sha1 = "50bc70ec68ded8e2763b01a1418bf43491a7a49c";
- };
- }
- {
- name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz";
- sha1 = "2211181e5b31326443cc8112eb9f0b9028721a61";
- };
- }
- {
- name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz";
- sha1 = "9d48e44826df4a6598294aa6c87469d642fff65e";
- };
- }
- {
- name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz";
- sha1 = "3031115d79ac5bd261556cecc3fa90a3ef451914";
- };
- }
- {
- name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz";
- path = fetchurl {
- name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz";
- url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz";
- sha1 = "4935d54c85fef637b00ce9f52377451d00d47899";
- };
- }
- {
- name = "_webpack_cli_configtest___configtest_1.0.4.tgz";
- path = fetchurl {
- name = "_webpack_cli_configtest___configtest_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.4.tgz";
- sha1 = "f03ce6311c0883a83d04569e2c03c6238316d2aa";
- };
- }
- {
- name = "_webpack_cli_info___info_1.3.0.tgz";
- path = fetchurl {
- name = "_webpack_cli_info___info_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.3.0.tgz";
- sha1 = "9d78a31101a960997a4acd41ffd9b9300627fe2b";
- };
- }
- {
- name = "_webpack_cli_serve___serve_1.5.2.tgz";
- path = fetchurl {
- name = "_webpack_cli_serve___serve_1.5.2.tgz";
- url = "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.5.2.tgz";
- sha1 = "ea584b637ff63c5a477f6f21604b5a205b72c9ec";
- };
- }
- {
- name = "_xmldom_xmldom___xmldom_0.7.4.tgz";
- path = fetchurl {
- name = "_xmldom_xmldom___xmldom_0.7.4.tgz";
- url = "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.4.tgz";
- sha1 = "93b2f9486c88b6464e97f76c9ab49b0a548fbe57";
- };
- }
- {
- name = "_xtuc_ieee754___ieee754_1.2.0.tgz";
- path = fetchurl {
- name = "_xtuc_ieee754___ieee754_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
- sha1 = "eef014a3145ae477a1cbc00cd1e552336dceb790";
- };
- }
- {
- name = "_xtuc_long___long_4.2.2.tgz";
- path = fetchurl {
- name = "_xtuc_long___long_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz";
- sha1 = "d291c6a4e97989b5c61d9acf396ae4fe133a718d";
- };
- }
- {
- name = "_zxing_text_encoding___text_encoding_0.9.0.tgz";
- path = fetchurl {
- name = "_zxing_text_encoding___text_encoding_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/@zxing/text-encoding/-/text-encoding-0.9.0.tgz";
- sha1 = "fb50ffabc6c7c66a0c96b4c03e3d9be74864b70b";
- };
- }
- {
- name = "Idle.js";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/shawnmclean/Idle.js";
- rev = "2b57cc6e49d177b7ddce0cca00ef5cbe07453541";
- sha256 = "194m65wax0q2iqc1237iix6gsyyzjjmbifk4lm0bni7x2qa5alrx";
- };
- in
- runCommand "Idle.js" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "JSV___JSV_4.0.2.tgz";
- path = fetchurl {
- name = "JSV___JSV_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz";
- sha1 = "d077f6825571f82132f9dffaed587b4029feff57";
- };
- }
- {
- name = "abbrev___abbrev_1.1.1.tgz";
- path = fetchurl {
- name = "abbrev___abbrev_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz";
- sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8";
- };
- }
- {
- name = "abcjs___abcjs_5.10.3.tgz";
- path = fetchurl {
- name = "abcjs___abcjs_5.10.3.tgz";
- url = "https://registry.yarnpkg.com/abcjs/-/abcjs-5.10.3.tgz";
- sha1 = "294702140ec1caa292859ba9d2af0452f7e9e046";
- };
- }
- {
- name = "abcjs___abcjs_5.11.0.tgz";
- path = fetchurl {
- name = "abcjs___abcjs_5.11.0.tgz";
- url = "https://registry.yarnpkg.com/abcjs/-/abcjs-5.11.0.tgz";
- sha1 = "397592ea6a56948aee64a8364f9a7a589e254300";
- };
- }
- {
- name = "abcjs___abcjs_5.12.0.tgz";
- path = fetchurl {
- name = "abcjs___abcjs_5.12.0.tgz";
- url = "https://registry.yarnpkg.com/abcjs/-/abcjs-5.12.0.tgz";
- sha1 = "06fec076d570821309b0a12598cd356cd589eb08";
- };
- }
- {
- name = "abstract_logging___abstract_logging_2.0.1.tgz";
- path = fetchurl {
- name = "abstract_logging___abstract_logging_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/abstract-logging/-/abstract-logging-2.0.1.tgz";
- sha1 = "6b0c371df212db7129b57d2e7fcf282b8bf1c839";
- };
- }
- {
- name = "accepts___accepts_1.3.7.tgz";
- path = fetchurl {
- name = "accepts___accepts_1.3.7.tgz";
- url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz";
- sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd";
- };
- }
- {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- path = fetchurl {
- name = "acorn_jsx___acorn_jsx_5.3.2.tgz";
- url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz";
- sha1 = "7ed5bb55908b3b2f1bc55c6af1653bada7f07937";
- };
- }
- {
- name = "acorn___acorn_6.4.2.tgz";
- path = fetchurl {
- name = "acorn___acorn_6.4.2.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz";
- sha1 = "35866fd710528e92de10cf06016498e47e39e1e6";
- };
- }
- {
- name = "acorn___acorn_7.4.1.tgz";
- path = fetchurl {
- name = "acorn___acorn_7.4.1.tgz";
- url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz";
- sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa";
- };
- }
- {
- name = "after___after_0.8.2.tgz";
- path = fetchurl {
- name = "after___after_0.8.2.tgz";
- url = "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz";
- sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
- };
- }
- {
- name = "aggregate_error___aggregate_error_3.1.0.tgz";
- path = fetchurl {
- name = "aggregate_error___aggregate_error_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz";
- sha1 = "92670ff50f5359bdb7a3e0d40d0ec30c5737687a";
- };
- }
- {
- name = "ajv_errors___ajv_errors_1.0.1.tgz";
- path = fetchurl {
- name = "ajv_errors___ajv_errors_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz";
- sha1 = "f35986aceb91afadec4102fbd85014950cefa64d";
- };
- }
- {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- path = fetchurl {
- name = "ajv_keywords___ajv_keywords_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz";
- sha1 = "31f29da5ab6e00d1c2d329acf7b5929614d5014d";
- };
- }
- {
- name = "ajv___ajv_6.12.6.tgz";
- path = fetchurl {
- name = "ajv___ajv_6.12.6.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz";
- sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4";
- };
- }
- {
- name = "ajv___ajv_8.6.3.tgz";
- path = fetchurl {
- name = "ajv___ajv_8.6.3.tgz";
- url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz";
- sha1 = "11a66527761dc3e9a3845ea775d2d3c0414e8764";
- };
- }
- {
- name = "alphanum_sort___alphanum_sort_1.0.2.tgz";
- path = fetchurl {
- name = "alphanum_sort___alphanum_sort_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
- sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
- };
- }
- {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- path = fetchurl {
- name = "ansi_colors___ansi_colors_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348";
- };
- }
- {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- }
- {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- }
- {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
- sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
- };
- }
- {
- name = "ansi_regex___ansi_regex_6.0.1.tgz";
- path = fetchurl {
- name = "ansi_regex___ansi_regex_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz";
- sha1 = "3183e38fae9a65d7cb5e53945cd5897d0260a06a";
- };
- }
- {
- name = "ansi_styles___ansi_styles_2.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
- };
- }
- {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d";
- };
- }
- {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz";
- sha1 = "edd803628ae71c04c85ae7a0906edad34b648937";
- };
- }
- {
- name = "ansi_styles___ansi_styles_1.0.0.tgz";
- path = fetchurl {
- name = "ansi_styles___ansi_styles_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz";
- sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178";
- };
- }
- {
- name = "any_promise___any_promise_1.3.0.tgz";
- path = fetchurl {
- name = "any_promise___any_promise_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz";
- sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
- };
- }
- {
- name = "anymatch___anymatch_1.3.2.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz";
- sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a";
- };
- }
- {
- name = "anymatch___anymatch_2.0.0.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz";
- sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb";
- };
- }
- {
- name = "anymatch___anymatch_3.1.2.tgz";
- path = fetchurl {
- name = "anymatch___anymatch_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz";
- sha1 = "c0557c096af32f106198f4f4e2a383537e378716";
- };
- }
- {
- name = "aproba___aproba_1.2.0.tgz";
- path = fetchurl {
- name = "aproba___aproba_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz";
- sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a";
- };
- }
- {
- name = "archiver_utils___archiver_utils_2.1.0.tgz";
- path = fetchurl {
- name = "archiver_utils___archiver_utils_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-2.1.0.tgz";
- sha1 = "e8a460e94b693c3e3da182a098ca6285ba9249e2";
- };
- }
- {
- name = "archiver___archiver_5.3.0.tgz";
- path = fetchurl {
- name = "archiver___archiver_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz";
- sha1 = "dd3e097624481741df626267564f7dd8640a45ba";
- };
- }
- {
- name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz";
- path = fetchurl {
- name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz";
- sha1 = "b15474a932adab4ff8a50d9adfa7e4e926f21146";
- };
- }
- {
- name = "argparse___argparse_1.0.10.tgz";
- path = fetchurl {
- name = "argparse___argparse_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz";
- sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
- };
- }
- {
- name = "argparse___argparse_2.0.1.tgz";
- path = fetchurl {
- name = "argparse___argparse_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz";
- sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38";
- };
- }
- {
- name = "arr_diff___arr_diff_2.0.0.tgz";
- path = fetchurl {
- name = "arr_diff___arr_diff_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz";
- sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
- };
- }
- {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- path = fetchurl {
- name = "arr_diff___arr_diff_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
- };
- }
- {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- path = fetchurl {
- name = "arr_flatten___arr_flatten_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
- };
- }
- {
- name = "arr_union___arr_union_3.1.0.tgz";
- path = fetchurl {
- name = "arr_union___arr_union_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
- };
- }
- {
- name = "array_flatten___array_flatten_1.1.1.tgz";
- path = fetchurl {
- name = "array_flatten___array_flatten_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz";
- sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
- };
- }
- {
- name = "array_includes___array_includes_3.1.3.tgz";
- path = fetchurl {
- name = "array_includes___array_includes_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz";
- sha1 = "c7f619b382ad2afaf5326cddfdc0afc61af7690a";
- };
- }
- {
- name = "array_union___array_union_2.1.0.tgz";
- path = fetchurl {
- name = "array_union___array_union_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz";
- sha1 = "b798420adbeb1de828d84acd8a2e23d3efe85e8d";
- };
- }
- {
- name = "array_unique___array_unique_0.2.1.tgz";
- path = fetchurl {
- name = "array_unique___array_unique_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz";
- sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
- };
- }
- {
- name = "array_unique___array_unique_0.3.2.tgz";
- path = fetchurl {
- name = "array_unique___array_unique_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
- };
- }
- {
- name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz";
- path = fetchurl {
- name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz";
- sha1 = "6ef638b43312bd401b4c6199fdec7e2dc9e9a123";
- };
- }
- {
- name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz";
- path = fetchurl {
- name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz";
- url = "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz";
- sha1 = "3bbc4275dd584cc1b10809b89d4e8b63a69e7675";
- };
- }
- {
- name = "asn1.js___asn1.js_5.4.1.tgz";
- path = fetchurl {
- name = "asn1.js___asn1.js_5.4.1.tgz";
- url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz";
- sha1 = "11a980b84ebb91781ce35b0fdc2ee294e3783f07";
- };
- }
- {
- name = "asn1___asn1_0.2.4.tgz";
- path = fetchurl {
- name = "asn1___asn1_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz";
- sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136";
- };
- }
- {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- path = fetchurl {
- name = "assert_plus___assert_plus_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- }
- {
- name = "assert___assert_1.5.0.tgz";
- path = fetchurl {
- name = "assert___assert_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz";
- sha1 = "55c109aaf6e0aefdb3dc4b71240c70bf574b18eb";
- };
- }
- {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- path = fetchurl {
- name = "assign_symbols___assign_symbols_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
- };
- }
- {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- path = fetchurl {
- name = "astral_regex___astral_regex_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz";
- sha1 = "483143c567aeed4785759c0865786dc77d7d2e31";
- };
- }
- {
- name = "async_each___async_each_1.0.3.tgz";
- path = fetchurl {
- name = "async_each___async_each_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz";
- sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf";
- };
- }
- {
- name = "async___async_0.9.2.tgz";
- path = fetchurl {
- name = "async___async_0.9.2.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- }
- {
- name = "async___async_1.5.2.tgz";
- path = fetchurl {
- name = "async___async_1.5.2.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz";
- sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
- };
- }
- {
- name = "async___async_3.2.1.tgz";
- path = fetchurl {
- name = "async___async_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-3.2.1.tgz";
- sha1 = "d3274ec66d107a47476a4c49136aacdb00665fc8";
- };
- }
- {
- name = "asynckit___asynckit_0.4.0.tgz";
- path = fetchurl {
- name = "asynckit___asynckit_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- }
- {
- name = "atob___atob_2.1.2.tgz";
- path = fetchurl {
- name = "atob___atob_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz";
- sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9";
- };
- }
- {
- name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz";
- path = fetchurl {
- name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz";
- sha1 = "92f95616501069d07d10edb2fc37d3e1c65123b7";
- };
- }
- {
- name = "aws_sdk___aws_sdk_2.988.0.tgz";
- path = fetchurl {
- name = "aws_sdk___aws_sdk_2.988.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.988.0.tgz";
- sha1 = "46538de14c4c5cd3d7718badedffd31471a0c0e9";
- };
- }
- {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- path = fetchurl {
- name = "aws_sign2___aws_sign2_0.7.0.tgz";
- url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- }
- {
- name = "aws4___aws4_1.11.0.tgz";
- path = fetchurl {
- name = "aws4___aws4_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz";
- sha1 = "d61f46d83b2519250e2784daf5b09479a8b41c59";
- };
- }
- {
- name = "axios___axios_0.21.4.tgz";
- path = fetchurl {
- name = "axios___axios_0.21.4.tgz";
- url = "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz";
- sha1 = "c67b90dc0568e5c1cf2b0b858c43ba28e2eda575";
- };
- }
- {
- name = "azure_storage___azure_storage_2.10.4.tgz";
- path = fetchurl {
- name = "azure_storage___azure_storage_2.10.4.tgz";
- url = "https://registry.yarnpkg.com/azure-storage/-/azure-storage-2.10.4.tgz";
- sha1 = "c481d207eabc05f57f019b209f7faa8737435104";
- };
- }
- {
- name = "babel_cli___babel_cli_6.26.0.tgz";
- path = fetchurl {
- name = "babel_cli___babel_cli_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz";
- sha1 = "502ab54874d7db88ad00b887a06383ce03d002f1";
- };
- }
- {
- name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
- path = fetchurl {
- name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
- sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
- };
- }
- {
- name = "babel_core___babel_core_6.26.3.tgz";
- path = fetchurl {
- name = "babel_core___babel_core_6.26.3.tgz";
- url = "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz";
- sha1 = "b2e2f09e342d0f0c88e2f02e067794125e75c207";
- };
- }
- {
- name = "babel_generator___babel_generator_6.26.1.tgz";
- path = fetchurl {
- name = "babel_generator___babel_generator_6.26.1.tgz";
- url = "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz";
- sha1 = "1844408d3b8f0d35a404ea7ac180f087a601bd90";
- };
- }
- {
- name = "babel_helper_builder_binary_assignment_operator_visitor___babel_helper_builder_binary_assignment_operator_visitor_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_builder_binary_assignment_operator_visitor___babel_helper_builder_binary_assignment_operator_visitor_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz";
- sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664";
- };
- }
- {
- name = "babel_helper_call_delegate___babel_helper_call_delegate_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_call_delegate___babel_helper_call_delegate_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz";
- sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d";
- };
- }
- {
- name = "babel_helper_define_map___babel_helper_define_map_6.26.0.tgz";
- path = fetchurl {
- name = "babel_helper_define_map___babel_helper_define_map_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz";
- sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f";
- };
- }
- {
- name = "babel_helper_explode_assignable_expression___babel_helper_explode_assignable_expression_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_explode_assignable_expression___babel_helper_explode_assignable_expression_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz";
- sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa";
- };
- }
- {
- name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
- sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
- };
- }
- {
- name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
- sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
- };
- }
- {
- name = "babel_helper_hoist_variables___babel_helper_hoist_variables_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_hoist_variables___babel_helper_hoist_variables_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz";
- sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76";
- };
- }
- {
- name = "babel_helper_optimise_call_expression___babel_helper_optimise_call_expression_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_optimise_call_expression___babel_helper_optimise_call_expression_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz";
- sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257";
- };
- }
- {
- name = "babel_helper_regex___babel_helper_regex_6.26.0.tgz";
- path = fetchurl {
- name = "babel_helper_regex___babel_helper_regex_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz";
- sha1 = "325c59f902f82f24b74faceed0363954f6495e72";
- };
- }
- {
- name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
- sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
- };
- }
- {
- name = "babel_helper_replace_supers___babel_helper_replace_supers_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helper_replace_supers___babel_helper_replace_supers_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz";
- sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a";
- };
- }
- {
- name = "babel_helpers___babel_helpers_6.24.1.tgz";
- path = fetchurl {
- name = "babel_helpers___babel_helpers_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz";
- sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
- };
- }
- {
- name = "babel_loader___babel_loader_7.1.5.tgz";
- path = fetchurl {
- name = "babel_loader___babel_loader_7.1.5.tgz";
- url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz";
- sha1 = "e3ee0cd7394aa557e013b02d3e492bfd07aa6d68";
- };
- }
- {
- name = "babel_messages___babel_messages_6.23.0.tgz";
- path = fetchurl {
- name = "babel_messages___babel_messages_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz";
- sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
- };
- }
- {
- name = "babel_plugin_check_es2015_constants___babel_plugin_check_es2015_constants_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_check_es2015_constants___babel_plugin_check_es2015_constants_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz";
- sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a";
- };
- }
- {
- name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz";
- path = fetchurl {
- name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
- sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
- };
- }
- {
- name = "babel_plugin_syntax_exponentiation_operator___babel_plugin_syntax_exponentiation_operator_6.13.0.tgz";
- path = fetchurl {
- name = "babel_plugin_syntax_exponentiation_operator___babel_plugin_syntax_exponentiation_operator_6.13.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz";
- sha1 = "9ee7e8337290da95288201a6a57f4170317830de";
- };
- }
- {
- name = "babel_plugin_syntax_trailing_function_commas___babel_plugin_syntax_trailing_function_commas_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_syntax_trailing_function_commas___babel_plugin_syntax_trailing_function_commas_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz";
- sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3";
- };
- }
- {
- name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
- sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
- };
- }
- {
- name = "babel_plugin_transform_es2015_arrow_functions___babel_plugin_transform_es2015_arrow_functions_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_arrow_functions___babel_plugin_transform_es2015_arrow_functions_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz";
- sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221";
- };
- }
- {
- name = "babel_plugin_transform_es2015_block_scoped_functions___babel_plugin_transform_es2015_block_scoped_functions_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_block_scoped_functions___babel_plugin_transform_es2015_block_scoped_functions_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz";
- sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141";
- };
- }
- {
- name = "babel_plugin_transform_es2015_block_scoping___babel_plugin_transform_es2015_block_scoping_6.26.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_block_scoping___babel_plugin_transform_es2015_block_scoping_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz";
- sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f";
- };
- }
- {
- name = "babel_plugin_transform_es2015_classes___babel_plugin_transform_es2015_classes_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_classes___babel_plugin_transform_es2015_classes_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz";
- sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db";
- };
- }
- {
- name = "babel_plugin_transform_es2015_computed_properties___babel_plugin_transform_es2015_computed_properties_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_computed_properties___babel_plugin_transform_es2015_computed_properties_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz";
- sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3";
- };
- }
- {
- name = "babel_plugin_transform_es2015_destructuring___babel_plugin_transform_es2015_destructuring_6.23.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_destructuring___babel_plugin_transform_es2015_destructuring_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
- sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
- };
- }
- {
- name = "babel_plugin_transform_es2015_duplicate_keys___babel_plugin_transform_es2015_duplicate_keys_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_duplicate_keys___babel_plugin_transform_es2015_duplicate_keys_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz";
- sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e";
- };
- }
- {
- name = "babel_plugin_transform_es2015_for_of___babel_plugin_transform_es2015_for_of_6.23.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_for_of___babel_plugin_transform_es2015_for_of_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz";
- sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691";
- };
- }
- {
- name = "babel_plugin_transform_es2015_function_name___babel_plugin_transform_es2015_function_name_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_function_name___babel_plugin_transform_es2015_function_name_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz";
- sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b";
- };
- }
- {
- name = "babel_plugin_transform_es2015_literals___babel_plugin_transform_es2015_literals_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_literals___babel_plugin_transform_es2015_literals_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz";
- sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e";
- };
- }
- {
- name = "babel_plugin_transform_es2015_modules_amd___babel_plugin_transform_es2015_modules_amd_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_modules_amd___babel_plugin_transform_es2015_modules_amd_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz";
- sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154";
- };
- }
- {
- name = "babel_plugin_transform_es2015_modules_commonjs___babel_plugin_transform_es2015_modules_commonjs_6.26.2.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_modules_commonjs___babel_plugin_transform_es2015_modules_commonjs_6.26.2.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz";
- sha1 = "58a793863a9e7ca870bdc5a881117ffac27db6f3";
- };
- }
- {
- name = "babel_plugin_transform_es2015_modules_systemjs___babel_plugin_transform_es2015_modules_systemjs_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_modules_systemjs___babel_plugin_transform_es2015_modules_systemjs_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz";
- sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23";
- };
- }
- {
- name = "babel_plugin_transform_es2015_modules_umd___babel_plugin_transform_es2015_modules_umd_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_modules_umd___babel_plugin_transform_es2015_modules_umd_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz";
- sha1 = "ac997e6285cd18ed6176adb607d602344ad38468";
- };
- }
- {
- name = "babel_plugin_transform_es2015_object_super___babel_plugin_transform_es2015_object_super_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_object_super___babel_plugin_transform_es2015_object_super_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz";
- sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d";
- };
- }
- {
- name = "babel_plugin_transform_es2015_parameters___babel_plugin_transform_es2015_parameters_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_parameters___babel_plugin_transform_es2015_parameters_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz";
- sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b";
- };
- }
- {
- name = "babel_plugin_transform_es2015_shorthand_properties___babel_plugin_transform_es2015_shorthand_properties_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_shorthand_properties___babel_plugin_transform_es2015_shorthand_properties_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz";
- sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0";
- };
- }
- {
- name = "babel_plugin_transform_es2015_spread___babel_plugin_transform_es2015_spread_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_spread___babel_plugin_transform_es2015_spread_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz";
- sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1";
- };
- }
- {
- name = "babel_plugin_transform_es2015_sticky_regex___babel_plugin_transform_es2015_sticky_regex_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_sticky_regex___babel_plugin_transform_es2015_sticky_regex_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz";
- sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc";
- };
- }
- {
- name = "babel_plugin_transform_es2015_template_literals___babel_plugin_transform_es2015_template_literals_6.22.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_template_literals___babel_plugin_transform_es2015_template_literals_6.22.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz";
- sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d";
- };
- }
- {
- name = "babel_plugin_transform_es2015_typeof_symbol___babel_plugin_transform_es2015_typeof_symbol_6.23.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_typeof_symbol___babel_plugin_transform_es2015_typeof_symbol_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz";
- sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372";
- };
- }
- {
- name = "babel_plugin_transform_es2015_unicode_regex___babel_plugin_transform_es2015_unicode_regex_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_es2015_unicode_regex___babel_plugin_transform_es2015_unicode_regex_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz";
- sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9";
- };
- }
- {
- name = "babel_plugin_transform_exponentiation_operator___babel_plugin_transform_exponentiation_operator_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_exponentiation_operator___babel_plugin_transform_exponentiation_operator_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz";
- sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e";
- };
- }
- {
- name = "babel_plugin_transform_regenerator___babel_plugin_transform_regenerator_6.26.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_regenerator___babel_plugin_transform_regenerator_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz";
- sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f";
- };
- }
- {
- name = "babel_plugin_transform_runtime___babel_plugin_transform_runtime_6.23.0.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_runtime___babel_plugin_transform_runtime_6.23.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz";
- sha1 = "88490d446502ea9b8e7efb0fe09ec4d99479b1ee";
- };
- }
- {
- name = "babel_plugin_transform_strict_mode___babel_plugin_transform_strict_mode_6.24.1.tgz";
- path = fetchurl {
- name = "babel_plugin_transform_strict_mode___babel_plugin_transform_strict_mode_6.24.1.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz";
- sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758";
- };
- }
- {
- name = "babel_polyfill___babel_polyfill_6.26.0.tgz";
- path = fetchurl {
- name = "babel_polyfill___babel_polyfill_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz";
- sha1 = "379937abc67d7895970adc621f284cd966cf2153";
- };
- }
- {
- name = "babel_preset_env___babel_preset_env_1.7.0.tgz";
- path = fetchurl {
- name = "babel_preset_env___babel_preset_env_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz";
- sha1 = "dea79fa4ebeb883cd35dab07e260c1c9c04df77a";
- };
- }
- {
- name = "babel_register___babel_register_6.26.0.tgz";
- path = fetchurl {
- name = "babel_register___babel_register_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz";
- sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
- };
- }
- {
- name = "babel_runtime___babel_runtime_6.26.0.tgz";
- path = fetchurl {
- name = "babel_runtime___babel_runtime_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz";
- sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
- };
- }
- {
- name = "babel_template___babel_template_6.26.0.tgz";
- path = fetchurl {
- name = "babel_template___babel_template_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz";
- sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
- };
- }
- {
- name = "babel_traverse___babel_traverse_6.26.0.tgz";
- path = fetchurl {
- name = "babel_traverse___babel_traverse_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz";
- sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
- };
- }
- {
- name = "babel_types___babel_types_6.26.0.tgz";
- path = fetchurl {
- name = "babel_types___babel_types_6.26.0.tgz";
- url = "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz";
- sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
- };
- }
- {
- name = "babylon___babylon_6.18.0.tgz";
- path = fetchurl {
- name = "babylon___babylon_6.18.0.tgz";
- url = "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz";
- sha1 = "af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3";
- };
- }
- {
- name = "backo2___backo2_1.0.2.tgz";
- path = fetchurl {
- name = "backo2___backo2_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz";
- sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947";
- };
- }
- {
- name = "backoff___backoff_2.5.0.tgz";
- path = fetchurl {
- name = "backoff___backoff_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz";
- sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f";
- };
- }
- {
- name = "bail___bail_2.0.1.tgz";
- path = fetchurl {
- name = "bail___bail_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/bail/-/bail-2.0.1.tgz";
- sha1 = "d676736373a374058a935aec81b94c12ba815771";
- };
- }
- {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- path = fetchurl {
- name = "balanced_match___balanced_match_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz";
- sha1 = "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee";
- };
- }
- {
- name = "base64_arraybuffer___base64_arraybuffer_0.1.4.tgz";
- path = fetchurl {
- name = "base64_arraybuffer___base64_arraybuffer_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz";
- sha1 = "9818c79e059b1355f97e0428a017c838e90ba812";
- };
- }
- {
- name = "base64_js___base64_js_1.5.1.tgz";
- path = fetchurl {
- name = "base64_js___base64_js_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz";
- sha1 = "1b1b440160a5bf7ad40b650f095963481903930a";
- };
- }
- {
- name = "base64id___base64id_2.0.0.tgz";
- path = fetchurl {
- name = "base64id___base64id_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz";
- sha1 = "2770ac6bc47d312af97a8bf9a634342e0cd25cb6";
- };
- }
- {
- name = "base64url___base64url_3.0.1.tgz";
- path = fetchurl {
- name = "base64url___base64url_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/base64url/-/base64url-3.0.1.tgz";
- sha1 = "6399d572e2bc3f90a9a8b22d5dbb0a32d33f788d";
- };
- }
- {
- name = "base___base_0.11.2.tgz";
- path = fetchurl {
- name = "base___base_0.11.2.tgz";
- url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz";
- sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f";
- };
- }
- {
- name = "basic_auth___basic_auth_2.0.1.tgz";
- path = fetchurl {
- name = "basic_auth___basic_auth_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz";
- sha1 = "b998279bf47ce38344b4f3cf916d4679bbf51e3a";
- };
- }
- {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- path = fetchurl {
- name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- }
- {
- name = "bcryptjs___bcryptjs_2.4.3.tgz";
- path = fetchurl {
- name = "bcryptjs___bcryptjs_2.4.3.tgz";
- url = "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz";
- sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb";
- };
- }
- {
- name = "big.js___big.js_5.2.2.tgz";
- path = fetchurl {
- name = "big.js___big.js_5.2.2.tgz";
- url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz";
- sha1 = "65f0af382f578bcdc742bd9c281e9cb2d7768328";
- };
- }
- {
- name = "binary_extensions___binary_extensions_1.13.1.tgz";
- path = fetchurl {
- name = "binary_extensions___binary_extensions_1.13.1.tgz";
- url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz";
- sha1 = "598afe54755b2868a5330d2aff9d4ebb53209b65";
- };
- }
- {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- path = fetchurl {
- name = "binary_extensions___binary_extensions_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz";
- sha1 = "75f502eeaf9ffde42fc98829645be4ea76bd9e2d";
- };
- }
- {
- name = "bindings___bindings_1.5.0.tgz";
- path = fetchurl {
- name = "bindings___bindings_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz";
- sha1 = "10353c9e945334bc0511a6d90b38fbc7c9c504df";
- };
- }
- {
- name = "bintrees___bintrees_1.0.1.tgz";
- path = fetchurl {
- name = "bintrees___bintrees_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/bintrees/-/bintrees-1.0.1.tgz";
- sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524";
- };
- }
- {
- name = "bl___bl_4.1.0.tgz";
- path = fetchurl {
- name = "bl___bl_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz";
- sha1 = "451535264182bec2fbbc83a62ab98cf11d9f7b3a";
- };
- }
- {
- name = "blob___blob_0.0.5.tgz";
- path = fetchurl {
- name = "blob___blob_0.0.5.tgz";
- url = "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz";
- sha1 = "d680eeef25f8cd91ad533f5b01eed48e64caf683";
- };
- }
- {
- name = "block_stream2___block_stream2_2.1.0.tgz";
- path = fetchurl {
- name = "block_stream2___block_stream2_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/block-stream2/-/block-stream2-2.1.0.tgz";
- sha1 = "ac0c5ef4298b3857796e05be8ebed72196fa054b";
- };
- }
- {
- name = "block_stream___block_stream_0.0.9.tgz";
- path = fetchurl {
- name = "block_stream___block_stream_0.0.9.tgz";
- url = "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
- };
- }
- {
- name = "bluebird___bluebird_3.7.2.tgz";
- path = fetchurl {
- name = "bluebird___bluebird_3.7.2.tgz";
- url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz";
- sha1 = "9f229c15be272454ffa973ace0dbee79a1b0c36f";
- };
- }
- {
- name = "bn.js___bn.js_4.12.0.tgz";
- path = fetchurl {
- name = "bn.js___bn.js_4.12.0.tgz";
- url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz";
- sha1 = "775b3f278efbb9718eec7361f483fb36fbbfea88";
- };
- }
- {
- name = "bn.js___bn.js_5.2.0.tgz";
- path = fetchurl {
- name = "bn.js___bn.js_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz";
- sha1 = "358860674396c6997771a9d051fcc1b57d4ae002";
- };
- }
- {
- name = "body_parser___body_parser_1.19.0.tgz";
- path = fetchurl {
- name = "body_parser___body_parser_1.19.0.tgz";
- url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz";
- sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a";
- };
- }
- {
- name = "boolbase___boolbase_1.0.0.tgz";
- path = fetchurl {
- name = "boolbase___boolbase_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz";
- sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
- };
- }
- {
- name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz";
- path = fetchurl {
- name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz";
- url = "https://registry.yarnpkg.com/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz";
- sha1 = "fb7058eef53623e78f5aa7967026f98f875a9404";
- };
- }
- {
- name = "bootstrap___bootstrap_3.4.1.tgz";
- path = fetchurl {
- name = "bootstrap___bootstrap_3.4.1.tgz";
- url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz";
- sha1 = "c3a347d419e289ad11f4033e3c4132b87c081d72";
- };
- }
- {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- path = fetchurl {
- name = "brace_expansion___brace_expansion_1.1.11.tgz";
- url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd";
- };
- }
- {
- name = "braces___braces_1.8.5.tgz";
- path = fetchurl {
- name = "braces___braces_1.8.5.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz";
- sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
- };
- }
- {
- name = "braces___braces_2.3.2.tgz";
- path = fetchurl {
- name = "braces___braces_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz";
- sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729";
- };
- }
- {
- name = "braces___braces_3.0.2.tgz";
- path = fetchurl {
- name = "braces___braces_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz";
- sha1 = "3454e1a462ee8d599e236df336cd9ea4f8afe107";
- };
- }
- {
- name = "brorand___brorand_1.1.0.tgz";
- path = fetchurl {
- name = "brorand___brorand_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz";
- sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
- };
- }
- {
- name = "browser_stdout___browser_stdout_1.3.1.tgz";
- path = fetchurl {
- name = "browser_stdout___browser_stdout_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz";
- sha1 = "baa559ee14ced73452229bad7326467c61fabd60";
- };
- }
- {
- name = "browserify_aes___browserify_aes_1.2.0.tgz";
- path = fetchurl {
- name = "browserify_aes___browserify_aes_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz";
- sha1 = "326734642f403dabc3003209853bb70ad428ef48";
- };
- }
- {
- name = "browserify_cipher___browserify_cipher_1.0.1.tgz";
- path = fetchurl {
- name = "browserify_cipher___browserify_cipher_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
- sha1 = "8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0";
- };
- }
- {
- name = "browserify_des___browserify_des_1.0.2.tgz";
- path = fetchurl {
- name = "browserify_des___browserify_des_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz";
- sha1 = "3af4f1f59839403572f1c66204375f7a7f703e9c";
- };
- }
- {
- name = "browserify_mime___browserify_mime_1.2.9.tgz";
- path = fetchurl {
- name = "browserify_mime___browserify_mime_1.2.9.tgz";
- url = "https://registry.yarnpkg.com/browserify-mime/-/browserify-mime-1.2.9.tgz";
- sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f";
- };
- }
- {
- name = "browserify_rsa___browserify_rsa_4.1.0.tgz";
- path = fetchurl {
- name = "browserify_rsa___browserify_rsa_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz";
- sha1 = "b2fd06b5b75ae297f7ce2dc651f918f5be158c8d";
- };
- }
- {
- name = "browserify_sign___browserify_sign_4.2.1.tgz";
- path = fetchurl {
- name = "browserify_sign___browserify_sign_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz";
- sha1 = "eaf4add46dd54be3bb3b36c0cf15abbeba7956c3";
- };
- }
- {
- name = "browserify_zlib___browserify_zlib_0.2.0.tgz";
- path = fetchurl {
- name = "browserify_zlib___browserify_zlib_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
- sha1 = "2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f";
- };
- }
- {
- name = "browserslist___browserslist_3.2.8.tgz";
- path = fetchurl {
- name = "browserslist___browserslist_3.2.8.tgz";
- url = "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz";
- sha1 = "b0005361d6471f0f5952797a76fc985f1f978fc6";
- };
- }
- {
- name = "browserslist___browserslist_4.17.0.tgz";
- path = fetchurl {
- name = "browserslist___browserslist_4.17.0.tgz";
- url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.0.tgz";
- sha1 = "1fcd81ec75b41d6d4994fb0831b92ac18c01649c";
- };
- }
- {
- name = "buffer_crc32___buffer_crc32_0.2.13.tgz";
- path = fetchurl {
- name = "buffer_crc32___buffer_crc32_0.2.13.tgz";
- url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
- sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
- };
- }
- {
- name = "buffer_from___buffer_from_1.1.2.tgz";
- path = fetchurl {
- name = "buffer_from___buffer_from_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz";
- sha1 = "2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5";
- };
- }
- {
- name = "buffer_writer___buffer_writer_2.0.0.tgz";
- path = fetchurl {
- name = "buffer_writer___buffer_writer_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz";
- sha1 = "ce7eb81a38f7829db09c873f2fbb792c0c98ec04";
- };
- }
- {
- name = "buffer_xor___buffer_xor_1.0.3.tgz";
- path = fetchurl {
- name = "buffer_xor___buffer_xor_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz";
- sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
- };
- }
- {
- name = "buffer___buffer_4.9.2.tgz";
- path = fetchurl {
- name = "buffer___buffer_4.9.2.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz";
- sha1 = "230ead344002988644841ab0244af8c44bbe3ef8";
- };
- }
- {
- name = "buffer___buffer_5.7.1.tgz";
- path = fetchurl {
- name = "buffer___buffer_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz";
- sha1 = "ba62e7c13133053582197160851a8f648e99eed0";
- };
- }
- {
- name = "bufferutil___bufferutil_4.0.3.tgz";
- path = fetchurl {
- name = "bufferutil___bufferutil_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.3.tgz";
- sha1 = "66724b756bed23cd7c28c4d306d7994f9943cc6b";
- };
- }
- {
- name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz";
- path = fetchurl {
- name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
- sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
- };
- }
- {
- name = "builtins___builtins_4.0.0.tgz";
- path = fetchurl {
- name = "builtins___builtins_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/builtins/-/builtins-4.0.0.tgz";
- sha1 = "a8345420de82068fdc4d6559d0456403a8fb1905";
- };
- }
- {
- name = "bytes___bytes_3.0.0.tgz";
- path = fetchurl {
- name = "bytes___bytes_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz";
- sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
- };
- }
- {
- name = "bytes___bytes_3.1.0.tgz";
- path = fetchurl {
- name = "bytes___bytes_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz";
- sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6";
- };
- }
- {
- name = "cacache___cacache_12.0.4.tgz";
- path = fetchurl {
- name = "cacache___cacache_12.0.4.tgz";
- url = "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz";
- sha1 = "668bcbd105aeb5f1d92fe25570ec9525c8faa40c";
- };
- }
- {
- name = "cacache___cacache_15.3.0.tgz";
- path = fetchurl {
- name = "cacache___cacache_15.3.0.tgz";
- url = "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz";
- sha1 = "dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb";
- };
- }
- {
- name = "cache_base___cache_base_1.0.1.tgz";
- path = fetchurl {
- name = "cache_base___cache_base_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz";
- sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2";
- };
- }
- {
- name = "call_bind___call_bind_1.0.2.tgz";
- path = fetchurl {
- name = "call_bind___call_bind_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz";
- sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c";
- };
- }
- {
- name = "callsites___callsites_3.1.0.tgz";
- path = fetchurl {
- name = "callsites___callsites_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz";
- sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73";
- };
- }
- {
- name = "camel_case___camel_case_4.1.2.tgz";
- path = fetchurl {
- name = "camel_case___camel_case_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz";
- sha1 = "9728072a954f805228225a6deea6b38461e1bd5a";
- };
- }
- {
- name = "camelcase___camelcase_6.2.0.tgz";
- path = fetchurl {
- name = "camelcase___camelcase_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz";
- sha1 = "924af881c9d525ac9d87f40d964e5cea982a1809";
- };
- }
- {
- name = "caniuse_api___caniuse_api_3.0.0.tgz";
- path = fetchurl {
- name = "caniuse_api___caniuse_api_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz";
- sha1 = "5e4d90e2274961d46291997df599e3ed008ee4c0";
- };
- }
- {
- name = "caniuse_lite___caniuse_lite_1.0.30001257.tgz";
- path = fetchurl {
- name = "caniuse_lite___caniuse_lite_1.0.30001257.tgz";
- url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001257.tgz";
- sha1 = "150aaf649a48bee531104cfeda57f92ce587f6e5";
- };
- }
- {
- name = "caseless___caseless_0.12.0.tgz";
- path = fetchurl {
- name = "caseless___caseless_0.12.0.tgz";
- url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- }
- {
- name = "ccount___ccount_2.0.0.tgz";
- path = fetchurl {
- name = "ccount___ccount_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ccount/-/ccount-2.0.0.tgz";
- sha1 = "3d6fb55803832766a24c6f339abc507297eb5d25";
- };
- }
- {
- name = "chalk___chalk_1.1.3.tgz";
- path = fetchurl {
- name = "chalk___chalk_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
- };
- }
- {
- name = "chalk___chalk_2.4.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz";
- sha1 = "cd42541677a54333cf541a49108c1432b44c9424";
- };
- }
- {
- name = "chalk___chalk_4.1.2.tgz";
- path = fetchurl {
- name = "chalk___chalk_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz";
- sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01";
- };
- }
- {
- name = "chalk___chalk_0.4.0.tgz";
- path = fetchurl {
- name = "chalk___chalk_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz";
- sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f";
- };
- }
- {
- name = "chance___chance_1.1.8.tgz";
- path = fetchurl {
- name = "chance___chance_1.1.8.tgz";
- url = "https://registry.yarnpkg.com/chance/-/chance-1.1.8.tgz";
- sha1 = "5d6c2b78c9170bf6eb9df7acdda04363085be909";
- };
- }
- {
- name = "character_entities_html4___character_entities_html4_2.0.0.tgz";
- path = fetchurl {
- name = "character_entities_html4___character_entities_html4_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.0.0.tgz";
- sha1 = "55fcf3ed00febfe41f8f6a5709d25ab8ed73a449";
- };
- }
- {
- name = "character_entities_legacy___character_entities_legacy_2.0.0.tgz";
- path = fetchurl {
- name = "character_entities_legacy___character_entities_legacy_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-2.0.0.tgz";
- sha1 = "57f4d00974c696e8f74e9f493e7fcb75b44d7ee7";
- };
- }
- {
- name = "character_entities___character_entities_2.0.0.tgz";
- path = fetchurl {
- name = "character_entities___character_entities_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.0.tgz";
- sha1 = "508355fcc8c73893e0909efc1a44d28da2b6fdf3";
- };
- }
- {
- name = "character_reference_invalid___character_reference_invalid_2.0.0.tgz";
- path = fetchurl {
- name = "character_reference_invalid___character_reference_invalid_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.0.tgz";
- sha1 = "a0bdeb89c051fe7ed5d3158b2f06af06984f2813";
- };
- }
- {
- name = "cheerio___cheerio_0.22.0.tgz";
- path = fetchurl {
- name = "cheerio___cheerio_0.22.0.tgz";
- url = "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz";
- sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
- };
- }
- {
- name = "chokidar___chokidar_3.5.2.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz";
- sha1 = "dba3976fcadb016f66fd365021d91600d01c1e75";
- };
- }
- {
- name = "chokidar___chokidar_1.7.0.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz";
- sha1 = "798e689778151c8076b4b360e5edd28cda2bb468";
- };
- }
- {
- name = "chokidar___chokidar_2.1.8.tgz";
- path = fetchurl {
- name = "chokidar___chokidar_2.1.8.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz";
- sha1 = "804b3a7b6a99358c3c5c61e71d8728f041cff917";
- };
- }
- {
- name = "chownr___chownr_1.1.4.tgz";
- path = fetchurl {
- name = "chownr___chownr_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz";
- sha1 = "6fc9d7b42d32a583596337666e7d08084da2cc6b";
- };
- }
- {
- name = "chownr___chownr_2.0.0.tgz";
- path = fetchurl {
- name = "chownr___chownr_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz";
- sha1 = "15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece";
- };
- }
- {
- name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz";
- path = fetchurl {
- name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz";
- sha1 = "1015eced4741e15d06664a957dbbf50d041e26ac";
- };
- }
- {
- name = "cipher_base___cipher_base_1.0.4.tgz";
- path = fetchurl {
- name = "cipher_base___cipher_base_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz";
- sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de";
- };
- }
- {
- name = "class_utils___class_utils_0.3.6.tgz";
- path = fetchurl {
- name = "class_utils___class_utils_0.3.6.tgz";
- url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz";
- sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463";
- };
- }
- {
- name = "clean_css___clean_css_4.2.3.tgz";
- path = fetchurl {
- name = "clean_css___clean_css_4.2.3.tgz";
- url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz";
- sha1 = "507b5de7d97b48ee53d84adb0160ff6216380f78";
- };
- }
- {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- path = fetchurl {
- name = "clean_stack___clean_stack_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz";
- sha1 = "ee8472dbb129e727b31e8a10a427dee9dfe4008b";
- };
- }
- {
- name = "cliui___cliui_7.0.4.tgz";
- path = fetchurl {
- name = "cliui___cliui_7.0.4.tgz";
- url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz";
- sha1 = "a0265ee655476fc807aea9df3df8df7783808b4f";
- };
- }
- {
- name = "clone_deep___clone_deep_4.0.1.tgz";
- path = fetchurl {
- name = "clone_deep___clone_deep_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz";
- sha1 = "c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387";
- };
- }
- {
- name = "cls_bluebird___cls_bluebird_2.1.0.tgz";
- path = fetchurl {
- name = "cls_bluebird___cls_bluebird_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/cls-bluebird/-/cls-bluebird-2.1.0.tgz";
- sha1 = "37ef1e080a8ffb55c2f4164f536f1919e7968aee";
- };
- }
- {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- path = fetchurl {
- name = "code_point_at___code_point_at_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- }
- {
- name = "CodeMirror.git";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/hedgedoc/CodeMirror.git";
- rev = "f780b569b3717cdff4c8507538cc63101bfa02e1";
- sha256 = "0b6axzi9kwsd24pcqfk5rmy9nhsdyklpd3z8w9wiynd64435dilz";
- };
- in
- runCommand "CodeMirror.git" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- path = fetchurl {
- name = "collection_visit___collection_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
- };
- }
- {
- name = "color_convert___color_convert_1.9.3.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_1.9.3.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz";
- sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8";
- };
- }
- {
- name = "color_convert___color_convert_2.0.1.tgz";
- path = fetchurl {
- name = "color_convert___color_convert_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz";
- sha1 = "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3";
- };
- }
- {
- name = "color_name___color_name_1.1.3.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- }
- {
- name = "color_name___color_name_1.1.4.tgz";
- path = fetchurl {
- name = "color_name___color_name_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz";
- sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2";
- };
- }
- {
- name = "color_string___color_string_1.6.0.tgz";
- path = fetchurl {
- name = "color_string___color_string_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz";
- sha1 = "c3915f61fe267672cb7e1e064c9d692219f6c312";
- };
- }
- {
- name = "color___color_3.0.0.tgz";
- path = fetchurl {
- name = "color___color_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/color/-/color-3.0.0.tgz";
- sha1 = "d920b4328d534a3ac8295d68f7bd4ba6c427be9a";
- };
- }
- {
- name = "colord___colord_2.7.0.tgz";
- path = fetchurl {
- name = "colord___colord_2.7.0.tgz";
- url = "https://registry.yarnpkg.com/colord/-/colord-2.7.0.tgz";
- sha1 = "706ea36fe0cd651b585eb142fe64b6480185270e";
- };
- }
- {
- name = "colorette___colorette_1.4.0.tgz";
- path = fetchurl {
- name = "colorette___colorette_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz";
- sha1 = "5190fbb87276259a86ad700bff2c6d6faa3fca40";
- };
- }
- {
- name = "colors___colors_1.4.0.tgz";
- path = fetchurl {
- name = "colors___colors_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz";
- sha1 = "c50491479d4c1bdaed2c9ced32cf7c7dc2360f78";
- };
- }
- {
- name = "colorspace___colorspace_1.1.2.tgz";
- path = fetchurl {
- name = "colorspace___colorspace_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.2.tgz";
- sha1 = "e0128950d082b86a2168580796a0aa5d6c68d8c5";
- };
- }
- {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- path = fetchurl {
- name = "combined_stream___combined_stream_1.0.8.tgz";
- url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz";
- sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f";
- };
- }
- {
- name = "comma_separated_tokens___comma_separated_tokens_2.0.2.tgz";
- path = fetchurl {
- name = "comma_separated_tokens___comma_separated_tokens_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz";
- sha1 = "d4c25abb679b7751c880be623c1179780fe1dd98";
- };
- }
- {
- name = "commander___commander_2.20.3.tgz";
- path = fetchurl {
- name = "commander___commander_2.20.3.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz";
- sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33";
- };
- }
- {
- name = "commander___commander_4.1.1.tgz";
- path = fetchurl {
- name = "commander___commander_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz";
- sha1 = "9fd602bd936294e9e9ef46a3f4d6964044b18068";
- };
- }
- {
- name = "commander___commander_7.2.0.tgz";
- path = fetchurl {
- name = "commander___commander_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz";
- sha1 = "a36cb57d0b501ce108e4d20559a150a391d97ab7";
- };
- }
- {
- name = "commondir___commondir_1.0.1.tgz";
- path = fetchurl {
- name = "commondir___commondir_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz";
- sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
- };
- }
- {
- name = "component_bind___component_bind_1.0.0.tgz";
- path = fetchurl {
- name = "component_bind___component_bind_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz";
- sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1";
- };
- }
- {
- name = "component_emitter___component_emitter_1.2.1.tgz";
- path = fetchurl {
- name = "component_emitter___component_emitter_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz";
- sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
- };
- }
- {
- name = "component_emitter___component_emitter_1.3.0.tgz";
- path = fetchurl {
- name = "component_emitter___component_emitter_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz";
- sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0";
- };
- }
- {
- name = "component_inherit___component_inherit_0.0.3.tgz";
- path = fetchurl {
- name = "component_inherit___component_inherit_0.0.3.tgz";
- url = "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz";
- sha1 = "645fc4adf58b72b649d5cae65135619db26ff143";
- };
- }
- {
- name = "compress_commons___compress_commons_4.1.1.tgz";
- path = fetchurl {
- name = "compress_commons___compress_commons_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.1.tgz";
- sha1 = "df2a09a7ed17447642bad10a85cc9a19e5c42a7d";
- };
- }
- {
- name = "compressible___compressible_2.0.18.tgz";
- path = fetchurl {
- name = "compressible___compressible_2.0.18.tgz";
- url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz";
- sha1 = "af53cca6b070d4c3c0750fbd77286a6d7cc46fba";
- };
- }
- {
- name = "compression___compression_1.7.4.tgz";
- path = fetchurl {
- name = "compression___compression_1.7.4.tgz";
- url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz";
- sha1 = "95523eff170ca57c29a0ca41e6fe131f41e5bb8f";
- };
- }
- {
- name = "concat_map___concat_map_0.0.1.tgz";
- path = fetchurl {
- name = "concat_map___concat_map_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- }
- {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- path = fetchurl {
- name = "concat_stream___concat_stream_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz";
- sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34";
- };
- }
- {
- name = "concat_stream___concat_stream_2.0.0.tgz";
- path = fetchurl {
- name = "concat_stream___concat_stream_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz";
- sha1 = "414cf5af790a48c60ab9be4527d56d5e41133cb1";
- };
- }
- {
- name = "connect_flash___connect_flash_0.1.1.tgz";
- path = fetchurl {
- name = "connect_flash___connect_flash_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz";
- sha1 = "d8630f26d95a7f851f9956b1e8cc6732f3b6aa30";
- };
- }
- {
- name = "connect_session_sequelize___connect_session_sequelize_7.1.2.tgz";
- path = fetchurl {
- name = "connect_session_sequelize___connect_session_sequelize_7.1.2.tgz";
- url = "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-7.1.2.tgz";
- sha1 = "03ae9a1bd2221526c63a66959b6ddd18599be2ac";
- };
- }
- {
- name = "console_browserify___console_browserify_1.2.0.tgz";
- path = fetchurl {
- name = "console_browserify___console_browserify_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz";
- sha1 = "67063cef57ceb6cf4993a2ab3a55840ae8c49336";
- };
- }
- {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- path = fetchurl {
- name = "console_control_strings___console_control_strings_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
- };
- }
- {
- name = "constants_browserify___constants_browserify_1.0.0.tgz";
- path = fetchurl {
- name = "constants_browserify___constants_browserify_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz";
- sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
- };
- }
- {
- name = "content_disposition___content_disposition_0.5.3.tgz";
- path = fetchurl {
- name = "content_disposition___content_disposition_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz";
- sha1 = "e130caf7e7279087c5616c2007d0485698984fbd";
- };
- }
- {
- name = "content_type___content_type_1.0.4.tgz";
- path = fetchurl {
- name = "content_type___content_type_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz";
- sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b";
- };
- }
- {
- name = "convert_source_map___convert_source_map_1.8.0.tgz";
- path = fetchurl {
- name = "convert_source_map___convert_source_map_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz";
- sha1 = "f3373c32d21b4d780dd8004514684fb791ca4369";
- };
- }
- {
- name = "cookie_parser___cookie_parser_1.4.5.tgz";
- path = fetchurl {
- name = "cookie_parser___cookie_parser_1.4.5.tgz";
- url = "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.5.tgz";
- sha1 = "3e572d4b7c0c80f9c61daf604e4336831b5d1d49";
- };
- }
- {
- name = "cookie_signature___cookie_signature_1.0.6.tgz";
- path = fetchurl {
- name = "cookie_signature___cookie_signature_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz";
- sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
- };
- }
- {
- name = "cookie___cookie_0.4.0.tgz";
- path = fetchurl {
- name = "cookie___cookie_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz";
- sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba";
- };
- }
- {
- name = "cookie___cookie_0.4.1.tgz";
- path = fetchurl {
- name = "cookie___cookie_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz";
- sha1 = "afd713fe26ebd21ba95ceb61f9a8116e50a537d1";
- };
- }
- {
- name = "cookiejar___cookiejar_2.0.6.tgz";
- path = fetchurl {
- name = "cookiejar___cookiejar_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz";
- sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe";
- };
- }
- {
- name = "copy_anything___copy_anything_2.0.3.tgz";
- path = fetchurl {
- name = "copy_anything___copy_anything_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.3.tgz";
- sha1 = "842407ba02466b0df844819bbe3baebbe5d45d87";
- };
- }
- {
- name = "copy_concurrently___copy_concurrently_1.0.5.tgz";
- path = fetchurl {
- name = "copy_concurrently___copy_concurrently_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
- sha1 = "92297398cae34937fcafd6ec8139c18051f0b5e0";
- };
- }
- {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- path = fetchurl {
- name = "copy_descriptor___copy_descriptor_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
- };
- }
- {
- name = "copy_webpack_plugin___copy_webpack_plugin_6.4.1.tgz";
- path = fetchurl {
- name = "copy_webpack_plugin___copy_webpack_plugin_6.4.1.tgz";
- url = "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz";
- sha1 = "138cd9b436dbca0a6d071720d5414848992ec47e";
- };
- }
- {
- name = "core_js___core_js_2.6.12.tgz";
- path = fetchurl {
- name = "core_js___core_js_2.6.12.tgz";
- url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz";
- sha1 = "d9333dfa7b065e347cc5682219d6f690859cc2ec";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- }
- {
- name = "core_util_is___core_util_is_1.0.3.tgz";
- path = fetchurl {
- name = "core_util_is___core_util_is_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz";
- sha1 = "a6042d3634c2b27e9328f837b965fac83808db85";
- };
- }
- {
- name = "crc_32___crc_32_1.2.0.tgz";
- path = fetchurl {
- name = "crc_32___crc_32_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.0.tgz";
- sha1 = "cb2db6e29b88508e32d9dd0ec1693e7b41a18208";
- };
- }
- {
- name = "crc32_stream___crc32_stream_4.0.2.tgz";
- path = fetchurl {
- name = "crc32_stream___crc32_stream_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.2.tgz";
- sha1 = "c922ad22b38395abe9d3870f02fa8134ed709007";
- };
- }
- {
- name = "create_ecdh___create_ecdh_4.0.4.tgz";
- path = fetchurl {
- name = "create_ecdh___create_ecdh_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz";
- sha1 = "d6e7f4bffa66736085a0762fd3a632684dabcc4e";
- };
- }
- {
- name = "create_hash___create_hash_1.2.0.tgz";
- path = fetchurl {
- name = "create_hash___create_hash_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz";
- sha1 = "889078af11a63756bcfb59bd221996be3a9ef196";
- };
- }
- {
- name = "create_hmac___create_hmac_1.1.7.tgz";
- path = fetchurl {
- name = "create_hmac___create_hmac_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz";
- sha1 = "69170c78b3ab957147b2b8b04572e47ead2243ff";
- };
- }
- {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- path = fetchurl {
- name = "cross_spawn___cross_spawn_7.0.3.tgz";
- url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz";
- sha1 = "f73a85b9d5d41d045551c177e2882d4ac85728a6";
- };
- }
- {
- name = "crypto_browserify___crypto_browserify_3.12.0.tgz";
- path = fetchurl {
- name = "crypto_browserify___crypto_browserify_3.12.0.tgz";
- url = "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
- sha1 = "396cf9f3137f03e4b8e532c58f698254e00f80ec";
- };
- }
- {
- name = "css_color_names___css_color_names_1.0.1.tgz";
- path = fetchurl {
- name = "css_color_names___css_color_names_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-1.0.1.tgz";
- sha1 = "6ff7ee81a823ad46e020fa2fd6ab40a887e2ba67";
- };
- }
- {
- name = "css_declaration_sorter___css_declaration_sorter_6.1.3.tgz";
- path = fetchurl {
- name = "css_declaration_sorter___css_declaration_sorter_6.1.3.tgz";
- url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz";
- sha1 = "e9852e4cf940ba79f509d9425b137d1f94438dc2";
- };
- }
- {
- name = "css_loader___css_loader_5.2.7.tgz";
- path = fetchurl {
- name = "css_loader___css_loader_5.2.7.tgz";
- url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz";
- sha1 = "9b9f111edf6fb2be5dc62525644cbc9c232064ae";
- };
- }
- {
- name = "css_select___css_select_4.1.3.tgz";
- path = fetchurl {
- name = "css_select___css_select_4.1.3.tgz";
- url = "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz";
- sha1 = "a70440f70317f2669118ad74ff105e65849c7067";
- };
- }
- {
- name = "css_select___css_select_1.2.0.tgz";
- path = fetchurl {
- name = "css_select___css_select_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz";
- sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
- };
- }
- {
- name = "css_tree___css_tree_1.1.3.tgz";
- path = fetchurl {
- name = "css_tree___css_tree_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz";
- sha1 = "eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d";
- };
- }
- {
- name = "css_what___css_what_2.1.3.tgz";
- path = fetchurl {
- name = "css_what___css_what_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz";
- sha1 = "a6d7604573365fe74686c3f311c56513d88285f2";
- };
- }
- {
- name = "css_what___css_what_5.0.1.tgz";
- path = fetchurl {
- name = "css_what___css_what_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/css-what/-/css-what-5.0.1.tgz";
- sha1 = "3efa820131f4669a8ac2408f9c32e7c7de9f4cad";
- };
- }
- {
- name = "cssesc___cssesc_3.0.0.tgz";
- path = fetchurl {
- name = "cssesc___cssesc_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz";
- sha1 = "37741919903b868565e1c09ea747445cd18983ee";
- };
- }
- {
- name = "cssfilter___cssfilter_0.0.10.tgz";
- path = fetchurl {
- name = "cssfilter___cssfilter_0.0.10.tgz";
- url = "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz";
- sha1 = "c6d2672632a2e5c83e013e6864a42ce8defd20ae";
- };
- }
- {
- name = "cssnano_preset_default___cssnano_preset_default_5.1.4.tgz";
- path = fetchurl {
- name = "cssnano_preset_default___cssnano_preset_default_5.1.4.tgz";
- url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.4.tgz";
- sha1 = "359943bf00c5c8e05489f12dd25f3006f2c1cbd2";
- };
- }
- {
- name = "cssnano_utils___cssnano_utils_2.0.1.tgz";
- path = fetchurl {
- name = "cssnano_utils___cssnano_utils_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.1.tgz";
- sha1 = "8660aa2b37ed869d2e2f22918196a9a8b6498ce2";
- };
- }
- {
- name = "cssnano___cssnano_5.0.8.tgz";
- path = fetchurl {
- name = "cssnano___cssnano_5.0.8.tgz";
- url = "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.8.tgz";
- sha1 = "39ad166256980fcc64faa08c9bb18bb5789ecfa9";
- };
- }
- {
- name = "csso___csso_4.2.0.tgz";
- path = fetchurl {
- name = "csso___csso_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz";
- sha1 = "ea3a561346e8dc9f546d6febedd50187cf389529";
- };
- }
- {
- name = "cssom___cssom_0.3.8.tgz";
- path = fetchurl {
- name = "cssom___cssom_0.3.8.tgz";
- url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz";
- sha1 = "9f1276f5b2b463f2114d3f2c75250af8c1a36f4a";
- };
- }
- {
- name = "cssom___cssom_0.2.5.tgz";
- path = fetchurl {
- name = "cssom___cssom_0.2.5.tgz";
- url = "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz";
- sha1 = "2682709b5902e7212df529116ff788cd5b254894";
- };
- }
- {
- name = "cssstyle___cssstyle_0.2.37.tgz";
- path = fetchurl {
- name = "cssstyle___cssstyle_0.2.37.tgz";
- url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz";
- sha1 = "541097234cb2513c83ceed3acddc27ff27987d54";
- };
- }
- {
- name = "cyclist___cyclist_1.0.1.tgz";
- path = fetchurl {
- name = "cyclist___cyclist_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz";
- sha1 = "596e9698fd0c80e12038c2b82d6eb1b35b6224d9";
- };
- }
- {
- name = "d3_array___d3_array_1.2.4.tgz";
- path = fetchurl {
- name = "d3_array___d3_array_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz";
- sha1 = "635ce4d5eea759f6f605863dbcfc30edc737f71f";
- };
- }
- {
- name = "d3_axis___d3_axis_1.0.12.tgz";
- path = fetchurl {
- name = "d3_axis___d3_axis_1.0.12.tgz";
- url = "https://registry.yarnpkg.com/d3-axis/-/d3-axis-1.0.12.tgz";
- sha1 = "cdf20ba210cfbb43795af33756886fb3638daac9";
- };
- }
- {
- name = "d3_brush___d3_brush_1.1.6.tgz";
- path = fetchurl {
- name = "d3_brush___d3_brush_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.1.6.tgz";
- sha1 = "b0a22c7372cabec128bdddf9bddc058592f89e9b";
- };
- }
- {
- name = "d3_chord___d3_chord_1.0.6.tgz";
- path = fetchurl {
- name = "d3_chord___d3_chord_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/d3-chord/-/d3-chord-1.0.6.tgz";
- sha1 = "309157e3f2db2c752f0280fedd35f2067ccbb15f";
- };
- }
- {
- name = "d3_collection___d3_collection_1.0.7.tgz";
- path = fetchurl {
- name = "d3_collection___d3_collection_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz";
- sha1 = "349bd2aa9977db071091c13144d5e4f16b5b310e";
- };
- }
- {
- name = "d3_color___d3_color_1.4.1.tgz";
- path = fetchurl {
- name = "d3_color___d3_color_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.1.tgz";
- sha1 = "c52002bf8846ada4424d55d97982fef26eb3bc8a";
- };
- }
- {
- name = "d3_contour___d3_contour_1.3.2.tgz";
- path = fetchurl {
- name = "d3_contour___d3_contour_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/d3-contour/-/d3-contour-1.3.2.tgz";
- sha1 = "652aacd500d2264cb3423cee10db69f6f59bead3";
- };
- }
- {
- name = "d3_dispatch___d3_dispatch_1.0.6.tgz";
- path = fetchurl {
- name = "d3_dispatch___d3_dispatch_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz";
- sha1 = "00d37bcee4dd8cd97729dd893a0ac29caaba5d58";
- };
- }
- {
- name = "d3_drag___d3_drag_1.2.5.tgz";
- path = fetchurl {
- name = "d3_drag___d3_drag_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.5.tgz";
- sha1 = "2537f451acd39d31406677b7dc77c82f7d988f70";
- };
- }
- {
- name = "d3_dsv___d3_dsv_1.2.0.tgz";
- path = fetchurl {
- name = "d3_dsv___d3_dsv_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz";
- sha1 = "9d5f75c3a5f8abd611f74d3f5847b0d4338b885c";
- };
- }
- {
- name = "d3_ease___d3_ease_1.0.7.tgz";
- path = fetchurl {
- name = "d3_ease___d3_ease_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.7.tgz";
- sha1 = "9a834890ef8b8ae8c558b2fe55bd57f5993b85e2";
- };
- }
- {
- name = "d3_fetch___d3_fetch_1.2.0.tgz";
- path = fetchurl {
- name = "d3_fetch___d3_fetch_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-1.2.0.tgz";
- sha1 = "15ce2ecfc41b092b1db50abd2c552c2316cf7fc7";
- };
- }
- {
- name = "d3_force___d3_force_1.2.1.tgz";
- path = fetchurl {
- name = "d3_force___d3_force_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/d3-force/-/d3-force-1.2.1.tgz";
- sha1 = "fd29a5d1ff181c9e7f0669e4bd72bdb0e914ec0b";
- };
- }
- {
- name = "d3_format___d3_format_1.4.5.tgz";
- path = fetchurl {
- name = "d3_format___d3_format_1.4.5.tgz";
- url = "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.5.tgz";
- sha1 = "374f2ba1320e3717eb74a9356c67daee17a7edb4";
- };
- }
- {
- name = "d3_geo___d3_geo_1.12.1.tgz";
- path = fetchurl {
- name = "d3_geo___d3_geo_1.12.1.tgz";
- url = "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.12.1.tgz";
- sha1 = "7fc2ab7414b72e59fbcbd603e80d9adc029b035f";
- };
- }
- {
- name = "d3_hierarchy___d3_hierarchy_1.1.9.tgz";
- path = fetchurl {
- name = "d3_hierarchy___d3_hierarchy_1.1.9.tgz";
- url = "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz";
- sha1 = "2f6bee24caaea43f8dc37545fa01628559647a83";
- };
- }
- {
- name = "d3_interpolate___d3_interpolate_1.4.0.tgz";
- path = fetchurl {
- name = "d3_interpolate___d3_interpolate_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz";
- sha1 = "526e79e2d80daa383f9e0c1c1c7dcc0f0583e987";
- };
- }
- {
- name = "d3_path___d3_path_1.0.9.tgz";
- path = fetchurl {
- name = "d3_path___d3_path_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz";
- sha1 = "48c050bb1fe8c262493a8caf5524e3e9591701cf";
- };
- }
- {
- name = "d3_polygon___d3_polygon_1.0.6.tgz";
- path = fetchurl {
- name = "d3_polygon___d3_polygon_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-1.0.6.tgz";
- sha1 = "0bf8cb8180a6dc107f518ddf7975e12abbfbd38e";
- };
- }
- {
- name = "d3_quadtree___d3_quadtree_1.0.7.tgz";
- path = fetchurl {
- name = "d3_quadtree___d3_quadtree_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.7.tgz";
- sha1 = "ca8b84df7bb53763fe3c2f24bd435137f4e53135";
- };
- }
- {
- name = "d3_random___d3_random_1.1.2.tgz";
- path = fetchurl {
- name = "d3_random___d3_random_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/d3-random/-/d3-random-1.1.2.tgz";
- sha1 = "2833be7c124360bf9e2d3fd4f33847cfe6cab291";
- };
- }
- {
- name = "d3_scale_chromatic___d3_scale_chromatic_1.5.0.tgz";
- path = fetchurl {
- name = "d3_scale_chromatic___d3_scale_chromatic_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz";
- sha1 = "54e333fc78212f439b14641fb55801dd81135a98";
- };
- }
- {
- name = "d3_scale___d3_scale_2.2.2.tgz";
- path = fetchurl {
- name = "d3_scale___d3_scale_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz";
- sha1 = "4e880e0b2745acaaddd3ede26a9e908a9e17b81f";
- };
- }
- {
- name = "d3_selection___d3_selection_1.4.2.tgz";
- path = fetchurl {
- name = "d3_selection___d3_selection_1.4.2.tgz";
- url = "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.2.tgz";
- sha1 = "dcaa49522c0dbf32d6c1858afc26b6094555bc5c";
- };
- }
- {
- name = "d3_shape___d3_shape_1.3.7.tgz";
- path = fetchurl {
- name = "d3_shape___d3_shape_1.3.7.tgz";
- url = "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz";
- sha1 = "df63801be07bc986bc54f63789b4fe502992b5d7";
- };
- }
- {
- name = "d3_time_format___d3_time_format_2.3.0.tgz";
- path = fetchurl {
- name = "d3_time_format___d3_time_format_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.3.0.tgz";
- sha1 = "107bdc028667788a8924ba040faf1fbccd5a7850";
- };
- }
- {
- name = "d3_time___d3_time_1.1.0.tgz";
- path = fetchurl {
- name = "d3_time___d3_time_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz";
- sha1 = "b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1";
- };
- }
- {
- name = "d3_timer___d3_timer_1.0.10.tgz";
- path = fetchurl {
- name = "d3_timer___d3_timer_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz";
- sha1 = "dfe76b8a91748831b13b6d9c793ffbd508dd9de5";
- };
- }
- {
- name = "d3_transition___d3_transition_1.3.2.tgz";
- path = fetchurl {
- name = "d3_transition___d3_transition_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.3.2.tgz";
- sha1 = "a98ef2151be8d8600543434c1ca80140ae23b398";
- };
- }
- {
- name = "d3_voronoi___d3_voronoi_1.1.4.tgz";
- path = fetchurl {
- name = "d3_voronoi___d3_voronoi_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz";
- sha1 = "dd3c78d7653d2bb359284ae478645d95944c8297";
- };
- }
- {
- name = "d3_zoom___d3_zoom_1.8.3.tgz";
- path = fetchurl {
- name = "d3_zoom___d3_zoom_1.8.3.tgz";
- url = "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.8.3.tgz";
- sha1 = "b6a3dbe738c7763121cd05b8a7795ffe17f4fc0a";
- };
- }
- {
- name = "d3___d3_5.16.0.tgz";
- path = fetchurl {
- name = "d3___d3_5.16.0.tgz";
- url = "https://registry.yarnpkg.com/d3/-/d3-5.16.0.tgz";
- sha1 = "9c5e8d3b56403c79d4ed42fbd62f6113f199c877";
- };
- }
- {
- name = "dagre_d3___dagre_d3_0.6.4.tgz";
- path = fetchurl {
- name = "dagre_d3___dagre_d3_0.6.4.tgz";
- url = "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz";
- sha1 = "0728d5ce7f177ca2337df141ceb60fbe6eeb7b29";
- };
- }
- {
- name = "dagre___dagre_0.8.5.tgz";
- path = fetchurl {
- name = "dagre___dagre_0.8.5.tgz";
- url = "https://registry.yarnpkg.com/dagre/-/dagre-0.8.5.tgz";
- sha1 = "ba30b0055dac12b6c1fcc247817442777d06afee";
- };
- }
- {
- name = "dashdash___dashdash_1.14.1.tgz";
- path = fetchurl {
- name = "dashdash___dashdash_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- }
- {
- name = "debug___debug_2.6.9.tgz";
- path = fetchurl {
- name = "debug___debug_2.6.9.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz";
- sha1 = "5d128515df134ff327e90a4c93f4e077a536341f";
- };
- }
- {
- name = "debug___debug_3.1.0.tgz";
- path = fetchurl {
- name = "debug___debug_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz";
- sha1 = "5bb5a0672628b64149566ba16819e61518c67261";
- };
- }
- {
- name = "debug___debug_4.3.1.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz";
- sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee";
- };
- }
- {
- name = "debug___debug_3.2.7.tgz";
- path = fetchurl {
- name = "debug___debug_3.2.7.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz";
- sha1 = "72580b7e9145fb39b6676f9c5e5fb100b934179a";
- };
- }
- {
- name = "debug___debug_4.3.2.tgz";
- path = fetchurl {
- name = "debug___debug_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz";
- sha1 = "f0a49c18ac8779e31d4a0c6029dfb76873c7428b";
- };
- }
- {
- name = "debug___debug_4.1.1.tgz";
- path = fetchurl {
- name = "debug___debug_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz";
- sha1 = "3b72260255109c6b589cee050f1d516139664791";
- };
- }
- {
- name = "decamelize___decamelize_4.0.0.tgz";
- path = fetchurl {
- name = "decamelize___decamelize_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz";
- sha1 = "aa472d7bf660eb15f3494efd531cab7f2a709837";
- };
- }
- {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- path = fetchurl {
- name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
- };
- }
- {
- name = "deep_equal___deep_equal_2.0.5.tgz";
- path = fetchurl {
- name = "deep_equal___deep_equal_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.0.5.tgz";
- sha1 = "55cd2fe326d83f9cbf7261ef0e060b3f724c5cb9";
- };
- }
- {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- path = fetchurl {
- name = "deep_extend___deep_extend_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz";
- sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac";
- };
- }
- {
- name = "deep_freeze___deep_freeze_0.0.1.tgz";
- path = fetchurl {
- name = "deep_freeze___deep_freeze_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz";
- sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84";
- };
- }
- {
- name = "deep_is___deep_is_0.1.4.tgz";
- path = fetchurl {
- name = "deep_is___deep_is_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz";
- sha1 = "a6f2dce612fadd2ef1f519b73551f17e85199831";
- };
- }
- {
- name = "define_properties___define_properties_1.1.3.tgz";
- path = fetchurl {
- name = "define_properties___define_properties_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz";
- sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1";
- };
- }
- {
- name = "define_property___define_property_0.2.5.tgz";
- path = fetchurl {
- name = "define_property___define_property_0.2.5.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
- };
- }
- {
- name = "define_property___define_property_1.0.0.tgz";
- path = fetchurl {
- name = "define_property___define_property_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
- };
- }
- {
- name = "define_property___define_property_2.0.2.tgz";
- path = fetchurl {
- name = "define_property___define_property_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz";
- sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d";
- };
- }
- {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- path = fetchurl {
- name = "delayed_stream___delayed_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- }
- {
- name = "delegates___delegates_1.0.0.tgz";
- path = fetchurl {
- name = "delegates___delegates_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
- };
- }
- {
- name = "denque___denque_1.5.1.tgz";
- path = fetchurl {
- name = "denque___denque_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/denque/-/denque-1.5.1.tgz";
- sha1 = "07f670e29c9a78f8faecb2566a1e2c11929c5cbf";
- };
- }
- {
- name = "depd___depd_1.1.2.tgz";
- path = fetchurl {
- name = "depd___depd_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz";
- sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
- };
- }
- {
- name = "depd___depd_2.0.0.tgz";
- path = fetchurl {
- name = "depd___depd_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz";
- sha1 = "b696163cc757560d09cf22cc8fad1571b79e76df";
- };
- }
- {
- name = "des.js___des.js_1.0.1.tgz";
- path = fetchurl {
- name = "des.js___des.js_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz";
- sha1 = "5382142e1bdc53f85d86d53e5f4aa7deb91e0843";
- };
- }
- {
- name = "destroy___destroy_1.0.4.tgz";
- path = fetchurl {
- name = "destroy___destroy_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz";
- sha1 = "978857442c44749e4206613e37946205826abd80";
- };
- }
- {
- name = "detect_indent___detect_indent_4.0.0.tgz";
- path = fetchurl {
- name = "detect_indent___detect_indent_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz";
- sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
- };
- }
- {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- path = fetchurl {
- name = "detect_libc___detect_libc_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
- };
- }
- {
- name = "diff-match-patch.git";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/hackmdio/diff-match-patch.git";
- rev = "c2f8fb9d69aa9490b764850aa86ba442c93ccf78";
- sha256 = "0hlv66cxrqih7spnissl44jd8f8x9dyvzc68fn0g2fwwrnpjjib7";
- };
- in
- runCommand "diff-match-patch.git" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "diff___diff_5.0.0.tgz";
- path = fetchurl {
- name = "diff___diff_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz";
- sha1 = "7ed6ad76d859d030787ec35855f5b1daf31d852b";
- };
- }
- {
- name = "diffie_hellman___diffie_hellman_5.0.3.tgz";
- path = fetchurl {
- name = "diffie_hellman___diffie_hellman_5.0.3.tgz";
- url = "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
- sha1 = "40e8ee98f55a2149607146921c63e1ae5f3d2875";
- };
- }
- {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- path = fetchurl {
- name = "dir_glob___dir_glob_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz";
- sha1 = "56dbf73d992a4a93ba1584f4534063fd2e41717f";
- };
- }
- {
- name = "doctrine___doctrine_2.1.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz";
- sha1 = "5cd01fc101621b42c4cd7f5d1a66243716d3f39d";
- };
- }
- {
- name = "doctrine___doctrine_3.0.0.tgz";
- path = fetchurl {
- name = "doctrine___doctrine_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz";
- sha1 = "addebead72a6574db783639dc87a121773973961";
- };
- }
- {
- name = "dom_converter___dom_converter_0.2.0.tgz";
- path = fetchurl {
- name = "dom_converter___dom_converter_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz";
- sha1 = "6721a9daee2e293682955b6afe416771627bb768";
- };
- }
- {
- name = "dom_serializer___dom_serializer_0.2.2.tgz";
- path = fetchurl {
- name = "dom_serializer___dom_serializer_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz";
- sha1 = "1afb81f533717175d478655debc5e332d9f9bb51";
- };
- }
- {
- name = "dom_serializer___dom_serializer_1.3.2.tgz";
- path = fetchurl {
- name = "dom_serializer___dom_serializer_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz";
- sha1 = "6206437d32ceefaec7161803230c7a20bc1b4d91";
- };
- }
- {
- name = "dom_serializer___dom_serializer_0.1.1.tgz";
- path = fetchurl {
- name = "dom_serializer___dom_serializer_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz";
- sha1 = "1ec4059e284babed36eec2941d4a970a189ce7c0";
- };
- }
- {
- name = "domain_browser___domain_browser_1.2.0.tgz";
- path = fetchurl {
- name = "domain_browser___domain_browser_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz";
- sha1 = "3d31f50191a6749dd1375a7f522e823d42e54eda";
- };
- }
- {
- name = "domelementtype___domelementtype_1.3.1.tgz";
- path = fetchurl {
- name = "domelementtype___domelementtype_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz";
- sha1 = "d048c44b37b0d10a7f2a3d5fee3f4333d790481f";
- };
- }
- {
- name = "domelementtype___domelementtype_2.2.0.tgz";
- path = fetchurl {
- name = "domelementtype___domelementtype_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz";
- sha1 = "9a0b6c2782ed6a1c7323d42267183df9bd8b1d57";
- };
- }
- {
- name = "domhandler___domhandler_2.4.2.tgz";
- path = fetchurl {
- name = "domhandler___domhandler_2.4.2.tgz";
- url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz";
- sha1 = "8805097e933d65e85546f726d60f5eb88b44f803";
- };
- }
- {
- name = "domhandler___domhandler_4.2.2.tgz";
- path = fetchurl {
- name = "domhandler___domhandler_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz";
- sha1 = "e825d721d19a86b8c201a35264e226c678ee755f";
- };
- }
- {
- name = "domino___domino_2.1.6.tgz";
- path = fetchurl {
- name = "domino___domino_2.1.6.tgz";
- url = "https://registry.yarnpkg.com/domino/-/domino-2.1.6.tgz";
- sha1 = "fe4ace4310526e5e7b9d12c7de01b7f485a57ffe";
- };
- }
- {
- name = "dompurify___dompurify_2.3.1.tgz";
- path = fetchurl {
- name = "dompurify___dompurify_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.1.tgz";
- sha1 = "a47059ca21fd1212d3c8f71fdea6943b8bfbdf6a";
- };
- }
- {
- name = "domutils___domutils_1.5.1.tgz";
- path = fetchurl {
- name = "domutils___domutils_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz";
- sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
- };
- }
- {
- name = "domutils___domutils_1.7.0.tgz";
- path = fetchurl {
- name = "domutils___domutils_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz";
- sha1 = "56ea341e834e06e6748af7a1cb25da67ea9f8c2a";
- };
- }
- {
- name = "domutils___domutils_2.8.0.tgz";
- path = fetchurl {
- name = "domutils___domutils_2.8.0.tgz";
- url = "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz";
- sha1 = "4437def5db6e2d1f5d6ee859bd95ca7d02048135";
- };
- }
- {
- name = "dot_case___dot_case_3.0.4.tgz";
- path = fetchurl {
- name = "dot_case___dot_case_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz";
- sha1 = "9b2b670d00a431667a8a75ba29cd1b98809ce751";
- };
- }
- {
- name = "dottie___dottie_2.0.2.tgz";
- path = fetchurl {
- name = "dottie___dottie_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz";
- sha1 = "cc91c0726ce3a054ebf11c55fbc92a7f266dd154";
- };
- }
- {
- name = "duplexify___duplexify_3.7.1.tgz";
- path = fetchurl {
- name = "duplexify___duplexify_3.7.1.tgz";
- url = "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz";
- sha1 = "2a4df5317f6ccfd91f86d6fd25d8d8a103b88309";
- };
- }
- {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- path = fetchurl {
- name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
- };
- }
- {
- name = "ee_first___ee_first_1.1.1.tgz";
- path = fetchurl {
- name = "ee_first___ee_first_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
- };
- }
- {
- name = "ejs___ejs_3.1.6.tgz";
- path = fetchurl {
- name = "ejs___ejs_3.1.6.tgz";
- url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz";
- sha1 = "5bfd0a0689743bb5268b3550cceeebbc1702822a";
- };
- }
- {
- name = "electron_to_chromium___electron_to_chromium_1.3.836.tgz";
- path = fetchurl {
- name = "electron_to_chromium___electron_to_chromium_1.3.836.tgz";
- url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.836.tgz";
- sha1 = "823cb9c98f28c64c673920f1c90ea3826596eaf9";
- };
- }
- {
- name = "elliptic___elliptic_6.5.4.tgz";
- path = fetchurl {
- name = "elliptic___elliptic_6.5.4.tgz";
- url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz";
- sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb";
- };
- }
- {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz";
- sha1 = "e818fd69ce5ccfcb404594f842963bf53164cc37";
- };
- }
- {
- name = "emoji_regex___emoji_regex_9.2.2.tgz";
- path = fetchurl {
- name = "emoji_regex___emoji_regex_9.2.2.tgz";
- url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz";
- sha1 = "840c8803b0d8047f4ff0cf963176b32d4ef3ed72";
- };
- }
- {
- name = "emojify.js___emojify.js_1.1.0.tgz";
- path = fetchurl {
- name = "emojify.js___emojify.js_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/emojify.js/-/emojify.js-1.1.0.tgz";
- sha1 = "079fff223307c9007f570785e8e4935d5c398beb";
- };
- }
- {
- name = "emojis_list___emojis_list_3.0.0.tgz";
- path = fetchurl {
- name = "emojis_list___emojis_list_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz";
- sha1 = "5570662046ad29e2e916e71aae260abdff4f6a78";
- };
- }
- {
- name = "enabled___enabled_2.0.0.tgz";
- path = fetchurl {
- name = "enabled___enabled_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz";
- sha1 = "f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2";
- };
- }
- {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- path = fetchurl {
- name = "encodeurl___encodeurl_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz";
- sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
- };
- }
- {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- path = fetchurl {
- name = "end_of_stream___end_of_stream_1.4.4.tgz";
- url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz";
- sha1 = "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0";
- };
- }
- {
- name = "engine.io_client___engine.io_client_3.5.2.tgz";
- path = fetchurl {
- name = "engine.io_client___engine.io_client_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.2.tgz";
- sha1 = "0ef473621294004e9ceebe73cef0af9e36f2f5fa";
- };
- }
- {
- name = "engine.io_parser___engine.io_parser_2.2.1.tgz";
- path = fetchurl {
- name = "engine.io_parser___engine.io_parser_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.1.tgz";
- sha1 = "57ce5611d9370ee94f99641b589f94c97e4f5da7";
- };
- }
- {
- name = "engine.io___engine.io_3.5.0.tgz";
- path = fetchurl {
- name = "engine.io___engine.io_3.5.0.tgz";
- url = "https://registry.yarnpkg.com/engine.io/-/engine.io-3.5.0.tgz";
- sha1 = "9d6b985c8a39b1fe87cd91eb014de0552259821b";
- };
- }
- {
- name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
- path = fetchurl {
- name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz";
- sha1 = "2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec";
- };
- }
- {
- name = "enquirer___enquirer_2.3.6.tgz";
- path = fetchurl {
- name = "enquirer___enquirer_2.3.6.tgz";
- url = "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz";
- sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d";
- };
- }
- {
- name = "entities___entities_1.1.2.tgz";
- path = fetchurl {
- name = "entities___entities_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz";
- sha1 = "bdfa735299664dfafd34529ed4f8522a275fea56";
- };
- }
- {
- name = "entities___entities_2.2.0.tgz";
- path = fetchurl {
- name = "entities___entities_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz";
- sha1 = "098dc90ebb83d8dffa089d55256b351d34c4da55";
- };
- }
- {
- name = "entities___entities_2.1.0.tgz";
- path = fetchurl {
- name = "entities___entities_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz";
- sha1 = "992d3129cf7df6870b96c57858c249a120f8b8b5";
- };
- }
- {
- name = "envinfo___envinfo_7.8.1.tgz";
- path = fetchurl {
- name = "envinfo___envinfo_7.8.1.tgz";
- url = "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz";
- sha1 = "06377e3e5f4d379fea7ac592d5ad8927e0c4d475";
- };
- }
- {
- name = "errno___errno_0.1.8.tgz";
- path = fetchurl {
- name = "errno___errno_0.1.8.tgz";
- url = "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz";
- sha1 = "8bb3e9c7d463be4976ff888f76b4809ebc2e811f";
- };
- }
- {
- name = "error_ex___error_ex_1.3.2.tgz";
- path = fetchurl {
- name = "error_ex___error_ex_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz";
- sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf";
- };
- }
- {
- name = "es_abstract___es_abstract_1.18.6.tgz";
- path = fetchurl {
- name = "es_abstract___es_abstract_1.18.6.tgz";
- url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.6.tgz";
- sha1 = "2c44e3ea7a6255039164d26559777a6d978cb456";
- };
- }
- {
- name = "es_get_iterator___es_get_iterator_1.1.2.tgz";
- path = fetchurl {
- name = "es_get_iterator___es_get_iterator_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz";
- sha1 = "9234c54aba713486d7ebde0220864af5e2b283f7";
- };
- }
- {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- path = fetchurl {
- name = "es_to_primitive___es_to_primitive_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz";
- sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a";
- };
- }
- {
- name = "es6_error___es6_error_4.1.1.tgz";
- path = fetchurl {
- name = "es6_error___es6_error_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz";
- sha1 = "9e3af407459deed47e9a91f9b885a84eb05c561d";
- };
- }
- {
- name = "esbuild_loader___esbuild_loader_2.15.1.tgz";
- path = fetchurl {
- name = "esbuild_loader___esbuild_loader_2.15.1.tgz";
- url = "https://registry.yarnpkg.com/esbuild-loader/-/esbuild-loader-2.15.1.tgz";
- sha1 = "5a3940f5d20317f1a35720efa33e933f97c923e9";
- };
- }
- {
- name = "esbuild___esbuild_0.12.27.tgz";
- path = fetchurl {
- name = "esbuild___esbuild_0.12.27.tgz";
- url = "https://registry.yarnpkg.com/esbuild/-/esbuild-0.12.27.tgz";
- sha1 = "9bcfb837111c5e89b189188dde339515b213a724";
- };
- }
- {
- name = "escalade___escalade_3.1.1.tgz";
- path = fetchurl {
- name = "escalade___escalade_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz";
- sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40";
- };
- }
- {
- name = "escape_html___escape_html_1.0.3.tgz";
- path = fetchurl {
- name = "escape_html___escape_html_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz";
- sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
- sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34";
- };
- }
- {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- path = fetchurl {
- name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- }
- {
- name = "eslint_config_standard___eslint_config_standard_16.0.3.tgz";
- path = fetchurl {
- name = "eslint_config_standard___eslint_config_standard_16.0.3.tgz";
- url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz";
- sha1 = "6c8761e544e96c531ff92642eeb87842b8488516";
- };
- }
- {
- name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz";
- path = fetchurl {
- name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz";
- url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz";
- sha1 = "4048b958395da89668252001dbd9eca6b83bacbd";
- };
- }
- {
- name = "eslint_module_utils___eslint_module_utils_2.6.2.tgz";
- path = fetchurl {
- name = "eslint_module_utils___eslint_module_utils_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz";
- sha1 = "94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534";
- };
- }
- {
- name = "eslint_plugin_es___eslint_plugin_es_3.0.1.tgz";
- path = fetchurl {
- name = "eslint_plugin_es___eslint_plugin_es_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz";
- sha1 = "75a7cdfdccddc0589934aeeb384175f221c57893";
- };
- }
- {
- name = "eslint_plugin_import___eslint_plugin_import_2.24.2.tgz";
- path = fetchurl {
- name = "eslint_plugin_import___eslint_plugin_import_2.24.2.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz";
- sha1 = "2c8cd2e341f3885918ee27d18479910ade7bb4da";
- };
- }
- {
- name = "eslint_plugin_node___eslint_plugin_node_11.1.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_node___eslint_plugin_node_11.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz";
- sha1 = "c95544416ee4ada26740a30474eefc5402dc671d";
- };
- }
- {
- name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz";
- sha1 = "fb2188fb734e4557993733b41aa1a688f46c6f24";
- };
- }
- {
- name = "eslint_plugin_standard___eslint_plugin_standard_4.1.0.tgz";
- path = fetchurl {
- name = "eslint_plugin_standard___eslint_plugin_standard_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz";
- sha1 = "0c3bf3a67e853f8bbbc580fb4945fbf16f41b7c5";
- };
- }
- {
- name = "eslint_scope___eslint_scope_4.0.3.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz";
- sha1 = "ca03833310f6889a3264781aa82e63eb9cfe7848";
- };
- }
- {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- path = fetchurl {
- name = "eslint_scope___eslint_scope_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz";
- sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c";
- };
- }
- {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- path = fetchurl {
- name = "eslint_utils___eslint_utils_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz";
- sha1 = "d2de5e03424e707dc10c74068ddedae708741b27";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz";
- sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e";
- };
- }
- {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz";
- path = fetchurl {
- name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz";
- sha1 = "f65328259305927392c938ed44eb0a5c9b2bd303";
- };
- }
- {
- name = "eslint___eslint_7.32.0.tgz";
- path = fetchurl {
- name = "eslint___eslint_7.32.0.tgz";
- url = "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz";
- sha1 = "c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d";
- };
- }
- {
- name = "espree___espree_7.3.1.tgz";
- path = fetchurl {
- name = "espree___espree_7.3.1.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz";
- sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6";
- };
- }
- {
- name = "esprima___esprima_4.0.1.tgz";
- path = fetchurl {
- name = "esprima___esprima_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz";
- sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71";
- };
- }
- {
- name = "esquery___esquery_1.4.0.tgz";
- path = fetchurl {
- name = "esquery___esquery_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
- sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
- };
- }
- {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- path = fetchurl {
- name = "esrecurse___esrecurse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz";
- sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921";
- };
- }
- {
- name = "estraverse___estraverse_4.3.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz";
- sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d";
- };
- }
- {
- name = "estraverse___estraverse_5.2.0.tgz";
- path = fetchurl {
- name = "estraverse___estraverse_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz";
- sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880";
- };
- }
- {
- name = "esutils___esutils_2.0.3.tgz";
- path = fetchurl {
- name = "esutils___esutils_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz";
- sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64";
- };
- }
- {
- name = "etag___etag_1.8.1.tgz";
- path = fetchurl {
- name = "etag___etag_1.8.1.tgz";
- url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz";
- sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
- };
- }
- {
- name = "eve_raphael___eve_raphael_0.5.0.tgz";
- path = fetchurl {
- name = "eve_raphael___eve_raphael_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz";
- sha1 = "17c754b792beef3fa6684d79cf5a47c63c4cda30";
- };
- }
- {
- name = "eve___eve_0.5.4.tgz";
- path = fetchurl {
- name = "eve___eve_0.5.4.tgz";
- url = "https://registry.yarnpkg.com/eve/-/eve-0.5.4.tgz";
- sha1 = "67d080b9725291d7e389e34c26860dd97f1debaa";
- };
- }
- {
- name = "events___events_1.1.1.tgz";
- path = fetchurl {
- name = "events___events_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz";
- sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
- };
- }
- {
- name = "events___events_3.3.0.tgz";
- path = fetchurl {
- name = "events___events_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz";
- sha1 = "31a95ad0a924e2d2c419a813aeb2c4e878ea7400";
- };
- }
- {
- name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz";
- path = fetchurl {
- name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
- sha1 = "7fcbdb198dc71959432efe13842684e0525acb02";
- };
- }
- {
- name = "execa___execa_5.1.1.tgz";
- path = fetchurl {
- name = "execa___execa_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz";
- sha1 = "f80ad9cbf4298f7bd1d4c9555c21e93741c411dd";
- };
- }
- {
- name = "exit_on_epipe___exit_on_epipe_1.0.1.tgz";
- path = fetchurl {
- name = "exit_on_epipe___exit_on_epipe_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz";
- sha1 = "0bdd92e87d5285d267daa8171d0eb06159689692";
- };
- }
- {
- name = "expand_brackets___expand_brackets_0.1.5.tgz";
- path = fetchurl {
- name = "expand_brackets___expand_brackets_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz";
- sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
- };
- }
- {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- path = fetchurl {
- name = "expand_brackets___expand_brackets_2.1.4.tgz";
- url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
- };
- }
- {
- name = "expand_range___expand_range_1.8.2.tgz";
- path = fetchurl {
- name = "expand_range___expand_range_1.8.2.tgz";
- url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz";
- sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
- };
- }
- {
- name = "exports_loader___exports_loader_1.1.1.tgz";
- path = fetchurl {
- name = "exports_loader___exports_loader_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/exports-loader/-/exports-loader-1.1.1.tgz";
- sha1 = "88c9a6877ee6a5519d7c41a016bdd99148421e69";
- };
- }
- {
- name = "expose_loader___expose_loader_1.0.3.tgz";
- path = fetchurl {
- name = "expose_loader___expose_loader_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/expose-loader/-/expose-loader-1.0.3.tgz";
- sha1 = "5686d3b78cac8831c4af11c3dc361563deb8a9c0";
- };
- }
- {
- name = "express_session___express_session_1.17.2.tgz";
- path = fetchurl {
- name = "express_session___express_session_1.17.2.tgz";
- url = "https://registry.yarnpkg.com/express-session/-/express-session-1.17.2.tgz";
- sha1 = "397020374f9bf7997f891b85ea338767b30d0efd";
- };
- }
- {
- name = "express___express_4.17.1.tgz";
- path = fetchurl {
- name = "express___express_4.17.1.tgz";
- url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz";
- sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134";
- };
- }
- {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
- };
- }
- {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- path = fetchurl {
- name = "extend_shallow___extend_shallow_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
- };
- }
- {
- name = "extend___extend_3.0.0.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz";
- sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4";
- };
- }
- {
- name = "extend___extend_3.0.2.tgz";
- path = fetchurl {
- name = "extend___extend_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz";
- sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa";
- };
- }
- {
- name = "extglob___extglob_0.3.2.tgz";
- path = fetchurl {
- name = "extglob___extglob_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz";
- sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
- };
- }
- {
- name = "extglob___extglob_2.0.4.tgz";
- path = fetchurl {
- name = "extglob___extglob_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz";
- sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543";
- };
- }
- {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- }
- {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- path = fetchurl {
- name = "extsprintf___extsprintf_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz";
- sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f";
- };
- }
- {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- path = fetchurl {
- name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
- sha1 = "3a7d56b559d6cbc3eb512325244e619a65c6c525";
- };
- }
- {
- name = "fast_glob___fast_glob_3.2.7.tgz";
- path = fetchurl {
- name = "fast_glob___fast_glob_3.2.7.tgz";
- url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz";
- sha1 = "fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1";
- };
- }
- {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- path = fetchurl {
- name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
- sha1 = "874bf69c6f404c2b5d99c481341399fd55892633";
- };
- }
- {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- path = fetchurl {
- name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
- };
- }
- {
- name = "fast_safe_stringify___fast_safe_stringify_2.1.1.tgz";
- path = fetchurl {
- name = "fast_safe_stringify___fast_safe_stringify_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz";
- sha1 = "c406a83b6e70d9e35ce3b30a81141df30aeba884";
- };
- }
- {
- name = "fast_xml_parser___fast_xml_parser_3.20.0.tgz";
- path = fetchurl {
- name = "fast_xml_parser___fast_xml_parser_3.20.0.tgz";
- url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.20.0.tgz";
- sha1 = "b9ce9ddbc44d2cb7e38f846c5929c667bbf0936d";
- };
- }
- {
- name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz";
- path = fetchurl {
- name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz";
- url = "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz";
- sha1 = "9990f7d3a88cc5a9ffd1f1745745251700d497e2";
- };
- }
- {
- name = "fastq___fastq_1.13.0.tgz";
- path = fetchurl {
- name = "fastq___fastq_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz";
- sha1 = "616760f88a7526bdfc596b7cab8c18938c36b98c";
- };
- }
- {
- name = "fault___fault_2.0.0.tgz";
- path = fetchurl {
- name = "fault___fault_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/fault/-/fault-2.0.0.tgz";
- sha1 = "ad2198a6e28e344dcda76a7b32406b1039f0b707";
- };
- }
- {
- name = "fecha___fecha_4.2.1.tgz";
- path = fetchurl {
- name = "fecha___fecha_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/fecha/-/fecha-4.2.1.tgz";
- sha1 = "0a83ad8f86ef62a091e22bb5a039cd03d23eecce";
- };
- }
- {
- name = "figgy_pudding___figgy_pudding_3.5.2.tgz";
- path = fetchurl {
- name = "figgy_pudding___figgy_pudding_3.5.2.tgz";
- url = "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz";
- sha1 = "b4eee8148abb01dcf1d1ac34367d59e12fa61d6e";
- };
- }
- {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- path = fetchurl {
- name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz";
- sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027";
- };
- }
- {
- name = "file_loader___file_loader_6.2.0.tgz";
- path = fetchurl {
- name = "file_loader___file_loader_6.2.0.tgz";
- url = "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz";
- sha1 = "baef7cf8e1840df325e4390b4484879480eebe4d";
- };
- }
- {
- name = "file_saver___file_saver_2.0.5.tgz";
- path = fetchurl {
- name = "file_saver___file_saver_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz";
- sha1 = "d61cfe2ce059f414d899e9dd6d4107ee25670c38";
- };
- }
- {
- name = "file_type___file_type_16.5.3.tgz";
- path = fetchurl {
- name = "file_type___file_type_16.5.3.tgz";
- url = "https://registry.yarnpkg.com/file-type/-/file-type-16.5.3.tgz";
- sha1 = "474b7e88c74724046abb505e9b8ed4db30c4fc06";
- };
- }
- {
- name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz";
- path = fetchurl {
- name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz";
- sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd";
- };
- }
- {
- name = "filelist___filelist_1.0.2.tgz";
- path = fetchurl {
- name = "filelist___filelist_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz";
- sha1 = "80202f21462d4d1c2e214119b1807c1bc0380e5b";
- };
- }
- {
- name = "filename_regex___filename_regex_2.0.1.tgz";
- path = fetchurl {
- name = "filename_regex___filename_regex_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz";
- sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
- };
- }
- {
- name = "fill_range___fill_range_2.2.4.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz";
- sha1 = "eb1e773abb056dcd8df2bfdf6af59b8b3a936565";
- };
- }
- {
- name = "fill_range___fill_range_4.0.0.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
- };
- }
- {
- name = "fill_range___fill_range_7.0.1.tgz";
- path = fetchurl {
- name = "fill_range___fill_range_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz";
- sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40";
- };
- }
- {
- name = "finalhandler___finalhandler_1.1.2.tgz";
- path = fetchurl {
- name = "finalhandler___finalhandler_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz";
- sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d";
- };
- }
- {
- name = "find_cache_dir___find_cache_dir_1.0.0.tgz";
- path = fetchurl {
- name = "find_cache_dir___find_cache_dir_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
- sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
- };
- }
- {
- name = "find_cache_dir___find_cache_dir_2.1.0.tgz";
- path = fetchurl {
- name = "find_cache_dir___find_cache_dir_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz";
- sha1 = "8d0f94cd13fe43c6c7c261a0d86115ca918c05f7";
- };
- }
- {
- name = "find_cache_dir___find_cache_dir_3.3.2.tgz";
- path = fetchurl {
- name = "find_cache_dir___find_cache_dir_3.3.2.tgz";
- url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz";
- sha1 = "b30c5b6eff0730731aea9bbd9dbecbd80256d64b";
- };
- }
- {
- name = "find_up___find_up_5.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz";
- sha1 = "4c92819ecb7083561e4f4a240a86be5198f536fc";
- };
- }
- {
- name = "find_up___find_up_2.1.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz";
- sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
- };
- }
- {
- name = "find_up___find_up_3.0.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz";
- sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73";
- };
- }
- {
- name = "find_up___find_up_4.1.0.tgz";
- path = fetchurl {
- name = "find_up___find_up_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz";
- sha1 = "97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19";
- };
- }
- {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- path = fetchurl {
- name = "flat_cache___flat_cache_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz";
- sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11";
- };
- }
- {
- name = "flat___flat_5.0.2.tgz";
- path = fetchurl {
- name = "flat___flat_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz";
- sha1 = "8ca6fe332069ffa9d324c327198c598259ceb241";
- };
- }
- {
- name = "flatted___flatted_3.2.2.tgz";
- path = fetchurl {
- name = "flatted___flatted_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz";
- sha1 = "64bfed5cb68fe3ca78b3eb214ad97b63bedce561";
- };
- }
- {
- name = "flowchart.js___flowchart.js_1.15.0.tgz";
- path = fetchurl {
- name = "flowchart.js___flowchart.js_1.15.0.tgz";
- url = "https://registry.yarnpkg.com/flowchart.js/-/flowchart.js-1.15.0.tgz";
- sha1 = "132ba2df14af0a65e67280026ef05a1ffd16569f";
- };
- }
- {
- name = "flush_write_stream___flush_write_stream_1.1.1.tgz";
- path = fetchurl {
- name = "flush_write_stream___flush_write_stream_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz";
- sha1 = "8dd7d873a1babc207d94ead0c2e0e44276ebf2e8";
- };
- }
- {
- name = "fn.name___fn.name_1.1.0.tgz";
- path = fetchurl {
- name = "fn.name___fn.name_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz";
- sha1 = "26cad8017967aea8731bc42961d04a3d5988accc";
- };
- }
- {
- name = "follow_redirects___follow_redirects_1.14.3.tgz";
- path = fetchurl {
- name = "follow_redirects___follow_redirects_1.14.3.tgz";
- url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz";
- sha1 = "6ada78118d8d24caee595595accdc0ac6abd022e";
- };
- }
- {
- name = "for_in___for_in_1.0.2.tgz";
- path = fetchurl {
- name = "for_in___for_in_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
- };
- }
- {
- name = "for_own___for_own_0.1.5.tgz";
- path = fetchurl {
- name = "for_own___for_own_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz";
- sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
- };
- }
- {
- name = "foreach___foreach_2.0.5.tgz";
- path = fetchurl {
- name = "foreach___foreach_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz";
- sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
- };
- }
- {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- path = fetchurl {
- name = "forever_agent___forever_agent_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- }
- {
- name = "fork_awesome___fork_awesome_1.2.0.tgz";
- path = fetchurl {
- name = "fork_awesome___fork_awesome_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/fork-awesome/-/fork-awesome-1.2.0.tgz";
- sha1 = "acd43f1e1f54510fa45209c31385b4fde3a95003";
- };
- }
- {
- name = "form_data___form_data_1.0.0_rc3.tgz";
- path = fetchurl {
- name = "form_data___form_data_1.0.0_rc3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc3.tgz";
- sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577";
- };
- }
- {
- name = "form_data___form_data_2.3.3.tgz";
- path = fetchurl {
- name = "form_data___form_data_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz";
- sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6";
- };
- }
- {
- name = "format___format_0.2.2.tgz";
- path = fetchurl {
- name = "format___format_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz";
- sha1 = "d6170107e9efdc4ed30c9dc39016df942b5cb58b";
- };
- }
- {
- name = "formidable___formidable_1.2.2.tgz";
- path = fetchurl {
- name = "formidable___formidable_1.2.2.tgz";
- url = "https://registry.yarnpkg.com/formidable/-/formidable-1.2.2.tgz";
- sha1 = "bf69aea2972982675f00865342b982986f6b8dd9";
- };
- }
- {
- name = "formidable___formidable_1.0.17.tgz";
- path = fetchurl {
- name = "formidable___formidable_1.0.17.tgz";
- url = "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz";
- sha1 = "ef5491490f9433b705faa77249c99029ae348559";
- };
- }
- {
- name = "forwarded___forwarded_0.2.0.tgz";
- path = fetchurl {
- name = "forwarded___forwarded_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz";
- sha1 = "2269936428aad4c15c7ebe9779a84bf0b2a81811";
- };
- }
- {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- path = fetchurl {
- name = "fragment_cache___fragment_cache_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
- };
- }
- {
- name = "fresh___fresh_0.5.2.tgz";
- path = fetchurl {
- name = "fresh___fresh_0.5.2.tgz";
- url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz";
- sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
- };
- }
- {
- name = "from2___from2_2.3.0.tgz";
- path = fetchurl {
- name = "from2___from2_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz";
- sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
- };
- }
- {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- path = fetchurl {
- name = "fs_constants___fs_constants_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz";
- sha1 = "6be0de9be998ce16af8afc24497b9ee9b7ccd9ad";
- };
- }
- {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_1.2.7.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz";
- sha1 = "ccff8570841e7fe4265693da88936c55aed7f7c7";
- };
- }
- {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- path = fetchurl {
- name = "fs_minipass___fs_minipass_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz";
- sha1 = "7f5036fdbf12c63c169190cbe4199c852271f9fb";
- };
- }
- {
- name = "fs_readdir_recursive___fs_readdir_recursive_1.1.0.tgz";
- path = fetchurl {
- name = "fs_readdir_recursive___fs_readdir_recursive_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz";
- sha1 = "e32fc030a2ccee44a6b5371308da54be0b397d27";
- };
- }
- {
- name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz";
- path = fetchurl {
- name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
- sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
- };
- }
- {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- path = fetchurl {
- name = "fs.realpath___fs.realpath_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- }
- {
- name = "fsevents___fsevents_1.2.13.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_1.2.13.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz";
- sha1 = "f325cb0455592428bcf11b383370ef70e3bfcc38";
- };
- }
- {
- name = "fsevents___fsevents_2.3.2.tgz";
- path = fetchurl {
- name = "fsevents___fsevents_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz";
- sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a";
- };
- }
- {
- name = "fstream___fstream_1.0.12.tgz";
- path = fetchurl {
- name = "fstream___fstream_1.0.12.tgz";
- url = "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz";
- sha1 = "4e8ba8ee2d48be4f7d0de505455548eae5932045";
- };
- }
- {
- name = "function_bind___function_bind_1.1.1.tgz";
- path = fetchurl {
- name = "function_bind___function_bind_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz";
- sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d";
- };
- }
- {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- path = fetchurl {
- name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
- };
- }
- {
- name = "gauge___gauge_2.7.4.tgz";
- path = fetchurl {
- name = "gauge___gauge_2.7.4.tgz";
- url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
- };
- }
- {
- name = "generate_function___generate_function_2.3.1.tgz";
- path = fetchurl {
- name = "generate_function___generate_function_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz";
- sha1 = "f069617690c10c868e73b8465746764f97c3479f";
- };
- }
- {
- name = "get_caller_file___get_caller_file_1.0.3.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz";
- sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a";
- };
- }
- {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- path = fetchurl {
- name = "get_caller_file___get_caller_file_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz";
- sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
- };
- }
- {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- path = fetchurl {
- name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
- sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6";
- };
- }
- {
- name = "get_stream___get_stream_6.0.1.tgz";
- path = fetchurl {
- name = "get_stream___get_stream_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz";
- sha1 = "a262d8eef67aced57c2852ad6167526a43cbf7b7";
- };
- }
- {
- name = "get_symbol_description___get_symbol_description_1.0.0.tgz";
- path = fetchurl {
- name = "get_symbol_description___get_symbol_description_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz";
- sha1 = "7fdb81c900101fbd564dd5f1a30af5aadc1e58d6";
- };
- }
- {
- name = "get_value___get_value_2.0.6.tgz";
- path = fetchurl {
- name = "get_value___get_value_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
- };
- }
- {
- name = "getpass___getpass_0.1.7.tgz";
- path = fetchurl {
- name = "getpass___getpass_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- }
- {
- name = "gist_embed___gist_embed_2.6.0.tgz";
- path = fetchurl {
- name = "gist_embed___gist_embed_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/gist-embed/-/gist-embed-2.6.0.tgz";
- sha1 = "1ea95703fa1fc2a1255419f6f06c67e9920649ab";
- };
- }
- {
- name = "glob_base___glob_base_0.3.0.tgz";
- path = fetchurl {
- name = "glob_base___glob_base_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz";
- sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
- };
- }
- {
- name = "glob_parent___glob_parent_2.0.0.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz";
- sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
- };
- }
- {
- name = "glob_parent___glob_parent_3.1.0.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz";
- sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
- };
- }
- {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- path = fetchurl {
- name = "glob_parent___glob_parent_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
- sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
- };
- }
- {
- name = "glob___glob_7.1.7.tgz";
- path = fetchurl {
- name = "glob___glob_7.1.7.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz";
- sha1 = "3b193e9233f01d42d0b3f78294bbeeb418f94a90";
- };
- }
- {
- name = "globals___globals_13.11.0.tgz";
- path = fetchurl {
- name = "globals___globals_13.11.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz";
- sha1 = "40ef678da117fe7bd2e28f1fab24951bd0255be7";
- };
- }
- {
- name = "globals___globals_9.18.0.tgz";
- path = fetchurl {
- name = "globals___globals_9.18.0.tgz";
- url = "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz";
- sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a";
- };
- }
- {
- name = "globby___globby_11.0.4.tgz";
- path = fetchurl {
- name = "globby___globby_11.0.4.tgz";
- url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz";
- sha1 = "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5";
- };
- }
- {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- path = fetchurl {
- name = "graceful_fs___graceful_fs_4.2.8.tgz";
- url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz";
- sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a";
- };
- }
- {
- name = "graphlib___graphlib_2.1.8.tgz";
- path = fetchurl {
- name = "graphlib___graphlib_2.1.8.tgz";
- url = "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.8.tgz";
- sha1 = "5761d414737870084c92ec7b5dbcb0592c9d35da";
- };
- }
- {
- name = "growl___growl_1.10.5.tgz";
- path = fetchurl {
- name = "growl___growl_1.10.5.tgz";
- url = "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz";
- sha1 = "f2735dc2283674fa67478b10181059355c369e5e";
- };
- }
- {
- name = "har_schema___har_schema_2.0.0.tgz";
- path = fetchurl {
- name = "har_schema___har_schema_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- }
- {
- name = "har_validator___har_validator_5.1.5.tgz";
- path = fetchurl {
- name = "har_validator___har_validator_5.1.5.tgz";
- url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz";
- sha1 = "1f0803b9f8cb20c0fa13822df1ecddb36bde1efd";
- };
- }
- {
- name = "has_ansi___has_ansi_2.0.0.tgz";
- path = fetchurl {
- name = "has_ansi___has_ansi_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
- };
- }
- {
- name = "has_bigints___has_bigints_1.0.1.tgz";
- path = fetchurl {
- name = "has_bigints___has_bigints_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz";
- sha1 = "64fe6acb020673e3b78db035a5af69aa9d07b113";
- };
- }
- {
- name = "has_binary2___has_binary2_1.0.3.tgz";
- path = fetchurl {
- name = "has_binary2___has_binary2_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz";
- sha1 = "7776ac627f3ea77250cfc332dab7ddf5e4f5d11d";
- };
- }
- {
- name = "has_color___has_color_0.1.7.tgz";
- path = fetchurl {
- name = "has_color___has_color_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz";
- sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f";
- };
- }
- {
- name = "has_cors___has_cors_1.1.0.tgz";
- path = fetchurl {
- name = "has_cors___has_cors_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz";
- sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39";
- };
- }
- {
- name = "has_flag___has_flag_3.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
- };
- }
- {
- name = "has_flag___has_flag_4.0.0.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz";
- sha1 = "944771fd9c81c81265c4d6941860da06bb59479b";
- };
- }
- {
- name = "has_flag___has_flag_5.0.1.tgz";
- path = fetchurl {
- name = "has_flag___has_flag_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-flag/-/has-flag-5.0.1.tgz";
- sha1 = "5483db2ae02a472d1d0691462fc587d1843cd940";
- };
- }
- {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- path = fetchurl {
- name = "has_symbols___has_symbols_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz";
- sha1 = "165d3070c00309752a1236a479331e3ac56f1423";
- };
- }
- {
- name = "has_tostringtag___has_tostringtag_1.0.0.tgz";
- path = fetchurl {
- name = "has_tostringtag___has_tostringtag_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz";
- sha1 = "7e133818a7d394734f941e73c3d3f9291e658b25";
- };
- }
- {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- path = fetchurl {
- name = "has_unicode___has_unicode_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
- };
- }
- {
- name = "has_value___has_value_0.3.1.tgz";
- path = fetchurl {
- name = "has_value___has_value_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
- };
- }
- {
- name = "has_value___has_value_1.0.0.tgz";
- path = fetchurl {
- name = "has_value___has_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
- };
- }
- {
- name = "has_values___has_values_0.1.4.tgz";
- path = fetchurl {
- name = "has_values___has_values_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
- };
- }
- {
- name = "has_values___has_values_1.0.0.tgz";
- path = fetchurl {
- name = "has_values___has_values_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
- };
- }
- {
- name = "has___has_1.0.3.tgz";
- path = fetchurl {
- name = "has___has_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz";
- sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796";
- };
- }
- {
- name = "hash_base___hash_base_3.1.0.tgz";
- path = fetchurl {
- name = "hash_base___hash_base_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz";
- sha1 = "55c381d9e06e1d2997a883b4a3fddfe7f0d3af33";
- };
- }
- {
- name = "hash.js___hash.js_1.1.7.tgz";
- path = fetchurl {
- name = "hash.js___hash.js_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz";
- sha1 = "0babca538e8d4ee4a0f8988d68866537a003cf42";
- };
- }
- {
- name = "hast_util_from_parse5___hast_util_from_parse5_7.1.0.tgz";
- path = fetchurl {
- name = "hast_util_from_parse5___hast_util_from_parse5_7.1.0.tgz";
- url = "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz";
- sha1 = "c129dd3a24dd8a867ab8a029ca47e27aa54864b7";
- };
- }
- {
- name = "hast_util_is_element___hast_util_is_element_2.1.1.tgz";
- path = fetchurl {
- name = "hast_util_is_element___hast_util_is_element_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-2.1.1.tgz";
- sha1 = "863019a27400dc4f1aedfa4900627f42fd75c2b7";
- };
- }
- {
- name = "hast_util_parse_selector___hast_util_parse_selector_3.1.0.tgz";
- path = fetchurl {
- name = "hast_util_parse_selector___hast_util_parse_selector_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz";
- sha1 = "a519e27e8b61bd5a98fad494ed06131ce68d9c3f";
- };
- }
- {
- name = "hast_util_to_html___hast_util_to_html_8.0.2.tgz";
- path = fetchurl {
- name = "hast_util_to_html___hast_util_to_html_8.0.2.tgz";
- url = "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-8.0.2.tgz";
- sha1 = "3445497508e2157a3169864eb43fb6ee929d3cbe";
- };
- }
- {
- name = "hast_util_whitespace___hast_util_whitespace_2.0.0.tgz";
- path = fetchurl {
- name = "hast_util_whitespace___hast_util_whitespace_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz";
- sha1 = "4fc1086467cc1ef5ba20673cb6b03cec3a970f1c";
- };
- }
- {
- name = "hastscript___hastscript_7.0.2.tgz";
- path = fetchurl {
- name = "hastscript___hastscript_7.0.2.tgz";
- url = "https://registry.yarnpkg.com/hastscript/-/hastscript-7.0.2.tgz";
- sha1 = "d811fc040817d91923448a28156463b2e40d590a";
- };
- }
- {
- name = "he___he_1.2.0.tgz";
- path = fetchurl {
- name = "he___he_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz";
- sha1 = "84ae65fa7eafb165fddb61566ae14baf05664f0f";
- };
- }
- {
- name = "helmet___helmet_4.6.0.tgz";
- path = fetchurl {
- name = "helmet___helmet_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/helmet/-/helmet-4.6.0.tgz";
- sha1 = "579971196ba93c5978eb019e4e8ec0e50076b4df";
- };
- }
- {
- name = "highlight.js___highlight.js_10.7.3.tgz";
- path = fetchurl {
- name = "highlight.js___highlight.js_10.7.3.tgz";
- url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz";
- sha1 = "697272e3991356e40c3cac566a74eef681756531";
- };
- }
- {
- name = "hmac_drbg___hmac_drbg_1.0.1.tgz";
- path = fetchurl {
- name = "hmac_drbg___hmac_drbg_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
- sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
- };
- }
- {
- name = "home_or_tmp___home_or_tmp_2.0.0.tgz";
- path = fetchurl {
- name = "home_or_tmp___home_or_tmp_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
- sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
- };
- }
- {
- name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
- path = fetchurl {
- name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
- sha1 = "dffc0bf9a21c02209090f2aa69429e1414daf3f9";
- };
- }
- {
- name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz";
- path = fetchurl {
- name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz";
- sha1 = "922e96f1f3bb60832c2634b79884096389b1f054";
- };
- }
- {
- name = "html_void_elements___html_void_elements_2.0.0.tgz";
- path = fetchurl {
- name = "html_void_elements___html_void_elements_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.0.tgz";
- sha1 = "ea71bae0dd33de675cdda3c4ace1bc7584bb1071";
- };
- }
- {
- name = "html_webpack_plugin___html_webpack_plugin_4.5.2.tgz";
- path = fetchurl {
- name = "html_webpack_plugin___html_webpack_plugin_4.5.2.tgz";
- url = "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz";
- sha1 = "76fc83fa1a0f12dd5f7da0404a54e2699666bc12";
- };
- }
- {
- name = "htmlparser2___htmlparser2_3.10.1.tgz";
- path = fetchurl {
- name = "htmlparser2___htmlparser2_3.10.1.tgz";
- url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz";
- sha1 = "bd679dc3f59897b6a34bb10749c855bb53a9392f";
- };
- }
- {
- name = "htmlparser2___htmlparser2_6.1.0.tgz";
- path = fetchurl {
- name = "htmlparser2___htmlparser2_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz";
- sha1 = "c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7";
- };
- }
- {
- name = "http_errors___http_errors_1.7.2.tgz";
- path = fetchurl {
- name = "http_errors___http_errors_1.7.2.tgz";
- url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz";
- sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f";
- };
- }
- {
- name = "http_errors___http_errors_1.7.3.tgz";
- path = fetchurl {
- name = "http_errors___http_errors_1.7.3.tgz";
- url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz";
- sha1 = "6c619e4f9c60308c38519498c14fbb10aacebb06";
- };
- }
- {
- name = "http_signature___http_signature_1.2.0.tgz";
- path = fetchurl {
- name = "http_signature___http_signature_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- }
- {
- name = "https_browserify___https_browserify_1.0.0.tgz";
- path = fetchurl {
- name = "https_browserify___https_browserify_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz";
- sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
- };
- }
- {
- name = "human_signals___human_signals_2.1.0.tgz";
- path = fetchurl {
- name = "human_signals___human_signals_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz";
- sha1 = "dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0";
- };
- }
- {
- name = "i18n___i18n_0.13.3.tgz";
- path = fetchurl {
- name = "i18n___i18n_0.13.3.tgz";
- url = "https://registry.yarnpkg.com/i18n/-/i18n-0.13.3.tgz";
- sha1 = "5820f48d87a77cf14e064719bee9bc682ed550eb";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.4.24.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz";
- sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b";
- };
- }
- {
- name = "iconv_lite___iconv_lite_0.6.3.tgz";
- path = fetchurl {
- name = "iconv_lite___iconv_lite_0.6.3.tgz";
- url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz";
- sha1 = "a52f80bf38da1952eb5c681790719871a1a72501";
- };
- }
- {
- name = "icss_utils___icss_utils_5.1.0.tgz";
- path = fetchurl {
- name = "icss_utils___icss_utils_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz";
- sha1 = "c6be6858abd013d768e98366ae47e25d5887b1ae";
- };
- }
- {
- name = "ieee754___ieee754_1.1.13.tgz";
- path = fetchurl {
- name = "ieee754___ieee754_1.1.13.tgz";
- url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz";
- sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84";
- };
- }
- {
- name = "ieee754___ieee754_1.2.1.tgz";
- path = fetchurl {
- name = "ieee754___ieee754_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz";
- sha1 = "8eb7a10a63fff25d15a57b001586d177d1b0d352";
- };
- }
- {
- name = "iferr___iferr_0.1.5.tgz";
- path = fetchurl {
- name = "iferr___iferr_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz";
- sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
- };
- }
- {
- name = "ignore_walk___ignore_walk_3.0.4.tgz";
- path = fetchurl {
- name = "ignore_walk___ignore_walk_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz";
- sha1 = "c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335";
- };
- }
- {
- name = "ignore___ignore_4.0.6.tgz";
- path = fetchurl {
- name = "ignore___ignore_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz";
- sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc";
- };
- }
- {
- name = "ignore___ignore_5.1.8.tgz";
- path = fetchurl {
- name = "ignore___ignore_5.1.8.tgz";
- url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz";
- sha1 = "f150a8b50a34289b33e22f5889abd4d8016f0e57";
- };
- }
- {
- name = "image_size___image_size_0.5.5.tgz";
- path = fetchurl {
- name = "image_size___image_size_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz";
- sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
- };
- }
- {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- path = fetchurl {
- name = "import_fresh___import_fresh_3.3.0.tgz";
- url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz";
- sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b";
- };
- }
- {
- name = "import_local___import_local_3.0.2.tgz";
- path = fetchurl {
- name = "import_local___import_local_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz";
- sha1 = "a8cfd0431d1de4a2199703d003e3e62364fa6db6";
- };
- }
- {
- name = "import_meta_resolve___import_meta_resolve_1.1.1.tgz";
- path = fetchurl {
- name = "import_meta_resolve___import_meta_resolve_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz";
- sha1 = "244fd542fd1fae73550d4f8b3cde3bba1d7b2b18";
- };
- }
- {
- name = "imports_loader___imports_loader_1.2.0.tgz";
- path = fetchurl {
- name = "imports_loader___imports_loader_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-1.2.0.tgz";
- sha1 = "b06823d0bb42e6f5ff89bc893829000eda46693f";
- };
- }
- {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- path = fetchurl {
- name = "imurmurhash___imurmurhash_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
- };
- }
- {
- name = "indent_string___indent_string_4.0.0.tgz";
- path = fetchurl {
- name = "indent_string___indent_string_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz";
- sha1 = "624f8f4497d619b2d9768531d58f4122854d7251";
- };
- }
- {
- name = "indexof___indexof_0.0.1.tgz";
- path = fetchurl {
- name = "indexof___indexof_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz";
- sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
- };
- }
- {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- path = fetchurl {
- name = "infer_owner___infer_owner_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz";
- sha1 = "c4cefcaa8e51051c2a40ba2ce8a3d27295af9467";
- };
- }
- {
- name = "inflection___inflection_1.12.0.tgz";
- path = fetchurl {
- name = "inflection___inflection_1.12.0.tgz";
- url = "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz";
- sha1 = "a200935656d6f5f6bc4dc7502e1aecb703228416";
- };
- }
- {
- name = "inflight___inflight_1.0.6.tgz";
- path = fetchurl {
- name = "inflight___inflight_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- }
- {
- name = "inherits___inherits_2.0.4.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz";
- sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c";
- };
- }
- {
- name = "inherits___inherits_2.0.1.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz";
- sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
- };
- }
- {
- name = "inherits___inherits_2.0.3.tgz";
- path = fetchurl {
- name = "inherits___inherits_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- }
- {
- name = "ini___ini_1.3.8.tgz";
- path = fetchurl {
- name = "ini___ini_1.3.8.tgz";
- url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz";
- sha1 = "a29da425b48806f34767a4efce397269af28432c";
- };
- }
- {
- name = "internal_slot___internal_slot_1.0.3.tgz";
- path = fetchurl {
- name = "internal_slot___internal_slot_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz";
- sha1 = "7347e307deeea2faac2ac6205d4bc7d34967f59c";
- };
- }
- {
- name = "interpret___interpret_2.2.0.tgz";
- path = fetchurl {
- name = "interpret___interpret_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz";
- sha1 = "1a78a0b5965c40a5416d007ad6f50ad27c417df9";
- };
- }
- {
- name = "invariant___invariant_2.2.4.tgz";
- path = fetchurl {
- name = "invariant___invariant_2.2.4.tgz";
- url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz";
- sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6";
- };
- }
- {
- name = "ionicons___ionicons_2.0.1.tgz";
- path = fetchurl {
- name = "ionicons___ionicons_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/ionicons/-/ionicons-2.0.1.tgz";
- sha1 = "ca398113293ea870244f538f0aabbd4b5b209a3e";
- };
- }
- {
- name = "ipaddr.js___ipaddr.js_1.9.1.tgz";
- path = fetchurl {
- name = "ipaddr.js___ipaddr.js_1.9.1.tgz";
- url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz";
- sha1 = "bff38543eeb8984825079ff3a2a8e6cbd46781b3";
- };
- }
- {
- name = "is_absolute_url___is_absolute_url_3.0.3.tgz";
- path = fetchurl {
- name = "is_absolute_url___is_absolute_url_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz";
- sha1 = "96c6a22b6a23929b11ea0afb1836c36ad4a5d698";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
- };
- }
- {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
- sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656";
- };
- }
- {
- name = "is_alphabetical___is_alphabetical_2.0.0.tgz";
- path = fetchurl {
- name = "is_alphabetical___is_alphabetical_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.0.tgz";
- sha1 = "ef6e2caea57c63450fffc7abb6cbdafc5eb96e96";
- };
- }
- {
- name = "is_alphanumerical___is_alphanumerical_2.0.0.tgz";
- path = fetchurl {
- name = "is_alphanumerical___is_alphanumerical_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.0.tgz";
- sha1 = "0fbfeb6a72d21d91143b3d182bf6cf5909ee66f6";
- };
- }
- {
- name = "is_arguments___is_arguments_1.1.1.tgz";
- path = fetchurl {
- name = "is_arguments___is_arguments_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz";
- sha1 = "15b3f88fda01f2a97fec84ca761a560f123efa9b";
- };
- }
- {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- path = fetchurl {
- name = "is_arrayish___is_arrayish_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- }
- {
- name = "is_arrayish___is_arrayish_0.3.2.tgz";
- path = fetchurl {
- name = "is_arrayish___is_arrayish_0.3.2.tgz";
- url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz";
- sha1 = "4574a2ae56f7ab206896fb431eaeed066fdf8f03";
- };
- }
- {
- name = "is_bigint___is_bigint_1.0.4.tgz";
- path = fetchurl {
- name = "is_bigint___is_bigint_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz";
- sha1 = "08147a1875bc2b32005d41ccd8291dffc6691df3";
- };
- }
- {
- name = "is_binary_path___is_binary_path_1.0.1.tgz";
- path = fetchurl {
- name = "is_binary_path___is_binary_path_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz";
- sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
- };
- }
- {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- path = fetchurl {
- name = "is_binary_path___is_binary_path_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz";
- sha1 = "ea1f7f3b80f064236e83470f86c09c254fb45b09";
- };
- }
- {
- name = "is_bluebird___is_bluebird_1.0.2.tgz";
- path = fetchurl {
- name = "is_bluebird___is_bluebird_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz";
- sha1 = "096439060f4aa411abee19143a84d6a55346d6e2";
- };
- }
- {
- name = "is_boolean_object___is_boolean_object_1.1.2.tgz";
- path = fetchurl {
- name = "is_boolean_object___is_boolean_object_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz";
- sha1 = "5c6dc200246dd9321ae4b885a114bb1f75f63719";
- };
- }
- {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- path = fetchurl {
- name = "is_buffer___is_buffer_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz";
- sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be";
- };
- }
- {
- name = "is_buffer___is_buffer_2.0.5.tgz";
- path = fetchurl {
- name = "is_buffer___is_buffer_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz";
- sha1 = "ebc252e400d22ff8d77fa09888821a24a658c191";
- };
- }
- {
- name = "is_callable___is_callable_1.2.4.tgz";
- path = fetchurl {
- name = "is_callable___is_callable_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz";
- sha1 = "47301d58dd0259407865547853df6d61fe471945";
- };
- }
- {
- name = "is_core_module___is_core_module_2.6.0.tgz";
- path = fetchurl {
- name = "is_core_module___is_core_module_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz";
- sha1 = "d7553b2526fe59b92ba3e40c8df757ec8a709e19";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
- };
- }
- {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- path = fetchurl {
- name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
- sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7";
- };
- }
- {
- name = "is_date_object___is_date_object_1.0.5.tgz";
- path = fetchurl {
- name = "is_date_object___is_date_object_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz";
- sha1 = "0841d5536e724c25597bf6ea62e1bd38298df31f";
- };
- }
- {
- name = "is_decimal___is_decimal_2.0.0.tgz";
- path = fetchurl {
- name = "is_decimal___is_decimal_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.0.tgz";
- sha1 = "db1140337809fd043a056ae40a9bd1cdc563034c";
- };
- }
- {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_0.1.6.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca";
- };
- }
- {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- path = fetchurl {
- name = "is_descriptor___is_descriptor_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz";
- sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec";
- };
- }
- {
- name = "is_dotfile___is_dotfile_1.0.3.tgz";
- path = fetchurl {
- name = "is_dotfile___is_dotfile_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz";
- sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
- };
- }
- {
- name = "is_empty___is_empty_1.2.0.tgz";
- path = fetchurl {
- name = "is_empty___is_empty_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz";
- sha1 = "de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b";
- };
- }
- {
- name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz";
- path = fetchurl {
- name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz";
- sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
- };
- }
- {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
- };
- }
- {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- path = fetchurl {
- name = "is_extendable___is_extendable_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz";
- sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4";
- };
- }
- {
- name = "is_extglob___is_extglob_1.0.0.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz";
- sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
- };
- }
- {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- path = fetchurl {
- name = "is_extglob___is_extglob_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- }
- {
- name = "is_finite___is_finite_1.1.0.tgz";
- path = fetchurl {
- name = "is_finite___is_finite_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz";
- sha1 = "904135c77fb42c0641d6aa1bcdbc4daa8da082f3";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz";
- sha1 = "f116f8064fe90b3f7844a38997c0b75051269f1d";
- };
- }
- {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_4.0.0.tgz";
- path = fetchurl {
- name = "is_fullwidth_code_point___is_fullwidth_code_point_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz";
- sha1 = "fae3167c729e7463f8461ce512b080a49268aa88";
- };
- }
- {
- name = "is_generator_function___is_generator_function_1.0.10.tgz";
- path = fetchurl {
- name = "is_generator_function___is_generator_function_1.0.10.tgz";
- url = "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz";
- sha1 = "f1558baf1ac17e0deea7c0415c438351ff2b3c72";
- };
- }
- {
- name = "is_glob___is_glob_2.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz";
- sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
- };
- }
- {
- name = "is_glob___is_glob_3.1.0.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz";
- sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
- };
- }
- {
- name = "is_glob___is_glob_4.0.1.tgz";
- path = fetchurl {
- name = "is_glob___is_glob_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz";
- sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc";
- };
- }
- {
- name = "is_hexadecimal___is_hexadecimal_2.0.0.tgz";
- path = fetchurl {
- name = "is_hexadecimal___is_hexadecimal_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.0.tgz";
- sha1 = "8e1ec9f48fe3eabd90161109856a23e0907a65d5";
- };
- }
- {
- name = "is_map___is_map_2.0.2.tgz";
- path = fetchurl {
- name = "is_map___is_map_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz";
- sha1 = "00922db8c9bf73e81b7a335827bc2a43f2b91127";
- };
- }
- {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- path = fetchurl {
- name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
- sha1 = "3de746c18dda2319241a53675908d8f766f11c24";
- };
- }
- {
- name = "is_number_object___is_number_object_1.0.6.tgz";
- path = fetchurl {
- name = "is_number_object___is_number_object_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz";
- sha1 = "6a7aaf838c7f0686a50b4553f7e54a96494e89f0";
- };
- }
- {
- name = "is_number___is_number_2.1.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz";
- sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
- };
- }
- {
- name = "is_number___is_number_3.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
- };
- }
- {
- name = "is_number___is_number_4.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz";
- sha1 = "0026e37f5454d73e356dfe6564699867c6a7f0ff";
- };
- }
- {
- name = "is_number___is_number_7.0.0.tgz";
- path = fetchurl {
- name = "is_number___is_number_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz";
- sha1 = "7535345b896734d5f80c4d06c50955527a14f12b";
- };
- }
- {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- path = fetchurl {
- name = "is_plain_obj___is_plain_obj_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz";
- sha1 = "45e42e37fccf1f40da8e5f76ee21515840c09287";
- };
- }
- {
- name = "is_plain_obj___is_plain_obj_4.0.0.tgz";
- path = fetchurl {
- name = "is_plain_obj___is_plain_obj_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.0.0.tgz";
- sha1 = "06c0999fd7574edf5a906ba5644ad0feb3a84d22";
- };
- }
- {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- path = fetchurl {
- name = "is_plain_object___is_plain_object_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677";
- };
- }
- {
- name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz";
- path = fetchurl {
- name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
- sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
- };
- }
- {
- name = "is_primitive___is_primitive_2.0.0.tgz";
- path = fetchurl {
- name = "is_primitive___is_primitive_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz";
- sha1 = "207bab91638499c07b2adf240a41a87210034575";
- };
- }
- {
- name = "is_property___is_property_1.0.2.tgz";
- path = fetchurl {
- name = "is_property___is_property_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz";
- sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
- };
- }
- {
- name = "is_regex___is_regex_1.1.4.tgz";
- path = fetchurl {
- name = "is_regex___is_regex_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz";
- sha1 = "eef5663cd59fa4c0ae339505323df6854bb15958";
- };
- }
- {
- name = "is_resolvable___is_resolvable_1.1.0.tgz";
- path = fetchurl {
- name = "is_resolvable___is_resolvable_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz";
- sha1 = "fb18f87ce1feb925169c9a407c19318a3206ed88";
- };
- }
- {
- name = "is_set___is_set_2.0.2.tgz";
- path = fetchurl {
- name = "is_set___is_set_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz";
- sha1 = "90755fa4c2562dc1c5d4024760d6119b94ca18ec";
- };
- }
- {
- name = "is_stream___is_stream_2.0.1.tgz";
- path = fetchurl {
- name = "is_stream___is_stream_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz";
- sha1 = "fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077";
- };
- }
- {
- name = "is_string___is_string_1.0.7.tgz";
- path = fetchurl {
- name = "is_string___is_string_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz";
- sha1 = "0dd12bf2006f255bb58f695110eff7491eebc0fd";
- };
- }
- {
- name = "is_svg___is_svg_4.3.1.tgz";
- path = fetchurl {
- name = "is_svg___is_svg_4.3.1.tgz";
- url = "https://registry.yarnpkg.com/is-svg/-/is-svg-4.3.1.tgz";
- sha1 = "8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b";
- };
- }
- {
- name = "is_symbol___is_symbol_1.0.4.tgz";
- path = fetchurl {
- name = "is_symbol___is_symbol_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz";
- sha1 = "a6dac93b635b063ca6872236de88910a57af139c";
- };
- }
- {
- name = "is_typed_array___is_typed_array_1.1.8.tgz";
- path = fetchurl {
- name = "is_typed_array___is_typed_array_1.1.8.tgz";
- url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.8.tgz";
- sha1 = "cbaa6585dc7db43318bc5b89523ea384a6f65e79";
- };
- }
- {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- path = fetchurl {
- name = "is_typedarray___is_typedarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- }
- {
- name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz";
- path = fetchurl {
- name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz";
- sha1 = "3f26c76a809593b52bfa2ecb5710ed2779b522a7";
- };
- }
- {
- name = "is_weakmap___is_weakmap_2.0.1.tgz";
- path = fetchurl {
- name = "is_weakmap___is_weakmap_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz";
- sha1 = "5008b59bdc43b698201d18f62b37b2ca243e8cf2";
- };
- }
- {
- name = "is_weakset___is_weakset_2.0.1.tgz";
- path = fetchurl {
- name = "is_weakset___is_weakset_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz";
- sha1 = "e9a0af88dbd751589f5e50d80f4c98b780884f83";
- };
- }
- {
- name = "is_what___is_what_3.14.1.tgz";
- path = fetchurl {
- name = "is_what___is_what_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz";
- sha1 = "e1222f46ddda85dead0fd1c9df131760e77755c1";
- };
- }
- {
- name = "is_windows___is_windows_1.0.2.tgz";
- path = fetchurl {
- name = "is_windows___is_windows_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz";
- sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d";
- };
- }
- {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- path = fetchurl {
- name = "is_wsl___is_wsl_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz";
- sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d";
- };
- }
- {
- name = "isarray___isarray_0.0.1.tgz";
- path = fetchurl {
- name = "isarray___isarray_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz";
- sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
- };
- }
- {
- name = "isarray___isarray_1.0.0.tgz";
- path = fetchurl {
- name = "isarray___isarray_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- }
- {
- name = "isarray___isarray_2.0.1.tgz";
- path = fetchurl {
- name = "isarray___isarray_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz";
- sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e";
- };
- }
- {
- name = "isarray___isarray_2.0.5.tgz";
- path = fetchurl {
- name = "isarray___isarray_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz";
- sha1 = "8af1e4c1221244cc62459faf38940d4e644a5723";
- };
- }
- {
- name = "isexe___isexe_2.0.0.tgz";
- path = fetchurl {
- name = "isexe___isexe_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- }
- {
- name = "isobject___isobject_2.1.0.tgz";
- path = fetchurl {
- name = "isobject___isobject_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
- };
- }
- {
- name = "isobject___isobject_3.0.1.tgz";
- path = fetchurl {
- name = "isobject___isobject_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
- };
- }
- {
- name = "isstream___isstream_0.1.2.tgz";
- path = fetchurl {
- name = "isstream___isstream_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- }
- {
- name = "jake___jake_10.8.2.tgz";
- path = fetchurl {
- name = "jake___jake_10.8.2.tgz";
- url = "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz";
- sha1 = "ebc9de8558160a66d82d0eadc6a2e58fbc500a7b";
- };
- }
- {
- name = "jmespath___jmespath_0.15.0.tgz";
- path = fetchurl {
- name = "jmespath___jmespath_0.15.0.tgz";
- url = "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz";
- sha1 = "a3f222a9aae9f966f5d27c796510e28091764217";
- };
- }
- {
- name = "joycon___joycon_3.0.1.tgz";
- path = fetchurl {
- name = "joycon___joycon_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/joycon/-/joycon-3.0.1.tgz";
- sha1 = "9074c9b08ccf37a6726ff74a18485f85efcaddaf";
- };
- }
- {
- name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz";
- path = fetchurl {
- name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz";
- url = "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz";
- sha1 = "06f0335f16e353a695e7206bf50503cb523a6ee5";
- };
- }
- {
- name = "jquery_ui___jquery_ui_1.12.1.tgz";
- path = fetchurl {
- name = "jquery_ui___jquery_ui_1.12.1.tgz";
- url = "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.12.1.tgz";
- sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51";
- };
- }
- {
- name = "jquery___jquery_3.6.0.tgz";
- path = fetchurl {
- name = "jquery___jquery_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz";
- sha1 = "c72a09f15c1bdce142f49dbf1170bdf8adac2470";
- };
- }
- {
- name = "js_cookie___js_cookie_3.0.1.tgz";
- path = fetchurl {
- name = "js_cookie___js_cookie_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.1.tgz";
- sha1 = "9e39b4c6c2f56563708d7d31f6f5f21873a92414";
- };
- }
- {
- name = "js-sequence-diagrams.git";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/hedgedoc/js-sequence-diagrams.git";
- rev = "bda0e49b6c2754f3c7158b1dfb9ccf26efc24b39";
- sha256 = "0d2zf62fmad760rg9hrkyhp03k5apms3fm0mf64yy8q6p3iw7jvw";
- };
- in
- runCommand "js-sequence-diagrams.git" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz";
- sha1 = "19203fb59991df98e3a287050d4647cdeaf32499";
- };
- }
- {
- name = "js_tokens___js_tokens_3.0.2.tgz";
- path = fetchurl {
- name = "js_tokens___js_tokens_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz";
- sha1 = "9866df395102130e38f7f996bceb65443209c25b";
- };
- }
- {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_3.14.1.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
- sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
- };
- }
- {
- name = "js_yaml___js_yaml_4.1.0.tgz";
- path = fetchurl {
- name = "js_yaml___js_yaml_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz";
- sha1 = "c1fb65f8f5017901cdd2c951864ba18458a10602";
- };
- }
- {
- name = "jsbn___jsbn_0.1.1.tgz";
- path = fetchurl {
- name = "jsbn___jsbn_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- }
- {
- name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz";
- path = fetchurl {
- name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz";
- url = "https://registry.yarnpkg.com/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz";
- sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc";
- };
- }
- {
- name = "jsesc___jsesc_1.3.0.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz";
- sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
- };
- }
- {
- name = "jsesc___jsesc_0.5.0.tgz";
- path = fetchurl {
- name = "jsesc___jsesc_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz";
- sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
- };
- }
- {
- name = "json_edm_parser___json_edm_parser_0.1.2.tgz";
- path = fetchurl {
- name = "json_edm_parser___json_edm_parser_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/json-edm-parser/-/json-edm-parser-0.1.2.tgz";
- sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4";
- };
- }
- {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- path = fetchurl {
- name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9";
- };
- }
- {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- path = fetchurl {
- name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz";
- sha1 = "7c47805a94319928e05777405dc12e1f7a4ee02d";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660";
- };
- }
- {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- path = fetchurl {
- name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz";
- sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2";
- };
- }
- {
- name = "json_schema___json_schema_0.2.3.tgz";
- path = fetchurl {
- name = "json_schema___json_schema_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- }
- {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- path = fetchurl {
- name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
- sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
- };
- }
- {
- name = "json_stream___json_stream_1.0.0.tgz";
- path = fetchurl {
- name = "json_stream___json_stream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/json-stream/-/json-stream-1.0.0.tgz";
- sha1 = "1a3854e28d2bbeeab31cc7ddf683d2ddc5652708";
- };
- }
- {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- path = fetchurl {
- name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- }
- {
- name = "json5___json5_0.5.1.tgz";
- path = fetchurl {
- name = "json5___json5_0.5.1.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz";
- sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
- };
- }
- {
- name = "json5___json5_1.0.1.tgz";
- path = fetchurl {
- name = "json5___json5_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz";
- sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe";
- };
- }
- {
- name = "json5___json5_2.2.0.tgz";
- path = fetchurl {
- name = "json5___json5_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz";
- sha1 = "2dfefe720c6ba525d9ebd909950f0515316c89a3";
- };
- }
- {
- name = "jsonlint___jsonlint_1.6.3.tgz";
- path = fetchurl {
- name = "jsonlint___jsonlint_1.6.3.tgz";
- url = "https://registry.yarnpkg.com/jsonlint/-/jsonlint-1.6.3.tgz";
- sha1 = "cb5e31efc0b78291d0d862fbef05900adf212988";
- };
- }
- {
- name = "jsonparse___jsonparse_1.2.0.tgz";
- path = fetchurl {
- name = "jsonparse___jsonparse_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz";
- sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd";
- };
- }
- {
- name = "jsprim___jsprim_1.4.1.tgz";
- path = fetchurl {
- name = "jsprim___jsprim_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- }
- {
- name = "keymaster___keymaster_1.6.2.tgz";
- path = fetchurl {
- name = "keymaster___keymaster_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/keymaster/-/keymaster-1.6.2.tgz";
- sha1 = "e1ae54d0ea9488f9f60b66b668f02e9a1946c6eb";
- };
- }
- {
- name = "khroma___khroma_1.4.1.tgz";
- path = fetchurl {
- name = "khroma___khroma_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/khroma/-/khroma-1.4.1.tgz";
- sha1 = "ad6a5b6a972befc5112ce5129887a1a83af2c003";
- };
- }
- {
- name = "kind_of___kind_of_3.2.2.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- }
- {
- name = "kind_of___kind_of_4.0.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
- };
- }
- {
- name = "kind_of___kind_of_5.1.0.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz";
- sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d";
- };
- }
- {
- name = "kind_of___kind_of_6.0.3.tgz";
- path = fetchurl {
- name = "kind_of___kind_of_6.0.3.tgz";
- url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz";
- sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd";
- };
- }
- {
- name = "klona___klona_2.0.4.tgz";
- path = fetchurl {
- name = "klona___klona_2.0.4.tgz";
- url = "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz";
- sha1 = "7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0";
- };
- }
- {
- name = "kuler___kuler_2.0.0.tgz";
- path = fetchurl {
- name = "kuler___kuler_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz";
- sha1 = "e2c570a3800388fb44407e851531c1d670b061b3";
- };
- }
- {
- name = "last_call_webpack_plugin___last_call_webpack_plugin_3.0.0.tgz";
- path = fetchurl {
- name = "last_call_webpack_plugin___last_call_webpack_plugin_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz";
- sha1 = "9742df0e10e3cf46e5c0381c2de90d3a7a2d7555";
- };
- }
- {
- name = "lazystream___lazystream_1.0.0.tgz";
- path = fetchurl {
- name = "lazystream___lazystream_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz";
- sha1 = "f6995fe0f820392f61396be89462407bb77168e4";
- };
- }
- {
- name = "ldap_filter___ldap_filter_0.3.3.tgz";
- path = fetchurl {
- name = "ldap_filter___ldap_filter_0.3.3.tgz";
- url = "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.3.3.tgz";
- sha1 = "2b14c68a2a9d4104dbdbc910a1ca85fd189e9797";
- };
- }
- {
- name = "ldapauth_fork___ldapauth_fork_5.0.1.tgz";
- path = fetchurl {
- name = "ldapauth_fork___ldapauth_fork_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-5.0.1.tgz";
- sha1 = "18779a9c30371c5bbea02e3b6aaadb60819ad29c";
- };
- }
- {
- name = "ldapjs___ldapjs_2.3.1.tgz";
- path = fetchurl {
- name = "ldapjs___ldapjs_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/ldapjs/-/ldapjs-2.3.1.tgz";
- sha1 = "04136815fb1f21d692ac87fab5961a04d86e8b04";
- };
- }
- {
- name = "less_loader___less_loader_7.3.0.tgz";
- path = fetchurl {
- name = "less_loader___less_loader_7.3.0.tgz";
- url = "https://registry.yarnpkg.com/less-loader/-/less-loader-7.3.0.tgz";
- sha1 = "f9d6d36d18739d642067a05fb5bd70c8c61317e5";
- };
- }
- {
- name = "less___less_4.1.1.tgz";
- path = fetchurl {
- name = "less___less_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/less/-/less-4.1.1.tgz";
- sha1 = "15bf253a9939791dc690888c3ff424f3e6c7edba";
- };
- }
- {
- name = "levn___levn_0.4.1.tgz";
- path = fetchurl {
- name = "levn___levn_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz";
- sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade";
- };
- }
- {
- name = "libnpmconfig___libnpmconfig_1.2.1.tgz";
- path = fetchurl {
- name = "libnpmconfig___libnpmconfig_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/libnpmconfig/-/libnpmconfig-1.2.1.tgz";
- sha1 = "c0c2f793a74e67d4825e5039e7a02a0044dfcbc0";
- };
- }
- {
- name = "lilconfig___lilconfig_2.0.3.tgz";
- path = fetchurl {
- name = "lilconfig___lilconfig_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.3.tgz";
- sha1 = "68f3005e921dafbd2a2afb48379986aa6d2579fd";
- };
- }
- {
- name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
- path = fetchurl {
- name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
- url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz";
- sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00";
- };
- }
- {
- name = "linkify_it___linkify_it_3.0.2.tgz";
- path = fetchurl {
- name = "linkify_it___linkify_it_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.2.tgz";
- sha1 = "f55eeb8bc1d3ae754049e124ab3bb56d97797fb8";
- };
- }
- {
- name = "list.js___list.js_2.3.1.tgz";
- path = fetchurl {
- name = "list.js___list.js_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/list.js/-/list.js-2.3.1.tgz";
- sha1 = "48961989ffe52b0505e352f7a521f819f51df7e7";
- };
- }
- {
- name = "load_json_file___load_json_file_4.0.0.tgz";
- path = fetchurl {
- name = "load_json_file___load_json_file_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz";
- sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
- };
- }
- {
- name = "load_plugin___load_plugin_4.0.1.tgz";
- path = fetchurl {
- name = "load_plugin___load_plugin_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/load-plugin/-/load-plugin-4.0.1.tgz";
- sha1 = "9a239b0337064c9b8aac82b0c9f89b067db487c5";
- };
- }
- {
- name = "loader_runner___loader_runner_2.4.0.tgz";
- path = fetchurl {
- name = "loader_runner___loader_runner_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz";
- sha1 = "ed47066bfe534d7e84c4c7b9998c2a75607d9357";
- };
- }
- {
- name = "loader_utils___loader_utils_1.4.0.tgz";
- path = fetchurl {
- name = "loader_utils___loader_utils_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz";
- sha1 = "c579b5e34cb34b1a74edc6c1fb36bfa371d5a613";
- };
- }
- {
- name = "loader_utils___loader_utils_2.0.0.tgz";
- path = fetchurl {
- name = "loader_utils___loader_utils_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz";
- sha1 = "e4cace5b816d425a166b5f097e10cd12b36064b0";
- };
- }
- {
- name = "locate_path___locate_path_2.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz";
- sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
- };
- }
- {
- name = "locate_path___locate_path_3.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz";
- sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e";
- };
- }
- {
- name = "locate_path___locate_path_5.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz";
- sha1 = "1afba396afd676a6d42504d0a67a3a7eb9f62aa0";
- };
- }
- {
- name = "locate_path___locate_path_6.0.0.tgz";
- path = fetchurl {
- name = "locate_path___locate_path_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz";
- sha1 = "55321eb309febbc59c4801d931a72452a681d286";
- };
- }
- {
- name = "lodash.assignin___lodash.assignin_4.2.0.tgz";
- path = fetchurl {
- name = "lodash.assignin___lodash.assignin_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz";
- sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2";
- };
- }
- {
- name = "lodash.bind___lodash.bind_4.2.1.tgz";
- path = fetchurl {
- name = "lodash.bind___lodash.bind_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz";
- sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35";
- };
- }
- {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
- sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
- };
- }
- {
- name = "lodash.defaults___lodash.defaults_4.2.0.tgz";
- path = fetchurl {
- name = "lodash.defaults___lodash.defaults_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz";
- sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c";
- };
- }
- {
- name = "lodash.difference___lodash.difference_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.difference___lodash.difference_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz";
- sha1 = "9ccb4e505d486b91651345772885a2df27fd017c";
- };
- }
- {
- name = "lodash.filter___lodash.filter_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.filter___lodash.filter_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz";
- sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace";
- };
- }
- {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.flatten___lodash.flatten_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz";
- sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f";
- };
- }
- {
- name = "lodash.foreach___lodash.foreach_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.foreach___lodash.foreach_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz";
- sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53";
- };
- }
- {
- name = "lodash.get___lodash.get_4.4.2.tgz";
- path = fetchurl {
- name = "lodash.get___lodash.get_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz";
- sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99";
- };
- }
- {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- path = fetchurl {
- name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz";
- url = "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
- sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
- };
- }
- {
- name = "lodash.map___lodash.map_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.map___lodash.map_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz";
- sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3";
- };
- }
- {
- name = "lodash.memoize___lodash.memoize_4.1.2.tgz";
- path = fetchurl {
- name = "lodash.memoize___lodash.memoize_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz";
- sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe";
- };
- }
- {
- name = "lodash.merge___lodash.merge_4.6.2.tgz";
- path = fetchurl {
- name = "lodash.merge___lodash.merge_4.6.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz";
- sha1 = "558aa53b43b661e1925a0afdfa36a9a1085fe57a";
- };
- }
- {
- name = "lodash.pick___lodash.pick_4.4.0.tgz";
- path = fetchurl {
- name = "lodash.pick___lodash.pick_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz";
- sha1 = "52f05610fff9ded422611441ed1fc123a03001b3";
- };
- }
- {
- name = "lodash.reduce___lodash.reduce_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.reduce___lodash.reduce_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz";
- sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b";
- };
- }
- {
- name = "lodash.reject___lodash.reject_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.reject___lodash.reject_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz";
- sha1 = "80d6492dc1470864bbf583533b651f42a9f52415";
- };
- }
- {
- name = "lodash.some___lodash.some_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.some___lodash.some_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz";
- sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d";
- };
- }
- {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- path = fetchurl {
- name = "lodash.truncate___lodash.truncate_4.4.2.tgz";
- url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz";
- sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193";
- };
- }
- {
- name = "lodash.union___lodash.union_4.6.0.tgz";
- path = fetchurl {
- name = "lodash.union___lodash.union_4.6.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz";
- sha1 = "48bb5088409f16f1821666641c44dd1aaae3cd88";
- };
- }
- {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- path = fetchurl {
- name = "lodash.uniq___lodash.uniq_4.5.0.tgz";
- url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
- sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
- };
- }
- {
- name = "lodash___lodash_4.17.21.tgz";
- path = fetchurl {
- name = "lodash___lodash_4.17.21.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
- sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
- };
- }
- {
- name = "log_symbols___log_symbols_4.1.0.tgz";
- path = fetchurl {
- name = "log_symbols___log_symbols_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz";
- sha1 = "3fbdbb95b4683ac9fc785111e792e558d4abd503";
- };
- }
- {
- name = "logform___logform_2.2.0.tgz";
- path = fetchurl {
- name = "logform___logform_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/logform/-/logform-2.2.0.tgz";
- sha1 = "40f036d19161fc76b68ab50fdc7fe495544492f2";
- };
- }
- {
- name = "long___long_4.0.0.tgz";
- path = fetchurl {
- name = "long___long_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz";
- sha1 = "9a7b71cfb7d361a194ea555241c92f7468d5bf28";
- };
- }
- {
- name = "longest_streak___longest_streak_3.0.0.tgz";
- path = fetchurl {
- name = "longest_streak___longest_streak_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.0.0.tgz";
- sha1 = "f127e2bded83caa6a35ac5f7a2f2b2f94b36f3dc";
- };
- }
- {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- path = fetchurl {
- name = "loose_envify___loose_envify_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz";
- sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf";
- };
- }
- {
- name = "lower_case___lower_case_2.0.2.tgz";
- path = fetchurl {
- name = "lower_case___lower_case_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz";
- sha1 = "6fa237c63dbdc4a82ca0fd882e4722dc5e634e28";
- };
- }
- {
- name = "lru_cache___lru_cache_4.1.5.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_4.1.5.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz";
- sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd";
- };
- }
- {
- name = "lru_cache___lru_cache_5.1.1.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz";
- sha1 = "1da27e6710271947695daf6848e847f01d84b920";
- };
- }
- {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- path = fetchurl {
- name = "lru_cache___lru_cache_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz";
- sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94";
- };
- }
- {
- name = "lutim___lutim_1.0.3.tgz";
- path = fetchurl {
- name = "lutim___lutim_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/lutim/-/lutim-1.0.3.tgz";
- sha1 = "3a29d0f2731eed7097f2d7367defeaa2ae45d820";
- };
- }
- {
- name = "lz-string.git";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/hackmdio/lz-string.git";
- rev = "efd1f64676264d6d8871b01f4f375fc6ef4f9022";
- sha256 = "036v1a9z79mc961xxx0rw8p6n2w1z8bnqpapgfg2kbw8f87jfxyi";
- };
- in
- runCommand "lz-string.git" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "make_dir___make_dir_1.3.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz";
- sha1 = "79c1033b80515bd6d24ec9933e860ca75ee27f0c";
- };
- }
- {
- name = "make_dir___make_dir_2.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz";
- sha1 = "5f0310e18b8be898cc07009295a30ae41e91e6f5";
- };
- }
- {
- name = "make_dir___make_dir_3.1.0.tgz";
- path = fetchurl {
- name = "make_dir___make_dir_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz";
- sha1 = "415e967046b3a7f1d185277d84aa58203726a13f";
- };
- }
- {
- name = "make_plural___make_plural_4.3.0.tgz";
- path = fetchurl {
- name = "make_plural___make_plural_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz";
- sha1 = "f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735";
- };
- }
- {
- name = "make_plural___make_plural_6.2.2.tgz";
- path = fetchurl {
- name = "make_plural___make_plural_6.2.2.tgz";
- url = "https://registry.yarnpkg.com/make-plural/-/make-plural-6.2.2.tgz";
- sha1 = "beb5fd751355e72660eeb2218bb98eec92853c6c";
- };
- }
- {
- name = "map_cache___map_cache_0.2.2.tgz";
- path = fetchurl {
- name = "map_cache___map_cache_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
- };
- }
- {
- name = "map_visit___map_visit_1.0.0.tgz";
- path = fetchurl {
- name = "map_visit___map_visit_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
- };
- }
- {
- name = "mariadb___mariadb_2.5.4.tgz";
- path = fetchurl {
- name = "mariadb___mariadb_2.5.4.tgz";
- url = "https://registry.yarnpkg.com/mariadb/-/mariadb-2.5.4.tgz";
- sha1 = "c66daa35e2768b8c714c758453531c06ae4927f4";
- };
- }
- {
- name = "markdown_it_abbr___markdown_it_abbr_1.0.4.tgz";
- path = fetchurl {
- name = "markdown_it_abbr___markdown_it_abbr_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz";
- sha1 = "d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8";
- };
- }
- {
- name = "markdown_it_container___markdown_it_container_3.0.0.tgz";
- path = fetchurl {
- name = "markdown_it_container___markdown_it_container_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz";
- sha1 = "1d19b06040a020f9a827577bb7dbf67aa5de9a5b";
- };
- }
- {
- name = "markdown_it_deflist___markdown_it_deflist_2.1.0.tgz";
- path = fetchurl {
- name = "markdown_it_deflist___markdown_it_deflist_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.1.0.tgz";
- sha1 = "50d7a56b9544cd81252f7623bd785e28a8dcef5c";
- };
- }
- {
- name = "markdown_it_emoji___markdown_it_emoji_2.0.0.tgz";
- path = fetchurl {
- name = "markdown_it_emoji___markdown_it_emoji_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-2.0.0.tgz";
- sha1 = "3164ad4c009efd946e98274f7562ad611089a231";
- };
- }
- {
- name = "markdown_it_footnote___markdown_it_footnote_3.0.3.tgz";
- path = fetchurl {
- name = "markdown_it_footnote___markdown_it_footnote_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-footnote/-/markdown-it-footnote-3.0.3.tgz";
- sha1 = "e0e4c0d67390a4c5f0c75f73be605c7c190ca4d8";
- };
- }
- {
- name = "markdown_it_imsize___markdown_it_imsize_2.0.1.tgz";
- path = fetchurl {
- name = "markdown_it_imsize___markdown_it_imsize_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz";
- sha1 = "cca0427905d05338a247cb9ca9d968c5cddd5170";
- };
- }
- {
- name = "markdown_it_ins___markdown_it_ins_3.0.1.tgz";
- path = fetchurl {
- name = "markdown_it_ins___markdown_it_ins_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-3.0.1.tgz";
- sha1 = "c09356b917cf1dbf73add0b275d67ab8c73d4b4d";
- };
- }
- {
- name = "markdown_it_mark___markdown_it_mark_3.0.1.tgz";
- path = fetchurl {
- name = "markdown_it_mark___markdown_it_mark_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-3.0.1.tgz";
- sha1 = "51257db58787d78aaf46dc13418d99a9f3f0ebd3";
- };
- }
- {
- name = "markdown_it_mathjax___markdown_it_mathjax_2.0.0.tgz";
- path = fetchurl {
- name = "markdown_it_mathjax___markdown_it_mathjax_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-mathjax/-/markdown-it-mathjax-2.0.0.tgz";
- sha1 = "ae2b4f4c5c719a03f9e475c664f7b2685231d9e9";
- };
- }
- {
- name = "markdown_it_regexp___markdown_it_regexp_0.4.0.tgz";
- path = fetchurl {
- name = "markdown_it_regexp___markdown_it_regexp_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-regexp/-/markdown-it-regexp-0.4.0.tgz";
- sha1 = "d64d713eecec55ce4cfdeb321750ecc099e2c2dc";
- };
- }
- {
- name = "markdown_it_sub___markdown_it_sub_1.0.0.tgz";
- path = fetchurl {
- name = "markdown_it_sub___markdown_it_sub_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz";
- sha1 = "375fd6026eae7ddcb012497f6411195ea1e3afe8";
- };
- }
- {
- name = "markdown_it_sup___markdown_it_sup_1.0.0.tgz";
- path = fetchurl {
- name = "markdown_it_sup___markdown_it_sup_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz";
- sha1 = "cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3";
- };
- }
- {
- name = "markdown_it___markdown_it_12.2.0.tgz";
- path = fetchurl {
- name = "markdown_it___markdown_it_12.2.0.tgz";
- url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.2.0.tgz";
- sha1 = "091f720fd5db206f80de7a8d1f1a7035fd0d38db";
- };
- }
- {
- name = "marked___marked_2.1.3.tgz";
- path = fetchurl {
- name = "marked___marked_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz";
- sha1 = "bd017cef6431724fd4b27e0657f5ceb14bff3753";
- };
- }
- {
- name = "math_interval_parser___math_interval_parser_2.0.1.tgz";
- path = fetchurl {
- name = "math_interval_parser___math_interval_parser_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-2.0.1.tgz";
- sha1 = "e22cd6d15a0a7f4c03aec560db76513da615bed4";
- };
- }
- {
- name = "math_random___math_random_1.0.4.tgz";
- path = fetchurl {
- name = "math_random___math_random_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz";
- sha1 = "5dd6943c938548267016d4e34f057583080c514c";
- };
- }
- {
- name = "mathjax___mathjax_2.7.9.tgz";
- path = fetchurl {
- name = "mathjax___mathjax_2.7.9.tgz";
- url = "https://registry.yarnpkg.com/mathjax/-/mathjax-2.7.9.tgz";
- sha1 = "d6b67955c173e7d719fcb2fc0288662884eb7d3d";
- };
- }
- {
- name = "mattermost___mattermost_3.4.0.tgz";
- path = fetchurl {
- name = "mattermost___mattermost_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/mattermost/-/mattermost-3.4.0.tgz";
- sha1 = "7e4958e1bc96c7da7bc5f179dd2c6ae5035a8857";
- };
- }
- {
- name = "md5.js___md5.js_1.3.4.tgz";
- path = fetchurl {
- name = "md5.js___md5.js_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz";
- sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
- };
- }
- {
- name = "md5.js___md5.js_1.3.5.tgz";
- path = fetchurl {
- name = "md5.js___md5.js_1.3.5.tgz";
- url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz";
- sha1 = "b5d07b8e3216e3e27cd728d72f70d1e6a342005f";
- };
- }
- {
- name = "mdast_comment_marker___mdast_comment_marker_2.0.0.tgz";
- path = fetchurl {
- name = "mdast_comment_marker___mdast_comment_marker_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/mdast-comment-marker/-/mdast-comment-marker-2.0.0.tgz";
- sha1 = "1b97b8c01fc1ad0a213940e9dc50e787db349907";
- };
- }
- {
- name = "mdast_util_from_markdown___mdast_util_from_markdown_1.0.0.tgz";
- path = fetchurl {
- name = "mdast_util_from_markdown___mdast_util_from_markdown_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.0.0.tgz";
- sha1 = "c517313cd999ec2b8f6d447b438c5a9d500b89c9";
- };
- }
- {
- name = "mdast_util_heading_style___mdast_util_heading_style_2.0.0.tgz";
- path = fetchurl {
- name = "mdast_util_heading_style___mdast_util_heading_style_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-heading-style/-/mdast-util-heading-style-2.0.0.tgz";
- sha1 = "19bcc14d96b4a6f24efbe1318409bd34af64bb7f";
- };
- }
- {
- name = "mdast_util_to_markdown___mdast_util_to_markdown_1.2.1.tgz";
- path = fetchurl {
- name = "mdast_util_to_markdown___mdast_util_to_markdown_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.1.tgz";
- sha1 = "33e93c2409f8c1be17b832f90978e29830af5435";
- };
- }
- {
- name = "mdast_util_to_string___mdast_util_to_string_3.1.0.tgz";
- path = fetchurl {
- name = "mdast_util_to_string___mdast_util_to_string_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz";
- sha1 = "56c506d065fbf769515235e577b5a261552d56e9";
- };
- }
- {
- name = "mdn_data___mdn_data_2.0.14.tgz";
- path = fetchurl {
- name = "mdn_data___mdn_data_2.0.14.tgz";
- url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz";
- sha1 = "7113fc4281917d63ce29b43446f701e68c25ba50";
- };
- }
- {
- name = "mdurl___mdurl_1.0.1.tgz";
- path = fetchurl {
- name = "mdurl___mdurl_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz";
- sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e";
- };
- }
- {
- name = "media_typer___media_typer_0.3.0.tgz";
- path = fetchurl {
- name = "media_typer___media_typer_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz";
- sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
- };
- }
- {
- name = "memory_fs___memory_fs_0.4.1.tgz";
- path = fetchurl {
- name = "memory_fs___memory_fs_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz";
- sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
- };
- }
- {
- name = "memory_fs___memory_fs_0.5.0.tgz";
- path = fetchurl {
- name = "memory_fs___memory_fs_0.5.0.tgz";
- url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz";
- sha1 = "324c01288b88652966d161db77838720845a8e3c";
- };
- }
- {
- name = "merge_descriptors___merge_descriptors_1.0.1.tgz";
- path = fetchurl {
- name = "merge_descriptors___merge_descriptors_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz";
- sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
- };
- }
- {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- path = fetchurl {
- name = "merge_stream___merge_stream_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz";
- sha1 = "52823629a14dd00c9770fb6ad47dc6310f2c1f60";
- };
- }
- {
- name = "merge2___merge2_1.4.1.tgz";
- path = fetchurl {
- name = "merge2___merge2_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz";
- sha1 = "4368892f885e907455a6fd7dc55c0c9d404990ae";
- };
- }
- {
- name = "mermaid___mermaid_8.12.1.tgz";
- path = fetchurl {
- name = "mermaid___mermaid_8.12.1.tgz";
- url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.12.1.tgz";
- sha1 = "6b55617bcfc970a7bf724e027368b281feb62539";
- };
- }
- {
- name = "messageformat_formatters___messageformat_formatters_2.0.1.tgz";
- path = fetchurl {
- name = "messageformat_formatters___messageformat_formatters_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/messageformat-formatters/-/messageformat-formatters-2.0.1.tgz";
- sha1 = "0492c1402a48775f751c9b17c0354e92be012b08";
- };
- }
- {
- name = "messageformat_parser___messageformat_parser_4.1.3.tgz";
- path = fetchurl {
- name = "messageformat_parser___messageformat_parser_4.1.3.tgz";
- url = "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-4.1.3.tgz";
- sha1 = "b824787f57fcda7d50769f5b63e8d4fda68f5b9e";
- };
- }
- {
- name = "messageformat___messageformat_2.3.0.tgz";
- path = fetchurl {
- name = "messageformat___messageformat_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/messageformat/-/messageformat-2.3.0.tgz";
- sha1 = "de263c49029d5eae65d7ee25e0754f57f425ad91";
- };
- }
- {
- name = "meta-marked";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/hedgedoc/meta-marked";
- rev = "6b3653c53a1727f697d0719626c55037b2f03753";
- sha256 = "0yh3hyx2h57lnfs2wcyj90qw0vrm57adf2fks9q5hjr5zgqy9sfw";
- };
- in
- runCommand "meta-marked" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "method_override___method_override_3.0.0.tgz";
- path = fetchurl {
- name = "method_override___method_override_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz";
- sha1 = "6ab0d5d574e3208f15b0c9cf45ab52000468d7a2";
- };
- }
- {
- name = "methods___methods_1.1.2.tgz";
- path = fetchurl {
- name = "methods___methods_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz";
- sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
- };
- }
- {
- name = "micromark_core_commonmark___micromark_core_commonmark_1.0.1.tgz";
- path = fetchurl {
- name = "micromark_core_commonmark___micromark_core_commonmark_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.0.1.tgz";
- sha1 = "a64987cafe872e8b80bc8f2352a5d988586ac4f1";
- };
- }
- {
- name = "micromark_factory_destination___micromark_factory_destination_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_factory_destination___micromark_factory_destination_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz";
- sha1 = "fef1cb59ad4997c496f887b6977aa3034a5a277e";
- };
- }
- {
- name = "micromark_factory_label___micromark_factory_label_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_factory_label___micromark_factory_label_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.0.0.tgz";
- sha1 = "b316ec479b474232973ff13b49b576f84a6f2cbb";
- };
- }
- {
- name = "micromark_factory_space___micromark_factory_space_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_factory_space___micromark_factory_space_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz";
- sha1 = "cebff49968f2b9616c0fcb239e96685cb9497633";
- };
- }
- {
- name = "micromark_factory_title___micromark_factory_title_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_factory_title___micromark_factory_title_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.0.0.tgz";
- sha1 = "708f7a8044f34a898c0efdb4f55e4da66b537273";
- };
- }
- {
- name = "micromark_factory_whitespace___micromark_factory_whitespace_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_factory_whitespace___micromark_factory_whitespace_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz";
- sha1 = "e991e043ad376c1ba52f4e49858ce0794678621c";
- };
- }
- {
- name = "micromark_util_character___micromark_util_character_1.1.0.tgz";
- path = fetchurl {
- name = "micromark_util_character___micromark_util_character_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.1.0.tgz";
- sha1 = "d97c54d5742a0d9611a68ca0cd4124331f264d86";
- };
- }
- {
- name = "micromark_util_chunked___micromark_util_chunked_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_chunked___micromark_util_chunked_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz";
- sha1 = "5b40d83f3d53b84c4c6bce30ed4257e9a4c79d06";
- };
- }
- {
- name = "micromark_util_classify_character___micromark_util_classify_character_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_classify_character___micromark_util_classify_character_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz";
- sha1 = "cbd7b447cb79ee6997dd274a46fc4eb806460a20";
- };
- }
- {
- name = "micromark_util_combine_extensions___micromark_util_combine_extensions_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_combine_extensions___micromark_util_combine_extensions_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz";
- sha1 = "91418e1e74fb893e3628b8d496085639124ff3d5";
- };
- }
- {
- name = "micromark_util_decode_numeric_character_reference___micromark_util_decode_numeric_character_reference_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_decode_numeric_character_reference___micromark_util_decode_numeric_character_reference_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz";
- sha1 = "dcc85f13b5bd93ff8d2868c3dba28039d490b946";
- };
- }
- {
- name = "micromark_util_encode___micromark_util_encode_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_encode___micromark_util_encode_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz";
- sha1 = "c409ecf751a28aa9564b599db35640fccec4c068";
- };
- }
- {
- name = "micromark_util_html_tag_name___micromark_util_html_tag_name_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_html_tag_name___micromark_util_html_tag_name_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz";
- sha1 = "75737e92fef50af0c6212bd309bc5cb8dbd489ed";
- };
- }
- {
- name = "micromark_util_normalize_identifier___micromark_util_normalize_identifier_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_normalize_identifier___micromark_util_normalize_identifier_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz";
- sha1 = "4a3539cb8db954bbec5203952bfe8cedadae7828";
- };
- }
- {
- name = "micromark_util_resolve_all___micromark_util_resolve_all_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_resolve_all___micromark_util_resolve_all_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz";
- sha1 = "a7c363f49a0162e931960c44f3127ab58f031d88";
- };
- }
- {
- name = "micromark_util_sanitize_uri___micromark_util_sanitize_uri_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_sanitize_uri___micromark_util_sanitize_uri_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz";
- sha1 = "27dc875397cd15102274c6c6da5585d34d4f12b2";
- };
- }
- {
- name = "micromark_util_subtokenize___micromark_util_subtokenize_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_subtokenize___micromark_util_subtokenize_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.0.tgz";
- sha1 = "6f006fa719af92776c75a264daaede0fb3943c6a";
- };
- }
- {
- name = "micromark_util_symbol___micromark_util_symbol_1.0.0.tgz";
- path = fetchurl {
- name = "micromark_util_symbol___micromark_util_symbol_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.0.0.tgz";
- sha1 = "91cdbcc9b2a827c0129a177d36241bcd3ccaa34d";
- };
- }
- {
- name = "micromark_util_types___micromark_util_types_1.0.1.tgz";
- path = fetchurl {
- name = "micromark_util_types___micromark_util_types_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.0.1.tgz";
- sha1 = "8bb8a092d93d326bd29fe29602799f2d0d922fd4";
- };
- }
- {
- name = "micromark___micromark_3.0.5.tgz";
- path = fetchurl {
- name = "micromark___micromark_3.0.5.tgz";
- url = "https://registry.yarnpkg.com/micromark/-/micromark-3.0.5.tgz";
- sha1 = "d24792c8a06f201d5608c106dbfadef34c299684";
- };
- }
- {
- name = "micromatch___micromatch_2.3.11.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_2.3.11.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz";
- sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
- };
- }
- {
- name = "micromatch___micromatch_3.1.10.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_3.1.10.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz";
- sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23";
- };
- }
- {
- name = "micromatch___micromatch_4.0.4.tgz";
- path = fetchurl {
- name = "micromatch___micromatch_4.0.4.tgz";
- url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz";
- sha1 = "896d519dfe9db25fce94ceb7a500919bf881ebf9";
- };
- }
- {
- name = "MIDI.js.git";
- path =
- let
- repo = fetchgit {
- url = "https://github.com/paulrosen/MIDI.js.git";
- rev = "e593ffef81a0350f99448e3ab8111957145ff6b2";
- sha256 = "0vhb1harjvr6vzbqwqdhrfc9r3nk3lpl2srm895r977fq3ngkc2a";
- };
- in
- runCommand "MIDI.js.git" { buildInputs = [gnutar]; } ''
- # Set u+w because tar-fs can't unpack archives with read-only dirs
- # https://github.com/mafintosh/tar-fs/issues/79
- tar cf $out --mode u+w -C ${repo} .
- '';
- }
- {
- name = "miller_rabin___miller_rabin_4.0.1.tgz";
- path = fetchurl {
- name = "miller_rabin___miller_rabin_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz";
- sha1 = "f080351c865b0dc562a8462966daa53543c78a4d";
- };
- }
- {
- name = "mime_db___mime_db_1.49.0.tgz";
- path = fetchurl {
- name = "mime_db___mime_db_1.49.0.tgz";
- url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz";
- sha1 = "f3dfde60c99e9cf3bc9701d687778f537001cbed";
- };
- }
- {
- name = "mime_types___mime_types_2.1.32.tgz";
- path = fetchurl {
- name = "mime_types___mime_types_2.1.32.tgz";
- url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz";
- sha1 = "1d00e89e7de7fe02008db61001d9e02852670fd5";
- };
- }
- {
- name = "mime___mime_1.3.4.tgz";
- path = fetchurl {
- name = "mime___mime_1.3.4.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz";
- sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53";
- };
- }
- {
- name = "mime___mime_1.6.0.tgz";
- path = fetchurl {
- name = "mime___mime_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz";
- sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1";
- };
- }
- {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- path = fetchurl {
- name = "mimic_fn___mimic_fn_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz";
- sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b";
- };
- }
- {
- name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.2.tgz";
- path = fetchurl {
- name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.2.tgz";
- url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz";
- sha1 = "83172b4fd812f8fc4a09d6f6d16f924f53990ca8";
- };
- }
- {
- name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz";
- path = fetchurl {
- name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
- sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7";
- };
- }
- {
- name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz";
- path = fetchurl {
- name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
- sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
- };
- }
- {
- name = "minimatch___minimatch_3.0.4.tgz";
- path = fetchurl {
- name = "minimatch___minimatch_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
- };
- }
- {
- name = "minimist___minimist_1.2.5.tgz";
- path = fetchurl {
- name = "minimist___minimist_1.2.5.tgz";
- url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz";
- sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602";
- };
- }
- {
- name = "minio___minio_7.0.19.tgz";
- path = fetchurl {
- name = "minio___minio_7.0.19.tgz";
- url = "https://registry.yarnpkg.com/minio/-/minio-7.0.19.tgz";
- sha1 = "ca47b68669e45237286709a8c06ecf89f992aa61";
- };
- }
- {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- path = fetchurl {
- name = "minipass_collect___minipass_collect_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz";
- sha1 = "22b813bf745dc6edba2576b940022ad6edc8c617";
- };
- }
- {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- path = fetchurl {
- name = "minipass_flush___minipass_flush_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz";
- sha1 = "82e7135d7e89a50ffe64610a787953c4c4cbb373";
- };
- }
- {
- name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz";
- path = fetchurl {
- name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz";
- sha1 = "68472f79711c084657c067c5c6ad93cddea8214c";
- };
- }
- {
- name = "minipass___minipass_2.9.0.tgz";
- path = fetchurl {
- name = "minipass___minipass_2.9.0.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz";
- sha1 = "e713762e7d3e32fed803115cf93e04bca9fcc9a6";
- };
- }
- {
- name = "minipass___minipass_3.1.3.tgz";
- path = fetchurl {
- name = "minipass___minipass_3.1.3.tgz";
- url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz";
- sha1 = "7d42ff1f39635482e15f9cdb53184deebd5815fd";
- };
- }
- {
- name = "minizlib___minizlib_1.3.3.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz";
- sha1 = "2290de96818a34c29551c8a8d301216bd65a861d";
- };
- }
- {
- name = "minizlib___minizlib_2.1.2.tgz";
- path = fetchurl {
- name = "minizlib___minizlib_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz";
- sha1 = "e90d3466ba209b932451508a11ce3d3632145931";
- };
- }
- {
- name = "mississippi___mississippi_3.0.0.tgz";
- path = fetchurl {
- name = "mississippi___mississippi_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz";
- sha1 = "ea0a3291f97e0b5e8776b363d5f0a12d94c67022";
- };
- }
- {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- path = fetchurl {
- name = "mixin_deep___mixin_deep_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz";
- sha1 = "1120b43dc359a785dce65b55b82e257ccf479566";
- };
- }
- {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_0.5.5.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz";
- sha1 = "d91cefd62d1436ca0f41620e251288d420099def";
- };
- }
- {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- path = fetchurl {
- name = "mkdirp___mkdirp_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz";
- sha1 = "3eb5ed62622756d79a5f0e2a221dfebad75c2f7e";
- };
- }
- {
- name = "mocha___mocha_9.1.1.tgz";
- path = fetchurl {
- name = "mocha___mocha_9.1.1.tgz";
- url = "https://registry.yarnpkg.com/mocha/-/mocha-9.1.1.tgz";
- sha1 = "33df2eb9c6262434630510c5f4283b36efda9b61";
- };
- }
- {
- name = "mock_require___mock_require_3.0.3.tgz";
- path = fetchurl {
- name = "mock_require___mock_require_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz";
- sha1 = "ccd544d9eae81dd576b3f219f69ec867318a1946";
- };
- }
- {
- name = "moment_mini___moment_mini_2.24.0.tgz";
- path = fetchurl {
- name = "moment_mini___moment_mini_2.24.0.tgz";
- url = "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.24.0.tgz";
- sha1 = "fa68d98f7fe93ae65bf1262f6abb5fb6983d8d18";
- };
- }
- {
- name = "moment_timezone___moment_timezone_0.5.33.tgz";
- path = fetchurl {
- name = "moment_timezone___moment_timezone_0.5.33.tgz";
- url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz";
- sha1 = "b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c";
- };
- }
- {
- name = "moment___moment_2.29.1.tgz";
- path = fetchurl {
- name = "moment___moment_2.29.1.tgz";
- url = "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz";
- sha1 = "b2be769fa31940be9eeea6469c075e35006fa3d3";
- };
- }
- {
- name = "morgan___morgan_1.10.0.tgz";
- path = fetchurl {
- name = "morgan___morgan_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz";
- sha1 = "091778abc1fc47cd3509824653dae1faab6b17d7";
- };
- }
- {
- name = "move_concurrently___move_concurrently_1.0.1.tgz";
- path = fetchurl {
- name = "move_concurrently___move_concurrently_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz";
- sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
- };
- }
- {
- name = "ms___ms_2.0.0.tgz";
- path = fetchurl {
- name = "ms___ms_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- }
- {
- name = "ms___ms_2.1.1.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz";
- sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a";
- };
- }
- {
- name = "ms___ms_2.1.2.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz";
- sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009";
- };
- }
- {
- name = "ms___ms_2.1.3.tgz";
- path = fetchurl {
- name = "ms___ms_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz";
- sha1 = "574c8138ce1d2b5861f0b44579dbadd60c6615b2";
- };
- }
- {
- name = "mustache___mustache_4.2.0.tgz";
- path = fetchurl {
- name = "mustache___mustache_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz";
- sha1 = "e5892324d60a12ec9c2a73359edca52972bf6f64";
- };
- }
- {
- name = "mysql2___mysql2_2.3.0.tgz";
- path = fetchurl {
- name = "mysql2___mysql2_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/mysql2/-/mysql2-2.3.0.tgz";
- sha1 = "600f5cc27e397dfb77b59eac93666434f88e8079";
- };
- }
- {
- name = "named_placeholders___named_placeholders_1.1.2.tgz";
- path = fetchurl {
- name = "named_placeholders___named_placeholders_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/named-placeholders/-/named-placeholders-1.1.2.tgz";
- sha1 = "ceb1fbff50b6b33492b5cf214ccf5e39cef3d0e8";
- };
- }
- {
- name = "nan___nan_2.15.0.tgz";
- path = fetchurl {
- name = "nan___nan_2.15.0.tgz";
- url = "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz";
- sha1 = "3f34a473ff18e15c1b5626b62903b5ad6e665fee";
- };
- }
- {
- name = "nanoid___nanoid_3.1.23.tgz";
- path = fetchurl {
- name = "nanoid___nanoid_3.1.23.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz";
- sha1 = "f744086ce7c2bc47ee0a8472574d5c78e4183a81";
- };
- }
- {
- name = "nanoid___nanoid_2.1.11.tgz";
- path = fetchurl {
- name = "nanoid___nanoid_2.1.11.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz";
- sha1 = "ec24b8a758d591561531b4176a01e3ab4f0f0280";
- };
- }
- {
- name = "nanoid___nanoid_3.1.25.tgz";
- path = fetchurl {
- name = "nanoid___nanoid_3.1.25.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz";
- sha1 = "09ca32747c0e543f0e1814b7d3793477f9c8e152";
- };
- }
- {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- path = fetchurl {
- name = "nanomatch___nanomatch_1.2.13.tgz";
- url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz";
- sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119";
- };
- }
- {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- path = fetchurl {
- name = "natural_compare___natural_compare_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
- };
- }
- {
- name = "needle___needle_2.9.1.tgz";
- path = fetchurl {
- name = "needle___needle_2.9.1.tgz";
- url = "https://registry.yarnpkg.com/needle/-/needle-2.9.1.tgz";
- sha1 = "22d1dffbe3490c2b83e301f7709b6736cd8f2684";
- };
- }
- {
- name = "negotiator___negotiator_0.6.2.tgz";
- path = fetchurl {
- name = "negotiator___negotiator_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz";
- sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb";
- };
- }
- {
- name = "neo_async___neo_async_2.6.2.tgz";
- path = fetchurl {
- name = "neo_async___neo_async_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz";
- sha1 = "b4aafb93e3aeb2d8174ca53cf163ab7d7308305f";
- };
- }
- {
- name = "no_case___no_case_3.0.4.tgz";
- path = fetchurl {
- name = "no_case___no_case_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz";
- sha1 = "d361fd5c9800f558551a8369fc0dcd4662b6124d";
- };
- }
- {
- name = "node_addon_api___node_addon_api_3.2.1.tgz";
- path = fetchurl {
- name = "node_addon_api___node_addon_api_3.2.1.tgz";
- url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz";
- sha1 = "81325e0a2117789c0128dab65e7e38f07ceba161";
- };
- }
- {
- name = "node_fetch___node_fetch_2.6.2.tgz";
- path = fetchurl {
- name = "node_fetch___node_fetch_2.6.2.tgz";
- url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.2.tgz";
- sha1 = "986996818b73785e47b1965cc34eb093a1d464d0";
- };
- }
- {
- name = "node_forge___node_forge_0.10.0.tgz";
- path = fetchurl {
- name = "node_forge___node_forge_0.10.0.tgz";
- url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz";
- sha1 = "32dea2afb3e9926f02ee5ce8794902691a676bf3";
- };
- }
- {
- name = "node_gyp_build___node_gyp_build_4.3.0.tgz";
- path = fetchurl {
- name = "node_gyp_build___node_gyp_build_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.3.0.tgz";
- sha1 = "9f256b03e5826150be39c764bf51e993946d71a3";
- };
- }
- {
- name = "node_gyp___node_gyp_3.8.0.tgz";
- path = fetchurl {
- name = "node_gyp___node_gyp_3.8.0.tgz";
- url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz";
- sha1 = "540304261c330e80d0d5edce253a68cb3964218c";
- };
- }
- {
- name = "node_libs_browser___node_libs_browser_2.2.1.tgz";
- path = fetchurl {
- name = "node_libs_browser___node_libs_browser_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz";
- sha1 = "b64f513d18338625f90346d27b0d235e631f6425";
- };
- }
- {
- name = "node_pre_gyp___node_pre_gyp_0.11.0.tgz";
- path = fetchurl {
- name = "node_pre_gyp___node_pre_gyp_0.11.0.tgz";
- url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz";
- sha1 = "db1f33215272f692cd38f03238e3e9b47c5dd054";
- };
- }
- {
- name = "node_releases___node_releases_1.1.75.tgz";
- path = fetchurl {
- name = "node_releases___node_releases_1.1.75.tgz";
- url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz";
- sha1 = "6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe";
- };
- }
- {
- name = "nomnom___nomnom_1.8.1.tgz";
- path = fetchurl {
- name = "nomnom___nomnom_1.8.1.tgz";
- url = "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz";
- sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7";
- };
- }
- {
- name = "nopt___nopt_3.0.6.tgz";
- path = fetchurl {
- name = "nopt___nopt_3.0.6.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
- };
- }
- {
- name = "nopt___nopt_4.0.3.tgz";
- path = fetchurl {
- name = "nopt___nopt_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz";
- sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48";
- };
- }
- {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- path = fetchurl {
- name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
- sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8";
- };
- }
- {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
- };
- }
- {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- path = fetchurl {
- name = "normalize_path___normalize_path_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz";
- sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65";
- };
- }
- {
- name = "normalize_url___normalize_url_6.1.0.tgz";
- path = fetchurl {
- name = "normalize_url___normalize_url_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz";
- sha1 = "40d0885b535deffe3f3147bec877d05fe4c5668a";
- };
- }
- {
- name = "npm_bundled___npm_bundled_1.1.2.tgz";
- path = fetchurl {
- name = "npm_bundled___npm_bundled_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz";
- sha1 = "944c78789bd739035b70baa2ca5cc32b8d860bc1";
- };
- }
- {
- name = "npm_normalize_package_bin___npm_normalize_package_bin_1.0.1.tgz";
- path = fetchurl {
- name = "npm_normalize_package_bin___npm_normalize_package_bin_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz";
- sha1 = "6e79a41f23fd235c0623218228da7d9c23b8f6e2";
- };
- }
- {
- name = "npm_packlist___npm_packlist_1.4.8.tgz";
- path = fetchurl {
- name = "npm_packlist___npm_packlist_1.4.8.tgz";
- url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz";
- sha1 = "56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e";
- };
- }
- {
- name = "npm_run_path___npm_run_path_4.0.1.tgz";
- path = fetchurl {
- name = "npm_run_path___npm_run_path_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz";
- sha1 = "b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea";
- };
- }
- {
- name = "npmlog___npmlog_4.1.2.tgz";
- path = fetchurl {
- name = "npmlog___npmlog_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz";
- sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b";
- };
- }
- {
- name = "nth_check___nth_check_2.0.0.tgz";
- path = fetchurl {
- name = "nth_check___nth_check_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz";
- sha1 = "1bb4f6dac70072fc313e8c9cd1417b5074c0a125";
- };
- }
- {
- name = "nth_check___nth_check_1.0.2.tgz";
- path = fetchurl {
- name = "nth_check___nth_check_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz";
- sha1 = "b2bd295c37e3dd58a3bf0700376663ba4d9cf05c";
- };
- }
- {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- path = fetchurl {
- name = "number_is_nan___number_is_nan_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
- };
- }
- {
- name = "nwmatcher___nwmatcher_1.3.9.tgz";
- path = fetchurl {
- name = "nwmatcher___nwmatcher_1.3.9.tgz";
- url = "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz";
- sha1 = "8bab486ff7fa3dfd086656bbe8b17116d3692d2a";
- };
- }
- {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- path = fetchurl {
- name = "oauth_sign___oauth_sign_0.9.0.tgz";
- url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz";
- sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
- };
- }
- {
- name = "oauth___oauth_0.9.15.tgz";
- path = fetchurl {
- name = "oauth___oauth_0.9.15.tgz";
- url = "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz";
- sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1";
- };
- }
- {
- name = "object_assign___object_assign_4.1.1.tgz";
- path = fetchurl {
- name = "object_assign___object_assign_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- }
- {
- name = "object_copy___object_copy_0.1.0.tgz";
- path = fetchurl {
- name = "object_copy___object_copy_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
- };
- }
- {
- name = "object_inspect___object_inspect_1.11.0.tgz";
- path = fetchurl {
- name = "object_inspect___object_inspect_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz";
- sha1 = "9dceb146cedd4148a0d9e51ab88d34cf509922b1";
- };
- }
- {
- name = "object_is___object_is_1.1.5.tgz";
- path = fetchurl {
- name = "object_is___object_is_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz";
- sha1 = "b9deeaa5fc7f1846a0faecdceec138e5778f53ac";
- };
- }
- {
- name = "object_keys___object_keys_1.1.1.tgz";
- path = fetchurl {
- name = "object_keys___object_keys_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz";
- sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e";
- };
- }
- {
- name = "object_visit___object_visit_1.0.1.tgz";
- path = fetchurl {
- name = "object_visit___object_visit_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
- };
- }
- {
- name = "object.assign___object.assign_4.1.2.tgz";
- path = fetchurl {
- name = "object.assign___object.assign_4.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz";
- sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940";
- };
- }
- {
- name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
- path = fetchurl {
- name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz";
- sha1 = "1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7";
- };
- }
- {
- name = "object.omit___object.omit_2.0.1.tgz";
- path = fetchurl {
- name = "object.omit___object.omit_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz";
- sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
- };
- }
- {
- name = "object.pick___object.pick_1.3.0.tgz";
- path = fetchurl {
- name = "object.pick___object.pick_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
- };
- }
- {
- name = "object.values___object.values_1.1.4.tgz";
- path = fetchurl {
- name = "object.values___object.values_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz";
- sha1 = "0d273762833e816b693a637d30073e7051535b30";
- };
- }
- {
- name = "on_finished___on_finished_2.3.0.tgz";
- path = fetchurl {
- name = "on_finished___on_finished_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
- };
- }
- {
- name = "on_headers___on_headers_1.0.2.tgz";
- path = fetchurl {
- name = "on_headers___on_headers_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz";
- sha1 = "772b0ae6aaa525c399e489adfad90c403eb3c28f";
- };
- }
- {
- name = "once___once_1.4.0.tgz";
- path = fetchurl {
- name = "once___once_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- }
- {
- name = "one_time___one_time_1.0.0.tgz";
- path = fetchurl {
- name = "one_time___one_time_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz";
- sha1 = "e06bc174aed214ed58edede573b433bbf827cb45";
- };
- }
- {
- name = "onetime___onetime_5.1.2.tgz";
- path = fetchurl {
- name = "onetime___onetime_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz";
- sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e";
- };
- }
- {
- name = "openid___openid_2.0.9.tgz";
- path = fetchurl {
- name = "openid___openid_2.0.9.tgz";
- url = "https://registry.yarnpkg.com/openid/-/openid-2.0.9.tgz";
- sha1 = "7d2bc03ed4c6bf4ccd05b128e3b0b33b6680205f";
- };
- }
- {
- name = "optimize_css_assets_webpack_plugin___optimize_css_assets_webpack_plugin_6.0.1.tgz";
- path = fetchurl {
- name = "optimize_css_assets_webpack_plugin___optimize_css_assets_webpack_plugin_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz";
- sha1 = "7719bceabba1f3891ec3ae04efb81a1cc99cd793";
- };
- }
- {
- name = "optionator___optionator_0.9.1.tgz";
- path = fetchurl {
- name = "optionator___optionator_0.9.1.tgz";
- url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz";
- sha1 = "4f236a6373dae0566a6d43e1326674f50c291499";
- };
- }
- {
- name = "os_browserify___os_browserify_0.3.0.tgz";
- path = fetchurl {
- name = "os_browserify___os_browserify_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz";
- sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
- };
- }
- {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- path = fetchurl {
- name = "os_homedir___os_homedir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- }
- {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- path = fetchurl {
- name = "os_tmpdir___os_tmpdir_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- }
- {
- name = "osenv___osenv_0.1.5.tgz";
- path = fetchurl {
- name = "osenv___osenv_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz";
- sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410";
- };
- }
- {
- name = "output_file_sync___output_file_sync_1.1.2.tgz";
- path = fetchurl {
- name = "output_file_sync___output_file_sync_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz";
- sha1 = "d0a33eefe61a205facb90092e826598d5245ce76";
- };
- }
- {
- name = "p_limit___p_limit_1.3.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz";
- sha1 = "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8";
- };
- }
- {
- name = "p_limit___p_limit_2.3.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz";
- sha1 = "3dd33c647a214fdfffd835933eb086da0dc21db1";
- };
- }
- {
- name = "p_limit___p_limit_3.1.0.tgz";
- path = fetchurl {
- name = "p_limit___p_limit_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz";
- sha1 = "e1daccbe78d0d1388ca18c64fea38e3e57e3706b";
- };
- }
- {
- name = "p_locate___p_locate_2.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz";
- sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
- };
- }
- {
- name = "p_locate___p_locate_3.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz";
- sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4";
- };
- }
- {
- name = "p_locate___p_locate_4.1.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz";
- sha1 = "a3428bb7088b3a60292f66919278b7c297ad4f07";
- };
- }
- {
- name = "p_locate___p_locate_5.0.0.tgz";
- path = fetchurl {
- name = "p_locate___p_locate_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz";
- sha1 = "83c8315c6785005e3bd021839411c9e110e6d834";
- };
- }
- {
- name = "p_map___p_map_4.0.0.tgz";
- path = fetchurl {
- name = "p_map___p_map_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz";
- sha1 = "bb2f95a5eda2ec168ec9274e06a747c3e2904d2b";
- };
- }
- {
- name = "p_try___p_try_1.0.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz";
- sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
- };
- }
- {
- name = "p_try___p_try_2.2.0.tgz";
- path = fetchurl {
- name = "p_try___p_try_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz";
- sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6";
- };
- }
- {
- name = "packet_reader___packet_reader_1.0.0.tgz";
- path = fetchurl {
- name = "packet_reader___packet_reader_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/packet-reader/-/packet-reader-1.0.0.tgz";
- sha1 = "9238e5480dedabacfe1fe3f2771063f164157d74";
- };
- }
- {
- name = "pako___pako_1.0.11.tgz";
- path = fetchurl {
- name = "pako___pako_1.0.11.tgz";
- url = "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz";
- sha1 = "6c9599d340d54dfd3946380252a35705a6b992bf";
- };
- }
- {
- name = "parallel_transform___parallel_transform_1.2.0.tgz";
- path = fetchurl {
- name = "parallel_transform___parallel_transform_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz";
- sha1 = "9049ca37d6cb2182c3b1d2c720be94d14a5814fc";
- };
- }
- {
- name = "param_case___param_case_3.0.4.tgz";
- path = fetchurl {
- name = "param_case___param_case_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz";
- sha1 = "7d17fe4aa12bde34d4a77d91acfb6219caad01c5";
- };
- }
- {
- name = "parent_module___parent_module_1.0.1.tgz";
- path = fetchurl {
- name = "parent_module___parent_module_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz";
- sha1 = "691d2709e78c79fae3a156622452d00762caaaa2";
- };
- }
- {
- name = "parse_asn1___parse_asn1_5.1.6.tgz";
- path = fetchurl {
- name = "parse_asn1___parse_asn1_5.1.6.tgz";
- url = "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz";
- sha1 = "385080a3ec13cb62a62d39409cb3e88844cdaed4";
- };
- }
- {
- name = "parse_entities___parse_entities_3.0.0.tgz";
- path = fetchurl {
- name = "parse_entities___parse_entities_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-entities/-/parse-entities-3.0.0.tgz";
- sha1 = "9ed6d6569b6cfc95ade058d683ddef239dad60dc";
- };
- }
- {
- name = "parse_glob___parse_glob_3.0.4.tgz";
- path = fetchurl {
- name = "parse_glob___parse_glob_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz";
- sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
- };
- }
- {
- name = "parse_json___parse_json_4.0.0.tgz";
- path = fetchurl {
- name = "parse_json___parse_json_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
- };
- }
- {
- name = "parse_json___parse_json_5.2.0.tgz";
- path = fetchurl {
- name = "parse_json___parse_json_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz";
- sha1 = "c76fc66dee54231c962b22bcc8a72cf2f99753cd";
- };
- }
- {
- name = "parse_node_version___parse_node_version_1.0.1.tgz";
- path = fetchurl {
- name = "parse_node_version___parse_node_version_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz";
- sha1 = "e2b5dbede00e7fa9bc363607f53327e8b073189b";
- };
- }
- {
- name = "parse5___parse5_6.0.1.tgz";
- path = fetchurl {
- name = "parse5___parse5_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz";
- sha1 = "e1a1c085c569b3dc08321184f19a39cc27f7c30b";
- };
- }
- {
- name = "parseqs___parseqs_0.0.6.tgz";
- path = fetchurl {
- name = "parseqs___parseqs_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.6.tgz";
- sha1 = "8e4bb5a19d1cdc844a08ac974d34e273afa670d5";
- };
- }
- {
- name = "parseuri___parseuri_0.0.6.tgz";
- path = fetchurl {
- name = "parseuri___parseuri_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.6.tgz";
- sha1 = "e1496e829e3ac2ff47f39a4dd044b32823c4a25a";
- };
- }
- {
- name = "parseurl___parseurl_1.3.3.tgz";
- path = fetchurl {
- name = "parseurl___parseurl_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz";
- sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4";
- };
- }
- {
- name = "pascal_case___pascal_case_3.1.2.tgz";
- path = fetchurl {
- name = "pascal_case___pascal_case_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz";
- sha1 = "b48e0ef2b98e205e7c1dae747d0b1508237660eb";
- };
- }
- {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- path = fetchurl {
- name = "pascalcase___pascalcase_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
- };
- }
- {
- name = "passport_dropbox_oauth2___passport_dropbox_oauth2_1.1.0.tgz";
- path = fetchurl {
- name = "passport_dropbox_oauth2___passport_dropbox_oauth2_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/passport-dropbox-oauth2/-/passport-dropbox-oauth2-1.1.0.tgz";
- sha1 = "77c737636e4841944dfb82dfc42c3d8ab782c10e";
- };
- }
- {
- name = "passport_facebook___passport_facebook_3.0.0.tgz";
- path = fetchurl {
- name = "passport_facebook___passport_facebook_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-3.0.0.tgz";
- sha1 = "b16f7314128be55d020a2b75f574c194bd6d9805";
- };
- }
- {
- name = "passport_github___passport_github_1.1.0.tgz";
- path = fetchurl {
- name = "passport_github___passport_github_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/passport-github/-/passport-github-1.1.0.tgz";
- sha1 = "8ce1e3fcd61ad7578eb1df595839e4aea12355d4";
- };
- }
- {
- name = "passport_gitlab2___passport_gitlab2_5.0.0.tgz";
- path = fetchurl {
- name = "passport_gitlab2___passport_gitlab2_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-5.0.0.tgz";
- sha1 = "ea37e5285321c026a02671e87469cac28cce9b69";
- };
- }
- {
- name = "passport_google_oauth20___passport_google_oauth20_2.0.0.tgz";
- path = fetchurl {
- name = "passport_google_oauth20___passport_google_oauth20_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-2.0.0.tgz";
- sha1 = "0d241b2d21ebd3dc7f2b60669ec4d587e3a674ef";
- };
- }
- {
- name = "passport_ldapauth___passport_ldapauth_3.0.1.tgz";
- path = fetchurl {
- name = "passport_ldapauth___passport_ldapauth_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-3.0.1.tgz";
- sha1 = "1432e8469de18bd46b5b39a46a866b416c1ddded";
- };
- }
- {
- name = "passport_local___passport_local_1.0.0.tgz";
- path = fetchurl {
- name = "passport_local___passport_local_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-local/-/passport-local-1.0.0.tgz";
- sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
- };
- }
- {
- name = "passport_oauth1___passport_oauth1_1.2.0.tgz";
- path = fetchurl {
- name = "passport_oauth1___passport_oauth1_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/passport-oauth1/-/passport-oauth1-1.2.0.tgz";
- sha1 = "5229d431781bf5b265bec86ce9a9cce58a756cf9";
- };
- }
- {
- name = "passport_oauth2___passport_oauth2_1.6.0.tgz";
- path = fetchurl {
- name = "passport_oauth2___passport_oauth2_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/passport-oauth2/-/passport-oauth2-1.6.0.tgz";
- sha1 = "5f599735e0ea40ea3027643785f81a3a9b4feb50";
- };
- }
- {
- name = "passport_oauth___passport_oauth_1.0.0.tgz";
- path = fetchurl {
- name = "passport_oauth___passport_oauth_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-oauth/-/passport-oauth-1.0.0.tgz";
- sha1 = "90aff63387540f02089af28cdad39ea7f80d77df";
- };
- }
- {
- name = "passport_saml___passport_saml_3.1.2.tgz";
- path = fetchurl {
- name = "passport_saml___passport_saml_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/passport-saml/-/passport-saml-3.1.2.tgz";
- sha1 = "34a0c2c423d729ce102e69fea9c22040910e6d43";
- };
- }
- {
- name = "passport_strategy___passport_strategy_1.0.0.tgz";
- path = fetchurl {
- name = "passport_strategy___passport_strategy_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz";
- sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4";
- };
- }
- {
- name = "passport_twitter___passport_twitter_1.0.4.tgz";
- path = fetchurl {
- name = "passport_twitter___passport_twitter_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/passport-twitter/-/passport-twitter-1.0.4.tgz";
- sha1 = "01a799e1f760bf2de49f2ba5fba32282f18932d7";
- };
- }
- {
- name = "passport.socketio___passport.socketio_3.7.0.tgz";
- path = fetchurl {
- name = "passport.socketio___passport.socketio_3.7.0.tgz";
- url = "https://registry.yarnpkg.com/passport.socketio/-/passport.socketio-3.7.0.tgz";
- sha1 = "2ee5fafe9695d4281c8cddd3fe975ecd18e6726e";
- };
- }
- {
- name = "passport___passport_0.4.1.tgz";
- path = fetchurl {
- name = "passport___passport_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/passport/-/passport-0.4.1.tgz";
- sha1 = "941446a21cb92fc688d97a0861c38ce9f738f270";
- };
- }
- {
- name = "path_browserify___path_browserify_0.0.1.tgz";
- path = fetchurl {
- name = "path_browserify___path_browserify_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz";
- sha1 = "e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a";
- };
- }
- {
- name = "path_dirname___path_dirname_1.0.2.tgz";
- path = fetchurl {
- name = "path_dirname___path_dirname_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz";
- sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
- };
- }
- {
- name = "path_exists___path_exists_3.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
- };
- }
- {
- name = "path_exists___path_exists_4.0.0.tgz";
- path = fetchurl {
- name = "path_exists___path_exists_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz";
- sha1 = "513bdbe2d3b95d7762e8c1137efa195c6c61b5b3";
- };
- }
- {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- path = fetchurl {
- name = "path_is_absolute___path_is_absolute_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- }
- {
- name = "path_key___path_key_3.1.1.tgz";
- path = fetchurl {
- name = "path_key___path_key_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz";
- sha1 = "581f6ade658cbba65a0d3380de7753295054f375";
- };
- }
- {
- name = "path_parse___path_parse_1.0.7.tgz";
- path = fetchurl {
- name = "path_parse___path_parse_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz";
- sha1 = "fbc114b60ca42b30d9daf5858e4bd68bbedb6735";
- };
- }
- {
- name = "path_to_regexp___path_to_regexp_0.1.7.tgz";
- path = fetchurl {
- name = "path_to_regexp___path_to_regexp_0.1.7.tgz";
- url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
- sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
- };
- }
- {
- name = "path_type___path_type_3.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz";
- sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f";
- };
- }
- {
- name = "path_type___path_type_4.0.0.tgz";
- path = fetchurl {
- name = "path_type___path_type_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz";
- sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b";
- };
- }
- {
- name = "pause___pause_0.0.1.tgz";
- path = fetchurl {
- name = "pause___pause_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz";
- sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d";
- };
- }
- {
- name = "pbkdf2___pbkdf2_3.1.2.tgz";
- path = fetchurl {
- name = "pbkdf2___pbkdf2_3.1.2.tgz";
- url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz";
- sha1 = "dd822aa0887580e52f1a039dc3eda108efae3075";
- };
- }
- {
- name = "pdfobject___pdfobject_2.2.6.tgz";
- path = fetchurl {
- name = "pdfobject___pdfobject_2.2.6.tgz";
- url = "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.2.6.tgz";
- sha1 = "cb8a0b7697af88df8af017b5fd4a7a42abb6e031";
- };
- }
- {
- name = "peek_readable___peek_readable_4.0.1.tgz";
- path = fetchurl {
- name = "peek_readable___peek_readable_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.0.1.tgz";
- sha1 = "9a045f291db254111c3412c1ce4fec27ddd4d202";
- };
- }
- {
- name = "performance_now___performance_now_2.1.0.tgz";
- path = fetchurl {
- name = "performance_now___performance_now_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- }
- {
- name = "pg_connection_string___pg_connection_string_2.5.0.tgz";
- path = fetchurl {
- name = "pg_connection_string___pg_connection_string_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.5.0.tgz";
- sha1 = "538cadd0f7e603fc09a12590f3b8a452c2c0cf34";
- };
- }
- {
- name = "pg_hstore___pg_hstore_2.3.4.tgz";
- path = fetchurl {
- name = "pg_hstore___pg_hstore_2.3.4.tgz";
- url = "https://registry.yarnpkg.com/pg-hstore/-/pg-hstore-2.3.4.tgz";
- sha1 = "4425e3e2a3e15d2a334c35581186c27cf2e9b8dd";
- };
- }
- {
- name = "pg_int8___pg_int8_1.0.1.tgz";
- path = fetchurl {
- name = "pg_int8___pg_int8_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz";
- sha1 = "943bd463bf5b71b4170115f80f8efc9a0c0eb78c";
- };
- }
- {
- name = "pg_pool___pg_pool_3.4.1.tgz";
- path = fetchurl {
- name = "pg_pool___pg_pool_3.4.1.tgz";
- url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.4.1.tgz";
- sha1 = "0e71ce2c67b442a5e862a9c182172c37eda71e9c";
- };
- }
- {
- name = "pg_protocol___pg_protocol_1.5.0.tgz";
- path = fetchurl {
- name = "pg_protocol___pg_protocol_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.5.0.tgz";
- sha1 = "b5dd452257314565e2d54ab3c132adc46565a6a0";
- };
- }
- {
- name = "pg_types___pg_types_2.2.0.tgz";
- path = fetchurl {
- name = "pg_types___pg_types_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz";
- sha1 = "2d0250d636454f7cfa3b6ae0382fdfa8063254a3";
- };
- }
- {
- name = "pg___pg_8.7.1.tgz";
- path = fetchurl {
- name = "pg___pg_8.7.1.tgz";
- url = "https://registry.yarnpkg.com/pg/-/pg-8.7.1.tgz";
- sha1 = "9ea9d1ec225980c36f94e181d009ab9f4ce4c471";
- };
- }
- {
- name = "pgpass___pgpass_1.0.4.tgz";
- path = fetchurl {
- name = "pgpass___pgpass_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.4.tgz";
- sha1 = "85eb93a83800b20f8057a2b029bf05abaf94ea9c";
- };
- }
- {
- name = "picomatch___picomatch_2.3.0.tgz";
- path = fetchurl {
- name = "picomatch___picomatch_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz";
- sha1 = "f1f061de8f6a4bf022892e2d128234fb98302972";
- };
- }
- {
- name = "pify___pify_3.0.0.tgz";
- path = fetchurl {
- name = "pify___pify_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz";
- sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
- };
- }
- {
- name = "pify___pify_4.0.1.tgz";
- path = fetchurl {
- name = "pify___pify_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz";
- sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231";
- };
- }
- {
- name = "pkg_dir___pkg_dir_2.0.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz";
- sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
- };
- }
- {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz";
- sha1 = "2749020f239ed990881b1f71210d51eb6523bea3";
- };
- }
- {
- name = "pkg_dir___pkg_dir_4.2.0.tgz";
- path = fetchurl {
- name = "pkg_dir___pkg_dir_4.2.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz";
- sha1 = "f099133df7ede422e81d1d8448270eeb3e4261f3";
- };
- }
- {
- name = "pkg_up___pkg_up_2.0.0.tgz";
- path = fetchurl {
- name = "pkg_up___pkg_up_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz";
- sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f";
- };
- }
- {
- name = "pkginfo___pkginfo_0.2.3.tgz";
- path = fetchurl {
- name = "pkginfo___pkginfo_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.2.3.tgz";
- sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8";
- };
- }
- {
- name = "pkginfo___pkginfo_0.4.1.tgz";
- path = fetchurl {
- name = "pkginfo___pkginfo_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz";
- sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
- };
- }
- {
- name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz";
- path = fetchurl {
- name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz";
- sha1 = "aeddd3f994c933e4ad98b99d9a556efa0e2fe942";
- };
- }
- {
- name = "pluralize___pluralize_8.0.0.tgz";
- path = fetchurl {
- name = "pluralize___pluralize_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz";
- sha1 = "1a6fa16a38d12a1901e0320fa017051c539ce3b1";
- };
- }
- {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- path = fetchurl {
- name = "posix_character_classes___posix_character_classes_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
- };
- }
- {
- name = "postcss_calc___postcss_calc_8.0.0.tgz";
- path = fetchurl {
- name = "postcss_calc___postcss_calc_8.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.0.0.tgz";
- sha1 = "a05b87aacd132740a5db09462a3612453e5df90a";
- };
- }
- {
- name = "postcss_colormin___postcss_colormin_5.2.0.tgz";
- path = fetchurl {
- name = "postcss_colormin___postcss_colormin_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.0.tgz";
- sha1 = "2b620b88c0ff19683f3349f4cf9e24ebdafb2c88";
- };
- }
- {
- name = "postcss_convert_values___postcss_convert_values_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_convert_values___postcss_convert_values_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz";
- sha1 = "4ec19d6016534e30e3102fdf414e753398645232";
- };
- }
- {
- name = "postcss_discard_comments___postcss_discard_comments_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_discard_comments___postcss_discard_comments_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz";
- sha1 = "9eae4b747cf760d31f2447c27f0619d5718901fe";
- };
- }
- {
- name = "postcss_discard_duplicates___postcss_discard_duplicates_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_discard_duplicates___postcss_discard_duplicates_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz";
- sha1 = "68f7cc6458fe6bab2e46c9f55ae52869f680e66d";
- };
- }
- {
- name = "postcss_discard_empty___postcss_discard_empty_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_discard_empty___postcss_discard_empty_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz";
- sha1 = "ee136c39e27d5d2ed4da0ee5ed02bc8a9f8bf6d8";
- };
- }
- {
- name = "postcss_discard_overridden___postcss_discard_overridden_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_discard_overridden___postcss_discard_overridden_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz";
- sha1 = "454b41f707300b98109a75005ca4ab0ff2743ac6";
- };
- }
- {
- name = "postcss_merge_longhand___postcss_merge_longhand_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_merge_longhand___postcss_merge_longhand_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz";
- sha1 = "277ada51d9a7958e8ef8cf263103c9384b322a41";
- };
- }
- {
- name = "postcss_merge_rules___postcss_merge_rules_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_merge_rules___postcss_merge_rules_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz";
- sha1 = "d6e4d65018badbdb7dcc789c4f39b941305d410a";
- };
- }
- {
- name = "postcss_minify_font_values___postcss_minify_font_values_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_minify_font_values___postcss_minify_font_values_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz";
- sha1 = "a90cefbfdaa075bd3dbaa1b33588bb4dc268addf";
- };
- }
- {
- name = "postcss_minify_gradients___postcss_minify_gradients_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_minify_gradients___postcss_minify_gradients_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.2.tgz";
- sha1 = "7c175c108f06a5629925d698b3c4cf7bd3864ee5";
- };
- }
- {
- name = "postcss_minify_params___postcss_minify_params_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_minify_params___postcss_minify_params_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz";
- sha1 = "371153ba164b9d8562842fdcd929c98abd9e5b6c";
- };
- }
- {
- name = "postcss_minify_selectors___postcss_minify_selectors_5.1.0.tgz";
- path = fetchurl {
- name = "postcss_minify_selectors___postcss_minify_selectors_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz";
- sha1 = "4385c845d3979ff160291774523ffa54eafd5a54";
- };
- }
- {
- name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz";
- sha1 = "cda1f047c0ae80c97dbe28c3e76a43b88025741d";
- };
- }
- {
- name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz";
- sha1 = "ebbb54fae1598eecfdf691a02b3ff3b390a5a51c";
- };
- }
- {
- name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz";
- sha1 = "9ef3151456d3bbfa120ca44898dfca6f2fa01f06";
- };
- }
- {
- name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz";
- path = fetchurl {
- name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz";
- sha1 = "d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c";
- };
- }
- {
- name = "postcss_normalize_charset___postcss_normalize_charset_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_charset___postcss_normalize_charset_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz";
- sha1 = "121559d1bebc55ac8d24af37f67bd4da9efd91d0";
- };
- }
- {
- name = "postcss_normalize_display_values___postcss_normalize_display_values_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_display_values___postcss_normalize_display_values_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz";
- sha1 = "62650b965981a955dffee83363453db82f6ad1fd";
- };
- }
- {
- name = "postcss_normalize_positions___postcss_normalize_positions_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_positions___postcss_normalize_positions_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz";
- sha1 = "868f6af1795fdfa86fbbe960dceb47e5f9492fe5";
- };
- }
- {
- name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz";
- sha1 = "cbc0de1383b57f5bb61ddd6a84653b5e8665b2b5";
- };
- }
- {
- name = "postcss_normalize_string___postcss_normalize_string_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_string___postcss_normalize_string_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz";
- sha1 = "d9eafaa4df78c7a3b973ae346ef0e47c554985b0";
- };
- }
- {
- name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz";
- sha1 = "8ee41103b9130429c6cbba736932b75c5e2cb08c";
- };
- }
- {
- name = "postcss_normalize_unicode___postcss_normalize_unicode_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_unicode___postcss_normalize_unicode_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz";
- sha1 = "82d672d648a411814aa5bf3ae565379ccd9f5e37";
- };
- }
- {
- name = "postcss_normalize_url___postcss_normalize_url_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_normalize_url___postcss_normalize_url_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz";
- sha1 = "ddcdfb7cede1270740cf3e4dfc6008bd96abc763";
- };
- }
- {
- name = "postcss_normalize_whitespace___postcss_normalize_whitespace_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_normalize_whitespace___postcss_normalize_whitespace_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz";
- sha1 = "b0b40b5bcac83585ff07ead2daf2dcfbeeef8e9a";
- };
- }
- {
- name = "postcss_ordered_values___postcss_ordered_values_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_ordered_values___postcss_ordered_values_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz";
- sha1 = "1f351426977be00e0f765b3164ad753dac8ed044";
- };
- }
- {
- name = "postcss_reduce_initial___postcss_reduce_initial_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_reduce_initial___postcss_reduce_initial_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz";
- sha1 = "9d6369865b0f6f6f6b165a0ef5dc1a4856c7e946";
- };
- }
- {
- name = "postcss_reduce_transforms___postcss_reduce_transforms_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_reduce_transforms___postcss_reduce_transforms_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz";
- sha1 = "93c12f6a159474aa711d5269923e2383cedcf640";
- };
- }
- {
- name = "postcss_selector_parser___postcss_selector_parser_6.0.6.tgz";
- path = fetchurl {
- name = "postcss_selector_parser___postcss_selector_parser_6.0.6.tgz";
- url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz";
- sha1 = "2c5bba8174ac2f6981ab631a42ab0ee54af332ea";
- };
- }
- {
- name = "postcss_svgo___postcss_svgo_5.0.2.tgz";
- path = fetchurl {
- name = "postcss_svgo___postcss_svgo_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.2.tgz";
- sha1 = "bc73c4ea4c5a80fbd4b45e29042c34ceffb9257f";
- };
- }
- {
- name = "postcss_unique_selectors___postcss_unique_selectors_5.0.1.tgz";
- path = fetchurl {
- name = "postcss_unique_selectors___postcss_unique_selectors_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz";
- sha1 = "3be5c1d7363352eff838bd62b0b07a0abad43bfc";
- };
- }
- {
- name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz";
- path = fetchurl {
- name = "postcss_value_parser___postcss_value_parser_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz";
- sha1 = "443f6a20ced6481a2bda4fa8532a6e55d789a2cb";
- };
- }
- {
- name = "postcss___postcss_8.3.6.tgz";
- path = fetchurl {
- name = "postcss___postcss_8.3.6.tgz";
- url = "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz";
- sha1 = "2730dd76a97969f37f53b9a6096197be311cc4ea";
- };
- }
- {
- name = "postgres_array___postgres_array_2.0.0.tgz";
- path = fetchurl {
- name = "postgres_array___postgres_array_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz";
- sha1 = "48f8fce054fbc69671999329b8834b772652d82e";
- };
- }
- {
- name = "postgres_bytea___postgres_bytea_1.0.0.tgz";
- path = fetchurl {
- name = "postgres_bytea___postgres_bytea_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz";
- sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35";
- };
- }
- {
- name = "postgres_date___postgres_date_1.0.7.tgz";
- path = fetchurl {
- name = "postgres_date___postgres_date_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz";
- sha1 = "51bc086006005e5061c591cee727f2531bf641a8";
- };
- }
- {
- name = "postgres_interval___postgres_interval_1.2.0.tgz";
- path = fetchurl {
- name = "postgres_interval___postgres_interval_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz";
- sha1 = "b460c82cb1587507788819a06aa0fffdb3544695";
- };
- }
- {
- name = "precond___precond_0.2.3.tgz";
- path = fetchurl {
- name = "precond___precond_0.2.3.tgz";
- url = "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz";
- sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac";
- };
- }
- {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- path = fetchurl {
- name = "prelude_ls___prelude_ls_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz";
- sha1 = "debc6489d7a6e6b0e7611888cec880337d316396";
- };
- }
- {
- name = "preserve___preserve_0.2.0.tgz";
- path = fetchurl {
- name = "preserve___preserve_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz";
- sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
- };
- }
- {
- name = "pretty_error___pretty_error_2.1.2.tgz";
- path = fetchurl {
- name = "pretty_error___pretty_error_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz";
- sha1 = "be89f82d81b1c86ec8fdfbc385045882727f93b6";
- };
- }
- {
- name = "printj___printj_1.1.2.tgz";
- path = fetchurl {
- name = "printj___printj_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/printj/-/printj-1.1.2.tgz";
- sha1 = "d90deb2975a8b9f600fb3a1c94e3f4c53c78a222";
- };
- }
- {
- name = "prismjs___prismjs_1.24.1.tgz";
- path = fetchurl {
- name = "prismjs___prismjs_1.24.1.tgz";
- url = "https://registry.yarnpkg.com/prismjs/-/prismjs-1.24.1.tgz";
- sha1 = "c4d7895c4d6500289482fa8936d9cdd192684036";
- };
- }
- {
- name = "private___private_0.1.8.tgz";
- path = fetchurl {
- name = "private___private_0.1.8.tgz";
- url = "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz";
- sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_1.0.7.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- }
- {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- path = fetchurl {
- name = "process_nextick_args___process_nextick_args_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
- sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2";
- };
- }
- {
- name = "process___process_0.11.10.tgz";
- path = fetchurl {
- name = "process___process_0.11.10.tgz";
- url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz";
- sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
- };
- }
- {
- name = "progress___progress_2.0.3.tgz";
- path = fetchurl {
- name = "progress___progress_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz";
- sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8";
- };
- }
- {
- name = "prom_client___prom_client_13.2.0.tgz";
- path = fetchurl {
- name = "prom_client___prom_client_13.2.0.tgz";
- url = "https://registry.yarnpkg.com/prom-client/-/prom-client-13.2.0.tgz";
- sha1 = "99d13357912dd400f8911b77df19f7b328a93e92";
- };
- }
- {
- name = "prometheus_api_metrics___prometheus_api_metrics_3.2.0.tgz";
- path = fetchurl {
- name = "prometheus_api_metrics___prometheus_api_metrics_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/prometheus-api-metrics/-/prometheus-api-metrics-3.2.0.tgz";
- sha1 = "3af90989271abb55b7e0405bdfcb161f403a361c";
- };
- }
- {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- path = fetchurl {
- name = "promise_inflight___promise_inflight_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz";
- sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
- };
- }
- {
- name = "property_information___property_information_6.0.1.tgz";
- path = fetchurl {
- name = "property_information___property_information_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/property-information/-/property-information-6.0.1.tgz";
- sha1 = "7c668d9f2b9cb63bc3e105d8b8dfee7221a17800";
- };
- }
- {
- name = "proxy_addr___proxy_addr_2.0.7.tgz";
- path = fetchurl {
- name = "proxy_addr___proxy_addr_2.0.7.tgz";
- url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz";
- sha1 = "f19fe69ceab311eeb94b42e70e8c2070f9ba1025";
- };
- }
- {
- name = "prr___prr_1.0.1.tgz";
- path = fetchurl {
- name = "prr___prr_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz";
- sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
- };
- }
- {
- name = "pseudomap___pseudomap_1.0.2.tgz";
- path = fetchurl {
- name = "pseudomap___pseudomap_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz";
- sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
- };
- }
- {
- name = "psl___psl_1.8.0.tgz";
- path = fetchurl {
- name = "psl___psl_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz";
- sha1 = "9326f8bcfb013adcc005fdff056acce020e51c24";
- };
- }
- {
- name = "public_encrypt___public_encrypt_4.0.3.tgz";
- path = fetchurl {
- name = "public_encrypt___public_encrypt_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz";
- sha1 = "4fcc9d77a07e48ba7527e7cbe0de33d0701331e0";
- };
- }
- {
- name = "pump___pump_2.0.1.tgz";
- path = fetchurl {
- name = "pump___pump_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz";
- sha1 = "12399add6e4cf7526d973cbc8b5ce2e2908b3909";
- };
- }
- {
- name = "pump___pump_3.0.0.tgz";
- path = fetchurl {
- name = "pump___pump_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz";
- sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64";
- };
- }
- {
- name = "pumpify___pumpify_1.5.1.tgz";
- path = fetchurl {
- name = "pumpify___pumpify_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz";
- sha1 = "36513be246ab27570b1a374a5ce278bfd74370ce";
- };
- }
- {
- name = "punycode___punycode_1.3.2.tgz";
- path = fetchurl {
- name = "punycode___punycode_1.3.2.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz";
- sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
- };
- }
- {
- name = "punycode___punycode_1.4.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
- };
- }
- {
- name = "punycode___punycode_2.1.1.tgz";
- path = fetchurl {
- name = "punycode___punycode_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz";
- sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec";
- };
- }
- {
- name = "q___q_1.5.1.tgz";
- path = fetchurl {
- name = "q___q_1.5.1.tgz";
- url = "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz";
- sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
- };
- }
- {
- name = "qs___qs_2.3.3.tgz";
- path = fetchurl {
- name = "qs___qs_2.3.3.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz";
- sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404";
- };
- }
- {
- name = "qs___qs_6.7.0.tgz";
- path = fetchurl {
- name = "qs___qs_6.7.0.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz";
- sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc";
- };
- }
- {
- name = "qs___qs_6.10.1.tgz";
- path = fetchurl {
- name = "qs___qs_6.10.1.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz";
- sha1 = "4931482fa8d647a5aab799c5271d2133b981fb6a";
- };
- }
- {
- name = "qs___qs_6.5.2.tgz";
- path = fetchurl {
- name = "qs___qs_6.5.2.tgz";
- url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz";
- sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36";
- };
- }
- {
- name = "querystring_es3___querystring_es3_0.2.1.tgz";
- path = fetchurl {
- name = "querystring_es3___querystring_es3_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz";
- sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
- };
- }
- {
- name = "querystring___querystring_0.2.0.tgz";
- path = fetchurl {
- name = "querystring___querystring_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz";
- sha1 = "b209849203bb25df820da756e747005878521620";
- };
- }
- {
- name = "queue_microtask___queue_microtask_1.2.3.tgz";
- path = fetchurl {
- name = "queue_microtask___queue_microtask_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz";
- sha1 = "4929228bbc724dfac43e0efb058caf7b6cfb6243";
- };
- }
- {
- name = "random_bytes___random_bytes_1.0.0.tgz";
- path = fetchurl {
- name = "random_bytes___random_bytes_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz";
- sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b";
- };
- }
- {
- name = "randomatic___randomatic_3.1.1.tgz";
- path = fetchurl {
- name = "randomatic___randomatic_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz";
- sha1 = "b776efc59375984e36c537b2f51a1f0aff0da1ed";
- };
- }
- {
- name = "randombytes___randombytes_2.1.0.tgz";
- path = fetchurl {
- name = "randombytes___randombytes_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz";
- sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a";
- };
- }
- {
- name = "randomcolor___randomcolor_0.6.2.tgz";
- path = fetchurl {
- name = "randomcolor___randomcolor_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/randomcolor/-/randomcolor-0.6.2.tgz";
- sha1 = "7a57362ae1a1278439aeed2c15e5deb8ea33f56d";
- };
- }
- {
- name = "randomfill___randomfill_1.0.4.tgz";
- path = fetchurl {
- name = "randomfill___randomfill_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz";
- sha1 = "c92196fc86ab42be983f1bf31778224931d61458";
- };
- }
- {
- name = "range_parser___range_parser_1.2.1.tgz";
- path = fetchurl {
- name = "range_parser___range_parser_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz";
- sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031";
- };
- }
- {
- name = "raphael___raphael_2.3.0.tgz";
- path = fetchurl {
- name = "raphael___raphael_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/raphael/-/raphael-2.3.0.tgz";
- sha1 = "eabeb09dba861a1d4cee077eaafb8c53f3131f89";
- };
- }
- {
- name = "raw_body___raw_body_2.4.0.tgz";
- path = fetchurl {
- name = "raw_body___raw_body_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz";
- sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332";
- };
- }
- {
- name = "rc___rc_1.2.8.tgz";
- path = fetchurl {
- name = "rc___rc_1.2.8.tgz";
- url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz";
- sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed";
- };
- }
- {
- name = "read_pkg_up___read_pkg_up_3.0.0.tgz";
- path = fetchurl {
- name = "read_pkg_up___read_pkg_up_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz";
- sha1 = "3ed496685dba0f8fe118d0691dc51f4a1ff96f07";
- };
- }
- {
- name = "read_pkg___read_pkg_3.0.0.tgz";
- path = fetchurl {
- name = "read_pkg___read_pkg_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz";
- sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
- };
- }
- {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.3.7.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz";
- sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57";
- };
- }
- {
- name = "readable_stream___readable_stream_1.0.27_1.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_1.0.27_1.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.27-1.tgz";
- sha1 = "6b67983c20357cefd07f0165001a16d710d91078";
- };
- }
- {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz";
- sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198";
- };
- }
- {
- name = "readable_stream___readable_stream_2.0.6.tgz";
- path = fetchurl {
- name = "readable_stream___readable_stream_2.0.6.tgz";
- url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz";
- sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e";
- };
- }
- {
- name = "readable_web_to_node_stream___readable_web_to_node_stream_3.0.2.tgz";
- path = fetchurl {
- name = "readable_web_to_node_stream___readable_web_to_node_stream_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz";
- sha1 = "5d52bb5df7b54861fd48d015e93a2cb87b3ee0bb";
- };
- }
- {
- name = "readdir_glob___readdir_glob_1.1.1.tgz";
- path = fetchurl {
- name = "readdir_glob___readdir_glob_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/readdir-glob/-/readdir-glob-1.1.1.tgz";
- sha1 = "f0e10bb7bf7bfa7e0add8baffdc54c3f7dbee6c4";
- };
- }
- {
- name = "readdirp___readdirp_2.2.1.tgz";
- path = fetchurl {
- name = "readdirp___readdirp_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz";
- sha1 = "0e87622a3325aa33e892285caf8b4e846529a525";
- };
- }
- {
- name = "readdirp___readdirp_3.6.0.tgz";
- path = fetchurl {
- name = "readdirp___readdirp_3.6.0.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz";
- sha1 = "74a370bd857116e245b29cc97340cd431a02a6c7";
- };
- }
- {
- name = "readline_sync___readline_sync_1.4.10.tgz";
- path = fetchurl {
- name = "readline_sync___readline_sync_1.4.10.tgz";
- url = "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz";
- sha1 = "41df7fbb4b6312d673011594145705bf56d8873b";
- };
- }
- {
- name = "rechoir___rechoir_0.7.1.tgz";
- path = fetchurl {
- name = "rechoir___rechoir_0.7.1.tgz";
- url = "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz";
- sha1 = "9478a96a1ca135b5e88fc027f03ee92d6c645686";
- };
- }
- {
- name = "reduce_component___reduce_component_1.0.1.tgz";
- path = fetchurl {
- name = "reduce_component___reduce_component_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz";
- sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da";
- };
- }
- {
- name = "regenerate___regenerate_1.4.2.tgz";
- path = fetchurl {
- name = "regenerate___regenerate_1.4.2.tgz";
- url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz";
- sha1 = "b9346d8827e8f5a32f7ba29637d398b69014848a";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
- sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
- };
- }
- {
- name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz";
- path = fetchurl {
- name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz";
- url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
- sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9";
- };
- }
- {
- name = "regenerator_transform___regenerator_transform_0.10.1.tgz";
- path = fetchurl {
- name = "regenerator_transform___regenerator_transform_0.10.1.tgz";
- url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz";
- sha1 = "1e4996837231da8b7f3cf4114d71b5691a0680dd";
- };
- }
- {
- name = "regex_cache___regex_cache_0.4.4.tgz";
- path = fetchurl {
- name = "regex_cache___regex_cache_0.4.4.tgz";
- url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz";
- sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd";
- };
- }
- {
- name = "regex_not___regex_not_1.0.2.tgz";
- path = fetchurl {
- name = "regex_not___regex_not_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz";
- sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c";
- };
- }
- {
- name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
- path = fetchurl {
- name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz";
- sha1 = "7ef352ae8d159e758c0eadca6f8fcb4eef07be26";
- };
- }
- {
- name = "regexpp___regexpp_3.2.0.tgz";
- path = fetchurl {
- name = "regexpp___regexpp_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz";
- sha1 = "0425a2768d8f23bad70ca4b90461fa2f1213e1b2";
- };
- }
- {
- name = "regexpu_core___regexpu_core_2.0.0.tgz";
- path = fetchurl {
- name = "regexpu_core___regexpu_core_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz";
- sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240";
- };
- }
- {
- name = "regjsgen___regjsgen_0.2.0.tgz";
- path = fetchurl {
- name = "regjsgen___regjsgen_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz";
- sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
- };
- }
- {
- name = "regjsparser___regjsparser_0.1.5.tgz";
- path = fetchurl {
- name = "regjsparser___regjsparser_0.1.5.tgz";
- url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz";
- sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
- };
- }
- {
- name = "rehype_parse___rehype_parse_8.0.3.tgz";
- path = fetchurl {
- name = "rehype_parse___rehype_parse_8.0.3.tgz";
- url = "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.3.tgz";
- sha1 = "a1947132a08a930d0c2b6fd2b3dbcc137457c07a";
- };
- }
- {
- name = "rehype_stringify___rehype_stringify_9.0.2.tgz";
- path = fetchurl {
- name = "rehype_stringify___rehype_stringify_9.0.2.tgz";
- url = "https://registry.yarnpkg.com/rehype-stringify/-/rehype-stringify-9.0.2.tgz";
- sha1 = "2d95e06e246abbee504cf2f54c8d12f27d7bfd8e";
- };
- }
- {
- name = "rehype___rehype_12.0.0.tgz";
- path = fetchurl {
- name = "rehype___rehype_12.0.0.tgz";
- url = "https://registry.yarnpkg.com/rehype/-/rehype-12.0.0.tgz";
- sha1 = "d5e80a206da2479b3564722bc2ba882e0f4240ec";
- };
- }
- {
- name = "relateurl___relateurl_0.2.7.tgz";
- path = fetchurl {
- name = "relateurl___relateurl_0.2.7.tgz";
- url = "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz";
- sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
- };
- }
- {
- name = "remark_cli___remark_cli_10.0.0.tgz";
- path = fetchurl {
- name = "remark_cli___remark_cli_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark-cli/-/remark-cli-10.0.0.tgz";
- sha1 = "3b0e20f2ad3909f35c7a6fb3f721c82f6ff5beac";
- };
- }
- {
- name = "remark_lint_blockquote_indentation___remark_lint_blockquote_indentation_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_blockquote_indentation___remark_lint_blockquote_indentation_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-3.0.1.tgz";
- sha1 = "74591e6029c4c8c92bf0c1665e001b29a71522bd";
- };
- }
- {
- name = "remark_lint_code_block_style___remark_lint_code_block_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_code_block_style___remark_lint_code_block_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-code-block-style/-/remark-lint-code-block-style-3.0.1.tgz";
- sha1 = "be4434e3e8007bd3324227da876d3c59e2e960d6";
- };
- }
- {
- name = "remark_lint_definition_case___remark_lint_definition_case_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_definition_case___remark_lint_definition_case_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-definition-case/-/remark-lint-definition-case-3.0.1.tgz";
- sha1 = "15b2260ed0281398944c09f460ec48cb31a12fdc";
- };
- }
- {
- name = "remark_lint_definition_spacing___remark_lint_definition_spacing_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_definition_spacing___remark_lint_definition_spacing_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-definition-spacing/-/remark-lint-definition-spacing-3.0.1.tgz";
- sha1 = "2599dc8cef6eb555b116a9634a226d812795fd87";
- };
- }
- {
- name = "remark_lint_emphasis_marker___remark_lint_emphasis_marker_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_emphasis_marker___remark_lint_emphasis_marker_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-3.0.1.tgz";
- sha1 = "612d0126d99649484ad9a42ad854f3110ddc7536";
- };
- }
- {
- name = "remark_lint_fenced_code_flag___remark_lint_fenced_code_flag_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_fenced_code_flag___remark_lint_fenced_code_flag_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-3.0.1.tgz";
- sha1 = "5282ece321f9e3e86dd7e1b30dbd50f0cdbb40e0";
- };
- }
- {
- name = "remark_lint_fenced_code_marker___remark_lint_fenced_code_marker_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_fenced_code_marker___remark_lint_fenced_code_marker_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-3.0.1.tgz";
- sha1 = "3b09baa8305f86f27c81e1f4eaffd4ac4e51e7b0";
- };
- }
- {
- name = "remark_lint_file_extension___remark_lint_file_extension_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_file_extension___remark_lint_file_extension_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-file-extension/-/remark-lint-file-extension-2.0.1.tgz";
- sha1 = "e6777c2a322270066aa3c249d2836d326ba3f91d";
- };
- }
- {
- name = "remark_lint_final_definition___remark_lint_final_definition_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_final_definition___remark_lint_final_definition_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-final-definition/-/remark-lint-final-definition-3.0.1.tgz";
- sha1 = "9439d9531369b6a8bbbb25e2d550d5fe19a9202b";
- };
- }
- {
- name = "remark_lint_hard_break_spaces___remark_lint_hard_break_spaces_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_hard_break_spaces___remark_lint_hard_break_spaces_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-3.0.1.tgz";
- sha1 = "aa5a968a6ecb609fddc0b3c73e578f4eb3fdf75a";
- };
- }
- {
- name = "remark_lint_heading_increment___remark_lint_heading_increment_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_heading_increment___remark_lint_heading_increment_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-heading-increment/-/remark-lint-heading-increment-3.0.1.tgz";
- sha1 = "12d264ea48b6db979433bf22b4145d116789361d";
- };
- }
- {
- name = "remark_lint_heading_style___remark_lint_heading_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_heading_style___remark_lint_heading_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-heading-style/-/remark-lint-heading-style-3.0.1.tgz";
- sha1 = "8727db87ceab53d33c7016750acf3358b321d15f";
- };
- }
- {
- name = "remark_lint_link_title_style___remark_lint_link_title_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_link_title_style___remark_lint_link_title_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-link-title-style/-/remark-lint-link-title-style-3.0.1.tgz";
- sha1 = "9fbbc8329cf7c693d307764662cc644415b143fe";
- };
- }
- {
- name = "remark_lint_list_item_content_indent___remark_lint_list_item_content_indent_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_list_item_content_indent___remark_lint_list_item_content_indent_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-3.0.1.tgz";
- sha1 = "1357e559e69163386f9666b20efd2951e6222416";
- };
- }
- {
- name = "remark_lint_list_item_indent___remark_lint_list_item_indent_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_list_item_indent___remark_lint_list_item_indent_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-list-item-indent/-/remark-lint-list-item-indent-3.0.1.tgz";
- sha1 = "719ee34dec3f7b34cfd3fd2600806dc561fc748b";
- };
- }
- {
- name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-4.0.1.tgz";
- sha1 = "41add9734076d23671d043db09e2cd9154cd7dd5";
- };
- }
- {
- name = "remark_lint_maximum_heading_length___remark_lint_maximum_heading_length_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_maximum_heading_length___remark_lint_maximum_heading_length_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-3.0.1.tgz";
- sha1 = "0ab8071f5c2fbdf8a28d23022f74c59bfdfaac75";
- };
- }
- {
- name = "remark_lint_maximum_line_length___remark_lint_maximum_line_length_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_maximum_line_length___remark_lint_maximum_line_length_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-3.0.1.tgz";
- sha1 = "685871fd6581148a32ca38719f9f1eb16d78c30f";
- };
- }
- {
- name = "remark_lint_no_auto_link_without_protocol___remark_lint_no_auto_link_without_protocol_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_auto_link_without_protocol___remark_lint_no_auto_link_without_protocol_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-3.0.1.tgz";
- sha1 = "8a70874368521bb40689b5421d8279796199c493";
- };
- }
- {
- name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_5.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-5.0.1.tgz";
- sha1 = "31cb4264088b6db8c5a2824ab0a16f0ce37d5065";
- };
- }
- {
- name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-4.0.1.tgz";
- sha1 = "e9ff3613e25d42bd004e8ab065609a0393f16f2b";
- };
- }
- {
- name = "remark_lint_no_duplicate_headings___remark_lint_no_duplicate_headings_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_duplicate_headings___remark_lint_no_duplicate_headings_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-3.0.1.tgz";
- sha1 = "9db2ba686606226178d6563a0213e83ac7a22c15";
- };
- }
- {
- name = "remark_lint_no_emphasis_as_heading___remark_lint_no_emphasis_as_heading_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_emphasis_as_heading___remark_lint_no_emphasis_as_heading_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-3.0.1.tgz";
- sha1 = "0290da33cbce79b72ddf28f9878fccad64d3a0f2";
- };
- }
- {
- name = "remark_lint_no_file_name_articles___remark_lint_no_file_name_articles_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_file_name_articles___remark_lint_no_file_name_articles_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-2.0.1.tgz";
- sha1 = "1265a3dab489f5c07a1c3e8a2167124ef5bd030f";
- };
- }
- {
- name = "remark_lint_no_file_name_consecutive_dashes___remark_lint_no_file_name_consecutive_dashes_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_file_name_consecutive_dashes___remark_lint_no_file_name_consecutive_dashes_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-2.0.1.tgz";
- sha1 = "cab34dce03381b15dac50188198c24303bde4e71";
- };
- }
- {
- name = "remark_lint_no_file_name_irregular_characters___remark_lint_no_file_name_irregular_characters_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_file_name_irregular_characters___remark_lint_no_file_name_irregular_characters_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-2.0.1.tgz";
- sha1 = "7188d6bca6618d667237ceb553bf7a19fb421dd1";
- };
- }
- {
- name = "remark_lint_no_file_name_mixed_case___remark_lint_no_file_name_mixed_case_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_file_name_mixed_case___remark_lint_no_file_name_mixed_case_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-2.0.1.tgz";
- sha1 = "2e200fdb19d8b3249ba3cddbddf35c52590b7c1a";
- };
- }
- {
- name = "remark_lint_no_file_name_outer_dashes___remark_lint_no_file_name_outer_dashes_2.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_file_name_outer_dashes___remark_lint_no_file_name_outer_dashes_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-2.0.1.tgz";
- sha1 = "536344895ab351d8712180dd63ade2f59849fcef";
- };
- }
- {
- name = "remark_lint_no_heading_punctuation___remark_lint_no_heading_punctuation_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_heading_punctuation___remark_lint_no_heading_punctuation_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-3.0.1.tgz";
- sha1 = "e21744d80e7f06cb9c984c0bd4e3f3a284b51afd";
- };
- }
- {
- name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-4.0.1.tgz";
- sha1 = "a89d4fd639e888ee97cac811b9c950f1787a08a5";
- };
- }
- {
- name = "remark_lint_no_literal_urls___remark_lint_no_literal_urls_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_literal_urls___remark_lint_no_literal_urls_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-3.0.1.tgz";
- sha1 = "af87cc111f942a43edf2d2cc27d199b7785be141";
- };
- }
- {
- name = "remark_lint_no_multiple_toplevel_headings___remark_lint_no_multiple_toplevel_headings_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_multiple_toplevel_headings___remark_lint_no_multiple_toplevel_headings_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-3.0.1.tgz";
- sha1 = "08e03c3b102748835bc7077fbec9b0543c8feff4";
- };
- }
- {
- name = "remark_lint_no_shell_dollars___remark_lint_no_shell_dollars_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_shell_dollars___remark_lint_no_shell_dollars_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-3.0.1.tgz";
- sha1 = "e9c092e07be2e308abd49b54c253010efb3e654c";
- };
- }
- {
- name = "remark_lint_no_shortcut_reference_image___remark_lint_no_shortcut_reference_image_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_shortcut_reference_image___remark_lint_no_shortcut_reference_image_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-3.0.1.tgz";
- sha1 = "3cef27ef939debd385d9d3ba21bfb8afd3e011b4";
- };
- }
- {
- name = "remark_lint_no_shortcut_reference_link___remark_lint_no_shortcut_reference_link_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_shortcut_reference_link___remark_lint_no_shortcut_reference_link_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-3.0.1.tgz";
- sha1 = "3104ed6b82c6234eb6187481243f1b3890a1d506";
- };
- }
- {
- name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-4.0.1.tgz";
- sha1 = "13a41252021b245ca60bfbe5a578755421316e65";
- };
- }
- {
- name = "remark_lint_ordered_list_marker_style___remark_lint_ordered_list_marker_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_ordered_list_marker_style___remark_lint_ordered_list_marker_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-3.0.1.tgz";
- sha1 = "56f6a94d88dd8c74b8e444cd970bb3be6a575606";
- };
- }
- {
- name = "remark_lint_ordered_list_marker_value___remark_lint_ordered_list_marker_value_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_ordered_list_marker_value___remark_lint_ordered_list_marker_value_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-3.0.1.tgz";
- sha1 = "1296c0a758df6ea2e918769f013bff10ff5bd0d9";
- };
- }
- {
- name = "remark_lint_rule_style___remark_lint_rule_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_rule_style___remark_lint_rule_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-rule-style/-/remark-lint-rule-style-3.0.1.tgz";
- sha1 = "2473b4d8d866e6f27ef968d7071d2ed719ce999c";
- };
- }
- {
- name = "remark_lint_strong_marker___remark_lint_strong_marker_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_strong_marker___remark_lint_strong_marker_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-strong-marker/-/remark-lint-strong-marker-3.0.1.tgz";
- sha1 = "54119b529d152ea7294ac761e866a3a6244c4405";
- };
- }
- {
- name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-4.0.1.tgz";
- sha1 = "0cfc515af12f4c2f123e8b5895a9ae635142f7e3";
- };
- }
- {
- name = "remark_lint_table_pipe_alignment___remark_lint_table_pipe_alignment_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_table_pipe_alignment___remark_lint_table_pipe_alignment_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-3.0.1.tgz";
- sha1 = "70517c20ca24e4da830f71e09c39aabab1e5382e";
- };
- }
- {
- name = "remark_lint_table_pipes___remark_lint_table_pipes_4.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_table_pipes___remark_lint_table_pipes_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-4.0.1.tgz";
- sha1 = "529d6d5569eed1129b912df3c748005cc2f82046";
- };
- }
- {
- name = "remark_lint_unordered_list_marker_style___remark_lint_unordered_list_marker_style_3.0.1.tgz";
- path = fetchurl {
- name = "remark_lint_unordered_list_marker_style___remark_lint_unordered_list_marker_style_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-3.0.1.tgz";
- sha1 = "f50b3359444d32363541bd26e30e091eb9b4d866";
- };
- }
- {
- name = "remark_lint___remark_lint_9.0.1.tgz";
- path = fetchurl {
- name = "remark_lint___remark_lint_9.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-lint/-/remark-lint-9.0.1.tgz";
- sha1 = "85ede987d24b7def9a6cea4a4d40c2035723eaec";
- };
- }
- {
- name = "remark_message_control___remark_message_control_7.0.0.tgz";
- path = fetchurl {
- name = "remark_message_control___remark_message_control_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark-message-control/-/remark-message-control-7.0.0.tgz";
- sha1 = "ba83d212fbde3e5e2adabd30697bf80b0b709ef7";
- };
- }
- {
- name = "remark_parse___remark_parse_10.0.0.tgz";
- path = fetchurl {
- name = "remark_parse___remark_parse_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.0.tgz";
- sha1 = "65e2b2b34d8581d36b97f12a2926bb2126961cb4";
- };
- }
- {
- name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_5.0.1.tgz";
- path = fetchurl {
- name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-5.0.1.tgz";
- sha1 = "a53018e4e44f4417b911968ee1ecc49aa3cff6a7";
- };
- }
- {
- name = "remark_stringify___remark_stringify_10.0.0.tgz";
- path = fetchurl {
- name = "remark_stringify___remark_stringify_10.0.0.tgz";
- url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.0.tgz";
- sha1 = "7f23659d92b2d5da489e3c858656d7bbe045f161";
- };
- }
- {
- name = "remark___remark_14.0.1.tgz";
- path = fetchurl {
- name = "remark___remark_14.0.1.tgz";
- url = "https://registry.yarnpkg.com/remark/-/remark-14.0.1.tgz";
- sha1 = "a97280d4f2a3010a7d81e6c292a310dcd5554d80";
- };
- }
- {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- path = fetchurl {
- name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
- };
- }
- {
- name = "renderkid___renderkid_2.0.7.tgz";
- path = fetchurl {
- name = "renderkid___renderkid_2.0.7.tgz";
- url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz";
- sha1 = "464f276a6bdcee606f4a15993f9b29fc74ca8609";
- };
- }
- {
- name = "repeat_element___repeat_element_1.1.4.tgz";
- path = fetchurl {
- name = "repeat_element___repeat_element_1.1.4.tgz";
- url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz";
- sha1 = "be681520847ab58c7568ac75fbfad28ed42d39e9";
- };
- }
- {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- path = fetchurl {
- name = "repeat_string___repeat_string_1.6.1.tgz";
- url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- }
- {
- name = "repeating___repeating_2.0.1.tgz";
- path = fetchurl {
- name = "repeating___repeating_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz";
- sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
- };
- }
- {
- name = "request___request_2.88.2.tgz";
- path = fetchurl {
- name = "request___request_2.88.2.tgz";
- url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz";
- sha1 = "d73c918731cb5a87da047e207234146f664d12b3";
- };
- }
- {
- name = "require_directory___require_directory_2.1.1.tgz";
- path = fetchurl {
- name = "require_directory___require_directory_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- }
- {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- path = fetchurl {
- name = "require_from_string___require_from_string_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz";
- sha1 = "89a7fdd938261267318eafe14f9c32e598c36909";
- };
- }
- {
- name = "resolve_cwd___resolve_cwd_3.0.0.tgz";
- path = fetchurl {
- name = "resolve_cwd___resolve_cwd_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz";
- sha1 = "0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d";
- };
- }
- {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz";
- sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6";
- };
- }
- {
- name = "resolve_from___resolve_from_5.0.0.tgz";
- path = fetchurl {
- name = "resolve_from___resolve_from_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz";
- sha1 = "c35225843df8f776df21c57557bc087e9dfdfc69";
- };
- }
- {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- path = fetchurl {
- name = "resolve_url___resolve_url_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
- };
- }
- {
- name = "resolve___resolve_1.20.0.tgz";
- path = fetchurl {
- name = "resolve___resolve_1.20.0.tgz";
- url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz";
- sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975";
- };
- }
- {
- name = "ret___ret_0.1.15.tgz";
- path = fetchurl {
- name = "ret___ret_0.1.15.tgz";
- url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz";
- sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc";
- };
- }
- {
- name = "retry_as_promised___retry_as_promised_3.2.0.tgz";
- path = fetchurl {
- name = "retry_as_promised___retry_as_promised_3.2.0.tgz";
- url = "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-3.2.0.tgz";
- sha1 = "769f63d536bec4783549db0777cb56dadd9d8543";
- };
- }
- {
- name = "reusify___reusify_1.0.4.tgz";
- path = fetchurl {
- name = "reusify___reusify_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz";
- sha1 = "90da382b1e126efc02146e90845a88db12925d76";
- };
- }
- {
- name = "reveal.js___reveal.js_3.9.2.tgz";
- path = fetchurl {
- name = "reveal.js___reveal.js_3.9.2.tgz";
- url = "https://registry.yarnpkg.com/reveal.js/-/reveal.js-3.9.2.tgz";
- sha1 = "7f63d3dfec338b6c313dcabdf006e8cf80e0b358";
- };
- }
- {
- name = "rimraf___rimraf_2.7.1.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.7.1.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz";
- sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec";
- };
- }
- {
- name = "rimraf___rimraf_3.0.2.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz";
- sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
- };
- }
- {
- name = "ripemd160___ripemd160_2.0.2.tgz";
- path = fetchurl {
- name = "ripemd160___ripemd160_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz";
- sha1 = "a1c1a6f624751577ba5d07914cbc92850585890c";
- };
- }
- {
- name = "run_parallel___run_parallel_1.2.0.tgz";
- path = fetchurl {
- name = "run_parallel___run_parallel_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz";
- sha1 = "66d1368da7bdf921eb9d95bd1a9229e7f21a43ee";
- };
- }
- {
- name = "run_queue___run_queue_1.0.3.tgz";
- path = fetchurl {
- name = "run_queue___run_queue_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz";
- sha1 = "e848396f057d223f24386924618e25694161ec47";
- };
- }
- {
- name = "rw___rw_1.3.3.tgz";
- path = fetchurl {
- name = "rw___rw_1.3.3.tgz";
- url = "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz";
- sha1 = "3f862dfa91ab766b14885ef4d01124bfda074fb4";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.1.2.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d";
- };
- }
- {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- path = fetchurl {
- name = "safe_buffer___safe_buffer_5.2.1.tgz";
- url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz";
- sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6";
- };
- }
- {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- path = fetchurl {
- name = "safe_regex___safe_regex_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz";
- sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
- };
- }
- {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- path = fetchurl {
- name = "safer_buffer___safer_buffer_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a";
- };
- }
- {
- name = "sax___sax_0.5.8.tgz";
- path = fetchurl {
- name = "sax___sax_0.5.8.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz";
- sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1";
- };
- }
- {
- name = "sax___sax_1.2.1.tgz";
- path = fetchurl {
- name = "sax___sax_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz";
- sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a";
- };
- }
- {
- name = "sax___sax_1.2.4.tgz";
- path = fetchurl {
- name = "sax___sax_1.2.4.tgz";
- url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz";
- sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9";
- };
- }
- {
- name = "schema_utils___schema_utils_1.0.0.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz";
- sha1 = "0b79a93204d7b600d4b2850d1f66c2a34951c770";
- };
- }
- {
- name = "schema_utils___schema_utils_3.1.1.tgz";
- path = fetchurl {
- name = "schema_utils___schema_utils_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz";
- sha1 = "bc74c4b6b6995c1d88f76a8b77bea7219e0c8281";
- };
- }
- {
- name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz";
- path = fetchurl {
- name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/scrypt-kdf/-/scrypt-kdf-2.0.1.tgz";
- sha1 = "3355224c52d398331b2cbf2b70a7be26b52c53e6";
- };
- }
- {
- name = "select2___select2_3.5.2_browserify.tgz";
- path = fetchurl {
- name = "select2___select2_3.5.2_browserify.tgz";
- url = "https://registry.yarnpkg.com/select2/-/select2-3.5.2-browserify.tgz";
- sha1 = "dc4dafda38d67a734e8a97a46f0d3529ae05391d";
- };
- }
- {
- name = "semver_compare___semver_compare_1.0.0.tgz";
- path = fetchurl {
- name = "semver_compare___semver_compare_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz";
- sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc";
- };
- }
- {
- name = "semver___semver_5.7.1.tgz";
- path = fetchurl {
- name = "semver___semver_5.7.1.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz";
- sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
- };
- }
- {
- name = "semver___semver_6.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_6.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz";
- sha1 = "ee0a64c8af5e8ceea67687b133761e1becbd1d3d";
- };
- }
- {
- name = "semver___semver_7.3.5.tgz";
- path = fetchurl {
- name = "semver___semver_7.3.5.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
- sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
- };
- }
- {
- name = "semver___semver_5.3.0.tgz";
- path = fetchurl {
- name = "semver___semver_5.3.0.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
- };
- }
- {
- name = "send___send_0.17.1.tgz";
- path = fetchurl {
- name = "send___send_0.17.1.tgz";
- url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz";
- sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8";
- };
- }
- {
- name = "seq_queue___seq_queue_0.0.5.tgz";
- path = fetchurl {
- name = "seq_queue___seq_queue_0.0.5.tgz";
- url = "https://registry.yarnpkg.com/seq-queue/-/seq-queue-0.0.5.tgz";
- sha1 = "d56812e1c017a6e4e7c3e3a37a1da6d78dd3c93e";
- };
- }
- {
- name = "sequelize_pool___sequelize_pool_2.3.0.tgz";
- path = fetchurl {
- name = "sequelize_pool___sequelize_pool_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz";
- sha1 = "64f1fe8744228172c474f530604b6133be64993d";
- };
- }
- {
- name = "sequelize___sequelize_5.22.4.tgz";
- path = fetchurl {
- name = "sequelize___sequelize_5.22.4.tgz";
- url = "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.4.tgz";
- sha1 = "4dbd8a1a735e98150880d43a95d45e9f46d151fa";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_6.0.0.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz";
- sha1 = "efae5d88f45d7924141da8b5c3a7a7e663fefeb8";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_4.0.0.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz";
- sha1 = "b525e1238489a5ecfc42afacc3fe99e666f4b1aa";
- };
- }
- {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- path = fetchurl {
- name = "serialize_javascript___serialize_javascript_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz";
- sha1 = "7886ec848049a462467a97d3d918ebb2aaf934f4";
- };
- }
- {
- name = "serve_static___serve_static_1.14.1.tgz";
- path = fetchurl {
- name = "serve_static___serve_static_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz";
- sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9";
- };
- }
- {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- path = fetchurl {
- name = "set_blocking___set_blocking_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- }
- {
- name = "set_value___set_value_2.0.1.tgz";
- path = fetchurl {
- name = "set_value___set_value_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz";
- sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b";
- };
- }
- {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- path = fetchurl {
- name = "setimmediate___setimmediate_1.0.5.tgz";
- url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz";
- sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
- };
- }
- {
- name = "setprototypeof___setprototypeof_1.1.1.tgz";
- path = fetchurl {
- name = "setprototypeof___setprototypeof_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz";
- sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683";
- };
- }
- {
- name = "sha.js___sha.js_2.4.11.tgz";
- path = fetchurl {
- name = "sha.js___sha.js_2.4.11.tgz";
- url = "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz";
- sha1 = "37a5cf0b81ecbc6943de109ba2960d1b26584ae7";
- };
- }
- {
- name = "shallow_clone___shallow_clone_3.0.1.tgz";
- path = fetchurl {
- name = "shallow_clone___shallow_clone_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz";
- sha1 = "8f2981ad92531f55035b01fb230769a40e02efa3";
- };
- }
- {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- path = fetchurl {
- name = "shebang_command___shebang_command_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz";
- sha1 = "ccd0af4f8835fbdc265b82461aaf0c36663f34ea";
- };
- }
- {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- path = fetchurl {
- name = "shebang_regex___shebang_regex_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz";
- sha1 = "ae16f1644d873ecad843b0307b143362d4c42172";
- };
- }
- {
- name = "shimmer___shimmer_1.2.1.tgz";
- path = fetchurl {
- name = "shimmer___shimmer_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz";
- sha1 = "610859f7de327b587efebf501fb43117f9aff337";
- };
- }
- {
- name = "shortid___shortid_2.2.16.tgz";
- path = fetchurl {
- name = "shortid___shortid_2.2.16.tgz";
- url = "https://registry.yarnpkg.com/shortid/-/shortid-2.2.16.tgz";
- sha1 = "b742b8f0cb96406fd391c76bfc18a67a57fe5608";
- };
- }
- {
- name = "side_channel___side_channel_1.0.4.tgz";
- path = fetchurl {
- name = "side_channel___side_channel_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz";
- sha1 = "efce5c8fdc104ee751b25c58d4290011fa5ea2cf";
- };
- }
- {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- path = fetchurl {
- name = "signal_exit___signal_exit_3.0.3.tgz";
- url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz";
- sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c";
- };
- }
- {
- name = "simple_swizzle___simple_swizzle_0.2.2.tgz";
- path = fetchurl {
- name = "simple_swizzle___simple_swizzle_0.2.2.tgz";
- url = "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz";
- sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a";
- };
- }
- {
- name = "slash___slash_1.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz";
- sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
- };
- }
- {
- name = "slash___slash_3.0.0.tgz";
- path = fetchurl {
- name = "slash___slash_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz";
- sha1 = "6539be870c165adbd5240220dbe361f1bc4d4634";
- };
- }
- {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "slice_ansi___slice_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz";
- sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b";
- };
- }
- {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- path = fetchurl {
- name = "snapdragon_node___snapdragon_node_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b";
- };
- }
- {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- path = fetchurl {
- name = "snapdragon_util___snapdragon_util_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2";
- };
- }
- {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- path = fetchurl {
- name = "snapdragon___snapdragon_0.8.2.tgz";
- url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz";
- sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d";
- };
- }
- {
- name = "snapsvg___snapsvg_0.5.1.tgz";
- path = fetchurl {
- name = "snapsvg___snapsvg_0.5.1.tgz";
- url = "https://registry.yarnpkg.com/snapsvg/-/snapsvg-0.5.1.tgz";
- sha1 = "0caf52c79189a290746fc446cc5e863f6bdddfe3";
- };
- }
- {
- name = "socket.io_adapter___socket.io_adapter_1.1.2.tgz";
- path = fetchurl {
- name = "socket.io_adapter___socket.io_adapter_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz";
- sha1 = "ab3f0d6f66b8fc7fca3959ab5991f82221789be9";
- };
- }
- {
- name = "socket.io_client___socket.io_client_2.4.0.tgz";
- path = fetchurl {
- name = "socket.io_client___socket.io_client_2.4.0.tgz";
- url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.4.0.tgz";
- sha1 = "aafb5d594a3c55a34355562fc8aea22ed9119a35";
- };
- }
- {
- name = "socket.io_parser___socket.io_parser_3.3.2.tgz";
- path = fetchurl {
- name = "socket.io_parser___socket.io_parser_3.3.2.tgz";
- url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.2.tgz";
- sha1 = "ef872009d0adcf704f2fbe830191a14752ad50b6";
- };
- }
- {
- name = "socket.io_parser___socket.io_parser_3.4.1.tgz";
- path = fetchurl {
- name = "socket.io_parser___socket.io_parser_3.4.1.tgz";
- url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz";
- sha1 = "b06af838302975837eab2dc980037da24054d64a";
- };
- }
- {
- name = "socket.io___socket.io_2.4.1.tgz";
- path = fetchurl {
- name = "socket.io___socket.io_2.4.1.tgz";
- url = "https://registry.yarnpkg.com/socket.io/-/socket.io-2.4.1.tgz";
- sha1 = "95ad861c9a52369d7f1a68acf0d4a1b16da451d2";
- };
- }
- {
- name = "source_list_map___source_list_map_2.0.1.tgz";
- path = fetchurl {
- name = "source_list_map___source_list_map_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz";
- sha1 = "3993bd873bfc48479cca9ea3a547835c7c154b34";
- };
- }
- {
- name = "source_map_js___source_map_js_0.6.2.tgz";
- path = fetchurl {
- name = "source_map_js___source_map_js_0.6.2.tgz";
- url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz";
- sha1 = "0bb5de631b41cfbda6cfba8bd05a80efdfd2385e";
- };
- }
- {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- path = fetchurl {
- name = "source_map_resolve___source_map_resolve_0.5.3.tgz";
- url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz";
- sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a";
- };
- }
- {
- name = "source_map_support___source_map_support_0.4.18.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.4.18.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz";
- sha1 = "0286a6de8be42641338594e97ccea75f0a2c585f";
- };
- }
- {
- name = "source_map_support___source_map_support_0.5.20.tgz";
- path = fetchurl {
- name = "source_map_support___source_map_support_0.5.20.tgz";
- url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz";
- sha1 = "12166089f8f5e5e8c56926b377633392dd2cb6c9";
- };
- }
- {
- name = "source_map_url___source_map_url_0.4.1.tgz";
- path = fetchurl {
- name = "source_map_url___source_map_url_0.4.1.tgz";
- url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz";
- sha1 = "0af66605a745a5a2f91cf1bbf8a7afbc283dec56";
- };
- }
- {
- name = "source_map___source_map_0.5.7.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.5.7.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- }
- {
- name = "source_map___source_map_0.6.1.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.6.1.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz";
- sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263";
- };
- }
- {
- name = "source_map___source_map_0.7.3.tgz";
- path = fetchurl {
- name = "source_map___source_map_0.7.3.tgz";
- url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz";
- sha1 = "5302f8169031735226544092e64981f751750383";
- };
- }
- {
- name = "space_separated_tokens___space_separated_tokens_2.0.1.tgz";
- path = fetchurl {
- name = "space_separated_tokens___space_separated_tokens_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz";
- sha1 = "43193cec4fb858a2ce934b7f98b7f2c18107098b";
- };
- }
- {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- path = fetchurl {
- name = "spdx_correct___spdx_correct_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz";
- sha1 = "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9";
- };
- }
- {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- path = fetchurl {
- name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz";
- sha1 = "3f28ce1a77a00372683eade4a433183527a2163d";
- };
- }
- {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- path = fetchurl {
- name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz";
- sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679";
- };
- }
- {
- name = "spdx_license_ids___spdx_license_ids_3.0.10.tgz";
- path = fetchurl {
- name = "spdx_license_ids___spdx_license_ids_3.0.10.tgz";
- url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz";
- sha1 = "0d9becccde7003d6c658d487dd48a32f0bf3014b";
- };
- }
- {
- name = "spin.js___spin.js_4.1.1.tgz";
- path = fetchurl {
- name = "spin.js___spin.js_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/spin.js/-/spin.js-4.1.1.tgz";
- sha1 = "567464a08620541e523da856cb5f67af2d0f48ad";
- };
- }
- {
- name = "split_string___split_string_3.1.0.tgz";
- path = fetchurl {
- name = "split_string___split_string_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz";
- sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2";
- };
- }
- {
- name = "split2___split2_3.2.2.tgz";
- path = fetchurl {
- name = "split2___split2_3.2.2.tgz";
- url = "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz";
- sha1 = "bf2cf2a37d838312c249c89206fd7a17dd12365f";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.1.2.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz";
- sha1 = "da1765262bf8c0f571749f2ad6c26300207ae673";
- };
- }
- {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- path = fetchurl {
- name = "sprintf_js___sprintf_js_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
- };
- }
- {
- name = "sqlite3___sqlite3_5.0.2.tgz";
- path = fetchurl {
- name = "sqlite3___sqlite3_5.0.2.tgz";
- url = "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.0.2.tgz";
- sha1 = "00924adcc001c17686e0a6643b6cbbc2d3965083";
- };
- }
- {
- name = "sqlstring___sqlstring_2.3.2.tgz";
- path = fetchurl {
- name = "sqlstring___sqlstring_2.3.2.tgz";
- url = "https://registry.yarnpkg.com/sqlstring/-/sqlstring-2.3.2.tgz";
- sha1 = "cdae7169389a1375b18e885f2e60b3e460809514";
- };
- }
- {
- name = "sshpk___sshpk_1.16.1.tgz";
- path = fetchurl {
- name = "sshpk___sshpk_1.16.1.tgz";
- url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz";
- sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877";
- };
- }
- {
- name = "ssri___ssri_6.0.2.tgz";
- path = fetchurl {
- name = "ssri___ssri_6.0.2.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz";
- sha1 = "157939134f20464e7301ddba3e90ffa8f7728ac5";
- };
- }
- {
- name = "ssri___ssri_8.0.1.tgz";
- path = fetchurl {
- name = "ssri___ssri_8.0.1.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz";
- sha1 = "638e4e439e2ffbd2cd289776d5ca457c4f51a2af";
- };
- }
- {
- name = "stable___stable_0.1.8.tgz";
- path = fetchurl {
- name = "stable___stable_0.1.8.tgz";
- url = "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz";
- sha1 = "836eb3c8382fe2936feaf544631017ce7d47a3cf";
- };
- }
- {
- name = "stack_trace___stack_trace_0.0.10.tgz";
- path = fetchurl {
- name = "stack_trace___stack_trace_0.0.10.tgz";
- url = "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz";
- sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
- };
- }
- {
- name = "static_extend___static_extend_0.1.2.tgz";
- path = fetchurl {
- name = "static_extend___static_extend_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
- };
- }
- {
- name = "statuses___statuses_1.5.0.tgz";
- path = fetchurl {
- name = "statuses___statuses_1.5.0.tgz";
- url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz";
- sha1 = "161c7dac177659fd9811f43771fa99381478628c";
- };
- }
- {
- name = "store___store_2.0.12.tgz";
- path = fetchurl {
- name = "store___store_2.0.12.tgz";
- url = "https://registry.yarnpkg.com/store/-/store-2.0.12.tgz";
- sha1 = "8c534e2a0b831f72b75fc5f1119857c44ef5d593";
- };
- }
- {
- name = "stream_browserify___stream_browserify_2.0.2.tgz";
- path = fetchurl {
- name = "stream_browserify___stream_browserify_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz";
- sha1 = "87521d38a44aa7ee91ce1cd2a47df0cb49dd660b";
- };
- }
- {
- name = "stream_each___stream_each_1.2.3.tgz";
- path = fetchurl {
- name = "stream_each___stream_each_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz";
- sha1 = "ebe27a0c389b04fbcc233642952e10731afa9bae";
- };
- }
- {
- name = "stream_http___stream_http_2.8.3.tgz";
- path = fetchurl {
- name = "stream_http___stream_http_2.8.3.tgz";
- url = "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz";
- sha1 = "b2d242469288a5a27ec4fe8933acf623de6514fc";
- };
- }
- {
- name = "stream_shift___stream_shift_1.0.1.tgz";
- path = fetchurl {
- name = "stream_shift___stream_shift_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz";
- sha1 = "d7088281559ab2778424279b0877da3c392d5a3d";
- };
- }
- {
- name = "string_loader___string_loader_0.0.1.tgz";
- path = fetchurl {
- name = "string_loader___string_loader_0.0.1.tgz";
- url = "https://registry.yarnpkg.com/string-loader/-/string-loader-0.0.1.tgz";
- sha1 = "496f3cccc990213e0dd5411499f9ac6a6a6f2ff8";
- };
- }
- {
- name = "string_natural_compare___string_natural_compare_2.0.3.tgz";
- path = fetchurl {
- name = "string_natural_compare___string_natural_compare_2.0.3.tgz";
- url = "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-2.0.3.tgz";
- sha1 = "9dbe1dd65490a5fe14f7a5c9bc686fc67cb9c6e4";
- };
- }
- {
- name = "string_width___string_width_1.0.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
- };
- }
- {
- name = "string_width___string_width_2.1.1.tgz";
- path = fetchurl {
- name = "string_width___string_width_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz";
- sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e";
- };
- }
- {
- name = "string_width___string_width_4.2.2.tgz";
- path = fetchurl {
- name = "string_width___string_width_4.2.2.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz";
- sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5";
- };
- }
- {
- name = "string_width___string_width_5.0.1.tgz";
- path = fetchurl {
- name = "string_width___string_width_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/string-width/-/string-width-5.0.1.tgz";
- sha1 = "0d8158335a6cfd8eb95da9b6b262ce314a036ffd";
- };
- }
- {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
- path = fetchurl {
- name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
- sha1 = "e75ae90c2942c63504686c18b287b4a0b1a45f80";
- };
- }
- {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
- path = fetchurl {
- name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
- sha1 = "b36399af4ab2999b4c9c648bd7a3fb2bb26feeed";
- };
- }
- {
- name = "string___string_3.3.3.tgz";
- path = fetchurl {
- name = "string___string_3.3.3.tgz";
- url = "https://registry.yarnpkg.com/string/-/string-3.3.3.tgz";
- sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0";
- };
- }
- {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz";
- sha1 = "42f114594a46cf1a8e30b0a84f56c78c3edac21e";
- };
- }
- {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_0.10.31.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
- };
- }
- {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- path = fetchurl {
- name = "string_decoder___string_decoder_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz";
- sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8";
- };
- }
- {
- name = "stringify_entities___stringify_entities_4.0.1.tgz";
- path = fetchurl {
- name = "stringify_entities___stringify_entities_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.1.tgz";
- sha1 = "f483c9ca8d7e029edec9863c5a37c1f1e7702c8d";
- };
- }
- {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_3.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- }
- {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- }
- {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_6.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha1 = "0b1571dd7669ccd4f3e06e14ef1eed26225ae532";
- };
- }
- {
- name = "strip_ansi___strip_ansi_7.0.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_7.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz";
- sha1 = "61740a08ce36b61e50e65653f07060d000975fb2";
- };
- }
- {
- name = "strip_ansi___strip_ansi_0.1.1.tgz";
- path = fetchurl {
- name = "strip_ansi___strip_ansi_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz";
- sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991";
- };
- }
- {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- path = fetchurl {
- name = "strip_bom___strip_bom_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz";
- sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
- };
- }
- {
- name = "strip_comments___strip_comments_2.0.1.tgz";
- path = fetchurl {
- name = "strip_comments___strip_comments_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz";
- sha1 = "4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b";
- };
- }
- {
- name = "strip_final_newline___strip_final_newline_2.0.0.tgz";
- path = fetchurl {
- name = "strip_final_newline___strip_final_newline_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz";
- sha1 = "89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz";
- sha1 = "31f1281b3832630434831c310c01cccda8cbe006";
- };
- }
- {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- path = fetchurl {
- name = "strip_json_comments___strip_json_comments_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
- };
- }
- {
- name = "strnum___strnum_1.0.3.tgz";
- path = fetchurl {
- name = "strnum___strnum_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/strnum/-/strnum-1.0.3.tgz";
- sha1 = "bbc438bcb35fbbfc9c1e82f73097665b6ec6959e";
- };
- }
- {
- name = "strtok3___strtok3_6.2.4.tgz";
- path = fetchurl {
- name = "strtok3___strtok3_6.2.4.tgz";
- url = "https://registry.yarnpkg.com/strtok3/-/strtok3-6.2.4.tgz";
- sha1 = "302aea64c0fa25d12a0385069ba66253fdc38a81";
- };
- }
- {
- name = "stylehacks___stylehacks_5.0.1.tgz";
- path = fetchurl {
- name = "stylehacks___stylehacks_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.1.tgz";
- sha1 = "323ec554198520986806388c7fdaebc38d2c06fb";
- };
- }
- {
- name = "stylis___stylis_4.0.10.tgz";
- path = fetchurl {
- name = "stylis___stylis_4.0.10.tgz";
- url = "https://registry.yarnpkg.com/stylis/-/stylis-4.0.10.tgz";
- sha1 = "446512d1097197ab3f02fb3c258358c3f7a14240";
- };
- }
- {
- name = "superagent___superagent_1.8.3.tgz";
- path = fetchurl {
- name = "superagent___superagent_1.8.3.tgz";
- url = "https://registry.yarnpkg.com/superagent/-/superagent-1.8.3.tgz";
- sha1 = "2b7d70fcc870eda4f2a61e619dd54009b86547c3";
- };
- }
- {
- name = "supports_color___supports_color_8.1.1.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_8.1.1.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz";
- sha1 = "cd6fc17e28500cff56c1b86c0a7fd4a54a73005c";
- };
- }
- {
- name = "supports_color___supports_color_2.0.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
- };
- }
- {
- name = "supports_color___supports_color_5.5.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_5.5.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz";
- sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f";
- };
- }
- {
- name = "supports_color___supports_color_7.2.0.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_7.2.0.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz";
- sha1 = "1b7dcdcb32b8138801b3e478ba6a51caa89648da";
- };
- }
- {
- name = "supports_color___supports_color_9.0.2.tgz";
- path = fetchurl {
- name = "supports_color___supports_color_9.0.2.tgz";
- url = "https://registry.yarnpkg.com/supports-color/-/supports-color-9.0.2.tgz";
- sha1 = "50f082888e4b0a4e2ccd2d0b4f9ef4efcd332485";
- };
- }
- {
- name = "svgo___svgo_2.6.0.tgz";
- path = fetchurl {
- name = "svgo___svgo_2.6.0.tgz";
- url = "https://registry.yarnpkg.com/svgo/-/svgo-2.6.0.tgz";
- sha1 = "f7d3064a91b0804ea28a9dbfc3b36ba2ed4dd8d4";
- };
- }
- {
- name = "table___table_6.7.1.tgz";
- path = fetchurl {
- name = "table___table_6.7.1.tgz";
- url = "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz";
- sha1 = "ee05592b7143831a8c94f3cee6aae4c1ccef33e2";
- };
- }
- {
- name = "tapable___tapable_1.1.3.tgz";
- path = fetchurl {
- name = "tapable___tapable_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz";
- sha1 = "a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2";
- };
- }
- {
- name = "tapable___tapable_2.2.1.tgz";
- path = fetchurl {
- name = "tapable___tapable_2.2.1.tgz";
- url = "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz";
- sha1 = "1967a73ef4060a82f12ab96af86d52fdb76eeca0";
- };
- }
- {
- name = "tar_stream___tar_stream_2.2.0.tgz";
- path = fetchurl {
- name = "tar_stream___tar_stream_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz";
- sha1 = "acad84c284136b060dc3faa64474aa9aebd77287";
- };
- }
- {
- name = "tar___tar_2.2.2.tgz";
- path = fetchurl {
- name = "tar___tar_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz";
- sha1 = "0ca8848562c7299b8b446ff6a4d60cdbb23edc40";
- };
- }
- {
- name = "tar___tar_4.4.19.tgz";
- path = fetchurl {
- name = "tar___tar_4.4.19.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-4.4.19.tgz";
- sha1 = "2e4d7263df26f2b914dee10c825ab132123742f3";
- };
- }
- {
- name = "tar___tar_6.1.11.tgz";
- path = fetchurl {
- name = "tar___tar_6.1.11.tgz";
- url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz";
- sha1 = "6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621";
- };
- }
- {
- name = "tdigest___tdigest_0.1.1.tgz";
- path = fetchurl {
- name = "tdigest___tdigest_0.1.1.tgz";
- url = "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.1.tgz";
- sha1 = "2e3cb2c39ea449e55d1e6cd91117accca4588021";
- };
- }
- {
- name = "terser_webpack_plugin___terser_webpack_plugin_1.4.5.tgz";
- path = fetchurl {
- name = "terser_webpack_plugin___terser_webpack_plugin_1.4.5.tgz";
- url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz";
- sha1 = "a217aefaea330e734ffacb6120ec1fa312d6040b";
- };
- }
- {
- name = "terser___terser_4.8.0.tgz";
- path = fetchurl {
- name = "terser___terser_4.8.0.tgz";
- url = "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz";
- sha1 = "63056343d7c70bb29f3af665865a46fe03a0df17";
- };
- }
- {
- name = "text_hex___text_hex_1.0.0.tgz";
- path = fetchurl {
- name = "text_hex___text_hex_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz";
- sha1 = "69dc9c1b17446ee79a92bf5b884bb4b9127506f5";
- };
- }
- {
- name = "text_table___text_table_0.2.0.tgz";
- path = fetchurl {
- name = "text_table___text_table_0.2.0.tgz";
- url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz";
- sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
- };
- }
- {
- name = "through2___through2_2.0.5.tgz";
- path = fetchurl {
- name = "through2___through2_2.0.5.tgz";
- url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz";
- sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd";
- };
- }
- {
- name = "through2___through2_3.0.2.tgz";
- path = fetchurl {
- name = "through2___through2_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz";
- sha1 = "99f88931cfc761ec7678b41d5d7336b5b6a07bf4";
- };
- }
- {
- name = "timers_browserify___timers_browserify_2.0.12.tgz";
- path = fetchurl {
- name = "timers_browserify___timers_browserify_2.0.12.tgz";
- url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz";
- sha1 = "44a45c11fbf407f34f97bccd1577c652361b00ee";
- };
- }
- {
- name = "timsort___timsort_0.3.0.tgz";
- path = fetchurl {
- name = "timsort___timsort_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz";
- sha1 = "405411a8e7e6339fe64db9a234de11dc31e02bd4";
- };
- }
- {
- name = "to_array___to_array_0.1.4.tgz";
- path = fetchurl {
- name = "to_array___to_array_0.1.4.tgz";
- url = "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz";
- sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890";
- };
- }
- {
- name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz";
- path = fetchurl {
- name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
- sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
- };
- }
- {
- name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
- path = fetchurl {
- name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
- sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
- };
- }
- {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- path = fetchurl {
- name = "to_object_path___to_object_path_0.3.0.tgz";
- url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
- };
- }
- {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
- };
- }
- {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- path = fetchurl {
- name = "to_regex_range___to_regex_range_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz";
- sha1 = "1648c44aae7c8d988a326018ed72f5b4dd0392e4";
- };
- }
- {
- name = "to_regex___to_regex_3.0.2.tgz";
- path = fetchurl {
- name = "to_regex___to_regex_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz";
- sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce";
- };
- }
- {
- name = "to_vfile___to_vfile_7.2.2.tgz";
- path = fetchurl {
- name = "to_vfile___to_vfile_7.2.2.tgz";
- url = "https://registry.yarnpkg.com/to-vfile/-/to-vfile-7.2.2.tgz";
- sha1 = "5976568397ef664bc8df210676d082478822afbf";
- };
- }
- {
- name = "toidentifier___toidentifier_1.0.0.tgz";
- path = fetchurl {
- name = "toidentifier___toidentifier_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz";
- sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553";
- };
- }
- {
- name = "token_types___token_types_4.1.1.tgz";
- path = fetchurl {
- name = "token_types___token_types_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/token-types/-/token-types-4.1.1.tgz";
- sha1 = "ef9e8c8e2e0ded9f1b3f8dbaa46a3228b113ba1a";
- };
- }
- {
- name = "toobusy_js___toobusy_js_0.5.1.tgz";
- path = fetchurl {
- name = "toobusy_js___toobusy_js_0.5.1.tgz";
- url = "https://registry.yarnpkg.com/toobusy-js/-/toobusy-js-0.5.1.tgz";
- sha1 = "5511f78f6a87a6a512d44fdb0efa13672217f659";
- };
- }
- {
- name = "toposort_class___toposort_class_1.0.1.tgz";
- path = fetchurl {
- name = "toposort_class___toposort_class_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz";
- sha1 = "7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988";
- };
- }
- {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- path = fetchurl {
- name = "tough_cookie___tough_cookie_2.5.0.tgz";
- url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz";
- sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2";
- };
- }
- {
- name = "trim_right___trim_right_1.0.1.tgz";
- path = fetchurl {
- name = "trim_right___trim_right_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz";
- sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
- };
- }
- {
- name = "triple_beam___triple_beam_1.3.0.tgz";
- path = fetchurl {
- name = "triple_beam___triple_beam_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz";
- sha1 = "a595214c7298db8339eeeee083e4d10bd8cb8dd9";
- };
- }
- {
- name = "trough___trough_2.0.2.tgz";
- path = fetchurl {
- name = "trough___trough_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/trough/-/trough-2.0.2.tgz";
- sha1 = "94a3aa9d5ce379fc561f6244905b3f36b7458d96";
- };
- }
- {
- name = "tsconfig_paths___tsconfig_paths_3.11.0.tgz";
- path = fetchurl {
- name = "tsconfig_paths___tsconfig_paths_3.11.0.tgz";
- url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz";
- sha1 = "954c1fe973da6339c78e06b03ce2e48810b65f36";
- };
- }
- {
- name = "tslib___tslib_1.14.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_1.14.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz";
- sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00";
- };
- }
- {
- name = "tslib___tslib_2.3.1.tgz";
- path = fetchurl {
- name = "tslib___tslib_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz";
- sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01";
- };
- }
- {
- name = "tty_browserify___tty_browserify_0.0.0.tgz";
- path = fetchurl {
- name = "tty_browserify___tty_browserify_0.0.0.tgz";
- url = "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz";
- sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
- };
- }
- {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- path = fetchurl {
- name = "tunnel_agent___tunnel_agent_0.6.0.tgz";
- url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- }
- {
- name = "turndown___turndown_7.1.1.tgz";
- path = fetchurl {
- name = "turndown___turndown_7.1.1.tgz";
- url = "https://registry.yarnpkg.com/turndown/-/turndown-7.1.1.tgz";
- sha1 = "96992f2d9b40a1a03d3ea61ad31b5a5c751ef77f";
- };
- }
- {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- path = fetchurl {
- name = "tweetnacl___tweetnacl_0.14.5.tgz";
- url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- }
- {
- name = "type_check___type_check_0.4.0.tgz";
- path = fetchurl {
- name = "type_check___type_check_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz";
- sha1 = "07b8203bfa7056c0657050e3ccd2c37730bab8f1";
- };
- }
- {
- name = "type_fest___type_fest_0.20.2.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_0.20.2.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz";
- sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4";
- };
- }
- {
- name = "type_fest___type_fest_1.4.0.tgz";
- path = fetchurl {
- name = "type_fest___type_fest_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz";
- sha1 = "e9fb813fe3bf1744ec359d55d1affefa76f14be1";
- };
- }
- {
- name = "type_is___type_is_1.6.18.tgz";
- path = fetchurl {
- name = "type_is___type_is_1.6.18.tgz";
- url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz";
- sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131";
- };
- }
- {
- name = "typedarray___typedarray_0.0.6.tgz";
- path = fetchurl {
- name = "typedarray___typedarray_0.0.6.tgz";
- url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
- };
- }
- {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- path = fetchurl {
- name = "uc.micro___uc.micro_1.0.6.tgz";
- url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz";
- sha1 = "9c411a802a409a91fc6cf74081baba34b24499ac";
- };
- }
- {
- name = "uid_safe___uid_safe_2.1.5.tgz";
- path = fetchurl {
- name = "uid_safe___uid_safe_2.1.5.tgz";
- url = "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz";
- sha1 = "2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a";
- };
- }
- {
- name = "uid2___uid2_0.0.4.tgz";
- path = fetchurl {
- name = "uid2___uid2_0.0.4.tgz";
- url = "https://registry.yarnpkg.com/uid2/-/uid2-0.0.4.tgz";
- sha1 = "033f3b1d5d32505f5ce5f888b9f3b667123c0a44";
- };
- }
- {
- name = "umzug___umzug_2.3.0.tgz";
- path = fetchurl {
- name = "umzug___umzug_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/umzug/-/umzug-2.3.0.tgz";
- sha1 = "0ef42b62df54e216b05dcaf627830a6a8b84a184";
- };
- }
- {
- name = "unbox_primitive___unbox_primitive_1.0.1.tgz";
- path = fetchurl {
- name = "unbox_primitive___unbox_primitive_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz";
- sha1 = "085e215625ec3162574dc8859abee78a59b14471";
- };
- }
- {
- name = "underscore___underscore_1.11.0.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.11.0.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.11.0.tgz";
- sha1 = "dd7c23a195db34267186044649870ff1bab5929e";
- };
- }
- {
- name = "underscore___underscore_1.13.1.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.13.1.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz";
- sha1 = "0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1";
- };
- }
- {
- name = "underscore___underscore_1.6.0.tgz";
- path = fetchurl {
- name = "underscore___underscore_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz";
- sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
- };
- }
- {
- name = "unified_args___unified_args_9.0.2.tgz";
- path = fetchurl {
- name = "unified_args___unified_args_9.0.2.tgz";
- url = "https://registry.yarnpkg.com/unified-args/-/unified-args-9.0.2.tgz";
- sha1 = "0c14f555e73ee29c23f9a567942e29069f56e5a2";
- };
- }
- {
- name = "unified_engine___unified_engine_9.0.4.tgz";
- path = fetchurl {
- name = "unified_engine___unified_engine_9.0.4.tgz";
- url = "https://registry.yarnpkg.com/unified-engine/-/unified-engine-9.0.4.tgz";
- sha1 = "ee02b6a7f11e69a56f79cb8595065b8c3f02bda8";
- };
- }
- {
- name = "unified_lint_rule___unified_lint_rule_2.0.1.tgz";
- path = fetchurl {
- name = "unified_lint_rule___unified_lint_rule_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/unified-lint-rule/-/unified-lint-rule-2.0.1.tgz";
- sha1 = "85276c0d443dce7b76d65e4b8bcdc987323ec9e4";
- };
- }
- {
- name = "unified_message_control___unified_message_control_4.0.0.tgz";
- path = fetchurl {
- name = "unified_message_control___unified_message_control_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-4.0.0.tgz";
- sha1 = "7cd313df526fc660f218b19a56377bb6957019a8";
- };
- }
- {
- name = "unified___unified_10.1.0.tgz";
- path = fetchurl {
- name = "unified___unified_10.1.0.tgz";
- url = "https://registry.yarnpkg.com/unified/-/unified-10.1.0.tgz";
- sha1 = "4e65eb38fc2448b1c5ee573a472340f52b9346fe";
- };
- }
- {
- name = "union_value___union_value_1.0.1.tgz";
- path = fetchurl {
- name = "union_value___union_value_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz";
- sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847";
- };
- }
- {
- name = "uniqs___uniqs_2.0.0.tgz";
- path = fetchurl {
- name = "uniqs___uniqs_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz";
- sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02";
- };
- }
- {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- path = fetchurl {
- name = "unique_filename___unique_filename_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz";
- sha1 = "1d69769369ada0583103a1e6ae87681b56573230";
- };
- }
- {
- name = "unique_slug___unique_slug_2.0.2.tgz";
- path = fetchurl {
- name = "unique_slug___unique_slug_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz";
- sha1 = "baabce91083fc64e945b0f3ad613e264f7cd4e6c";
- };
- }
- {
- name = "unist_util_generated___unist_util_generated_2.0.0.tgz";
- path = fetchurl {
- name = "unist_util_generated___unist_util_generated_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.0.tgz";
- sha1 = "86fafb77eb6ce9bfa6b663c3f5ad4f8e56a60113";
- };
- }
- {
- name = "unist_util_inspect___unist_util_inspect_7.0.0.tgz";
- path = fetchurl {
- name = "unist_util_inspect___unist_util_inspect_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-inspect/-/unist-util-inspect-7.0.0.tgz";
- sha1 = "98426f0219e24d011a27e32539be0693d9eb973e";
- };
- }
- {
- name = "unist_util_is___unist_util_is_5.1.1.tgz";
- path = fetchurl {
- name = "unist_util_is___unist_util_is_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz";
- sha1 = "e8aece0b102fa9bc097b0fef8f870c496d4a6236";
- };
- }
- {
- name = "unist_util_position___unist_util_position_4.0.1.tgz";
- path = fetchurl {
- name = "unist_util_position___unist_util_position_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.1.tgz";
- sha1 = "f8484b2da19a897a0180556d160c28633070dbb9";
- };
- }
- {
- name = "unist_util_stringify_position___unist_util_stringify_position_3.0.0.tgz";
- path = fetchurl {
- name = "unist_util_stringify_position___unist_util_stringify_position_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz";
- sha1 = "d517d2883d74d0daa0b565adc3d10a02b4a8cde9";
- };
- }
- {
- name = "unist_util_visit_parents___unist_util_visit_parents_4.1.1.tgz";
- path = fetchurl {
- name = "unist_util_visit_parents___unist_util_visit_parents_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz";
- sha1 = "e83559a4ad7e6048a46b1bdb22614f2f3f4724f2";
- };
- }
- {
- name = "unist_util_visit_parents___unist_util_visit_parents_5.0.0.tgz";
- path = fetchurl {
- name = "unist_util_visit_parents___unist_util_visit_parents_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.0.0.tgz";
- sha1 = "5ae2440f8710a0c18a2b4ba0c4471d18e1090494";
- };
- }
- {
- name = "unist_util_visit___unist_util_visit_3.1.0.tgz";
- path = fetchurl {
- name = "unist_util_visit___unist_util_visit_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz";
- sha1 = "9420d285e1aee938c7d9acbafc8e160186dbaf7b";
- };
- }
- {
- name = "unist_util_visit___unist_util_visit_4.0.0.tgz";
- path = fetchurl {
- name = "unist_util_visit___unist_util_visit_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.0.0.tgz";
- sha1 = "6e1f7e8e163921d20281354c38bfd3244b64580a";
- };
- }
- {
- name = "unpipe___unpipe_1.0.0.tgz";
- path = fetchurl {
- name = "unpipe___unpipe_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz";
- sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
- };
- }
- {
- name = "unset_value___unset_value_1.0.0.tgz";
- path = fetchurl {
- name = "unset_value___unset_value_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
- };
- }
- {
- name = "upath___upath_1.2.0.tgz";
- path = fetchurl {
- name = "upath___upath_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz";
- sha1 = "8f66dbcd55a883acdae4408af8b035a5044c1894";
- };
- }
- {
- name = "uri_js___uri_js_4.4.1.tgz";
- path = fetchurl {
- name = "uri_js___uri_js_4.4.1.tgz";
- url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz";
- sha1 = "9b1a52595225859e55f669d928f88c6c57f2a77e";
- };
- }
- {
- name = "urix___urix_0.1.0.tgz";
- path = fetchurl {
- name = "urix___urix_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
- };
- }
- {
- name = "url_loader___url_loader_4.1.1.tgz";
- path = fetchurl {
- name = "url_loader___url_loader_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz";
- sha1 = "28505e905cae158cf07c92ca622d7f237e70a4e2";
- };
- }
- {
- name = "url___url_0.10.3.tgz";
- path = fetchurl {
- name = "url___url_0.10.3.tgz";
- url = "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz";
- sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64";
- };
- }
- {
- name = "url___url_0.11.0.tgz";
- path = fetchurl {
- name = "url___url_0.11.0.tgz";
- url = "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz";
- sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
- };
- }
- {
- name = "use___use_3.1.1.tgz";
- path = fetchurl {
- name = "use___use_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz";
- sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f";
- };
- }
- {
- name = "user_home___user_home_1.1.1.tgz";
- path = fetchurl {
- name = "user_home___user_home_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz";
- sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190";
- };
- }
- {
- name = "utf_8_validate___utf_8_validate_5.0.5.tgz";
- path = fetchurl {
- name = "utf_8_validate___utf_8_validate_5.0.5.tgz";
- url = "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz";
- sha1 = "dd32c2e82c72002dc9f02eb67ba6761f43456ca1";
- };
- }
- {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- path = fetchurl {
- name = "util_deprecate___util_deprecate_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- }
- {
- name = "util.promisify___util.promisify_1.0.0.tgz";
- path = fetchurl {
- name = "util.promisify___util.promisify_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz";
- sha1 = "440f7165a459c9a16dc145eb8e72f35687097030";
- };
- }
- {
- name = "util___util_0.10.3.tgz";
- path = fetchurl {
- name = "util___util_0.10.3.tgz";
- url = "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz";
- sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
- };
- }
- {
- name = "util___util_0.11.1.tgz";
- path = fetchurl {
- name = "util___util_0.11.1.tgz";
- url = "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz";
- sha1 = "3236733720ec64bb27f6e26f421aaa2e1b588d61";
- };
- }
- {
- name = "util___util_0.12.4.tgz";
- path = fetchurl {
- name = "util___util_0.12.4.tgz";
- url = "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz";
- sha1 = "66121a31420df8f01ca0c464be15dfa1d1850253";
- };
- }
- {
- name = "utila___utila_0.4.0.tgz";
- path = fetchurl {
- name = "utila___utila_0.4.0.tgz";
- url = "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz";
- sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c";
- };
- }
- {
- name = "utils_merge___utils_merge_1.0.1.tgz";
- path = fetchurl {
- name = "utils_merge___utils_merge_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
- };
- }
- {
- name = "uuid___uuid_3.3.2.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.3.2.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz";
- sha1 = "1b4af4955eb3077c501c23872fc6513811587131";
- };
- }
- {
- name = "uuid___uuid_3.4.0.tgz";
- path = fetchurl {
- name = "uuid___uuid_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz";
- sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee";
- };
- }
- {
- name = "uuid___uuid_8.3.2.tgz";
- path = fetchurl {
- name = "uuid___uuid_8.3.2.tgz";
- url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz";
- sha1 = "80d5b5ced271bb9af6c445f21a1a04c606cefbe2";
- };
- }
- {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- path = fetchurl {
- name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
- url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz";
- sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee";
- };
- }
- {
- name = "v8flags___v8flags_2.1.1.tgz";
- path = fetchurl {
- name = "v8flags___v8flags_2.1.1.tgz";
- url = "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz";
- sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
- };
- }
- {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- path = fetchurl {
- name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz";
- url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a";
- };
- }
- {
- name = "validator___validator_10.11.0.tgz";
- path = fetchurl {
- name = "validator___validator_10.11.0.tgz";
- url = "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz";
- sha1 = "003108ea6e9a9874d31ccc9e5006856ccd76b228";
- };
- }
- {
- name = "validator___validator_13.6.0.tgz";
- path = fetchurl {
- name = "validator___validator_13.6.0.tgz";
- url = "https://registry.yarnpkg.com/validator/-/validator-13.6.0.tgz";
- sha1 = "1e71899c14cdc7b2068463cb24c1cc16f6ec7059";
- };
- }
- {
- name = "validator___validator_9.4.1.tgz";
- path = fetchurl {
- name = "validator___validator_9.4.1.tgz";
- url = "https://registry.yarnpkg.com/validator/-/validator-9.4.1.tgz";
- sha1 = "abf466d398b561cd243050112c6ff1de6cc12663";
- };
- }
- {
- name = "vary___vary_1.1.2.tgz";
- path = fetchurl {
- name = "vary___vary_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz";
- sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
- };
- }
- {
- name = "vasync___vasync_2.2.0.tgz";
- path = fetchurl {
- name = "vasync___vasync_2.2.0.tgz";
- url = "https://registry.yarnpkg.com/vasync/-/vasync-2.2.0.tgz";
- sha1 = "cfde751860a15822db3b132bc59b116a4adaf01b";
- };
- }
- {
- name = "velocity_animate___velocity_animate_1.5.2.tgz";
- path = fetchurl {
- name = "velocity_animate___velocity_animate_1.5.2.tgz";
- url = "https://registry.yarnpkg.com/velocity-animate/-/velocity-animate-1.5.2.tgz";
- sha1 = "5a351d75fca2a92756f5c3867548b873f6c32105";
- };
- }
- {
- name = "vendors___vendors_1.0.4.tgz";
- path = fetchurl {
- name = "vendors___vendors_1.0.4.tgz";
- url = "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz";
- sha1 = "e2b800a53e7a29b93506c3cf41100d16c4c4ad8e";
- };
- }
- {
- name = "verror___verror_1.10.0.tgz";
- path = fetchurl {
- name = "verror___verror_1.10.0.tgz";
- url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- }
- {
- name = "vfile_location___vfile_location_4.0.1.tgz";
- path = fetchurl {
- name = "vfile_location___vfile_location_4.0.1.tgz";
- url = "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz";
- sha1 = "06f2b9244a3565bef91f099359486a08b10d3a95";
- };
- }
- {
- name = "vfile_message___vfile_message_3.0.2.tgz";
- path = fetchurl {
- name = "vfile_message___vfile_message_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.0.2.tgz";
- sha1 = "db7eaebe7fecb853010f2ef1664427f52baf8f74";
- };
- }
- {
- name = "vfile_reporter___vfile_reporter_7.0.2.tgz";
- path = fetchurl {
- name = "vfile_reporter___vfile_reporter_7.0.2.tgz";
- url = "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-7.0.2.tgz";
- sha1 = "2b3bfafb428581e72073c4337acdf82912385356";
- };
- }
- {
- name = "vfile_sort___vfile_sort_3.0.0.tgz";
- path = fetchurl {
- name = "vfile_sort___vfile_sort_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-3.0.0.tgz";
- sha1 = "ee13d3eaac0446200a2047a3b45d78fad6b106e6";
- };
- }
- {
- name = "vfile_statistics___vfile_statistics_2.0.0.tgz";
- path = fetchurl {
- name = "vfile_statistics___vfile_statistics_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-2.0.0.tgz";
- sha1 = "f04ee3e3c666809a3c10c06021becd41ea9c8037";
- };
- }
- {
- name = "vfile___vfile_5.1.0.tgz";
- path = fetchurl {
- name = "vfile___vfile_5.1.0.tgz";
- url = "https://registry.yarnpkg.com/vfile/-/vfile-5.1.0.tgz";
- sha1 = "18e78016f0f71e98d737d40f0fca921dc264a600";
- };
- }
- {
- name = "visibilityjs___visibilityjs_2.0.2.tgz";
- path = fetchurl {
- name = "visibilityjs___visibilityjs_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-2.0.2.tgz";
- sha1 = "d7c466e922024bb6c413d2136d5567e71f5fdc2f";
- };
- }
- {
- name = "viz.js___viz.js_1.8.2.tgz";
- path = fetchurl {
- name = "viz.js___viz.js_1.8.2.tgz";
- url = "https://registry.yarnpkg.com/viz.js/-/viz.js-1.8.2.tgz";
- sha1 = "d9cc04cd99f98ec986bf9054db76a6cbcdc5d97a";
- };
- }
- {
- name = "vm_browserify___vm_browserify_1.1.2.tgz";
- path = fetchurl {
- name = "vm_browserify___vm_browserify_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz";
- sha1 = "78641c488b8e6ca91a75f511e7a3b32a86e5dda0";
- };
- }
- {
- name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz";
- path = fetchurl {
- name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz";
- sha1 = "38500072ee6ece66f3769936950ea1771be1c957";
- };
- }
- {
- name = "watchpack___watchpack_1.7.5.tgz";
- path = fetchurl {
- name = "watchpack___watchpack_1.7.5.tgz";
- url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz";
- sha1 = "1267e6c55e0b9b5be44c2023aed5437a2c26c453";
- };
- }
- {
- name = "web_encoding___web_encoding_1.1.5.tgz";
- path = fetchurl {
- name = "web_encoding___web_encoding_1.1.5.tgz";
- url = "https://registry.yarnpkg.com/web-encoding/-/web-encoding-1.1.5.tgz";
- sha1 = "fc810cf7667364a6335c939913f5051d3e0c4864";
- };
- }
- {
- name = "web_namespaces___web_namespaces_2.0.0.tgz";
- path = fetchurl {
- name = "web_namespaces___web_namespaces_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.0.tgz";
- sha1 = "1f6a2d7b5823329abaedeb6bdf09ef2fed35db13";
- };
- }
- {
- name = "webfontloader___webfontloader_1.6.28.tgz";
- path = fetchurl {
- name = "webfontloader___webfontloader_1.6.28.tgz";
- url = "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz";
- sha1 = "db786129253cb6e8eae54c2fb05f870af6675bae";
- };
- }
- {
- name = "webpack_cli___webpack_cli_4.8.0.tgz";
- path = fetchurl {
- name = "webpack_cli___webpack_cli_4.8.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.8.0.tgz";
- sha1 = "5fc3c8b9401d3c8a43e2afceacfa8261962338d1";
- };
- }
- {
- name = "webpack_merge___webpack_merge_5.8.0.tgz";
- path = fetchurl {
- name = "webpack_merge___webpack_merge_5.8.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz";
- sha1 = "2b39dbf22af87776ad744c390223731d30a68f61";
- };
- }
- {
- name = "webpack_sources___webpack_sources_1.4.3.tgz";
- path = fetchurl {
- name = "webpack_sources___webpack_sources_1.4.3.tgz";
- url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz";
- sha1 = "eedd8ec0b928fbf1cbfe994e22d2d890f330a933";
- };
- }
- {
- name = "webpack_sources___webpack_sources_2.3.1.tgz";
- path = fetchurl {
- name = "webpack_sources___webpack_sources_2.3.1.tgz";
- url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz";
- sha1 = "570de0af163949fe272233c2cefe1b56f74511fd";
- };
- }
- {
- name = "webpack___webpack_4.46.0.tgz";
- path = fetchurl {
- name = "webpack___webpack_4.46.0.tgz";
- url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz";
- sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542";
- };
- }
- {
- name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
- path = fetchurl {
- name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz";
- sha1 = "13757bc89b209b049fe5d86430e21cf40a89a8e6";
- };
- }
- {
- name = "which_collection___which_collection_1.0.1.tgz";
- path = fetchurl {
- name = "which_collection___which_collection_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz";
- sha1 = "70eab71ebbbd2aefaf32f917082fc62cdcb70906";
- };
- }
- {
- name = "which_typed_array___which_typed_array_1.1.7.tgz";
- path = fetchurl {
- name = "which_typed_array___which_typed_array_1.1.7.tgz";
- url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.7.tgz";
- sha1 = "2761799b9a22d4b8660b3c1b40abaa7739691793";
- };
- }
- {
- name = "which___which_1.3.1.tgz";
- path = fetchurl {
- name = "which___which_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz";
- sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a";
- };
- }
- {
- name = "which___which_2.0.2.tgz";
- path = fetchurl {
- name = "which___which_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz";
- sha1 = "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1";
- };
- }
- {
- name = "wide_align___wide_align_1.1.3.tgz";
- path = fetchurl {
- name = "wide_align___wide_align_1.1.3.tgz";
- url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz";
- sha1 = "ae074e6bdc0c14a431e804e624549c633b000457";
- };
- }
- {
- name = "wildcard___wildcard_2.0.0.tgz";
- path = fetchurl {
- name = "wildcard___wildcard_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz";
- sha1 = "a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec";
- };
- }
- {
- name = "winston_transport___winston_transport_4.4.0.tgz";
- path = fetchurl {
- name = "winston_transport___winston_transport_4.4.0.tgz";
- url = "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.4.0.tgz";
- sha1 = "17af518daa690d5b2ecccaa7acf7b20ca7925e59";
- };
- }
- {
- name = "winston___winston_3.3.3.tgz";
- path = fetchurl {
- name = "winston___winston_3.3.3.tgz";
- url = "https://registry.yarnpkg.com/winston/-/winston-3.3.3.tgz";
- sha1 = "ae6172042cafb29786afa3d09c8ff833ab7c9170";
- };
- }
- {
- name = "wkx___wkx_0.4.8.tgz";
- path = fetchurl {
- name = "wkx___wkx_0.4.8.tgz";
- url = "https://registry.yarnpkg.com/wkx/-/wkx-0.4.8.tgz";
- sha1 = "a092cf088d112683fdc7182fd31493b2c5820003";
- };
- }
- {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- path = fetchurl {
- name = "word_wrap___word_wrap_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz";
- sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c";
- };
- }
- {
- name = "worker_farm___worker_farm_1.7.0.tgz";
- path = fetchurl {
- name = "worker_farm___worker_farm_1.7.0.tgz";
- url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz";
- sha1 = "26a94c5391bbca926152002f69b84a4bf772e5a8";
- };
- }
- {
- name = "workerpool___workerpool_6.1.5.tgz";
- path = fetchurl {
- name = "workerpool___workerpool_6.1.5.tgz";
- url = "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.5.tgz";
- sha1 = "0f7cf076b6215fd7e1da903ff6f22ddd1886b581";
- };
- }
- {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- path = fetchurl {
- name = "wrap_ansi___wrap_ansi_7.0.0.tgz";
- url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz";
- sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43";
- };
- }
- {
- name = "wrappy___wrappy_1.0.2.tgz";
- path = fetchurl {
- name = "wrappy___wrappy_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- }
- {
- name = "ws___ws_7.4.6.tgz";
- path = fetchurl {
- name = "ws___ws_7.4.6.tgz";
- url = "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz";
- sha1 = "5654ca8ecdeee47c33a9a4bf6d28e2be2980377c";
- };
- }
- {
- name = "wurl___wurl_2.5.4.tgz";
- path = fetchurl {
- name = "wurl___wurl_2.5.4.tgz";
- url = "https://registry.yarnpkg.com/wurl/-/wurl-2.5.4.tgz";
- sha1 = "6af35a6c623296c4a0c607c4651d01b8f4e3fdec";
- };
- }
- {
- name = "xml_crypto___xml_crypto_2.1.3.tgz";
- path = fetchurl {
- name = "xml_crypto___xml_crypto_2.1.3.tgz";
- url = "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.1.3.tgz";
- sha1 = "6a7272b610ea3e4ea7f13e9e4876f1b20cbc32c8";
- };
- }
- {
- name = "xml_encryption___xml_encryption_1.3.0.tgz";
- path = fetchurl {
- name = "xml_encryption___xml_encryption_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-1.3.0.tgz";
- sha1 = "4cad44a59bf8bdec76d7865ce0b89e13c09962f4";
- };
- }
- {
- name = "xml2js___xml2js_0.2.8.tgz";
- path = fetchurl {
- name = "xml2js___xml2js_0.2.8.tgz";
- url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.2.8.tgz";
- sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2";
- };
- }
- {
- name = "xml2js___xml2js_0.4.19.tgz";
- path = fetchurl {
- name = "xml2js___xml2js_0.4.19.tgz";
- url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz";
- sha1 = "686c20f213209e94abf0d1bcf1efaa291c7827a7";
- };
- }
- {
- name = "xml2js___xml2js_0.4.23.tgz";
- path = fetchurl {
- name = "xml2js___xml2js_0.4.23.tgz";
- url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz";
- sha1 = "a0c69516752421eb2ac758ee4d4ccf58843eac66";
- };
- }
- {
- name = "xml___xml_1.0.1.tgz";
- path = fetchurl {
- name = "xml___xml_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz";
- sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_15.1.1.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_15.1.1.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz";
- sha1 = "9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_9.0.7.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
- sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
- };
- }
- {
- name = "xmlbuilder___xmlbuilder_11.0.1.tgz";
- path = fetchurl {
- name = "xmlbuilder___xmlbuilder_11.0.1.tgz";
- url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz";
- sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3";
- };
- }
- {
- name = "xmldom___xmldom_0.1.31.tgz";
- path = fetchurl {
- name = "xmldom___xmldom_0.1.31.tgz";
- url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz";
- sha1 = "b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff";
- };
- }
- {
- name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.6.3.tgz";
- path = fetchurl {
- name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.6.3.tgz";
- url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz";
- sha1 = "03b713873b01659dfa2c1c5d056065b27ddc2de6";
- };
- }
- {
- name = "xmlhttprequest___xmlhttprequest_1.8.0.tgz";
- path = fetchurl {
- name = "xmlhttprequest___xmlhttprequest_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz";
- sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc";
- };
- }
- {
- name = "xpath___xpath_0.0.32.tgz";
- path = fetchurl {
- name = "xpath___xpath_0.0.32.tgz";
- url = "https://registry.yarnpkg.com/xpath/-/xpath-0.0.32.tgz";
- sha1 = "1b73d3351af736e17ec078d6da4b8175405c48af";
- };
- }
- {
- name = "xss___xss_1.0.9.tgz";
- path = fetchurl {
- name = "xss___xss_1.0.9.tgz";
- url = "https://registry.yarnpkg.com/xss/-/xss-1.0.9.tgz";
- sha1 = "3ffd565571ff60d2e40db7f3b80b4677bec770d2";
- };
- }
- {
- name = "xtend___xtend_4.0.2.tgz";
- path = fetchurl {
- name = "xtend___xtend_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz";
- sha1 = "bb72779f5fa465186b1f438f674fa347fdb5db54";
- };
- }
- {
- name = "xtraverse___xtraverse_0.1.0.tgz";
- path = fetchurl {
- name = "xtraverse___xtraverse_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/xtraverse/-/xtraverse-0.1.0.tgz";
- sha1 = "b741bad018ef78d8a9d2e83ade007b3f7959c732";
- };
- }
- {
- name = "y18n___y18n_4.0.3.tgz";
- path = fetchurl {
- name = "y18n___y18n_4.0.3.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz";
- sha1 = "b5f259c82cd6e336921efd7bfd8bf560de9eeedf";
- };
- }
- {
- name = "y18n___y18n_5.0.8.tgz";
- path = fetchurl {
- name = "y18n___y18n_5.0.8.tgz";
- url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz";
- sha1 = "7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55";
- };
- }
- {
- name = "yallist___yallist_2.1.2.tgz";
- path = fetchurl {
- name = "yallist___yallist_2.1.2.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
- };
- }
- {
- name = "yallist___yallist_3.1.1.tgz";
- path = fetchurl {
- name = "yallist___yallist_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz";
- sha1 = "dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd";
- };
- }
- {
- name = "yallist___yallist_4.0.0.tgz";
- path = fetchurl {
- name = "yallist___yallist_4.0.0.tgz";
- url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz";
- sha1 = "9bb92790d9c0effec63be73519e11a35019a3a72";
- };
- }
- {
- name = "yaml___yaml_1.10.2.tgz";
- path = fetchurl {
- name = "yaml___yaml_1.10.2.tgz";
- url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz";
- sha1 = "2301c5ffbf12b467de8da2333a459e29e7920e4b";
- };
- }
- {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_20.2.4.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz";
- sha1 = "b42890f14566796f85ae8e3a25290d205f154a54";
- };
- }
- {
- name = "yargs_parser___yargs_parser_20.2.9.tgz";
- path = fetchurl {
- name = "yargs_parser___yargs_parser_20.2.9.tgz";
- url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz";
- sha1 = "2eb7dc3b0289718fc295f362753845c41a0c94ee";
- };
- }
- {
- name = "yargs_unparser___yargs_unparser_2.0.0.tgz";
- path = fetchurl {
- name = "yargs_unparser___yargs_unparser_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz";
- sha1 = "f131f9226911ae5d9ad38c432fe809366c2325eb";
- };
- }
- {
- name = "yargs___yargs_16.2.0.tgz";
- path = fetchurl {
- name = "yargs___yargs_16.2.0.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz";
- sha1 = "1c82bf0f6b6a66eafce7ef30e376f49a12477f66";
- };
- }
- {
- name = "yeast___yeast_0.1.2.tgz";
- path = fetchurl {
- name = "yeast___yeast_0.1.2.tgz";
- url = "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz";
- sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419";
- };
- }
- {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- path = fetchurl {
- name = "yocto_queue___yocto_queue_0.1.0.tgz";
- url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz";
- sha1 = "0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b";
- };
- }
- {
- name = "zip_stream___zip_stream_4.1.0.tgz";
- path = fetchurl {
- name = "zip_stream___zip_stream_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz";
- sha1 = "51dd326571544e36aa3f756430b313576dc8fc79";
- };
- }
- {
- name = "zwitch___zwitch_2.0.2.tgz";
- path = fetchurl {
- name = "zwitch___zwitch_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.2.tgz";
- sha1 = "91f8d0e901ffa3d66599756dde7f57b17c95dce1";
- };
- }
- ];
-}
diff --git a/third_party/nixpkgs/pkgs/servers/x11/xorg/overrides.nix b/third_party/nixpkgs/pkgs/servers/x11/xorg/overrides.nix
index 9b119aa710..3a6ec31ad7 100644
--- a/third_party/nixpkgs/pkgs/servers/x11/xorg/overrides.nix
+++ b/third_party/nixpkgs/pkgs/servers/x11/xorg/overrides.nix
@@ -779,6 +779,7 @@ self: super:
stdenv = if isDarwin then clangStdenv else stdenv;
}).overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ lib.optional isDarwin bootstrap_cmds;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
configureFlags = [
"--with-xserver=${self.xorgserver.out}/bin/X"
] ++ lib.optionals isDarwin [
@@ -794,6 +795,10 @@ self: super:
sha256 = "18kb88i3s9nbq2jxl7l2hyj6p56c993hivk8mzxg811iqbbawkp7";
})
];
+ postPatch = ''
+ # Avoid replacement of word-looking cpp's builtin macros in Nix's cross-compiled paths
+ substituteInPlace Makefile.in --replace "PROGCPPDEFS =" "PROGCPPDEFS = -Dlinux=linux -Dunix=unix"
+ '';
propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ self.xauth ]
++ lib.optionals isDarwin [ self.libX11 self.xorgproto ];
postFixup = ''
diff --git a/third_party/nixpkgs/pkgs/shells/hilbish/default.nix b/third_party/nixpkgs/pkgs/shells/hilbish/default.nix
index be2bdf318f..a4a54e45c6 100644
--- a/third_party/nixpkgs/pkgs/shells/hilbish/default.nix
+++ b/third_party/nixpkgs/pkgs/shells/hilbish/default.nix
@@ -2,25 +2,24 @@
buildGoModule rec {
pname = "hilbish";
- version = "0.5.1";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "Rosettea";
repo = "Hilbish";
rev = "v${version}";
- sha256 = "sha256-557Je9KeBpkZxVAxcjWAhybIJJYlzhtbnIyZh0rCRUc=";
+ sha256 = "sha256-ACHHHGT3VGnvZVi1UZb57+g/slcld5e3bh+DDhUVVpQ=";
fetchSubmodules = true;
};
- vendorSha256 = "sha256-8l+Kb1ADMLwv0Hf/ikok8eUcEEST07rhk8BjHxJI0lc=";
+ vendorSha256 = "sha256-SVGPMFpQjVOWCfiPpEmqhp6MEO0wqeyAZVyeNmTuXl0=";
buildInputs = [ readline ];
ldflags = [ "-s" "-w" ];
postPatch = ''
- # in master vars.go is called vars_linux.go
- substituteInPlace vars.go \
+ substituteInPlace vars_linux.go \
--replace "/usr/share" "${placeholder "out"}/share/"
'';
@@ -28,8 +27,13 @@ buildGoModule rec {
mkdir -p "$out/share/hilbish"
cp .hilbishrc.lua $out/share/hilbish/
+ cp -r docs -t $out/share/hilbish
cp -r libs -t $out/share/hilbish/
cp preload.lua $out/share/hilbish/
+
+ # segfaults and it's already been generated upstream
+ # we copy the docs over with the above cp command
+ rm $out/bin/docgen
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix b/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
index c284c83b41..1e1d832890 100644
--- a/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -5,15 +5,15 @@
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
stdenv.mkDerivation rec {
- version = "2021-10-13";
+ version = "2021-10-19";
pname = "oh-my-zsh";
- rev = "19f9b6f1ade7788b07480be685cf3fcb117cad84";
+ rev = "4b1f6d638f0783e05a9d2601ee0e1fd902416491";
src = fetchFromGitHub {
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
- sha256 = "aC7tn5nNbkmyZ6oGKIQnWE+1LNcZH5P2pPgtnUhru/Y=";
+ sha256 = "voweIfqccGUqHeW87C/2XGdB5FwkbjSoae4liNPPK8A=";
};
installPhase = ''
diff --git a/third_party/nixpkgs/pkgs/shells/zsh/pure-prompt/default.nix b/third_party/nixpkgs/pkgs/shells/zsh/pure-prompt/default.nix
index 0e176d0505..d95ef343c1 100644
--- a/third_party/nixpkgs/pkgs/shells/zsh/pure-prompt/default.nix
+++ b/third_party/nixpkgs/pkgs/shells/zsh/pure-prompt/default.nix
@@ -4,13 +4,13 @@ with lib;
stdenv.mkDerivation rec {
pname = "pure-prompt";
- version = "1.17.3";
+ version = "1.18.0";
src = fetchFromGitHub {
owner = "sindresorhus";
repo = "pure";
rev = "v${version}";
- sha256 = "sha256-WNixw2vVn1mBEDSeIFrWZHHUcX4TNgr+motBemBQfr0=";
+ sha256 = "1aa8aczfvclrnd0igiq48jyq4b8fdwvaaj84nzb6w6sjahzs5jcy";
};
installPhase = ''
diff --git a/third_party/nixpkgs/pkgs/shells/zsh/zsh-autocomplete/default.nix b/third_party/nixpkgs/pkgs/shells/zsh/zsh-autocomplete/default.nix
new file mode 100644
index 0000000000..a58a941189
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/shells/zsh/zsh-autocomplete/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenvNoCC, fetchFromGitHub }:
+
+stdenvNoCC.mkDerivation rec {
+ pname = "zsh-autocomplete";
+ version = "21.09.22";
+
+ src = fetchFromGitHub {
+ owner = "marlonrichert";
+ repo = "zsh-autocomplete";
+ rev = version;
+ sha256 = "sha256-c4+5ta0ATuy9hIygSnqaquHf+YIStvHMaABwq3qyru8=";
+ };
+
+ installPhase = ''
+ install -D zsh-autocomplete.plugin.zsh $out/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
+ cp -R scripts $out/share/zsh-autocomplete/scripts
+ cp -R functions $out/share/zsh-autocomplete/functions
+ '';
+
+ meta = with lib; {
+ description = "Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion";
+ homepage = "https://github.com/marlonrichert/zsh-autocomplete/";
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.em0lar ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/X11/opentabletdriver/default.nix b/third_party/nixpkgs/pkgs/tools/X11/opentabletdriver/default.nix
index 5bffa10776..b205f959ee 100644
--- a/third_party/nixpkgs/pkgs/tools/X11/opentabletdriver/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/X11/opentabletdriver/default.nix
@@ -3,8 +3,7 @@
, fetchFromGitHub
, fetchurl
, linkFarmFromDrvs
-, dotnet-netcore
-, dotnet-sdk
+, dotnetCorePackages
, dotnetPackages
, dpkg
, gtk3
@@ -21,6 +20,10 @@
, wrapGAppsHook
}:
+let
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+ dotnet-runtime = dotnetCorePackages.runtime_5_0;
+in
stdenv.mkDerivation rec {
pname = "OpenTabletDriver";
version = "0.5.3.3";
@@ -114,19 +117,19 @@ stdenv.mkDerivation rec {
makeWrapper $out/lib/OpenTabletDriver.Console $out/bin/otd \
"''${gappsWrapperArgs[@]}" \
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \
- --set DOTNET_ROOT "${dotnet-netcore}" \
+ --set DOTNET_ROOT "${dotnet-runtime}" \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeDeps}"
makeWrapper $out/lib/OpenTabletDriver.Daemon $out/bin/otd-daemon \
"''${gappsWrapperArgs[@]}" \
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \
- --set DOTNET_ROOT "${dotnet-netcore}" \
+ --set DOTNET_ROOT "${dotnet-runtime}" \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeDeps}"
makeWrapper $out/lib/OpenTabletDriver.UX.Gtk $out/bin/otd-gui \
"''${gappsWrapperArgs[@]}" \
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \
- --set DOTNET_ROOT "${dotnet-netcore}" \
+ --set DOTNET_ROOT "${dotnet-runtime}" \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeDeps}"
mkdir -p $out/lib/OpenTabletDriver
diff --git a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
index b4dfcd17ae..1820781cd6 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
@@ -13,7 +13,7 @@ let
pythonEnv = python.withPackages (p: with p; [
cffi
cryptography
- pyopenssl
+ openssl
crcmod
] ++ lib.optional (with-gce) google-compute-engine);
@@ -21,33 +21,33 @@ let
sources = name: system: {
x86_64-darwin = {
url = "${baseUrl}/${name}-darwin-x86_64.tar.gz";
- sha256 = "1a17bbvimdqq4k25lprqk9cq3lpfchd65hzjf23ha4imndpbjgqr";
+ sha256 = "1gwi15rkgxmqcr1vi5bd123833zhln725bhs5k1ip6fvhdrx31mf";
};
aarch64-darwin = {
url = "${baseUrl}/${name}-darwin-arm.tar.gz";
- sha256 = "184k1kv10g4zzzxgmwpakvg5ffxhz01dd01kb5h32mf1j5fid1zh";
+ sha256 = "0pw2cwdx18cw77lqsq1bsd8d79mjxn7lwd27hm9j8d45r0fzj0ci";
};
x86_64-linux = {
url = "${baseUrl}/${name}-linux-x86_64.tar.gz";
- sha256 = "0hhaq5hf5nvaah06h6v8q2hpn8hc815ihsi74dpwg6pmg9h266pr";
+ sha256 = "01v3v4408p1wwqlqqawbc9g8j6lipwnm1sr6wckq9q0a5zpsissg";
};
i686-linux = {
url = "${baseUrl}/${name}-linux-x86.tar.gz";
- sha256 = "14z1nzwc0j3qhbw2ldrskd8zjsslwgsw7pxxq3v0ypc1rjibsql5";
+ sha256 = "125akqbbz1ahq0hhgbjrv1cfnv41h1pksnclz6mbdn3z2297r6dp";
};
aarch64-linux = {
url = "${baseUrl}/${name}-linux-arm.tar.gz";
- sha256 = "0f6xrij2wbx57s4897bi12l9fz3flj1wyibbk7jjg0l5332h4yhr";
+ sha256 = "13p0vjs330zljkyfb412n6l33m5sn6kakg1wch9nhgikrqig5avl";
};
- }.${system};
+ }.${system} or (throw "Unsupported system: ${system}");
in stdenv.mkDerivation rec {
pname = "google-cloud-sdk";
- version = "351.0.0";
+ version = "361.0.0";
src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system);
diff --git a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gcloud-path.patch b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gcloud-path.patch
index 64ec6cdb1b..74c0754f3c 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gcloud-path.patch
+++ b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gcloud-path.patch
@@ -33,15 +33,14 @@ diff --git a/lib/googlecloudsdk/api_lib/container/kubeconfig.py b/lib/googleclou
index 4330988d6..37424b841 100644
--- a/lib/googlecloudsdk/api_lib/container/kubeconfig.py
+++ b/lib/googlecloudsdk/api_lib/container/kubeconfig.py
-@@ -255,7 +255,7 @@ def _AuthProvider(name='gcp'):
- raise Error(SDK_BIN_PATH_NOT_FOUND)
+@@ -352,7 +352,7 @@ def _AuthProvider(name='gcp',
+ if sdk_bin_path is None:
+ log.error(SDK_BIN_PATH_NOT_FOUND)
+ raise Error(SDK_BIN_PATH_NOT_FOUND)
+- cmd_path = os.path.join(sdk_bin_path, bin_name)
++ cmd_path = bin_name
+
cfg = {
# Command for gcloud credential helper
-- 'cmd-path': os.path.join(sdk_bin_path, bin_name),
-+ 'cmd-path': bin_name,
- # Args for gcloud credential helper
- 'cmd-args': 'config config-helper --format=json',
- # JSONpath to the field that is the raw access token
--
2.21.0
-
diff --git a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gsutil-disable-updates.patch b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gsutil-disable-updates.patch
index 1147668862..a262dcabf7 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gsutil-disable-updates.patch
+++ b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/gsutil-disable-updates.patch
@@ -2,7 +2,7 @@ diff --git a/platform/gsutil/gslib/command_runner.py b/platform/gsutil/gslib/com
index f490bb3..dc6bbcc 100644
--- a/platform/gsutil/gslib/command_runner.py
+++ b/platform/gsutil/gslib/command_runner.py
-@@ -330,17 +330,6 @@ class CommandRunner(object):
+@@ -330,18 +330,6 @@ class CommandRunner(object):
Returns:
Return value(s) from Command that was run.
"""
@@ -17,10 +17,11 @@ index f490bb3..dc6bbcc 100644
- if system_util.IsRunningInteractively() and collect_analytics:
- metrics.CheckAndMaybePromptForAnalyticsEnabling()
-
+- self.MaybePromptForPythonUpdate(command_name)
+
if not args:
args = []
-
-@@ -413,18 +402,10 @@ class CommandRunner(object):
+@@ -415,15 +403,6 @@ class CommandRunner(object):
ShutDownGsutil()
if GetFailureCount() > 0:
return_code = 1
@@ -35,6 +36,10 @@ index f490bb3..dc6bbcc 100644
- )))
return return_code
+ def SkipUpdateCheck(self):
+@@ -467,6 +446,7 @@ class CommandRunner(object):
+ return True
+
def MaybeCheckForAndOfferSoftwareUpdate(self, command_name, debug):
+ return False
"""Checks the last time we checked for an update and offers one if needed.
diff --git a/third_party/nixpkgs/pkgs/tools/admin/procs/default.nix b/third_party/nixpkgs/pkgs/tools/admin/procs/default.nix
index b25d1795bf..1510226d45 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/procs/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/admin/procs/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "procs";
- version = "0.11.9";
+ version = "0.11.10";
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-zqRjMCyFT7knI1/zH+RF1pA/OKaDhJZLLjWJhfmqopE=";
+ sha256 = "sha256-kt1qv4x48qXzlqvV2nfFXkYzgeC4m+rA7NA+coznNno=";
};
- cargoSha256 = "sha256-W/ZMDbHC1VsllTSxCt77n4eb8Xgfj9YNx5NG5u+D+qA=";
+ cargoSha256 = "sha256-itncLfIjNwwAO393gZ5xyRnig/N0JEovBQvOIAC4e9g=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/third_party/nixpkgs/pkgs/tools/backup/btrbk/default.nix b/third_party/nixpkgs/pkgs/tools/backup/btrbk/default.nix
index 12308b2404..69f745ecc1 100644
--- a/third_party/nixpkgs/pkgs/tools/backup/btrbk/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/backup/btrbk/default.nix
@@ -1,13 +1,29 @@
-{ lib, stdenv, fetchurl, bash, btrfs-progs, openssh, perl, perlPackages
-, util-linux, asciidoc, asciidoctor, mbuffer, makeWrapper, nixosTests }:
+{ lib
+, stdenv
+, fetchurl
+, bash
+, btrfs-progs
+, openssh
+, perl
+, perlPackages
+, util-linux
+, asciidoc
+, asciidoctor
+, mbuffer
+, makeWrapper
+, genericUpdater
+, curl
+, writeShellScript
+, nixosTests
+}:
stdenv.mkDerivation rec {
pname = "btrbk";
- version = "0.29.1";
+ version = "0.31.3";
src = fetchurl {
url = "https://digint.ch/download/btrbk/releases/${pname}-${version}.tar.xz";
- sha256 = "153inyvvnl17hq1w3nsa783havznaykdam2yrj775bmi2wg6fvwn";
+ sha256 = "1lx7vnf386nsik8mxrrfyx1h7mkqk5zs26sy0s0lynfxcm4lkxb2";
};
nativeBuildInputs = [ asciidoc asciidoctor makeWrapper ];
@@ -22,7 +38,9 @@ stdenv.mkDerivation rec {
done
# Tainted Mode disables PERL5LIB
- substituteInPlace btrbk --replace "perl -T" "perl"
+ substituteInPlace btrbk \
+ --replace "perl -T" "perl" \
+ --replace "\$0" "\$ENV{'program_name'}"
# Fix SSH filter script
sed -i '/^export PATH/d' ssh_filter_btrbk.sh
@@ -30,17 +48,26 @@ stdenv.mkDerivation rec {
'';
preFixup = ''
- wrapProgram $out/sbin/btrbk \
+ wrapProgram $out/bin/btrbk \
--set PERL5LIB $PERL5LIB \
+ --run 'export program_name=$0' \
--prefix PATH ':' "${lib.makeBinPath [ btrfs-progs bash mbuffer openssh ]}"
'';
passthru.tests.btrbk = nixosTests.btrbk;
+ passthru.updateScript = genericUpdater {
+ inherit pname version;
+ versionLister = writeShellScript "btrbk-versionLister" ''
+ echo "# Versions for $1:" >> "$2"
+ ${curl}/bin/curl -s https://digint.ch/download/btrbk/releases/ | ${perl}/bin/perl -lne 'print $1 if /btrbk-([0-9.]*)\.tar/'
+ '';
+ };
+
meta = with lib; {
description = "A backup tool for btrfs subvolumes";
homepage = "https://digint.ch/btrbk";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ asymmetric ];
};
diff --git a/third_party/nixpkgs/pkgs/tools/backup/discordchatexporter-cli/default.nix b/third_party/nixpkgs/pkgs/tools/backup/discordchatexporter-cli/default.nix
index 60437403e5..38dfd55783 100644
--- a/third_party/nixpkgs/pkgs/tools/backup/discordchatexporter-cli/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/backup/discordchatexporter-cli/default.nix
@@ -18,7 +18,7 @@ buildDotnetModule rec {
};
projectFile = "DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj";
- dotnet-runtime = dotnetCorePackages.netcore_3_1;
+ dotnet-runtime = dotnetCorePackages.runtime_3_1;
nugetDeps = ./deps.nix;
nativeBuildInputs = [ autoPatchelfHook ];
diff --git a/third_party/nixpkgs/pkgs/tools/backup/kopia/default.nix b/third_party/nixpkgs/pkgs/tools/backup/kopia/default.nix
index ee9739bfac..9f935c027e 100644
--- a/third_party/nixpkgs/pkgs/tools/backup/kopia/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/backup/kopia/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "kopia";
- version = "0.9.2";
+ version = "0.9.3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "sha256-C1KLwl+hwyoRUK4GrDhj1Wwx4Fut+QuhgTFagyQeldc=";
+ sha256 = "sha256-G7pda+0CsK02OkyVgDmZffMheEm7ZIM4ylyjAIfmhTI=";
};
vendorSha256 = "sha256-v81YkImg8GdI5locfsU4dg2JyO7XB24mfHRIZ+k8QBA=";
diff --git a/third_party/nixpkgs/pkgs/tools/compression/hacpack/default.nix b/third_party/nixpkgs/pkgs/tools/compression/hacpack/default.nix
index e60d483574..34722d52cc 100644
--- a/third_party/nixpkgs/pkgs/tools/compression/hacpack/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/compression/hacpack/default.nix
@@ -15,6 +15,9 @@ stdenv.mkDerivation rec {
mv config.mk.template config.mk
'';
+ makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
+ enableParallelBuilding = true;
+
installPhase = ''
mkdir -p $out/bin
cp ./hacpack $out/bin
diff --git a/third_party/nixpkgs/pkgs/tools/compression/hactool/default.nix b/third_party/nixpkgs/pkgs/tools/compression/hactool/default.nix
index c6e0a3a285..2e6e7437ff 100644
--- a/third_party/nixpkgs/pkgs/tools/compression/hactool/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/compression/hactool/default.nix
@@ -11,11 +11,14 @@ stdenv.mkDerivation rec {
sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
};
+ patches = [ ./musl-compat.patch ];
+
preBuild = ''
mv config.mk.template config.mk
'';
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
+ enableParallelBuilding = true;
installPhase = ''
install -D hactool $out/bin/hactool
diff --git a/third_party/nixpkgs/pkgs/tools/compression/hactool/musl-compat.patch b/third_party/nixpkgs/pkgs/tools/compression/hactool/musl-compat.patch
new file mode 100644
index 0000000000..37d596f183
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/compression/hactool/musl-compat.patch
@@ -0,0 +1,13 @@
+diff --git a/main.c b/main.c
+index 07f53cb..f2265df 100644
+--- a/main.c
++++ b/main.c
+@@ -369,7 +369,7 @@ int main(int argc, char **argv) {
+ return EXIT_FAILURE;
+ }
+ nca_ctx.tool_ctx->base_file_type = BASEFILE_FAKE;
+- nca_ctx.tool_ctx->base_file++; /* Guarantees base_file != NULL. I'm so sorry. */
++ if (!nca_ctx.tool_ctx->base_file) nca_ctx.tool_ctx->base_file = (FILE*) 1;
+ break;
+ case 32:
+ tool_ctx.action |= ACTION_ONLYUPDATEDROMFS;
diff --git a/third_party/nixpkgs/pkgs/tools/filesystems/catcli/default.nix b/third_party/nixpkgs/pkgs/tools/filesystems/catcli/default.nix
index ac2f856c3c..7bd6265851 100644
--- a/third_party/nixpkgs/pkgs/tools/filesystems/catcli/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/filesystems/catcli/default.nix
@@ -7,13 +7,13 @@
buildPythonApplication rec {
pname = "catcli";
- version = "0.7.3";
+ version = "0.7.4";
src = fetchFromGitHub {
owner = "deadc0de6";
repo = pname;
rev = "v${version}";
- sha256 = "03yf9sjqdg3xcbvkn1591zxd2d0r8wz1b749zrn55k3a03c7jzf5";
+ sha256 = "1mzhfcf67dc5m0i9b216m58qg36g63if6273ch5bsckd0yrwdk8x";
};
propagatedBuildInputs = [ docopt anytree ];
diff --git a/third_party/nixpkgs/pkgs/tools/graphics/hobbits/default.nix b/third_party/nixpkgs/pkgs/tools/graphics/hobbits/default.nix
new file mode 100644
index 0000000000..477c6bea24
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/graphics/hobbits/default.nix
@@ -0,0 +1,34 @@
+{ lib, stdenv, mkDerivation, fetchFromGitHub
+, cmake, pkg-config, fftw, libpcap, libusb1, python3
+}:
+
+mkDerivation rec {
+ pname = "hobbits";
+ version = "0.52.0";
+
+ src = fetchFromGitHub {
+ owner = "Mahlet-Inc";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-GZHBkBRt1ySItV+h5rdvey7KwdUWh5+rgztXh6HW3Js=";
+ };
+
+ postPatch = ''
+ substituteInPlace src/hobbits-core/settingsdata.cpp \
+ --replace "pythonHome = \"/usr\"" "pythonHome = \"${python3}\""
+ substituteInPlace cmake/gitversion.cmake \
+ --replace "[Mystery Build]" "${version}"
+ '';
+
+ buildInputs = [ fftw libpcap libusb1 python3 ];
+
+ nativeBuildInputs = [ cmake pkg-config ];
+
+ meta = with lib; {
+ description = "A multi-platform GUI for bit-based analysis, processing, and visualization";
+ homepage = "https://github.com/Mahlet-Inc/hobbits";
+ license = licenses.mit;
+ maintainers = with maintainers; [ sikmir ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/graphics/pdftoipe/default.nix b/third_party/nixpkgs/pkgs/tools/graphics/pdftoipe/default.nix
new file mode 100644
index 0000000000..950e82e386
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/graphics/pdftoipe/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, pkg-config
+, poppler
+}:
+
+stdenv.mkDerivation rec {
+ pname = "pdftoipe";
+ version = "7.2.24.1";
+
+ src = fetchFromGitHub {
+ owner = "otfried";
+ repo = "ipe-tools";
+ rev = "v${version}";
+ sha256 = "jlrjrjzZQo79CKMySayhCm1dqLh89wOQuXrXa2aqc0k=";
+ };
+ sourceRoot = "source/pdftoipe";
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ poppler ];
+
+ installPhase = ''
+ install -D pdftoipe $out/bin/pdftoipe
+ '';
+
+ meta = with lib; {
+ description = "A program that tries to convert arbitrary PDF documents to Ipe files";
+ homepage = "https://github.com/otfried/ipe-tools";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ yrd ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/inputmethods/evscript/default.nix b/third_party/nixpkgs/pkgs/tools/inputmethods/evscript/default.nix
index b8e91a7419..8afd4804e0 100644
--- a/third_party/nixpkgs/pkgs/tools/inputmethods/evscript/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/inputmethods/evscript/default.nix
@@ -2,19 +2,19 @@
rustPlatform.buildRustPackage rec {
pname = "evscript";
- version = "git-${builtins.substring 0 7 src.rev}";
+ version = "unstable-2021-06-16";
src = fetchFromGitHub {
- owner = "myfreeweb";
+ owner = "unrelentingtech";
repo = pname;
- rev = "47f86f0d15add2af785ea1ff47f24d130026d1b4";
- sha256 = "1xm8297k0d8d0aq7fxgmibr4qva4d02cb6gnnlzq77jcmnknxv14";
+ rev = "25912c0b6446f31b0f64485af3fa4aa8a93b33df";
+ sha256 = "sha256-apq3kHipEX6zOTNwqpIQR46JqmeE7EKVSOGrNNSkyu8=";
};
- cargoSha256 = "1z0xxbjnhhzn1fnc3zhvy727l88qyyfqdayj5yvf3nh23m7sr87l";
+ cargoSha256 = "sha256-1aR9/fhJQ+keRIxSG2cpY1HTalE6nM+MTb1Za3Tot28=";
meta = with lib; {
- homepage = "https://github.com/myfreeweb/${pname}";
+ homepage = "https://github.com/unrelentingtech/evscript";
description = "A tiny sandboxed Dyon scripting environment for evdev input devices";
license = licenses.unlicense;
maintainers = with maintainers; [ milesbreslin ];
diff --git a/third_party/nixpkgs/pkgs/tools/misc/bandwidth/default.nix b/third_party/nixpkgs/pkgs/tools/misc/bandwidth/default.nix
index 710382fe82..5eef6a517f 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/bandwidth/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/bandwidth/default.nix
@@ -6,11 +6,11 @@ let
in
stdenv.mkDerivation rec {
pname = "bandwidth";
- version = "1.10.1";
+ version = "1.10.4";
src = fetchurl {
url = "https://zsmith.co/archives/${pname}-${version}.tar.gz";
- sha256 = "sha256-trya+/cBNIittQAc5tcykZbImeISqIolO/Y8uOI0jGk=";
+ sha256 = "sha256-e/eP2rA7ElFrh2Z4qTzRGR/cxY1UI6s+LQ9Og1x46/I=";
};
postPatch = ''
diff --git a/third_party/nixpkgs/pkgs/tools/misc/cht.sh/default.nix b/third_party/nixpkgs/pkgs/tools/misc/cht.sh/default.nix
index e2672ab7bb..d9fcd8b29b 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/cht.sh/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/cht.sh/default.nix
@@ -10,15 +10,15 @@
stdenv.mkDerivation {
pname = "cht.sh";
- version = "unstable-2021-04-25";
+ version = "unstable-2021-10-20";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "chubin";
repo = "cheat.sh";
- rev = "6d83c4d76c82a87cf6df436a5ab73e3b7c819e66";
- sha256 = "dXLNPhkfbQIhFZixC674Fcegyo8+Um7E6cm56vMpCYI=";
+ rev = "5a79c76c9b8ef337cffb9537a3d8a47c9ffc8b04";
+ sha256 = "zDkYp2YPEur26qEwG8DQQzv8/T288HG/9mzzkN4SEtU=";
};
# Fix ".cht.sh-wrapped" in the help message
diff --git a/third_party/nixpkgs/pkgs/tools/misc/ddcutil/default.nix b/third_party/nixpkgs/pkgs/tools/misc/ddcutil/default.nix
index b1a42f5770..0deca19a26 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/ddcutil/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/ddcutil/default.nix
@@ -1,33 +1,49 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
-, glib, i2c-tools, udev, libgudev, libusb1, libdrm, xorg }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, glib
+, i2c-tools
+, udev
+, kmod
+, libgudev
+, libusb1
+, libdrm
+, xorg
+}:
stdenv.mkDerivation rec {
pname = "ddcutil";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchFromGitHub {
- owner = "rockowitz";
- repo = "ddcutil";
- rev = "v${version}";
- sha256 = "0wv8a8zjahzmi4qx0lc24mwyi3jklj1yxqq26fwklmfh5dv1y8yc";
+ owner = "rockowitz";
+ repo = "ddcutil";
+ rev = "v${version}";
+ sha256 = "sha256-MH7WnJgROgLvttQEbd/21mLRFElObp4KINy8RarqkRo=";
};
- patches = [
- # Look for kernel modules in /run/booted-system/kernel-modules/lib/modules/*
- ./nixos-paths.diff
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+
+ buildInputs = [
+ glib
+ i2c-tools
+ kmod
+ libdrm
+ libgudev
+ libusb1
+ udev
+ xorg.libXrandr
];
- nativeBuildInputs = [ autoreconfHook pkg-config ];
- buildInputs = [
- i2c-tools udev libgudev
- glib libusb1 libdrm xorg.libXrandr
- ];
+ enableParallelBuilding = true;
meta = with lib; {
- homepage = "http://www.ddcutil.com/";
+ homepage = "http://www.ddcutil.com/";
description = "Query and change Linux monitor settings using DDC/CI and USB";
- license = licenses.gpl2;
- platforms = platforms.linux;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
maintainers = with maintainers; [ rnhmjoj ];
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/ddcutil/nixos-paths.diff b/third_party/nixpkgs/pkgs/tools/misc/ddcutil/nixos-paths.diff
deleted file mode 100644
index 54d17ea5bf..0000000000
--- a/third_party/nixpkgs/pkgs/tools/misc/ddcutil/nixos-paths.diff
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/src/util/linux_util.c
-+++ b/src/util/linux_util.c
-@@ -125,6 +125,7 @@
- "lib64",
- "lib32",
- "usr/lib", // needed for arch?
-+ "run/booted-system/kernel-modules/lib", // NixOS
- NULL};
- int result = -1;
- int ndx = 0;
-@@ -204,14 +205,15 @@
- if (debug)
- printf("(%s) machine: %s", __func__, utsbuf.machine);
-
-- char * libdirs[3];
-+ char * libdirs[4];
- libdirs[0] = "lib";
-+ libdirs[1] = "run/booted-system/kernel-modules/lib";
- if (streq(utsbuf.machine, "amd_64")){
-- libdirs[1] = "lib64";
-- libdirs[2] = NULL;
-+ libdirs[2] = "lib64";
-+ libdirs[3] = NULL;
- }
- else
-- libdirs[1] = NULL;
-+ libdirs[2] = NULL;
-
- int libsndx = 0;
- bool found = false;
diff --git a/third_party/nixpkgs/pkgs/tools/misc/flashrom/default.nix b/third_party/nixpkgs/pkgs/tools/misc/flashrom/default.nix
index e4e4868e4d..03465d593f 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/flashrom/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/flashrom/default.nix
@@ -1,16 +1,16 @@
-{ lib
-, stdenv
-, fetchurl
-, meson
-, ninja
-, pkg-config
+{ fetchurl
+, gcc9Stdenv
+, installShellFiles
+, lib
, libftdi1
+, libjaylink
, libusb1
, pciutils
-, installShellFiles
+, pkg-config
+, jlinkSupport ? false
}:
-stdenv.mkDerivation rec {
+gcc9Stdenv.mkDerivation rec {
pname = "flashrom";
version = "1.2";
@@ -19,29 +19,30 @@ stdenv.mkDerivation rec {
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
};
+ nativeBuildInputs = [ pkg-config installShellFiles ];
+ buildInputs = [ libftdi1 libusb1 ]
+ # https://github.com/flashrom/flashrom/issues/125
+ ++ lib.optional (!gcc9Stdenv.isAarch64) pciutils
+ ++ lib.optional jlinkSupport libjaylink;
+
postPatch = ''
substituteInPlace util/z60_flashrom.rules \
--replace "plugdev" "flashrom"
'';
- # Meson build doesn't build and install manpage. Only Makefile can.
- # Build manpage from source directory. Here we're inside the ./build subdirectory
+ makeFlags = [ "PREFIX=$(out)" "libinstall" ]
+ ++ lib.optional jlinkSupport "CONFIG_JLINK_SPI=yes";
+
postInstall = ''
- make flashrom.8 -C ..
- installManPage ../flashrom.8
- install -Dm644 ../util/z60_flashrom.rules $out/etc/udev/rules.d/flashrom.rules
+ install -Dm644 util/z60_flashrom.rules $out/lib/udev/rules.d/flashrom.rules
'';
- mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
- nativeBuildInputs = [ meson pkg-config ninja installShellFiles ];
- buildInputs = [ libftdi1 libusb1 pciutils ];
-
meta = with lib; {
- homepage = "http://www.flashrom.org";
+ homepage = "https://www.flashrom.org";
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
license = licenses.gpl2;
maintainers = with maintainers; [ funfunctor fpletz felixsinger ];
platforms = platforms.all;
- broken = stdenv.isDarwin; # requires DirectHW
+ broken = gcc9Stdenv.isDarwin; # requires DirectHW
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/hdf4/default.nix b/third_party/nixpkgs/pkgs/tools/misc/hdf4/default.nix
index 99acda6b78..98cd0cfbde 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/hdf4/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/hdf4/default.nix
@@ -7,7 +7,8 @@
, uselibtirpc ? stdenv.isLinux
, libtirpc
, zlib
-, szip ? null
+, szipSupport ? false
+, szip
, javaSupport ? false
, jdk
}:
@@ -55,10 +56,10 @@ stdenv.mkDerivation rec {
buildInputs = [
libjpeg
- szip
zlib
]
++ lib.optional javaSupport jdk
+ ++ lib.optional szipSupport szip
++ lib.optional uselibtirpc libtirpc;
preConfigure = lib.optionalString uselibtirpc ''
@@ -66,7 +67,7 @@ stdenv.mkDerivation rec {
substituteInPlace config/cmake/FindXDR.cmake \
--replace 'find_path(XDR_INCLUDE_DIR NAMES rpc/types.h PATHS "/usr/include" "/usr/include/tirpc")' \
'find_path(XDR_INCLUDE_DIR NAMES rpc/types.h PATH_SUFFIXES include/tirpc)'
- '' + lib.optionalString (szip != null) ''
+ '' + lib.optionalString szipSupport ''
export SZIP_INSTALL=${szip}
'';
@@ -85,7 +86,7 @@ stdenv.mkDerivation rec {
"-DJAVA_HOME=${jdk}"
"-DJAVA_AWT_LIBRARY=${javabase}/libawt.so"
"-DJAVA_JVM_LIBRARY=${javabase}/server/libjvm.so"
- ] ++ lib.optionals (szip != null) [
+ ] ++ lib.optionals szipSupport [
"-DHDF4_ENABLE_SZIP_ENCODING=ON"
"-DHDF4_ENABLE_SZIP_SUPPORT=ON"
];
@@ -119,6 +120,17 @@ stdenv.mkDerivation rec {
moveToOutput bin "$bin"
'';
+ passthru = {
+ inherit
+ uselibtirpc
+ libtirpc
+ szipSupport
+ szip
+ javaSupport
+ jdk
+ ;
+ };
+
meta = with lib; {
description = "Data model, library, and file format for storing and managing data";
homepage = "https://support.hdfgroup.org/products/hdf4/";
diff --git a/third_party/nixpkgs/pkgs/tools/misc/hdf5/1.10.nix b/third_party/nixpkgs/pkgs/tools/misc/hdf5/1.10.nix
index 4e57a1c8e4..74d8fce599 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/hdf5/1.10.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/hdf5/1.10.nix
@@ -1,7 +1,9 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchurl
, removeReferencesTo
-, zlib ? null
+, zlibSupport ? true
+, zlib
, enableShared ? !stdenv.hostPlatform.isStatic
, javaSupport ? false
, jdk
@@ -24,10 +26,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ removeReferencesTo ];
- propagatedBuildInputs = optional (zlib != null) zlib;
+ propagatedBuildInputs = optional zlibSupport zlib;
- configureFlags = []
- ++ optional enableShared "--enable-shared"
+ configureFlags = optional enableShared "--enable-shared"
++ optional javaSupport "--enable-java";
patches = [
diff --git a/third_party/nixpkgs/pkgs/tools/misc/hdf5/default.nix b/third_party/nixpkgs/pkgs/tools/misc/hdf5/default.nix
index c5485a5b3f..43c156de41 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/hdf5/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/hdf5/default.nix
@@ -1,10 +1,14 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchurl
, removeReferencesTo
-, cpp ? false
-, gfortran ? null
-, zlib ? null
-, szip ? null
+, cppSupport ? false
+, fortranSupport ? false
+, fortran
+, zlibSupport ? true
+, zlib
+, szipSupport ? false
+, szip
, mpiSupport ? false
, mpi
, enableShared ? !stdenv.hostPlatform.isStatic
@@ -15,7 +19,7 @@
# cpp and mpi options are mutually exclusive
# (--enable-unsupported could be used to force the build)
-assert !cpp || !mpiSupport;
+assert !cppSupport || !mpiSupport;
let inherit (lib) optional optionals; in
@@ -28,28 +32,35 @@ stdenv.mkDerivation rec {
};
passthru = {
- inherit mpiSupport;
- inherit mpi;
+ inherit
+ cppSupport
+ fortranSupport
+ fortran
+ zlibSupport
+ zlib
+ szipSupport
+ szip
+ mpiSupport
+ mpi
+ ;
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ removeReferencesTo ]
- ++ optional (gfortran != null) gfortran;
+ ++ optional fortranSupport fortran;
- buildInputs = []
- ++ optional (szip != null) szip
+ buildInputs = optional fortranSupport fortran
+ ++ optional szipSupport szip
++ optional javaSupport jdk;
- propagatedBuildInputs = []
- ++ optional (zlib != null) zlib
+ propagatedBuildInputs = optional zlibSupport zlib
++ optional mpiSupport mpi;
- configureFlags = []
- ++ optional cpp "--enable-cxx"
- ++ optional (gfortran != null) "--enable-fortran"
- ++ optional (szip != null) "--with-szlib=${szip}"
- ++ optionals mpiSupport ["--enable-parallel" "CC=${mpi}/bin/mpicc"]
+ configureFlags = optional cppSupport "--enable-cxx"
+ ++ optional fortranSupport "--enable-fortran"
+ ++ optional szipSupport "--with-szlib=${szip}"
+ ++ optionals mpiSupport [ "--enable-parallel" "CC=${mpi}/bin/mpicc" ]
++ optional enableShared "--enable-shared"
++ optional javaSupport "--enable-java"
++ optional usev110Api "--with-default-api-version=v110";
diff --git a/third_party/nixpkgs/pkgs/tools/misc/hiksink/default.nix b/third_party/nixpkgs/pkgs/tools/misc/hiksink/default.nix
new file mode 100644
index 0000000000..3b4fb8b0af
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/hiksink/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, pkg-config
+, Security
+, openssl
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "hiksink";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "CornerBit";
+ repo = pname;
+ rev = version;
+ sha256 = "1m8hd7qbasxyq09ycnqma2y4b9s2k54h9i2rkzsa9sksc868wxh8";
+ };
+
+ cargoSha256 = "15r6rwhyy0s5i0v9nzx3hfl5cvlb0hxnllcwfnw0bbn9km25l9r3";
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ openssl
+ ] ++ lib.optional stdenv.isDarwin [
+ Security
+ ];
+
+ meta = with lib; {
+ description = "Tool to convert Hikvision camera events to MQTT";
+ homepage = "https://github.com/CornerBit/HikSink";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/hyperfine/default.nix b/third_party/nixpkgs/pkgs/tools/misc/hyperfine/default.nix
index 747c1e56a8..684d62b464 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/hyperfine/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/hyperfine/default.nix
@@ -1,17 +1,21 @@
-{ lib, stdenv, fetchCrate, rustPlatform, installShellFiles
+{ lib
+, rustPlatform
+, fetchCrate
+, installShellFiles
+, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "hyperfine";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchCrate {
inherit pname version;
- sha256 = "0dla2jzwcxkdx3n4fqkkh6wirqs2f31lvqsw2pjf1jbnnif54mzh";
+ sha256 = "sha256-Vs754nvtYV5d736xsZ2foawfxMc25bUfMhm8Vxqxw6U=";
};
- cargoSha256 = "13dd5x0mr1pqcba48w9v5jjpddapd7gk34d4bysbjqsriwpbrdgp";
+ cargoSha256 = "sha256-X9WFnKP2+GM8V1kyd5VxpwBXql8Be5mugBVGrYdSsaM=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.isDarwin Security;
@@ -26,8 +30,9 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Command-line benchmarking tool";
- homepage = "https://github.com/sharkdp/hyperfine";
- license = with licenses; [ asl20 /* or */ mit ];
- maintainers = [ maintainers.thoughtpolice ];
+ homepage = "https://github.com/sharkdp/hyperfine";
+ changelog = "https://github.com/sharkdp/hyperfine/blob/v${version}/CHANGELOG.md";
+ license = with licenses; [ asl20 /* or */ mit ];
+ maintainers = with maintainers; [ figsoda thoughtpolice ];
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/lesspipe/default.nix b/third_party/nixpkgs/pkgs/tools/misc/lesspipe/default.nix
index 5c8a13e3c2..8977f90139 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/lesspipe/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/lesspipe/default.nix
@@ -1,11 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, substituteAll, perl, file, ncurses }:
+{ lib, stdenv, fetchFromGitHub, substituteAll, perl, file, ncurses, bash }:
stdenv.mkDerivation rec {
pname = "lesspipe";
version = "1.85";
- buildInputs = [ perl ];
- preConfigure = "patchShebangs .";
+ nativeBuildInputs = [ perl ];
+ buildInputs = [ perl bash ];
+ strictDeps = true;
+ preConfigure = ''
+ patchShebangs --build configure
+ '';
+ configureFlags = [ "--shell=${bash}/bin/bash" "--yes" ];
+ configurePlatforms = [];
+ dontBuild = true;
src = fetchFromGitHub {
owner = "wofr06";
@@ -20,6 +27,7 @@ stdenv.mkDerivation rec {
file = "${file}/bin/file";
tput = "${ncurses}/bin/tput";
})
+ ./override-shell-detection.patch
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/tools/misc/lesspipe/override-shell-detection.patch b/third_party/nixpkgs/pkgs/tools/misc/lesspipe/override-shell-detection.patch
new file mode 100644
index 0000000000..08ef7e07b7
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/lesspipe/override-shell-detection.patch
@@ -0,0 +1,12 @@
+--- a/configure
++++ b/configure
+@@ -101,7 +101,8 @@
+ open OUT, ">lesspipe.sh.tmp";
+ my $in = 1;
+ my $anyin;
+-my $shell = check_shell_vers();
++my $shell = $opt_shell;
++print OUT "#!$shell\n";
+ # ask if syntax highlighting should be included
+ $ifsyntax = '';
+ if ($opt_yes) {
diff --git a/third_party/nixpkgs/pkgs/tools/misc/peep/0001-Add-Cargo.lock-by-running-cargo-vendor.patch b/third_party/nixpkgs/pkgs/tools/misc/peep/0001-Add-Cargo.lock-by-running-cargo-vendor.patch
deleted file mode 100644
index f444d72c46..0000000000
--- a/third_party/nixpkgs/pkgs/tools/misc/peep/0001-Add-Cargo.lock-by-running-cargo-vendor.patch
+++ /dev/null
@@ -1,570 +0,0 @@
-From 153e9acd6fb50c50db5ebdd03303a42f56ec05e0 Mon Sep 17 00:00:00 2001
-From: Maximilian Bosch
-Date: Tue, 17 Mar 2020 23:14:36 +0100
-Subject: [PATCH] Add Cargo.lock by running `cargo vendor`
-
----
- Cargo.lock | 551 +++++++++++++++++++++++++++++++++++++++++++++++++++++
- 1 file changed, 551 insertions(+)
- create mode 100644 Cargo.lock
-
-diff --git a/Cargo.lock b/Cargo.lock
-new file mode 100644
-index 0000000..91f9100
---- /dev/null
-+++ b/Cargo.lock
-@@ -0,0 +1,551 @@
-+# This file is automatically @generated by Cargo.
-+# It is not intended for manual editing.
-+[[package]]
-+name = "aho-corasick"
-+version = "0.7.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
-+dependencies = [
-+ "memchr",
-+]
-+
-+[[package]]
-+name = "autocfg"
-+version = "1.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
-+
-+[[package]]
-+name = "bitflags"
-+version = "1.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
-+
-+[[package]]
-+name = "byteorder"
-+version = "1.3.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
-+
-+[[package]]
-+name = "bytes"
-+version = "0.4.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
-+dependencies = [
-+ "byteorder",
-+ "iovec",
-+]
-+
-+[[package]]
-+name = "cc"
-+version = "1.0.50"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
-+
-+[[package]]
-+name = "cfg-if"
-+version = "0.1.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-+
-+[[package]]
-+name = "cloudabi"
-+version = "0.0.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
-+dependencies = [
-+ "bitflags",
-+]
-+
-+[[package]]
-+name = "crossbeam-utils"
-+version = "0.7.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
-+dependencies = [
-+ "autocfg",
-+ "cfg-if",
-+ "lazy_static",
-+]
-+
-+[[package]]
-+name = "ctrlc"
-+version = "3.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a4ba686dff9fa4c1c9636ce1010b0cf98ceb421361b0bb3d6faeec43bd217a7"
-+dependencies = [
-+ "nix 0.17.0",
-+ "winapi 0.3.8",
-+]
-+
-+[[package]]
-+name = "fnv"
-+version = "1.0.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
-+
-+[[package]]
-+name = "fuchsia-zircon"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-+dependencies = [
-+ "bitflags",
-+ "fuchsia-zircon-sys",
-+]
-+
-+[[package]]
-+name = "fuchsia-zircon-sys"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-+
-+[[package]]
-+name = "futures"
-+version = "0.1.29"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef"
-+
-+[[package]]
-+name = "getopts"
-+version = "0.2.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
-+dependencies = [
-+ "unicode-width",
-+]
-+
-+[[package]]
-+name = "hermit-abi"
-+version = "0.1.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "inotify"
-+version = "0.6.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718"
-+dependencies = [
-+ "bitflags",
-+ "futures",
-+ "inotify-sys",
-+ "libc",
-+ "mio",
-+ "tokio-io",
-+ "tokio-reactor",
-+]
-+
-+[[package]]
-+name = "inotify-sys"
-+version = "0.1.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "iovec"
-+version = "0.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "kernel32-sys"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-+dependencies = [
-+ "winapi 0.2.8",
-+ "winapi-build",
-+]
-+
-+[[package]]
-+name = "lazy_static"
-+version = "1.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-+
-+[[package]]
-+name = "libc"
-+version = "0.2.68"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0"
-+
-+[[package]]
-+name = "lock_api"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
-+dependencies = [
-+ "scopeguard",
-+]
-+
-+[[package]]
-+name = "log"
-+version = "0.4.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
-+dependencies = [
-+ "cfg-if",
-+]
-+
-+[[package]]
-+name = "maybe-uninit"
-+version = "2.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
-+
-+[[package]]
-+name = "memchr"
-+version = "2.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
-+
-+[[package]]
-+name = "mio"
-+version = "0.6.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
-+dependencies = [
-+ "cfg-if",
-+ "fuchsia-zircon",
-+ "fuchsia-zircon-sys",
-+ "iovec",
-+ "kernel32-sys",
-+ "libc",
-+ "log",
-+ "miow",
-+ "net2",
-+ "slab",
-+ "winapi 0.2.8",
-+]
-+
-+[[package]]
-+name = "miow"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
-+dependencies = [
-+ "kernel32-sys",
-+ "net2",
-+ "winapi 0.2.8",
-+ "ws2_32-sys",
-+]
-+
-+[[package]]
-+name = "net2"
-+version = "0.2.33"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
-+dependencies = [
-+ "cfg-if",
-+ "libc",
-+ "winapi 0.3.8",
-+]
-+
-+[[package]]
-+name = "nix"
-+version = "0.11.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "becb657d662f1cd2ef38c7ad480ec6b8cf9e96b27adb543e594f9cf0f2e6065c"
-+dependencies = [
-+ "bitflags",
-+ "cc",
-+ "cfg-if",
-+ "libc",
-+ "void",
-+]
-+
-+[[package]]
-+name = "nix"
-+version = "0.17.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
-+dependencies = [
-+ "bitflags",
-+ "cc",
-+ "cfg-if",
-+ "libc",
-+ "void",
-+]
-+
-+[[package]]
-+name = "num_cpus"
-+version = "1.12.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
-+dependencies = [
-+ "hermit-abi",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "numtoa"
-+version = "0.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
-+
-+[[package]]
-+name = "parking_lot"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
-+dependencies = [
-+ "lock_api",
-+ "parking_lot_core",
-+ "rustc_version",
-+]
-+
-+[[package]]
-+name = "parking_lot_core"
-+version = "0.6.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
-+dependencies = [
-+ "cfg-if",
-+ "cloudabi",
-+ "libc",
-+ "redox_syscall",
-+ "rustc_version",
-+ "smallvec",
-+ "winapi 0.3.8",
-+]
-+
-+[[package]]
-+name = "peep"
-+version = "0.1.4"
-+dependencies = [
-+ "ctrlc",
-+ "getopts",
-+ "inotify",
-+ "libc",
-+ "mio",
-+ "nix 0.11.1",
-+ "regex",
-+ "termion",
-+ "termios",
-+ "unicode-width",
-+]
-+
-+[[package]]
-+name = "redox_syscall"
-+version = "0.1.56"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
-+
-+[[package]]
-+name = "redox_termios"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
-+dependencies = [
-+ "redox_syscall",
-+]
-+
-+[[package]]
-+name = "regex"
-+version = "1.3.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8900ebc1363efa7ea1c399ccc32daed870b4002651e0bed86e72d501ebbe0048"
-+dependencies = [
-+ "aho-corasick",
-+ "memchr",
-+ "regex-syntax",
-+ "thread_local",
-+]
-+
-+[[package]]
-+name = "regex-syntax"
-+version = "0.6.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
-+
-+[[package]]
-+name = "rustc_version"
-+version = "0.2.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
-+dependencies = [
-+ "semver",
-+]
-+
-+[[package]]
-+name = "scopeguard"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-+
-+[[package]]
-+name = "semver"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
-+dependencies = [
-+ "semver-parser",
-+]
-+
-+[[package]]
-+name = "semver-parser"
-+version = "0.7.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
-+
-+[[package]]
-+name = "slab"
-+version = "0.4.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
-+
-+[[package]]
-+name = "smallvec"
-+version = "0.6.13"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
-+dependencies = [
-+ "maybe-uninit",
-+]
-+
-+[[package]]
-+name = "termion"
-+version = "1.5.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c22cec9d8978d906be5ac94bceb5a010d885c626c4c8855721a4dbd20e3ac905"
-+dependencies = [
-+ "libc",
-+ "numtoa",
-+ "redox_syscall",
-+ "redox_termios",
-+]
-+
-+[[package]]
-+name = "termios"
-+version = "0.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "72b620c5ea021d75a735c943269bb07d30c9b77d6ac6b236bc8b5c496ef05625"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "thread_local"
-+version = "1.0.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
-+dependencies = [
-+ "lazy_static",
-+]
-+
-+[[package]]
-+name = "tokio-executor"
-+version = "0.1.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
-+dependencies = [
-+ "crossbeam-utils",
-+ "futures",
-+]
-+
-+[[package]]
-+name = "tokio-io"
-+version = "0.1.13"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
-+dependencies = [
-+ "bytes",
-+ "futures",
-+ "log",
-+]
-+
-+[[package]]
-+name = "tokio-reactor"
-+version = "0.1.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
-+dependencies = [
-+ "crossbeam-utils",
-+ "futures",
-+ "lazy_static",
-+ "log",
-+ "mio",
-+ "num_cpus",
-+ "parking_lot",
-+ "slab",
-+ "tokio-executor",
-+ "tokio-io",
-+ "tokio-sync",
-+]
-+
-+[[package]]
-+name = "tokio-sync"
-+version = "0.1.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
-+dependencies = [
-+ "fnv",
-+ "futures",
-+]
-+
-+[[package]]
-+name = "unicode-width"
-+version = "0.1.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
-+
-+[[package]]
-+name = "void"
-+version = "1.0.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
-+
-+[[package]]
-+name = "winapi"
-+version = "0.2.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-+
-+[[package]]
-+name = "winapi"
-+version = "0.3.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
-+dependencies = [
-+ "winapi-i686-pc-windows-gnu",
-+ "winapi-x86_64-pc-windows-gnu",
-+]
-+
-+[[package]]
-+name = "winapi-build"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-+
-+[[package]]
-+name = "winapi-i686-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-+
-+[[package]]
-+name = "winapi-x86_64-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-+
-+[[package]]
-+name = "ws2_32-sys"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
-+dependencies = [
-+ "winapi 0.2.8",
-+ "winapi-build",
-+]
---
-2.25.0
-
diff --git a/third_party/nixpkgs/pkgs/tools/misc/peep/default.nix b/third_party/nixpkgs/pkgs/tools/misc/peep/default.nix
index e77ace41f9..6fdacce9e5 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/peep/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/peep/default.nix
@@ -2,17 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "peep";
- version = "0.1.4";
+ version = "0.1.4-post.2021-08-17";
src = fetchFromGitHub {
owner = "ryochack";
repo = "peep";
- rev = "v${version}";
- sha256 = "0c0fphnhq9vg9jjnkl35k56jbcnyz2ballsnkbm2xrh8vbyvk1av";
+ rev = "0eceafe16ff1f9c6d6784cca75b6f612c38901c4";
+ sha256 = "sha256-HtyT9kFS7derPhiBzICHIz3AvYVcYpUj1OW+t5RivRs=";
};
- cargoPatches = [ ./0001-Add-Cargo.lock-by-running-cargo-vendor.patch ];
- cargoSha256 = "12jqhvf8kdi17c442hl8sfpgxhni07x59khjwyyn54bnwc5h3zf9";
+ cargoSha256 = "sha256-sHsmHCMuHc56Mkqk2NUtZgC0RGyqhPvW1fKHkEAhqYk=";
meta = with lib; {
description = "The CLI text viewer tool that works like less command on small pane within the terminal window";
diff --git a/third_party/nixpkgs/pkgs/tools/misc/rates/default.nix b/third_party/nixpkgs/pkgs/tools/misc/rates/default.nix
new file mode 100644
index 0000000000..989a9e6734
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/rates/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, fetchFromGitHub
+, rustPlatform
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "rates";
+ version = "0.5.0";
+
+ src = fetchFromGitHub {
+ owner = "lunush";
+ repo = pname;
+ rev = version;
+ sha256 = "077qxs4kwfprsai07dninkhmj3ihnghdxan98iv8gmsl3pijbgwh";
+ };
+
+ cargoSha256 = "041sskiq152iywwqd8p7aqsqzbj359zl7ilnp8ahzdqprz3slk1w";
+
+ meta = with lib; {
+ description = "CLI tool that brings currency exchange rates right into your terminal";
+ homepage = "https://github.com/lunush/rates";
+ license = with licenses; [ asl20 /* or */ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/shadowenv/default.nix b/third_party/nixpkgs/pkgs/tools/misc/shadowenv/default.nix
index 79075dcc8a..a4f8fff4ae 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/shadowenv/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/shadowenv/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "shadowenv";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = version;
- sha256 = "sha256-MPky0ZB7yfl/gOPThx1BpRoTgvY7mkLaoqnvGKPvSPo=";
+ sha256 = "sha256-OfrK5eQ2oJ7ZeUem4PZPE2tsjIObQ+aao6GrtrK8AqA=";
};
- cargoSha256 = "sha256-reVw8YkKi+EMDk0Bva2Ugp72VhAYB6axHonkr9Kdos4=";
+ cargoSha256 = "sha256-gno44ZdLthcp5/+NP12d0C+x1jrmJHNkHSnyuHWl3Zk=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/third_party/nixpkgs/pkgs/tools/misc/steampipe/default.nix b/third_party/nixpkgs/pkgs/tools/misc/steampipe/default.nix
new file mode 100644
index 0000000000..691351c89b
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/steampipe/default.nix
@@ -0,0 +1,40 @@
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
+
+buildGoModule rec {
+ pname = "steampipe";
+ version = "0.8.5";
+
+ src = fetchFromGitHub {
+ owner = "turbot";
+ repo = "steampipe";
+ rev = "v${version}";
+ sha256 = "sha256-3vetSUJwCeaBzKj+635siskfcDPs/kkgCH954cg/REA=";
+ };
+
+ vendorSha256 = "sha256-TGDFNHWWbEy1cD7b2yPqAN7rRrLvL0ZX/R3BWGRWjjw=";
+
+ # tests are failing for no obvious reasons
+ doCheck = false;
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ ldflags = [
+ "-s"
+ "-w"
+ ];
+
+ postInstall = ''
+ INSTALL_DIR=$(mktemp -d)
+ installShellCompletion --cmd steampipe \
+ --bash <($out/bin/steampipe --install-dir $INSTALL_DIR completion bash) \
+ --fish <($out/bin/steampipe --install-dir $INSTALL_DIR completion fish) \
+ --zsh <($out/bin/steampipe --install-dir $INSTALL_DIR completion zsh)
+ '';
+
+ meta = with lib; {
+ homepage = "https://steampipe.io/";
+ description = "select * from cloud;";
+ license = licenses.agpl3;
+ maintainers = with maintainers; [ hardselius ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/synth/default.nix b/third_party/nixpkgs/pkgs/tools/misc/synth/default.nix
index 31d0b6e7d3..0249491fbd 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/synth/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/synth/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "synth";
- version = "0.5.6";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "getsynth";
repo = pname;
rev = "v${version}";
- sha256 = "06kgzaja04553gaxrfz6d1rqi3xwa6ijl0q6425fg0mqq9ifv7xk";
+ sha256 = "sha256-i5X2HUOCgY2znH4rDzhFpsPXsFeM7GR4soAO/rFDjjo=";
};
- cargoSha256 = "sha256-bjda4uE5K+cJkS2TsTv7FN3H6q3cElRr674FTKaIexA=";
+ cargoSha256 = "sha256-47i46Y6JjTGWC7mfMd2x2k8v0SY1o2UHdEU4rF0VrsY=";
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/tools/misc/timelimit/default.nix b/third_party/nixpkgs/pkgs/tools/misc/timelimit/default.nix
new file mode 100644
index 0000000000..22b71ca0f8
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/timelimit/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchFromGitLab, perl }:
+
+stdenv.mkDerivation rec {
+ pname = "timelimit";
+ version = "1.9.2";
+
+ src = fetchFromGitLab {
+ owner = "timelimit";
+ repo = pname;
+ rev = "release/${version}";
+ sha256 = "sha256-5IEAF8zCKaCVH6BAxjoa/2rrue9pRGBBkFzN57d+g+g=";
+ };
+
+ checkInputs = [ perl ];
+ doCheck = true;
+
+ installFlags = [ "PREFIX=$(out)" ];
+ INSTALL_PROGRAM = "install -m755";
+ INSTALL_DATA = "install -m644";
+
+ meta = with lib; {
+ description = "Execute a command and terminates the spawned process after a given time with a given signal";
+ homepage = "https://devel.ringlet.net/sysutils/timelimit/";
+ license = licenses.bsd2;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/uwufetch/default.nix b/third_party/nixpkgs/pkgs/tools/misc/uwufetch/default.nix
new file mode 100644
index 0000000000..c728a0c8db
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/uwufetch/default.nix
@@ -0,0 +1,47 @@
+{ lib, stdenv, fetchFromGitHub, fetchpatch, makeWrapper, viu }:
+
+stdenv.mkDerivation rec {
+ pname = "uwufetch";
+ version = "1.7";
+
+ src = fetchFromGitHub {
+ owner = "TheDarkBug";
+ repo = pname;
+ rev = version;
+ hash = "sha256-6yfRWFKdg7wM18hD2Bn095HzpnURhZJtx+SYx8SVBLA=";
+ };
+
+ patches = [
+ # cannot find images in /usr
+ ./fix-paths.patch
+ # https://github.com/TheDarkBug/uwufetch/pull/150
+ (fetchpatch {
+ url = "https://github.com/lourkeur/uwufetch/commit/de561649145b57d8750843555e4ffbc1cbcb01f0.patch";
+ sha256 = "sha256-KR81zxGlmthcadYBdsiVwxa5+lZUtqP7w0O4uFuputE=";
+ })
+ ];
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ installFlags = [
+ "PREFIX=${placeholder "out"}/bin"
+ "LIBDIR=${placeholder "out"}/lib"
+ "MANDIR=${placeholder "out"}/share/man/man1"
+ ];
+
+ postPatch = ''
+ substituteAllInPlace uwufetch.c
+ '';
+
+ postFixup = ''
+ wrapProgram $out/bin/uwufetch \
+ --prefix PATH ":" ${lib.makeBinPath [ viu ]}
+ '';
+
+ meta = with lib; {
+ description = "A meme system info tool for Linux";
+ homepage = "https://github.com/TheDarkBug/uwufetch";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ lourkeur ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/uwufetch/fix-paths.patch b/third_party/nixpkgs/pkgs/tools/misc/uwufetch/fix-paths.patch
new file mode 100644
index 0000000000..e79c2a1fb9
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/uwufetch/fix-paths.patch
@@ -0,0 +1,22 @@
+diff --git a/uwufetch.c b/uwufetch.c
+index 75863a2..ab31dda 100644
+--- a/uwufetch.c
++++ b/uwufetch.c
+@@ -921,7 +921,7 @@ void print_ascii()
+ }
+ else
+ {
+- sprintf(ascii_file, "/usr/lib/uwufetch/ascii/%s.txt", version_name);
++ sprintf(ascii_file, "@out@/lib/uwufetch/ascii/%s.txt", version_name);
+ }
+ file = fopen(ascii_file, "r");
+ if (!file)
+@@ -1220,7 +1220,7 @@ void print_image()
+ if (strcmp(version_name, "android") == 0)
+ sprintf(command, "viu -t -w 18 -h 8 /data/data/com.termux/files/usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
+ else
+- sprintf(command, "viu -t -w 18 -h 8 /usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
++ sprintf(command, "viu -t -w 18 -h 8 @out@/lib/uwufetch/%s.png 2> /dev/null", version_name);
+ }
+ printf("\n");
+ if (system(command) != 0)
diff --git a/third_party/nixpkgs/pkgs/tools/misc/zoxide/default.nix b/third_party/nixpkgs/pkgs/tools/misc/zoxide/default.nix
index c2eba8c01b..5fa6e849ac 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/zoxide/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/zoxide/default.nix
@@ -10,13 +10,13 @@
rustPlatform.buildRustPackage rec {
pname = "zoxide";
- version = "0.7.5";
+ version = "0.7.7";
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
- sha256 = "sha256-DcfWNp9fELRzLfNAU2qGXfLDkSbWGrsfW/Wy0t2ISXU=";
+ sha256 = "18sm7smp0r7rmbq6ajl905947l5vni7hb4dfd0hhnrqjxwlkynds";
};
nativeBuildInputs = [ installShellFiles ];
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
--replace '"fzf"' '"${fzf}/bin/fzf"'
'';
- cargoSha256 = "sha256-O2IPmb9LH0ct0O2kR581Hfxl1sdb8himfq5U733JwGk=";
+ cargoSha256 = "0km4bgdl03m5ri4wzy0fsvvwlifx99m9x2j599x58ryq6lx2kkyc";
postInstall = ''
installManPage man/*
diff --git a/third_party/nixpkgs/pkgs/tools/networking/assh/default.nix b/third_party/nixpkgs/pkgs/tools/networking/assh/default.nix
index 5bbedf0f7e..4300f8797b 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/assh/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/assh/default.nix
@@ -7,16 +7,16 @@
buildGoModule rec {
pname = "assh";
- version = "2.11.3";
+ version = "2.12.0";
src = fetchFromGitHub {
repo = "advanced-ssh-config";
owner = "moul";
rev = "v${version}";
- sha256 = "sha256-NH7Dmqsu7uRhKWGFHBnh5GGqsNFOijDxsc+ATt28jtY=";
+ sha256 = "sha256-FqxxNTsZVmCsIGNHRWusFP2gba2+geqBubw+6PeR75c=";
};
- vendorSha256 = "sha256-6OAsO7zWAgPfQWD9k+nYH7hnDDUlKIjTB61ivvoubn0=";
+ vendorSha256 = "sha256-AYBwuRSeam5i2gex9PSG9Qk+FHdEhIpY250CJo01cFE=";
doCheck = false;
diff --git a/third_party/nixpkgs/pkgs/tools/networking/drill/default.nix b/third_party/nixpkgs/pkgs/tools/networking/drill/default.nix
index f29a7ee705..beb931f8d1 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/drill/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/drill/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
@@ -19,15 +20,20 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
- nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
- buildInputs = [ ]
- ++ lib.optionals stdenv.isLinux [ openssl ]
- ++ lib.optionals stdenv.isDarwin [ Security ];
+ nativeBuildInputs = lib.optionals stdenv.isLinux [
+ pkg-config
+ ];
+
+ buildInputs = lib.optionals stdenv.isLinux [
+ openssl
+ ] ++ lib.optionals stdenv.isDarwin [
+ Security
+ ];
meta = with lib; {
description = "HTTP load testing application inspired by Ansible syntax";
homepage = "https://github.com/fcsonline/drill";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
maintainers = with maintainers; [ Br1ght0ne ];
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/networking/httpie/default.nix b/third_party/nixpkgs/pkgs/tools/networking/httpie/default.nix
index e81706a343..8e289b7bab 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/httpie/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/httpie/default.nix
@@ -7,13 +7,13 @@
python3Packages.buildPythonApplication rec {
pname = "httpie";
- version = "2.5.0";
+ version = "2.6.0";
src = fetchFromGitHub {
owner = "httpie";
repo = "httpie";
rev = version;
- sha256 = "sha256-GwwZLXf9CH024gKfWsYPnr/oqQcxR/lQIToFRh59B+E=";
+ sha256 = "1y77dg27dn6bajwp3w6qvw1ls5wfhd1j1788l3fjhxg7j4qjki4g";
};
nativeBuildInputs = [
@@ -22,6 +22,7 @@ python3Packages.buildPythonApplication rec {
];
propagatedBuildInputs = with python3Packages; [
+ charset-normalizer
defusedxml
pygments
requests
@@ -59,6 +60,8 @@ python3Packages.buildPythonApplication rec {
"test_verbose_chunked"
"test_multipart_chunked"
"test_request_body_from_file_by_path_chunked"
+ # Part of doctest
+ "httpie.encoding.detect_encoding"
];
pythonImportsCheck = [ "httpie" ];
diff --git a/third_party/nixpkgs/pkgs/tools/networking/mu/default.nix b/third_party/nixpkgs/pkgs/tools/networking/mu/default.nix
index 4b9efdc24a..0d94861da2 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/mu/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/mu/default.nix
@@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "mu";
- version = "1.6.6";
+ version = "1.6.7";
src = fetchFromGitHub {
owner = "djcb";
repo = "mu";
rev = version;
- sha256 = "64TfXPz1NCGKnozI9j+yog+hln1rA/qpzCLvPNSvH+c=";
+ sha256 = "bhZrottFT5NX43Iz1wFGYzaUSAgvgkhOwNHX6fjUs7M=";
};
postPatch = lib.optionalString (batchSize != null) ''
diff --git a/third_party/nixpkgs/pkgs/tools/networking/nethogs/default.nix b/third_party/nixpkgs/pkgs/tools/networking/nethogs/default.nix
index c6a8f3b7f4..872e22a4f2 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/nethogs/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/nethogs/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses libpcap ];
- makeFlags = [ "VERSION=${version}" ];
+ makeFlags = [ "VERSION=${version}" "nethogs" ];
installFlags = [ "PREFIX=$(out)" "sbin=$(out)/bin" ];
diff --git a/third_party/nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix b/third_party/nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
index 4d3ccf5fc1..9a635512f0 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ cppunit openssl libsigcxx zlib ];
+ enableParallelBuilding = true;
+
meta = with lib; {
homepage = "https://github.com/rakshasa/libtorrent";
description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";
diff --git a/third_party/nixpkgs/pkgs/tools/networking/p2p/rtorrent/default.nix b/third_party/nixpkgs/pkgs/tools/networking/p2p/rtorrent/default.nix
index 20f9cec6f5..ead7d9f79f 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/p2p/rtorrent/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/p2p/rtorrent/default.nix
@@ -35,6 +35,8 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-xmlrpc-c" "--with-posix-fallocate" ];
+ enableParallelBuilding = true;
+
postInstall = ''
mkdir -p $out/share/man/man1 $out/share/doc/rtorrent
mv doc/old/rtorrent.1 $out/share/man/man1/rtorrent.1
diff --git a/third_party/nixpkgs/pkgs/tools/networking/termscp/default.nix b/third_party/nixpkgs/pkgs/tools/networking/termscp/default.nix
new file mode 100644
index 0000000000..3bc12747b7
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/networking/termscp/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, dbus
+, fetchFromGitHub
+, libssh
+, openssl
+, pkg-config
+, rustPlatform
+, Security
+, stdenv
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "termscp";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "veeso";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "131kij6pnw9r0p2a28g00z85dh758h4rm9ic09qmp61cq7dphkc1";
+ };
+
+ cargoSha256 = "1k2vwmfy6dczgs3bz8k4j24cc8l7l9fdh3ymp79ril4rp1v6kfp2";
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ dbus
+ libssh
+ openssl
+ ] ++ lib.optional stdenv.isDarwin [
+ Security
+ ];
+
+ # Requires network access
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Terminal tool for file transfer and explorer";
+ homepage = "https://github.com/veeso/termscp";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/networking/tnat64/default.nix b/third_party/nixpkgs/pkgs/tools/networking/tnat64/default.nix
index 9b1c2c3aec..d22f2b98ef 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/tnat64/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/tnat64/default.nix
@@ -2,20 +2,15 @@
stdenv.mkDerivation rec {
pname = "tnat64";
- version = "0.05";
+ version = "0.06";
src = fetchFromGitHub {
owner = "andrewshadura";
repo = pname;
rev = "${pname}-${version}";
- sha256 = "07lmzidbrd3aahk2jvv93cic9gf36pwmgfd63gmy6hjkxf9a6fw9";
+ sha256 = "191j1fpr3bw6fk48npl99z7iq6m1g33f15xk5cay1gnk5f46i2j6";
};
- postPatch = ''
- # Fix usage of deprecated sys_errlist
- substituteInPlace tnat64.c --replace 'sys_errlist[errno]' 'strerror(errno)'
- '';
-
configureFlags = [ "--libdir=$(out)/lib" ];
nativeBuildInputs = [ autoreconfHook ];
diff --git a/third_party/nixpkgs/pkgs/tools/networking/unbound/default.nix b/third_party/nixpkgs/pkgs/tools/networking/unbound/default.nix
index a24ac1f388..393756a9b2 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/unbound/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/unbound/default.nix
@@ -5,9 +5,13 @@
, nettle
, expat
, libevent
+, libsodium
+, protobufc
+, hiredis
, dns-root-data
, pkg-config
, makeWrapper
+, symlinkJoin
#
# By default unbound will not be built with systemd support. Unbound is a very
# commmon dependency. The transitive dependency closure of systemd also
@@ -21,6 +25,11 @@
, systemd ? null
# optionally support DNS-over-HTTPS as a server
, withDoH ? false
+, withECS ? false
+, withDNSCrypt ? false
+, withDNSTAP ? false
+, withTFO ? false
+, withRedis ? false
, libnghttp2
}:
@@ -57,8 +66,24 @@ stdenv.mkDerivation rec {
"--enable-systemd"
] ++ lib.optionals withDoH [
"--with-libnghttp2=${libnghttp2.dev}"
+ ] ++ lib.optionals withECS [
+ "--enable-subnet"
+ ] ++ lib.optionals withDNSCrypt [
+ "--enable-dnscrypt"
+ "--with-libsodium=${symlinkJoin { name = "libsodium-full"; paths = [ libsodium.dev libsodium.out ]; }}"
+ ] ++ lib.optionals withDNSTAP [
+ "--enable-dnstap"
+ "--with-protobuf-c=${protobufc}"
+ ] ++ lib.optionals withTFO [
+ "--enable-tfo-client"
+ "--enable-tfo-server"
+ ] ++ lib.optionals withRedis [
+ "--enable-cachedb"
+ "--with-libhiredis=${hiredis}"
];
+ PROTOC_C = if withDNSTAP then "${protobufc}/bin/protoc-c" else null;
+
# Remove references to compile-time dependencies that are included in the configure flags
postConfigure = let
inherit (builtins) storeDir;
diff --git a/third_party/nixpkgs/pkgs/tools/networking/vopono/default.nix b/third_party/nixpkgs/pkgs/tools/networking/vopono/default.nix
new file mode 100644
index 0000000000..b90f405ec6
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/networking/vopono/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, fetchCrate
+, rustPlatform
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "vopono";
+ version = "0.8.6";
+
+ src = fetchCrate {
+ inherit pname version;
+ sha256 = "0dsyav755mggnsybj7iwvdqbqzz0gfd3j9vh0hmg5b7pbffanzvy";
+ };
+
+ cargoHash = "sha256:187mi36dgr2f1klqclci175zqgyrm0b6awrcnav63vira7hqz076";
+
+ meta = with lib; {
+ description = "Run applications through VPN connections in network namespaces";
+ homepage = "https://github.com/jamesmcm/vopono";
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/networking/ytcc/default.nix b/third_party/nixpkgs/pkgs/tools/networking/ytcc/default.nix
index f273d3ede7..1c83acc2a1 100644
--- a/third_party/nixpkgs/pkgs/tools/networking/ytcc/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/networking/ytcc/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "ytcc";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
- sha256 = "0d5zlj5c9n8kq38sq2napc2pnqq866v8jpsyg07q5yjcjwlmihap";
+ sha256 = "1w2frcy51kwsvd486awhpl5kkm11zj1nw3nnv9337316gfs213nw";
};
nativeBuildInputs = [ gettext ];
diff --git a/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix b/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
index 86ab11f9f3..472e7c9159 100644
--- a/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/security/exploitdb/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "exploitdb";
- version = "2021-10-15";
+ version = "2021-10-20";
src = fetchFromGitHub {
owner = "offensive-security";
repo = pname;
rev = version;
- sha256 = "sha256-7bQoBYPfePhanh7SCZ6MO/eWtyD8cfWaYjc9AWOT2rc=";
+ sha256 = "sha256-IHZpfUJA0h1dDkq3pp+x+gT9RSTMq9egHyXGi6ZmBP8=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/tools/security/ike-scan/default.nix b/third_party/nixpkgs/pkgs/tools/security/ike-scan/default.nix
index 5d54e36585..15d201fa32 100644
--- a/third_party/nixpkgs/pkgs/tools/security/ike-scan/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/security/ike-scan/default.nix
@@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "ike-scan";
- version = "1.9.4";
+ version = "1.9.5";
src = fetchFromGitHub {
owner = "royhills";
repo = pname;
rev = version;
- sha256 = "01a39bk9ma2lm59q320m9g11909if5gc3qynd8pzn6slqiq5r8kw";
+ sha256 = "sha256-mbfg8p3y4aKoXpmLuF9GXAMPEqV5CsvetwGCRDJ9UNY=";
};
nativeBuildInputs = [
@@ -33,11 +33,6 @@ stdenv.mkDerivation rec {
url = "https://github.com/royhills/ike-scan/pull/15/commits/d864811de08dcddd65ac9b8d0f2acf5d7ddb9dea.patch";
sha256 = "0wbrq89dl8js7cdivd0c45hckmflan33cpgc3qm5s3az6r4mjljm";
})
- (fetchpatch {
- # Unknown vendor IDs, https://github.com/royhills/ike-scan/pull/18, was merged but not released
- url = "https://github.com/royhills/ike-scan/pull/18/commits/e065ddbe471880275dc7975e7da235e7a2097c22.patch";
- sha256 = "13ly01c96nnd5yh7rxrhv636csm264m5xf2a1inprrzxkkri5sls";
- })
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/tools/security/kubescape/default.nix b/third_party/nixpkgs/pkgs/tools/security/kubescape/default.nix
index 00780306d9..612e14b524 100644
--- a/third_party/nixpkgs/pkgs/tools/security/kubescape/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/security/kubescape/default.nix
@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "kubescape";
- version = "1.0.120";
+ version = "1.0.123";
src = fetchFromGitHub {
owner = "armosec";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-aFFJAib0/FTOaPtSLYXIFV3+QfIpzy8fC7rWAQW5yh0=";
+ sha256 = "sha256-mrpQXIcV1KxOLDhWAS9Og76k18jsey7vPAcbhGe+cN4=";
};
- vendorSha256 = "sha256-vN+ci2vCbtDuEEVzZQiFkdi1QkMgnnbbJgD9g6DS7qs=";
+ vendorSha256 = "sha256-4v/7JrSGZKOyLwU6U3+hc9P+kzxGGj4aXG/wXmNdo+M=";
# One test is failing, disabling for now
doCheck = false;
diff --git a/third_party/nixpkgs/pkgs/tools/security/rage/default.nix b/third_party/nixpkgs/pkgs/tools/security/rage/default.nix
index 99e61dc235..9a7c819716 100644
--- a/third_party/nixpkgs/pkgs/tools/security/rage/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/security/rage/default.nix
@@ -3,16 +3,16 @@
rustPlatform.buildRustPackage rec {
pname = "rage";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "str4d";
repo = pname;
rev = "v${version}";
- sha256 = "1vag448zpjyplcjpf1ir81l8ip3yxm9vkrxffqr78zslb4k6hw2w";
+ sha256 = "1dzsqppkcxvajyybmday8xnwwwqv3g44hb5fzqy4whkblwxbn2gk";
};
- cargoSha256 = "06jfhq9vnkq5g5bw1zl2sxsih63yajcyk9zaizhzkdsbhydr4955";
+ cargoSha256 = "1bcj1rd78kgiy1xqpkxffzl6v9xdp778y66g6nhikjq2yarz77ji";
nativeBuildInputs = [ installShellFiles ];
diff --git a/third_party/nixpkgs/pkgs/tools/system/auto-cpufreq/default.nix b/third_party/nixpkgs/pkgs/tools/system/auto-cpufreq/default.nix
index 427fe12267..b72ee7a691 100644
--- a/third_party/nixpkgs/pkgs/tools/system/auto-cpufreq/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/system/auto-cpufreq/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonPackage rec {
pname = "auto-cpufreq";
- version = "1.6.9";
+ version = "1.7.1";
src = fetchFromGitHub {
owner = "AdnanHodzic";
repo = pname;
rev = "v${version}";
- sha256 = "1pri182cgbrhr0adq2784gpv6q8c8kjr0jsh8wpvd1wvfsbqywrm";
+ sha256 = "1r27ydv258c6pc82za0wq8q8fj0j3r50c8wxc6r7dwr6wx8q3asx";
};
propagatedBuildInputs = with python3Packages; [ click distro psutil ];
diff --git a/third_party/nixpkgs/pkgs/tools/system/btop/default.nix b/third_party/nixpkgs/pkgs/tools/system/btop/default.nix
index 51dad59e81..b55af63269 100644
--- a/third_party/nixpkgs/pkgs/tools/system/btop/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/system/btop/default.nix
@@ -1,17 +1,17 @@
{ lib
-, fetchFromGitHub
, stdenv
+, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "btop";
- version = "1.0.13";
+ version = "1.0.18";
src = fetchFromGitHub {
owner = "aristocratos";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Znap1MSWEdKtb9G7+DmfYAhq3q2NfGu1v2cjbYuvUmE=";
+ sha256 = "sha256-TUrCSpwbUP28COHAAFIdR5Kw18I35nBkiKU62IHCN4o=";
};
installFlags = [ "PREFIX=$(out)" ];
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A monitor of resources";
homepage = "https://github.com/aristocratos/btop";
+ changelog = "https://github.com/aristocratos/btop/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ rmcgibbo ];
diff --git a/third_party/nixpkgs/pkgs/tools/system/uefitool/variants.nix b/third_party/nixpkgs/pkgs/tools/system/uefitool/variants.nix
index 0e8d7285aa..adf4884e2a 100644
--- a/third_party/nixpkgs/pkgs/tools/system/uefitool/variants.nix
+++ b/third_party/nixpkgs/pkgs/tools/system/uefitool/variants.nix
@@ -3,8 +3,8 @@ let
common = opts: libsForQt5.callPackage (import ./common.nix opts) {};
in rec {
new-engine = common rec {
- version = "A58";
- sha256 = "131hkyr07fg7rnr938yyj0gk528x3402dhisav221c27v84zb7pn";
+ version = "A59";
+ sha256 = "0m6hkj33vr75mrpjpdc0l38xv64kq73ph2mr2v9bs3wx4qlvg606";
installFiles = [ "UEFITool/UEFITool" "UEFIFind/UEFIFind" "UEFIExtract/UEFIExtract" ];
};
old-engine = common rec {
diff --git a/third_party/nixpkgs/pkgs/tools/text/difftastic/default.nix b/third_party/nixpkgs/pkgs/tools/text/difftastic/default.nix
index 32644fdf28..f8ceec253a 100644
--- a/third_party/nixpkgs/pkgs/tools/text/difftastic/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/text/difftastic/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "difftastic";
- version = "0.10.1";
+ version = "0.11.0";
src = fetchFromGitHub {
owner = "wilfred";
repo = pname;
rev = version;
- sha256 = "12fcfwx56phs64yl94al2hkvss1km4n9wbrn2md7wfh1137jykbg";
+ sha256 = "sha256-Arg1n5WFCNGHZay56BvLrPDAvvUKVurVNEKgTzHgIzI=";
};
- cargoSha256 = "0xnlnkdvsd2l7acdrkz918cjkk36k01rvvm0c8hnpx5327v6nsa8";
+ cargoSha256 = "sha256-ArIyIAxVgGmI+MdkVBo0xihDdw3RlRiPLJOhPcC1KLw=";
postPatch = ''
pushd vendor
diff --git a/third_party/nixpkgs/pkgs/tools/text/tidy-viewer/default.nix b/third_party/nixpkgs/pkgs/tools/text/tidy-viewer/default.nix
new file mode 100644
index 0000000000..4cb99ca26c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/text/tidy-viewer/default.nix
@@ -0,0 +1,29 @@
+{ lib, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "tidy-viewer";
+ version = "0.0.22";
+
+ src = fetchFromGitHub {
+ owner = "alexhallam";
+ repo = "tv";
+ rev = version;
+ sha256 = "sha256-OuNpp9EKiU+fQSZZO7zpI36nCiZBXK6OznJGY4KMftU=";
+ };
+
+ cargoSha256 = "sha256-LRoNGDOrbCjmZJRe+EUKxkDJjC92bQRRwP48jqDp9PU=";
+
+ # this test parses command line arguments
+ # error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
+ checkFlags = [
+ "--skip=build_reader_can_create_reader_without_file_specified"
+ ];
+
+ meta = with lib; {
+ description = "A cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment";
+ homepage = "https://github.com/alexhallam/tv";
+ changelog = "https://github.com/alexhallam/tv/blob/${version}/CHANGELOG.md";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/text/vgrep/default.nix b/third_party/nixpkgs/pkgs/tools/text/vgrep/default.nix
index 1eea8b7f67..1269d1a66c 100644
--- a/third_party/nixpkgs/pkgs/tools/text/vgrep/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/text/vgrep/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "vgrep";
- version = "2.5.1";
+ version = "2.5.3";
src = fetchFromGitHub {
owner = "vrothberg";
repo = pname;
rev = "v${version}";
- sha256 = "06rnmg6ljj4f1g602wdp2wy9v0m1m0sj6jl6wywyjl8grjqc3vac";
+ sha256 = "sha256-AFjVgFWNhRt8co2eeSGRutNA9peb3xd5sOW0QMSPufw=";
};
vendorSha256 = null;
diff --git a/third_party/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix b/third_party/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix
index 401144f74d..d8fec3fd15 100644
--- a/third_party/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix
@@ -1,36 +1,38 @@
-{ lib, nimPackages, fetchFromGitLab
+{ lib
+, nimPackages
+, fetchFromGitLab
, enableShells ? [ "bash" "zsh" "fish" "sh" "posh" ]
}:
+nimPackages.buildNimPackage rec{
-nimPackages.buildNimPackage {
- name = "swaycwd";
- version = "0.0.1";
+ name = "swaycwd";
+ version = "0.0.2";
- src = fetchFromGitLab {
- owner = "cab404";
- repo = "swaycwd";
- rev = "aca81695ec2102b9bca6f5bae364f69a8b9d399f";
- hash = "sha256-MkyY3wWByQo0l0J28xKDfGtxfazVPRyZHCObl9Fszh4=";
- };
+ src = fetchFromGitLab {
+ owner = "cab404";
+ repo = name;
+ rev = "v${version}";
+ hash = "sha256-OZWOPtOqcX+fVQCxWntrn98EzFu70WH55rfYCPDMSKk=";
+ };
- preConfigure = ''
- {
- echo 'let enabledShells: seq[string] = @${builtins.toJSON enableShells}'
- echo 'export enabledShells'
- } > shells.nim
- cat << EOF > swaycwd.nimble
- srcDir = "."
- bin = "swaycwd"
- EOF
- '';
+ preConfigure = ''
+ {
+ echo 'let enabledShells: seq[string] = @${builtins.toJSON enableShells}'
+ echo 'export enabledShells'
+ } > shells.nim
+ cat << EOF > swaycwd.nimble
+ srcDir = "."
+ bin = "swaycwd"
+ EOF
+ '';
- nimFlags = [ "--opt:speed" ];
+ nimFlags = [ "--opt:speed" ];
- meta = with lib; {
- homepage = "https://gitlab.com/cab404/swaycwd";
- description = "Returns cwd for shell in currently focused sway window, or home directory if cannot find shell";
- maintainers = with maintainers; [ cab404 ];
- platforms = platforms.linux;
- license = licenses.gpl3Only;
- };
+ meta = with lib; {
+ homepage = "https://gitlab.com/cab404/swaycwd";
+ description = "Returns cwd for shell in currently focused sway window, or home directory if cannot find shell";
+ maintainers = with maintainers; [ cab404 ];
+ platforms = platforms.linux;
+ license = licenses.gpl3Only;
+ };
}
diff --git a/third_party/nixpkgs/pkgs/top-level/agda-packages.nix b/third_party/nixpkgs/pkgs/top-level/agda-packages.nix
index e38819cfcb..18c32b9a9d 100644
--- a/third_party/nixpkgs/pkgs/top-level/agda-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/agda-packages.nix
@@ -13,7 +13,10 @@ let
lib = lib.extend (final: prev: import ../build-support/agda/lib.nix { lib = prev; });
- agda = withPackages [] // { inherit withPackages; };
+ agda = withPackages [] // {
+ inherit withPackages;
+ passthru.tests.allPackages = withPackages (lib.filter (pkg: self.lib.isUnbrokenAgdaPackage pkg) (lib.attrValues self));
+ };
standard-library = callPackage ../development/libraries/agda/standard-library {
inherit (pkgs.haskellPackages) ghcWithPackages;
diff --git a/third_party/nixpkgs/pkgs/top-level/aliases.nix b/third_party/nixpkgs/pkgs/top-level/aliases.nix
index 46d3b06a14..e28d75c842 100644
--- a/third_party/nixpkgs/pkgs/top-level/aliases.nix
+++ b/third_party/nixpkgs/pkgs/top-level/aliases.nix
@@ -204,6 +204,7 @@ mapAliases ({
dnnl = oneDNN; # added 2020-04-22
docbook5_xsl = docbook_xsl_ns; # added 2018-04-25
docbook_xml_xslt = docbook_xsl; # added 2018-04-25
+ dotnet-netcore = dotnet-runtime; # added 2021-10-07
double_conversion = double-conversion; # 2017-11-22
docker_compose = docker-compose; # 2018-11-10
draftsight = throw "draftsight has been removed, no longer available as freeware"; # added 2020-08-14
@@ -333,6 +334,9 @@ mapAliases ({
google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # added 2021-03-07
googleAuthenticator = google-authenticator; # added 2016-10-16
grantlee5 = libsForQt5.grantlee; # added 2015-12-19
+ graalvm8 = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19
+ graalvm8-ce = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19
+ graalvm11 = graalvm11-ce;
gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25
gtk_doc = gtk-doc; # added 2018-02-25
guileCairo = guile-cairo; # added 2017-09-24
@@ -374,6 +378,7 @@ mapAliases ({
jbuilder = dune_1; # added 2018-09-09
jikes = throw "jikes was deprecated on 2019-10-07: abandoned by upstream";
joseki = apache-jena-fuseki; # added 2016-02-28
+ jvmci8 = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # added 2021-10-15
json_glib = json-glib; # added 2018-02-25
kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # 2020-06-16
k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # 2020-11-06
@@ -545,6 +550,7 @@ mapAliases ({
mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension."; # added 2020-10-18
mysql-client = hiPrio mariadb.client;
memtest86 = memtest86plus; # added 2019-05-08
+ mercurial_4 = throw "mercurial_4 has been removed as it's unmaintained"; # added 2021-10-18
mesa_noglu = mesa; # added 2019-05-28
# NOTE: 2018-07-12: legacy alias:
# grsecurity business is done: https://www.theregister.co.uk/2018/02/08/bruce_perens_grsecurity_anti_slapp/
@@ -569,6 +575,7 @@ mapAliases ({
mpv-with-scripts = self.wrapMpv self.mpv-unwrapped { }; # added 2020-05-22
multipath_tools = multipath-tools; # added 2016-01-21
mupen64plus1_5 = mupen64plus; # added 2016-02-12
+ mx = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # added 2021-10-15
mxisd = throw "mxisd has been removed from nixpkgs as it has reached end of life, see https://github.com/kamax-matrix/mxisd/blob/535e0a5b96ab63cb0ddef90f6f42c5866407df95/EOL.md#end-of-life-notice . ma1sd may be a suitable alternative."; # added 2021-04-15
mysqlWorkbench = mysql-workbench; # added 2017-01-19
nagiosPluginsOfficial = monitoring-plugins;
diff --git a/third_party/nixpkgs/pkgs/top-level/all-packages.nix b/third_party/nixpkgs/pkgs/top-level/all-packages.nix
index e2f6f1763e..87e40fcd02 100644
--- a/third_party/nixpkgs/pkgs/top-level/all-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/all-packages.nix
@@ -405,17 +405,13 @@ with pkgs;
dotnetCorePackages = recurseIntoAttrs (callPackage ../development/compilers/dotnet {});
- dotnet-sdk = dotnetCorePackages.sdk_2_1;
-
dotnet-sdk_2 = dotnetCorePackages.sdk_2_1;
-
dotnet-sdk_3 = dotnetCorePackages.sdk_3_1;
-
dotnet-sdk_5 = dotnetCorePackages.sdk_5_0;
- dotnet-netcore = dotnetCorePackages.netcore_2_1;
-
- dotnet-aspnetcore = dotnetCorePackages.aspnetcore_2_1;
+ dotnet-sdk = dotnetCorePackages.sdk_5_0;
+ dotnet-runtime = dotnetCorePackages.runtime_5_0;
+ dotnet-aspnetcore = dotnetCorePackages.aspnetcore_5_0;
dumb-init = callPackage ../applications/virtualization/dumb-init {};
@@ -472,6 +468,10 @@ with pkgs;
fetchMavenArtifact = callPackage ../build-support/fetchmavenartifact { };
+ inherit (callPackage ../build-support/node/fetch-yarn-deps { })
+ prefetch-yarn-deps
+ fetchYarnDeps;
+
find-cursor = callPackage ../tools/X11/find-cursor { };
flare-floss = callPackage ../tools/security/flare-floss { };
@@ -966,6 +966,8 @@ with pkgs;
ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin { };
+ vopono = callPackage ../tools/networking/vopono { };
+
xcd = callPackage ../tools/misc/xcd { };
xtrt = callPackage ../tools/archivers/xtrt { };
@@ -2749,6 +2751,8 @@ with pkgs;
eggdrop = callPackage ../tools/networking/eggdrop { };
+ ekam = callPackage ../development/tools/build-managers/ekam { };
+
eksctl = callPackage ../tools/admin/eksctl { };
electronplayer = callPackage ../applications/video/electronplayer/electronplayer.nix { };
@@ -3042,6 +3046,10 @@ with pkgs;
hidrd = callPackage ../tools/misc/hidrd { };
+ hiksink = callPackage ../tools/misc/hiksink {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
hocr-tools = with python3Packages; toPythonApplication hocr-tools;
home-manager = callPackage ../tools/package-management/home-manager {};
@@ -3450,6 +3458,8 @@ with pkgs;
statserial = callPackage ../tools/misc/statserial { };
+ steampipe = callPackage ../tools/misc/steampipe { };
+
step-ca = callPackage ../tools/security/step-ca {
inherit (darwin.apple_sdk.frameworks) PCSC;
};
@@ -5465,7 +5475,7 @@ with pkgs;
git-fame = callPackage ../applications/version-management/git-and-tools/git-fame {};
- git-fast-export = callPackage ../applications/version-management/git-and-tools/fast-export { mercurial = mercurial_4; };
+ git-fast-export = callPackage ../applications/version-management/git-and-tools/fast-export { };
git-filter-repo = callPackage ../applications/version-management/git-and-tools/git-filter-repo {
pythonPackages = python3Packages;
@@ -5998,7 +6008,9 @@ with pkgs;
pixz = callPackage ../tools/compression/pixz { };
- plplot = callPackage ../development/libraries/plplot { };
+ plplot = callPackage ../development/libraries/plplot {
+ inherit (xorg) libX11;
+ };
pxattr = callPackage ../tools/archivers/pxattr { };
@@ -6065,28 +6077,25 @@ with pkgs;
hddtemp = callPackage ../tools/misc/hddtemp { };
- hdf4 = callPackage ../tools/misc/hdf4 {
- szip = null;
- };
+ hdf4 = callPackage ../tools/misc/hdf4 { };
hdf5 = callPackage ../tools/misc/hdf5 {
- gfortran = null;
- szip = null;
+ fortranSupport = false;
+ fortran = gfortran;
};
hdf5_1_10 = callPackage ../tools/misc/hdf5/1.10.nix { };
hdf5-mpi = appendToName "mpi" (hdf5.override {
- szip = null;
mpiSupport = true;
});
hdf5-cpp = appendToName "cpp" (hdf5.override {
- cpp = true;
+ cppSupport = true;
});
hdf5-fortran = appendToName "fortran" (hdf5.override {
- inherit gfortran;
+ fortranSupport = true;
});
hdf5-threadsafe = appendToName "threadsafe" (hdf5.overrideAttrs (oldAttrs: {
@@ -6129,6 +6138,8 @@ with pkgs;
hivemind = callPackage ../applications/misc/hivemind { };
+ hobbits = libsForQt5.callPackage ../tools/graphics/hobbits { };
+
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
highlight = callPackage ../tools/text/highlight ({
@@ -6972,7 +6983,12 @@ with pkgs;
nodejs-slim-16_x = callPackage ../development/web/nodejs/v16.nix {
enableNpm = false;
};
+ nodejs-17_x = callPackage ../development/web/nodejs/v17.nix { };
+ nodejs-slim-17_x = callPackage ../development/web/nodejs/v17.nix {
+ enableNpm = false;
+ };
# Update this when adding the newest nodejs major version!
+ # Do not set to nodejs-17_x because it requires 10.13 SDK on Darwin
nodejs_latest = nodejs-16_x;
nodejs-slim_latest = nodejs-slim-16_x;
@@ -7654,7 +7670,7 @@ with pkgs;
netkittftp = callPackage ../tools/networking/netkit/tftp { };
- netlify-cli = nodePackages.netlify-cli;
+ netlify-cli = callPackage ../development/web/netlify-cli { };
netpbm = callPackage ../tools/graphics/netpbm { };
@@ -8319,6 +8335,8 @@ with pkgs;
pdf2svg = callPackage ../tools/graphics/pdf2svg { };
+ pdftoipe = callPackage ../tools/graphics/pdftoipe { };
+
fmodex = callPackage ../games/zandronum/fmod.nix { };
pdfminer = with python3Packages; toPythonApplication pdfminer;
@@ -8995,6 +9013,8 @@ with pkgs;
runelite = callPackage ../games/runelite { };
+ runescape = callPackage ../games/runescape-launcher { };
+
runningx = callPackage ../tools/X11/runningx { };
rund = callPackage ../development/tools/rund { };
@@ -9730,6 +9750,10 @@ with pkgs;
telescope = callPackage ../applications/networking/browsers/telescope { };
+ termscp = callPackage ../tools/networking/termscp {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
termius = callPackage ../applications/networking/termius { };
termplay = callPackage ../tools/misc/termplay { };
@@ -9776,6 +9800,8 @@ with pkgs;
thinkpad-scripts = python3.pkgs.callPackage ../tools/misc/thinkpad-scripts { };
+ tidy-viewer = callPackage ../tools/text/tidy-viewer { };
+
tiled = libsForQt5.callPackage ../applications/editors/tiled { };
tiledb = callPackage ../development/libraries/tiledb { };
@@ -10118,6 +10144,8 @@ with pkgs;
uwsgi = callPackage ../servers/uwsgi { };
+ uwufetch = callPackage ../tools/misc/uwufetch { };
+
v2ray = callPackage ../tools/networking/v2ray { };
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
@@ -10308,6 +10336,7 @@ with pkgs;
wasm-bindgen-cli = callPackage ../development/tools/wasm-bindgen-cli {
inherit (darwin.apple_sdk.frameworks) Security;
+ nodejs = nodejs_latest;
};
welkin = callPackage ../tools/graphics/welkin {};
@@ -10458,6 +10487,11 @@ with pkgs;
unbound-full = unbound.override {
withSystemd = true;
withDoH = true;
+ withECS = true;
+ withDNSCrypt = true;
+ withDNSTAP = true;
+ withTFO = true;
+ withRedis = true;
};
unicorn = callPackage ../development/libraries/unicorn { };
@@ -10890,6 +10924,8 @@ with pkgs;
zsh-fzf-tab = callPackage ../shells/zsh/zsh-fzf-tab { };
+ zsh-autocomplete = callPackage ../shells/zsh/zsh-autocomplete { };
+
zsh-autosuggestions = callPackage ../shells/zsh/zsh-autosuggestions { };
zsh-powerlevel10k = callPackage ../shells/zsh/zsh-powerlevel10k { };
@@ -12088,19 +12124,10 @@ with pkgs;
openjdk = openjdk16;
openjdk_headless = openjdk16_headless;
- inherit (callPackages ../development/compilers/graalvm {
- gcc = if stdenv.targetPlatform.isDarwin then gcc8 else gcc;
- inherit (darwin.apple_sdk.frameworks)
- CoreFoundation Foundation JavaNativeFoundation
- JavaVM JavaRuntimeSupport Cocoa;
- inherit (darwin) libiconv libobjc libresolv;
- }) mx jvmci8 graalvm8;
-
graalvmCEPackages =
recurseIntoAttrs (callPackage ../development/compilers/graalvm/community-edition {
inherit (darwin.apple_sdk.frameworks) Foundation;
});
- graalvm8-ce = graalvmCEPackages.graalvm8-ce;
graalvm11-ce = graalvmCEPackages.graalvm11-ce;
inherit (callPackages ../development/compilers/graalvm/enterprise-edition.nix { })
@@ -12260,7 +12287,10 @@ with pkgs;
/**/ if platform.isDarwin then (if platform.isAarch64 then 11 else 7)
else if platform.isFreeBSD then 7
else if platform.isAndroid then 12
- else if platform.isLinux then (if platform.isRiscV then 11 else 7)
+ else if platform.isLinux then
+ /**/ if platform.isRiscV then 11
+ else if platform.isMusl then 11
+ else 7
else if platform.isWasm then 8
else latest_version;
# We take the "max of the mins". Why? Since those are lower bounds of the
@@ -12393,7 +12423,7 @@ with pkgs;
roslyn = callPackage ../development/compilers/roslyn { };
- msbuild = callPackage ../development/tools/build-managers/msbuild { dotnet-sdk = dotnet-sdk_5; };
+ msbuild = callPackage ../development/tools/build-managers/msbuild { };
mosml = callPackage ../development/compilers/mosml { };
@@ -12750,7 +12780,7 @@ with pkgs;
sbcl_2_1_1 = callPackage ../development/compilers/sbcl/2.1.1.nix {};
sbcl_2_1_2 = callPackage ../development/compilers/sbcl/2.1.2.nix {};
sbcl_2_1_9 = callPackage ../development/compilers/sbcl/2.1.9.nix {};
- sbcl = sbcl_2_1_2;
+ sbcl = sbcl_2_1_9;
roswell = callPackage ../development/tools/roswell/default.nix { };
@@ -13082,6 +13112,12 @@ with pkgs;
inherit (beam.packages.erlangR21) lfe lfe_1_3;
+ gnudatalanguage = callPackage ../development/interpreters/gnudatalanguage {
+ inherit (llvmPackages) openmp;
+ # MPICH currently build on Darwin
+ mpi = mpich;
+ };
+
groovy = callPackage ../development/interpreters/groovy { };
inherit (callPackages ../applications/networking/cluster/hadoop {
@@ -14915,6 +14951,8 @@ with pkgs;
sauce-connect = callPackage ../development/tools/sauce-connect { };
+ sawjap = callPackage ../development/tools/java/sawjap { };
+
sd-local = callPackage ../development/tools/sd-local { };
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
@@ -15533,6 +15571,8 @@ with pkgs;
hci = callPackage ../development/tools/continuous-integration/hci { };
+ isa-l = callPackage ../development/libraries/isa-l { };
+
niv = lib.getBin (haskell.lib.justStaticExecutables haskellPackages.niv);
ormolu = haskellPackages.ormolu.bin;
@@ -18674,11 +18714,12 @@ with pkgs;
openvdb = callPackage ../development/libraries/openvdb {};
inherit (callPackages ../development/libraries/libressl { })
- libressl_3_2;
+ libressl_3_2
+ libressl_3_4;
# Please keep this pointed to the latest version. See also
# https://discourse.nixos.org/t/nixpkgs-policy-regarding-libraries-available-in-multiple-versions/7026/2
- libressl = libressl_3_2;
+ libressl = libressl_3_4;
boringssl = callPackage ../development/libraries/boringssl { };
@@ -22404,6 +22445,7 @@ with pkgs;
ubootBananaPim64
ubootAmx335xEVM
ubootClearfog
+ ubootCubieboard2
ubootGuruplug
ubootJetsonTK1
ubootNanoPCT4
@@ -23395,6 +23437,8 @@ with pkgs;
ucs-fonts = callPackage ../data/fonts/ucs-fonts
{ inherit (buildPackages.xorg) fonttosfnt mkfontscale; };
+ bront_fonts = callPackage ../data/fonts/bront { };
+
ultimate-oldschool-pc-font-pack = callPackage ../data/fonts/ultimate-oldschool-pc-font-pack { };
ultralist = callPackage ../applications/misc/ultralist { };
@@ -24388,6 +24432,11 @@ with pkgs;
epic5 = callPackage ../applications/networking/irc/epic5 { };
+ epick = callPackage ../applications/graphics/epick {
+ inherit (darwin.apple_sdk.frameworks) AppKit IOKit;
+ inherit (xorg) libX11 libXcursor libXi libXrandr libxcb;
+ };
+
epr = callPackage ../applications/misc/epr { };
eq10q = callPackage ../applications/audio/eq10q { };
@@ -25556,6 +25605,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
+ image-roll = callPackage ../applications/graphics/image-roll { };
+
imagej = callPackage ../applications/graphics/imagej { };
imagemagick6_light = imagemagick6.override {
@@ -26245,9 +26296,6 @@ with pkgs;
inherit (xorg) libX11 libXrandr;
};
- mercurial_4 = callPackage ../applications/version-management/mercurial/4.9.nix {
- inherit (darwin.apple_sdk.frameworks) ApplicationServices;
- };
mercurial = callPackage ../applications/version-management/mercurial {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
};
@@ -26915,10 +26963,7 @@ with pkgs;
libtiff = callPackage ../applications/graphics/opentoonz/libtiff.nix { };
})).callPackage ../applications/graphics/opentoonz { };
- opentabletdriver = callPackage ../tools/X11/opentabletdriver {
- dotnet-sdk = dotnetCorePackages.sdk_5_0;
- dotnet-netcore = dotnetCorePackages.net_5_0;
- };
+ opentabletdriver = callPackage ../tools/X11/opentabletdriver { };
opentx = libsForQt5.callPackage ../applications/misc/opentx { };
@@ -27498,6 +27543,8 @@ with pkgs;
rkdeveloptool = callPackage ../misc/rkdeveloptool { };
+ rocketchat-desktop = callPackage ../applications/networking/instant-messengers/rocketchat-desktop { };
+
rofi-unwrapped = callPackage ../applications/misc/rofi {
autoreconfHook = buildPackages.autoreconfHook269;
};
@@ -28081,6 +28128,8 @@ with pkgs;
fftw = fftwSinglePrec;
};
+ timelimit = callPackage ../tools/misc/timelimit { };
+
timewarrior = callPackage ../applications/misc/timewarrior { };
timew-sync-server = callPackage ../applications/misc/timew-sync-server { };
@@ -31074,9 +31123,7 @@ with pkgs;
abc-verifier = callPackage ../applications/science/logic/abc {};
- abella = callPackage ../applications/science/logic/abella {
- ocamlPackages = ocaml-ng.ocamlPackages_4_07;
- };
+ abella = callPackage ../applications/science/logic/abella { };
acgtk = callPackage ../applications/science/logic/acgtk {};
@@ -32362,6 +32409,8 @@ with pkgs;
qdl = callPackage ../tools/misc/qdl { };
+ rates = callPackage ../tools/misc/rates { };
+
rargs = callPackage ../tools/misc/rargs { };
rancher = callPackage ../applications/networking/cluster/rancher { };
@@ -32738,6 +32787,7 @@ with pkgs;
wasm-pack = callPackage ../development/tools/wasm-pack {
inherit (darwin.apple_sdk.frameworks) Security;
+ libressl = libressl_3_2;
};
wavegain = callPackage ../applications/audio/wavegain { };
@@ -33188,7 +33238,7 @@ with pkgs;
stdenv = crossLibcStdenv;
};
- omnisharp-roslyn = callPackage ../development/tools/omnisharp-roslyn { dotnet-sdk = dotnet-sdk_5; };
+ omnisharp-roslyn = callPackage ../development/tools/omnisharp-roslyn { };
wasmtime = callPackage ../development/interpreters/wasmtime {};
diff --git a/third_party/nixpkgs/pkgs/top-level/linux-kernels.nix b/third_party/nixpkgs/pkgs/top-level/linux-kernels.nix
index d1afd34228..da6bd08e56 100644
--- a/third_party/nixpkgs/pkgs/top-level/linux-kernels.nix
+++ b/third_party/nixpkgs/pkgs/top-level/linux-kernels.nix
@@ -10,6 +10,7 @@
, stdenvNoCC
, newScope
, lib
+, fetchurl
}:
# When adding a kernel:
@@ -26,16 +27,27 @@ let
# Hardened Linux
hardenedKernelFor = kernel': overrides:
- let kernel = kernel'.override overrides;
+ let
+ kernel = kernel'.override overrides;
+ version = kernelPatches.hardened.${kernel.meta.branch}.version;
+ major = lib.versions.major version;
+ sha256 = kernelPatches.hardened.${kernel.meta.branch}.sha256;
+ modDirVersion' = builtins.replaceStrings [ kernel.version ] [ version ] kernel.modDirVersion;
in kernel.override {
structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix {
- inherit lib;
- inherit (kernel) version;
+ inherit lib version;
+ };
+ argsOverride = {
+ inherit version;
+ src = fetchurl {
+ url = "mirror://kernel/linux/kernel/v${major}.x/linux-${version}.tar.xz";
+ inherit sha256;
+ };
};
kernelPatches = kernel.kernelPatches ++ [
kernelPatches.hardened.${kernel.meta.branch}
];
- modDirVersionArg = kernel.modDirVersion + (kernelPatches.hardened.${kernel.meta.branch}).extra;
+ modDirVersionArg = modDirVersion' + (kernelPatches.hardened.${kernel.meta.branch}).extra;
isHardened = true;
};
in {
diff --git a/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix b/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
index 3a1fc6a939..417ce76331 100644
--- a/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
@@ -1156,6 +1156,8 @@ let
ppx_deriving_yojson = callPackage ../development/ocaml-modules/ppx_deriving_yojson {};
+ ppx_deriving_yaml = callPackage ../development/ocaml-modules/ppx_deriving_yaml {};
+
ppx_deriving_cmdliner = callPackage ../development/ocaml-modules/ppx_deriving_cmdliner {};
ppx_gen_rec = callPackage ../development/ocaml-modules/ppx_gen_rec {};
@@ -1408,6 +1410,8 @@ let
yaml = callPackage ../development/ocaml-modules/yaml { };
+ yaml-sexp = callPackage ../development/ocaml-modules/yaml/yaml-sexp.nix { };
+
yojson = callPackage ../development/ocaml-modules/yojson { };
z3 = callPackage ../development/ocaml-modules/z3 {
diff --git a/third_party/nixpkgs/pkgs/top-level/python-packages.nix b/third_party/nixpkgs/pkgs/top-level/python-packages.nix
index ccf8056dbd..65392f5605 100644
--- a/third_party/nixpkgs/pkgs/top-level/python-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/python-packages.nix
@@ -405,7 +405,7 @@ in {
airly = callPackage ../development/python-modules/airly { };
- airthings = callPackage ../development/python-modules/airthings { };
+ airthings-cloud = callPackage ../development/python-modules/airthings-cloud { };
ajpy = callPackage ../development/python-modules/ajpy { };
@@ -2418,6 +2418,8 @@ in {
environmental-override = callPackage ../development/python-modules/environmental-override { };
+ environs = callPackage ../development/python-modules/environs { };
+
envisage = callPackage ../development/python-modules/envisage { };
envs = callPackage ../development/python-modules/envs { };
@@ -5105,6 +5107,8 @@ in {
Nuitka = callPackage ../development/python-modules/nuitka { };
+ nulltype = callPackage ../development/python-modules/nulltype { };
+
num2words = callPackage ../development/python-modules/num2words { };
numba = callPackage ../development/python-modules/numba { };
@@ -5870,6 +5874,8 @@ in {
prison = callPackage ../development/python-modules/prison { };
+ privacyidea-ldap-proxy = callPackage ../development/python-modules/privacyidea-ldap-proxy { };
+
pyjwt1 = callPackage ../development/python-modules/pyjwt/1.nix { };
proboscis = callPackage ../development/python-modules/proboscis { };
@@ -5989,6 +5995,8 @@ in {
py-dmidecode = callPackage ../development/python-modules/py-dmidecode { };
+ py-synologydsm-api = callPackage ../development/python-modules/py-synologydsm-api { };
+
py-ubjson = callPackage ../development/python-modules/py-ubjson { };
py17track = callPackage ../development/python-modules/py17track { };
@@ -6180,6 +6188,8 @@ in {
pydaikin = callPackage ../development/python-modules/pydaikin { };
+ pydal = callPackage ../development/python-modules/pydal { };
+
pydanfossair = callPackage ../development/python-modules/pydanfossair { };
pydantic = callPackage ../development/python-modules/pydantic { };
diff --git a/third_party/nixpkgs/pkgs/top-level/python2-packages.nix b/third_party/nixpkgs/pkgs/top-level/python2-packages.nix
index 99189a534d..033bc4dc7c 100644
--- a/third_party/nixpkgs/pkgs/top-level/python2-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/python2-packages.nix
@@ -407,8 +407,6 @@ with self; with super; {
prettytable = callPackage ../development/python-modules/prettytable/1.nix { };
- privacyidea-ldap-proxy = callPackage ../development/python-modules/privacyidea/ldap-proxy.nix { };
-
ldaptor = callPackage ../development/python-modules/ldaptor/19.nix { };
progressbar231 = callPackage ../development/python-modules/progressbar231 { };
diff --git a/third_party/nixpkgs/pkgs/top-level/qt5-packages.nix b/third_party/nixpkgs/pkgs/top-level/qt5-packages.nix
index a5adec5d78..21d11d339f 100644
--- a/third_party/nixpkgs/pkgs/top-level/qt5-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/qt5-packages.nix
@@ -174,6 +174,8 @@ in (kdeFrameworks // plasmaMobileGear // plasma5 // plasma5.thirdParty // kdeGea
qca-qt5 = callPackage ../development/libraries/qca-qt5 { };
+ qcoro = callPackage ../development/libraries/qcoro { };
+
qcsxcad = callPackage ../development/libraries/science/electronics/qcsxcad { };
qmltermwidget = callPackage ../development/libraries/qmltermwidget {
diff --git a/third_party/nixpkgs/pkgs/top-level/release-haskell.nix b/third_party/nixpkgs/pkgs/top-level/release-haskell.nix
index 3c48db55a1..0cd73d6851 100644
--- a/third_party/nixpkgs/pkgs/top-level/release-haskell.nix
+++ b/third_party/nixpkgs/pkgs/top-level/release-haskell.nix
@@ -48,7 +48,7 @@ let
compilerNames = lib.mapAttrs (name: _: name) pkgs.haskell.packages;
# list of all compilers to test specific packages on
- all = with compilerNames; [
+ released = with compilerNames; [
ghc884
ghc8107
ghc901
@@ -304,18 +304,19 @@ let
# and to confirm that critical packages for the
# package sets (like Cabal, jailbreak-cabal) are
# working as expected.
- cabal-install = all;
- Cabal_3_6_2_0 = with compilerNames; [ ghc884 ghc8107 ghc901 ghc921 ];
- cabal2nix-unstable = all;
- funcmp = all;
- haskell-language-server = all;
- hoogle = all;
- hsdns = all;
- jailbreak-cabal = all;
- language-nix = all;
- nix-paths = all;
- titlecase = all;
- ghc-api-compat = all;
+ cabal-install = released ++ [ compilerNames.ghc921 ];
+ Cabal_3_6_2_0 = released ++ [ compilerNames.ghc921 ];
+ cabal2nix = released ++ [ compilerNames.ghc921 ];
+ cabal2nix-unstable = released ++ [ compilerNames.ghc921 ];
+ funcmp = released ++ [ compilerNames.ghc921 ];
+ haskell-language-server = released;
+ hoogle = released;
+ hsdns = released ++ [ compilerNames.ghc921 ];
+ jailbreak-cabal = released ++ [ compilerNames.ghc921 ];
+ language-nix = released ++ [ compilerNames.ghc921 ];
+ nix-paths = released ++ [ compilerNames.ghc921 ];
+ titlecase = released ++ [ compilerNames.ghc921 ];
+ ghc-api-compat = released;
})
{
mergeable = pkgs.releaseTools.aggregate {
diff --git a/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix b/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
index 18c75ebd95..4587f2548f 100644
--- a/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
@@ -206,10 +206,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jvrl7400fv7v2jjri1r7ilj3sri36hzipwwgpn5psib4c9c59c6";
+ sha256 = "0xwcnbwnbqq8jp92mvawn6y69cb53wsz84wwmk9vsfk1jjvqfw2z";
type = "gem";
};
- version = "0.1.1";
+ version = "0.2.0";
};
builder = {
groups = ["default"];
@@ -848,10 +848,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1bby4hbq96vnzcdbbybcbddin8dxdnj1ns758kcr4akykningqhh";
+ sha256 = "0kd7c61f28f810fgxg480j7457nlvqarza9c2ra0zhav0dd80288";
type = "gem";
};
- version = "0.14.0";
+ version = "0.15.0";
};
eventmachine = {
groups = ["default"];
@@ -868,10 +868,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1iykfw2j6dd26rhgid3a17zghrmbmi68ppf3a7cdkvii68p4f37a";
+ sha256 = "0g45ib20cjwkf4lzgm30cl6n7b6h1k8p6pdg4vh8s1rllrzrz342";
type = "gem";
};
- version = "0.85.0";
+ version = "0.87.0";
};
execjs = {
groups = ["default"];
@@ -1487,20 +1487,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci";
+ sha256 = "0a7p95md8j8lbgxx9dzygysxmrg1s80895f46f1y47k9kq9q56ry";
type = "gem";
};
- version = "2.5.1";
+ version = "2.6.0";
};
jwt = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "036i5fc09275ms49mw43mh4i9pwaap778ra2pmx06ipzyyjl6bfs";
+ sha256 = "0bg8pjx0mpvl10k6d8a6gc8dzlv2z5jkqcjbjcirnk032iriq838";
type = "gem";
};
- version = "2.2.3";
+ version = "2.3.0";
};
kramdown = {
groups = ["default"];
@@ -1704,10 +1704,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "173dp4vqvx1sl6aq83daxwn5xvb5rn3jgynjmb91swl7gmgp17yl";
+ sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5";
type = "gem";
};
- version = "1.1.1";
+ version = "1.1.2";
};
mini_portile2 = {
groups = ["default"];
@@ -1983,10 +1983,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0h4iarqdych6v4jm5s0ywkc01qspadz8sf6qn7pkqmszq4iqv67q";
+ sha256 = "0886fcc5bi0kc0rbma5fj3wa3hbg2nl7ivnbi2j995yzg36zq7xy";
type = "gem";
};
- version = "0.13.0";
+ version = "0.13.1";
};
pg = {
groups = ["default"];
@@ -2067,20 +2067,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ahk9a2a05985m0037gqlpha5vdkvmwhyk8v1shkbnwkkm30k0mq";
+ sha256 = "1xblxnrs0c5m326v7kgr32k4m00cl2ipcf5m0qvyisrw62vd5dbn";
type = "gem";
};
- version = "5.5.0";
+ version = "5.5.2";
};
racc = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g";
+ sha256 = "0la56m0z26j3mfn1a9lf2l03qx1xifanndf9p3vx1azf6sqy7v9d";
type = "gem";
};
- version = "1.5.2";
+ version = "1.6.0";
};
rack = {
groups = ["default"];
@@ -2256,10 +2256,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ig832dp0xmpp6a934nifzaj7wm9lzjxzasw911fagycs8p6m720";
+ sha256 = "03r9739q3vq38g456snf3rk9hadf955bs5im6qs6m69h19mrz2yw";
type = "gem";
};
- version = "4.4.0";
+ version = "4.5.1";
};
redis-rack = {
dependencies = ["rack" "redis-store"];
@@ -2330,10 +2330,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04ahv5gwfwdmwx6b7c0z91rrsfklvnqichgnqk1f9b9n6md3b8yw";
+ sha256 = "0z1qk9i18zma000cqd758av9ca0622ykwp2cwm1x4dv9c0vw03yg";
type = "gem";
};
- version = "4.2.2";
+ version = "4.2.3";
};
rouge = {
groups = ["default"];
@@ -2625,10 +2625,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0dxwkacc0scc1bqq10wc3v7wbh5j0jl5zcmw90kmfbgfjzl0drbr";
+ sha256 = "0fmk4fkmqnh033sdsvbb6r2dadir0f9zaq0z2jyx1wfnvv5712md";
type = "gem";
};
- version = "5.48.0";
+ version = "5.49.0";
};
sequel_pg = {
dependencies = ["pg" "sequel"];
@@ -2689,10 +2689,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "07an5s5xfg8mll0h9ihdc1n23k6n9anil9ca07rm77aiq6k0n0vy";
+ sha256 = "0wy8ws5n2gvxgkncbhrp4vkwjcbphcczw4k7y3g2wfl8fdmv5b4n";
type = "gem";
};
- version = "2.7.1";
+ version = "2.7.2";
};
slop = {
groups = ["default"];