diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 423865774b31..238ba161b58f 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -157,6 +157,12 @@
/pkgs/applications/editors/emacs @adisbladis
/pkgs/top-level/emacs-packages.nix @adisbladis
+# VimPlugins
+/pkgs/misc/vim-plugins @jonringer
+
+# VsCode Extensions
+/pkgs/misc/vscode-extensions @jonringer
+
# Prometheus exporter modules and tests
/nixos/modules/services/monitoring/prometheus/exporters.nix @WilliButz
/nixos/modules/services/monitoring/prometheus/exporters.xml @WilliButz
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index c6d50d9cb777..89c751f4db76 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -6,7 +6,7 @@
-- [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS)
+- [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS linux)
- Built on platform(s)
- [ ] NixOS
- [ ] macOS
diff --git a/doc/builders/fetchers.xml b/doc/builders/fetchers.xml
index 6f8990e8d16c..ff3988334916 100644
--- a/doc/builders/fetchers.xml
+++ b/doc/builders/fetchers.xml
@@ -3,15 +3,12 @@
xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="chap-pkgs-fetchers">
Fetchers
-
When using Nix, you will frequently need to download source code and other files from the internet. Nixpkgs comes with a few helper functions that allow you to fetch fixed-output derivations in a structured way.
-
The two fetcher primitives are fetchurl and fetchzip. Both of these have two required arguments, a URL and a hash. The hash is typically sha256, although many more hash algorithms are supported. Nixpkgs contributors are currently recommended to use sha256. This hash will be used by Nix to identify your source. A typical usage of fetchurl is provided below.
-
-
The main difference between fetchurl and fetchzip is in how they store the contents. fetchurl will store the unaltered contents of the URL within the Nix store. fetchzip on the other hand will decompress the archive for you, making files and directories directly accessible in the future. fetchzip can only be used with archives. Despite the name, fetchzip is not limited to .zip files and can also be used with any tarball.
-
fetchpatch works very similarly to fetchurl with the same arguments expected. It expects patch files as a source and and performs normalization on them before computing the checksum. For example it will remove comments or other unstable parts that are sometimes added by version control systems and can change over time.
-
Other fetcher functions allow you to add source code directly from a VCS such as subversion or git. These are mostly straightforward names based on the name of the command used with the VCS system. Because they give you a working repository, they act most like fetchzip.
-
@@ -88,11 +81,9 @@ stdenv.mkDerivation {
-
A number of fetcher functions wrap part of fetchurl and fetchzip. They are mainly convenience functions intended for commonly used destinations of source code in Nixpkgs. These wrapper fetchers are listed below.
-
diff --git a/doc/builders/packages/citrix.xml b/doc/builders/packages/citrix.xml
new file mode 100644
index 000000000000..c629dc9ee503
--- /dev/null
+++ b/doc/builders/packages/citrix.xml
@@ -0,0 +1,44 @@
+
+ Citrix Workspace
+
+
+
+
+ Please note that the citrix_receiver package has been deprecated since its development was discontinued by upstream and has been replaced by the citrix workspace app.
+
+
+ Citrix Receiver and Citrix Workspace App are a remote desktop viewers which provide access to XenDesktop installations.
+
+
+
+ Basic usage
+
+
+ The tarball archive needs to be downloaded manually as the license agreements of the vendor for Citrix Receiver or Citrix Workspace need to be accepted first. Then run nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz. With the archive available in the store the package can be built and installed with Nix.
+
+
+
+ Caution with nix-shell installs
+
+ It's recommended to install Citrix Receiver and/or Citrix Workspace using nix-env -i or globally to ensure that the .desktop files are installed properly into $XDG_CONFIG_DIRS. Otherwise it won't be possible to open .ica files automatically from the browser to start a Citrix connection.
+
+
+
+
+
+ Custom certificates
+
+
+ The Citrix Workspace App in nixpkgs trust several certificates from the Mozilla database by default. However several companies using Citrix might require their own corporate certificate. On distros with imperative packaging these certs can be stored easily in $ICAROOT, however this directory is a store path in nixpkgs. In order to work around this issue the package provides a simple mechanism to add custom certificates without rebuilding the entire package using symlinkJoin:
+
+ { config.allowUnfree = true; };
+let extraCerts = [ ./custom-cert-1.pem ./custom-cert-2.pem /* ... */ ]; in
+citrix_workspace.override {
+ inherit extraCerts;
+}]]>
+
+
+
+
diff --git a/doc/builders/packages/dlib.xml b/doc/builders/packages/dlib.xml
new file mode 100644
index 000000000000..5f768dd51b62
--- /dev/null
+++ b/doc/builders/packages/dlib.xml
@@ -0,0 +1,24 @@
+
+ DLib
+
+
+ DLib is a modern, C++-based toolkit which provides several machine learning algorithms.
+
+
+
+ Compiling without AVX support
+
+
+ Especially older CPUs don't support AVX (Advanced Vector Extensions) instructions that are used by DLib to optimize their algorithms.
+
+
+
+ On the affected hardware errors like Illegal instruction will occur. In those cases AVX support needs to be disabled:
+self: super: {
+ dlib = super.dlib.override { avxSupport = false; };
+}
+
+
+
diff --git a/doc/builders/packages/eclipse.xml b/doc/builders/packages/eclipse.xml
new file mode 100644
index 000000000000..fc5094ed8f36
--- /dev/null
+++ b/doc/builders/packages/eclipse.xml
@@ -0,0 +1,72 @@
+
+ Eclipse
+
+
+ The Nix expressions related to the Eclipse platform and IDE are in pkgs/applications/editors/eclipse.
+
+
+
+ Nixpkgs provides a number of packages that will install Eclipse in its various forms. These range from the bare-bones Eclipse Platform to the more fully featured Eclipse SDK or Scala-IDE packages and multiple version are often available. It is possible to list available Eclipse packages by issuing the command:
+
+$ nix-env -f '<nixpkgs>' -qaP -A eclipses --description
+
+ Once an Eclipse variant is installed it can be run using the eclipse command, as expected. From within Eclipse it is then possible to install plugins in the usual manner by either manually specifying an Eclipse update site or by installing the Marketplace Client plugin and using it to discover and install other plugins. This installation method provides an Eclipse installation that closely resemble a manually installed Eclipse.
+
+
+
+ If you prefer to install plugins in a more declarative manner then Nixpkgs also offer a number of Eclipse plugins that can be installed in an Eclipse environment. This type of environment is created using the function eclipseWithPlugins found inside the nixpkgs.eclipses attribute set. This function takes as argument { eclipse, plugins ? [], jvmArgs ? [] } where eclipse is a one of the Eclipse packages described above, plugins is a list of plugin derivations, and jvmArgs is a list of arguments given to the JVM running the Eclipse. For example, say you wish to install the latest Eclipse Platform with the popular Eclipse Color Theme plugin and also allow Eclipse to use more RAM. You could then add
+
+packageOverrides = pkgs: {
+ myEclipse = with pkgs.eclipses; eclipseWithPlugins {
+ eclipse = eclipse-platform;
+ jvmArgs = [ "-Xmx2048m" ];
+ plugins = [ plugins.color-theme ];
+ };
+}
+
+ to your Nixpkgs configuration (~/.config/nixpkgs/config.nix) and install it by running nix-env -f '<nixpkgs>' -iA myEclipse and afterward run Eclipse as usual. It is possible to find out which plugins are available for installation using eclipseWithPlugins by running
+
+$ nix-env -f '<nixpkgs>' -qaP -A eclipses.plugins --description
+
+
+
+
+ If there is a need to install plugins that are not available in Nixpkgs then it may be possible to define these plugins outside Nixpkgs using the buildEclipseUpdateSite and buildEclipsePlugin functions found in the nixpkgs.eclipses.plugins attribute set. Use the buildEclipseUpdateSite function to install a plugin distributed as an Eclipse update site. This function takes { name, src } as argument where src indicates the Eclipse update site archive. All Eclipse features and plugins within the downloaded update site will be installed. When an update site archive is not available then the buildEclipsePlugin function can be used to install a plugin that consists of a pair of feature and plugin JARs. This function takes an argument { name, srcFeature, srcPlugin } where srcFeature and srcPlugin are the feature and plugin JARs, respectively.
+
+
+
+ Expanding the previous example with two plugins using the above functions we have
+
+packageOverrides = pkgs: {
+ myEclipse = with pkgs.eclipses; eclipseWithPlugins {
+ eclipse = eclipse-platform;
+ jvmArgs = [ "-Xmx2048m" ];
+ plugins = [
+ plugins.color-theme
+ (plugins.buildEclipsePlugin {
+ name = "myplugin1-1.0";
+ srcFeature = fetchurl {
+ url = "http://…/features/myplugin1.jar";
+ sha256 = "123…";
+ };
+ srcPlugin = fetchurl {
+ url = "http://…/plugins/myplugin1.jar";
+ sha256 = "123…";
+ };
+ });
+ (plugins.buildEclipseUpdateSite {
+ name = "myplugin2-1.0";
+ src = fetchurl {
+ stripRoot = false;
+ url = "http://…/myplugin2.zip";
+ sha256 = "123…";
+ };
+ });
+ ];
+ };
+}
+
+
+
diff --git a/doc/builders/packages/elm.xml b/doc/builders/packages/elm.xml
new file mode 100644
index 000000000000..a067f6c7c70e
--- /dev/null
+++ b/doc/builders/packages/elm.xml
@@ -0,0 +1,17 @@
+
+ Elm
+
+
+ To start a development environment do nix-shell -p elmPackages.elm elmPackages.elm-format
+
+
+
+ To update Elm compiler, see nixpkgs/pkgs/development/compilers/elm/README.md.
+
+
+
+ To package Elm applications, read about elm2nix.
+
+
diff --git a/doc/packages/emacs.xml b/doc/builders/packages/emacs.xml
similarity index 52%
rename from doc/packages/emacs.xml
rename to doc/builders/packages/emacs.xml
index a9a26882c9cd..9cce7c40863a 100644
--- a/doc/packages/emacs.xml
+++ b/doc/builders/packages/emacs.xml
@@ -1,14 +1,14 @@
- Emacs
+ Emacs
-
- Configuring Emacs
+
+ Configuring Emacs
-
- The Emacs package comes with some extra helpers to make it easier to configure. emacsWithPackages allows you to manage packages from ELPA. This means that you will not have to install that packages from within Emacs. For instance, if you wanted to use company, counsel, flycheck, ivy, magit, projectile, and use-package you could use this as a ~/.config/nixpkgs/config.nix override:
-
+
+ The Emacs package comes with some extra helpers to make it easier to configure. emacsWithPackages allows you to manage packages from ELPA. This means that you will not have to install that packages from within Emacs. For instance, if you wanted to use company, counsel, flycheck, ivy, magit, projectile, and use-package you could use this as a ~/.config/nixpkgs/config.nix override:
+
{
@@ -26,9 +26,9 @@
}
-
- You can install it like any other packages via nix-env -iA myEmacs. However, this will only install those packages. It will not configure them for us. To do this, we need to provide a configuration file. Luckily, it is possible to do this from within Nix! By modifying the above example, we can make Emacs load a custom config file. The key is to create a package that provide a default.el file in /share/emacs/site-start/. Emacs knows to load this file automatically when it starts.
-
+
+ You can install it like any other packages via nix-env -iA myEmacs. However, this will only install those packages. It will not configure them for us. To do this, we need to provide a configuration file. Luckily, it is possible to do this from within Nix! By modifying the above example, we can make Emacs load a custom config file. The key is to create a package that provide a default.el file in /share/emacs/site-start/. Emacs knows to load this file automatically when it starts.
+
{
@@ -108,13 +108,13 @@ cp ${myEmacsConfig} $out/share/emacs/site-lisp/default.el
}
-
- This provides a fairly full Emacs start file. It will load in addition to the user's presonal config. You can always disable it by passing -q to the Emacs command.
-
+
+ This provides a fairly full Emacs start file. It will load in addition to the user's presonal config. You can always disable it by passing -q to the Emacs command.
+
-
- Sometimes emacsWithPackages is not enough, as this package set has some priorities imposed on packages (with the lowest priority assigned to Melpa Unstable, and the highest for packages manually defined in pkgs/top-level/emacs-packages.nix). But you can't control this priorities when some package is installed as a dependency. You can override it on per-package-basis, providing all the required dependencies manually - but it's tedious and there is always a possibility that an unwanted dependency will sneak in through some other package. To completely override such a package you can use overrideScope'.
-
+
+ Sometimes emacsWithPackages is not enough, as this package set has some priorities imposed on packages (with the lowest priority assigned to Melpa Unstable, and the highest for packages manually defined in pkgs/top-level/emacs-packages.nix). But you can't control this priorities when some package is installed as a dependency. You can override it on per-package-basis, providing all the required dependencies manually - but it's tedious and there is always a possibility that an unwanted dependency will sneak in through some other package. To completely override such a package you can use overrideScope'.
+
overrides = self: super: rec {
@@ -127,5 +127,5 @@ overrides = self: super: rec {
dante
])
-
-
\ No newline at end of file
+
+
diff --git a/doc/builders/packages/ibus.xml b/doc/builders/packages/ibus.xml
new file mode 100644
index 000000000000..2ed37903a273
--- /dev/null
+++ b/doc/builders/packages/ibus.xml
@@ -0,0 +1,57 @@
+
+ ibus-engines.typing-booster
+
+
+ This package is an ibus-based completion method to speed up typing.
+
+
+
+ Activating the engine
+
+
+ IBus needs to be configured accordingly to activate typing-booster. The configuration depends on the desktop manager in use. For detailed instructions, please refer to the upstream docs.
+
+
+
+ On NixOS you need to explicitly enable ibus with given engines before customizing your desktop to use typing-booster. This can be achieved using the ibus module:
+{ pkgs, ... }: {
+ i18n.inputMethod = {
+ enabled = "ibus";
+ ibus.engines = with pkgs.ibus-engines; [ typing-booster ];
+ };
+}
+
+
+
+
+ Using custom hunspell dictionaries
+
+
+ The IBus engine is based on hunspell to support completion in many languages. By default the dictionaries de-de, en-us, fr-moderne es-es, it-it, sv-se and sv-fi are in use. To add another dictionary, the package can be overridden like this:
+ibus-engines.typing-booster.override {
+ langs = [ "de-at" "en-gb" ];
+}
+
+
+
+ Note: each language passed to langs must be an attribute name in pkgs.hunspellDicts.
+
+
+
+
+ Built-in emoji picker
+
+
+ The ibus-engines.typing-booster package contains a program named emoji-picker. To display all emojis correctly, a special font such as noto-fonts-emoji is needed:
+
+
+
+ On NixOS it can be installed using the following expression:
+{ pkgs, ... }: {
+ fonts.fonts = with pkgs; [ noto-fonts-emoji ];
+}
+
+
+
diff --git a/doc/packages/index.xml b/doc/builders/packages/index.xml
similarity index 100%
rename from doc/packages/index.xml
rename to doc/builders/packages/index.xml
diff --git a/doc/packages/kakoune.xml b/doc/builders/packages/kakoune.xml
similarity index 72%
rename from doc/packages/kakoune.xml
rename to doc/builders/packages/kakoune.xml
index fd40dad7ca87..728d40dacc92 100644
--- a/doc/packages/kakoune.xml
+++ b/doc/builders/packages/kakoune.xml
@@ -1,14 +1,14 @@
- Kakoune
+ Kakoune
-
- Kakoune can be built to autoload plugins:
+
+ Kakoune can be built to autoload plugins:
(kakoune.override {
configure = {
plugins = with pkgs.kakounePlugins; [ parinfer-rust ];
};
})
-
-
\ No newline at end of file
+
+
diff --git a/doc/builders/packages/linux.xml b/doc/builders/packages/linux.xml
new file mode 100644
index 000000000000..72d0e21493b3
--- /dev/null
+++ b/doc/builders/packages/linux.xml
@@ -0,0 +1,85 @@
+
+ Linux kernel
+
+
+ The Nix expressions to build the Linux kernel are in pkgs/os-specific/linux/kernel.
+
+
+
+ The function that builds the kernel has an argument kernelPatches which should be a list of {name, patch, extraConfig} attribute sets, where name is the name of the patch (which is included in the kernel’s meta.description attribute), patch is the patch itself (possibly compressed), and extraConfig (optional) is a string specifying extra options to be concatenated to the kernel configuration file (.config).
+
+
+
+ The kernel derivation exports an attribute features specifying whether optional functionality is or isn’t enabled. This is used in NixOS to implement kernel-specific behaviour. For instance, if the kernel has the iwlwifi feature (i.e. has built-in support for Intel wireless chipsets), then NixOS doesn’t have to build the external iwlwifi package:
+
+modulesTree = [kernel]
+ ++ pkgs.lib.optional (!kernel.features ? iwlwifi) kernelPackages.iwlwifi
+ ++ ...;
+
+
+
+
+ How to add a new (major) version of the Linux kernel to Nixpkgs:
+
+
+
+ Copy the old Nix expression (e.g. linux-2.6.21.nix) to the new one (e.g. linux-2.6.22.nix) and update it.
+
+
+
+
+ Add the new kernel to all-packages.nix (e.g., create an attribute kernel_2_6_22).
+
+
+
+
+ Now we’re going to update the kernel configuration. First unpack the kernel. Then for each supported platform (i686, x86_64, uml) do the following:
+
+
+
+ Make an copy from the old config (e.g. config-2.6.21-i686-smp) to the new one (e.g. config-2.6.22-i686-smp).
+
+
+
+
+ Copy the config file for this platform (e.g. config-2.6.22-i686-smp) to .config in the kernel source tree.
+
+
+
+
+ Run make oldconfig ARCH={i386,x86_64,um} and answer all questions. (For the uml configuration, also add SHELL=bash.) Make sure to keep the configuration consistent between platforms (i.e. don’t enable some feature on i686 and disable it on x86_64).
+
+
+
+
+ If needed you can also run make menuconfig:
+
+$ nix-env -i ncurses
+$ export NIX_CFLAGS_LINK=-lncurses
+$ make menuconfig ARCH=arch
+
+
+
+
+ Copy .config over the new config file (e.g. config-2.6.22-i686-smp).
+
+
+
+
+
+
+
+ Test building the kernel: nix-build -A kernel_2_6_22. If it compiles, ship it! For extra credit, try booting NixOS with it.
+
+
+
+
+ It may be that the new kernel requires updating the external kernel modules and kernel-dependent packages listed in the linuxPackagesFor function in all-packages.nix (such as the NVIDIA drivers, AUFS, etc.). If the updated packages aren’t backwards compatible with older kernels, you may need to keep the older versions around.
+
+
+
+
+
diff --git a/doc/packages/locales.xml b/doc/builders/packages/locales.xml
similarity index 98%
rename from doc/packages/locales.xml
rename to doc/builders/packages/locales.xml
index 15954495e217..44fdef034e77 100644
--- a/doc/packages/locales.xml
+++ b/doc/builders/packages/locales.xml
@@ -10,4 +10,4 @@
On non-NixOS distributions this variable is obviously not set. This can cause regressions in language support or even crashes in some Nixpkgs-provided programs. The simplest way to mitigate this problem is exporting the LOCALE_ARCHIVE variable pointing to ${glibcLocales}/lib/locale/locale-archive. The drawback (and the reason this is not the default) is the relatively large (a hundred MiB) size of the full set of locales. It is possible to build a custom set of locales by overriding parameters allLocales and locales of the package.
-
\ No newline at end of file
+
diff --git a/doc/builders/packages/nginx.xml b/doc/builders/packages/nginx.xml
new file mode 100644
index 000000000000..65854ba02366
--- /dev/null
+++ b/doc/builders/packages/nginx.xml
@@ -0,0 +1,25 @@
+
+ Nginx
+
+
+ Nginx is a reverse proxy and lightweight webserver.
+
+
+
+ ETags on static files served from the Nix store
+
+
+ HTTP has a couple different mechanisms for caching to prevent clients from having to download the same content repeatedly if a resource has not changed since the last time it was requested. When nginx is used as a server for static files, it implements the caching mechanism based on the Last-Modified response header automatically; unfortunately, it works by using filesystem timestamps to determine the value of the Last-Modified header. This doesn't give the desired behavior when the file is in the Nix store, because all file timestamps are set to 0 (for reasons related to build reproducibility).
+
+
+
+ Fortunately, HTTP supports an alternative (and more effective) caching mechanism: the ETag response header. The value of the ETag header specifies some identifier for the particular content that the server is sending (e.g. a hash). When a client makes a second request for the same resource, it sends that value back in an If-None-Match header. If the ETag value is unchanged, then the server does not need to resend the content.
+
+
+
+ As of NixOS 19.09, the nginx package in Nixpkgs is patched such that when nginx serves a file out of /nix/store, the hash in the store path is used as the ETag header in the HTTP response, thus providing proper caching functionality. This happens automatically; you do not need to do modify any configuration to get this behavior.
+
+
+
diff --git a/doc/builders/packages/opengl.xml b/doc/builders/packages/opengl.xml
new file mode 100644
index 000000000000..5f4433a28844
--- /dev/null
+++ b/doc/builders/packages/opengl.xml
@@ -0,0 +1,9 @@
+
+ OpenGL
+
+
+ Packages that use OpenGL have NixOS desktop as their primary target. The current solution for loading the GPU-specific drivers is based on libglvnd and looks for the driver implementation in LD_LIBRARY_PATH. If you are using a non-NixOS GNU/Linux/X11 desktop with free software video drivers, consider launching OpenGL-dependent programs from Nixpkgs with Nixpkgs versions of libglvnd and mesa_drivers in LD_LIBRARY_PATH. For proprietary video drivers you might have luck with also adding the corresponding video driver package.
+
+
diff --git a/doc/builders/packages/shell-helpers.xml b/doc/builders/packages/shell-helpers.xml
new file mode 100644
index 000000000000..cb70d527d67b
--- /dev/null
+++ b/doc/builders/packages/shell-helpers.xml
@@ -0,0 +1,25 @@
+
+ Interactive shell helpers
+
+
+ Some packages provide the shell integration to be more useful. But unlike other systems, nix doesn't have a standard share directory location. This is why a bunch PACKAGE-share scripts are shipped that print the location of the corresponding shared folder. Current list of such packages is as following:
+
+
+
+ autojump: autojump-share
+
+
+
+
+ fzf: fzf-share
+
+
+
+ E.g. autojump can then used in the .bashrc like this:
+
+ source "$(autojump-share)/autojump.bash"
+
+
+
diff --git a/doc/builders/packages/steam.xml b/doc/builders/packages/steam.xml
new file mode 100644
index 000000000000..8dfede59ac1b
--- /dev/null
+++ b/doc/builders/packages/steam.xml
@@ -0,0 +1,131 @@
+
+ Steam
+
+
+ Steam in Nix
+
+
+ Steam is distributed as a .deb file, for now only as an i686 package (the amd64 package only has documentation). When unpacked, it has a script called steam that in Ubuntu (their target distro) would go to /usr/bin . When run for the first time, this script copies some files to the user's home, which include another script that is the ultimate responsible for launching the steam binary, which is also in $HOME.
+
+
+
+ Nix problems and constraints:
+
+
+
+ We don't have /bin/bash and many scripts point there. Similarly for /usr/bin/python .
+
+
+
+
+ We don't have the dynamic loader in /lib .
+
+
+
+
+ The steam.sh script in $HOME can not be patched, as it is checked and rewritten by steam.
+
+
+
+
+ The steam binary cannot be patched, it's also checked.
+
+
+
+
+
+
+ The current approach to deploy Steam in NixOS is composing a FHS-compatible chroot environment, as documented here. This allows us to have binaries in the expected paths without disrupting the system, and to avoid patching them to work in a non FHS environment.
+
+
+
+
+ How to play
+
+
+ For 64-bit systems it's important to have
+hardware.opengl.driSupport32Bit = true;
+ in your /etc/nixos/configuration.nix. You'll also need
+hardware.pulseaudio.support32Bit = true;
+ if you are using PulseAudio - this will enable 32bit ALSA apps integration. To use the Steam controller or other Steam supported controllers such as the DualShock 4 or Nintendo Switch Pro, you need to add
+hardware.steam-hardware.enable = true;
+ to your configuration.
+
+
+
+
+ Troubleshooting
+
+
+
+
+
+ Steam fails to start. What do I do?
+
+
+
+ Try to run
+strace steam
+ to see what is causing steam to fail.
+
+
+
+
+
+ Using the FOSS Radeon or nouveau (nvidia) drivers
+
+
+
+
+
+ The newStdcpp parameter was removed since NixOS 17.09 and should not be needed anymore.
+
+
+
+
+ Steam ships statically linked with a version of libcrypto that conflics with the one dynamically loaded by radeonsi_dri.so. If you get the error
+steam.sh: line 713: 7842 Segmentation fault (core dumped)
+ have a look at this pull request.
+
+
+
+
+
+
+
+ Java
+
+
+
+
+
+ There is no java in steam chrootenv by default. If you get a message like
+/home/foo/.local/share/Steam/SteamApps/common/towns/towns.sh: line 1: java: command not found
+ You need to add
+ steam.override { withJava = true; };
+ to your configuration.
+
+
+
+
+
+
+
+
+
+
+ steam-run
+
+
+ The FHS-compatible chroot used for steam can also be used to run other linux games that expect a FHS environment. To do it, add
+pkgs.(steam.override {
+ nativeOnly = true;
+ newStdcpp = true;
+ }).run
+ to your configuration, rebuild, and run the game with
+steam-run ./foo
+
+
+
diff --git a/doc/packages/unfree.xml b/doc/builders/packages/unfree.xml
similarity index 98%
rename from doc/packages/unfree.xml
rename to doc/builders/packages/unfree.xml
index b2d8402005e9..3d4f199f8fb0 100644
--- a/doc/packages/unfree.xml
+++ b/doc/builders/packages/unfree.xml
@@ -10,4 +10,4 @@
Fine-grained control is possible by defining allowUnfreePredicate function in config; it takes the mkDerivation parameter attrset and returns true for unfree packages that should be allowed.
-
\ No newline at end of file
+
diff --git a/doc/builders/packages/weechat.xml b/doc/builders/packages/weechat.xml
new file mode 100644
index 000000000000..a110d3f491c7
--- /dev/null
+++ b/doc/builders/packages/weechat.xml
@@ -0,0 +1,85 @@
+
+ Weechat
+
+
+ Weechat can be configured to include your choice of plugins, reducing its closure size from the default configuration which includes all available plugins. To make use of this functionality, install an expression that overrides its configuration such as
+weechat.override {configure = {availablePlugins, ...}: {
+ plugins = with availablePlugins; [ python perl ];
+ }
+}
+ If the configure function returns an attrset without the plugins attribute, availablePlugins will be used automatically.
+
+
+
+ The plugins currently available are python, perl, ruby, guile, tcl and lua.
+
+
+
+ The python and perl plugins allows the addition of extra libraries. For instance, the inotify.py script in weechat-scripts requires D-Bus or libnotify, and the fish.py script requires pycrypto. To use these scripts, use the plugin's withPackages attribute:
+weechat.override { configure = {availablePlugins, ...}: {
+ plugins = with availablePlugins; [
+ (python.withPackages (ps: with ps; [ pycrypto python-dbus ]))
+ ];
+ };
+}
+
+
+
+
+ In order to also keep all default plugins installed, it is possible to use the following method:
+weechat.override { configure = { availablePlugins, ... }: {
+ plugins = builtins.attrValues (availablePlugins // {
+ python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]);
+ });
+}; }
+
+
+
+
+ WeeChat allows to set defaults on startup using the --run-command. The configure method can be used to pass commands to the program:
+weechat.override {
+ configure = { availablePlugins, ... }: {
+ init = ''
+ /set foo bar
+ /server add freenode chat.freenode.org
+ '';
+ };
+}
+ Further values can be added to the list of commands when running weechat --run-command "your-commands".
+
+
+
+ Additionally it's possible to specify scripts to be loaded when starting weechat. These will be loaded before the commands from init:
+weechat.override {
+ configure = { availablePlugins, ... }: {
+ scripts = with pkgs.weechatScripts; [
+ weechat-xmpp weechat-matrix-bridge wee-slack
+ ];
+ init = ''
+ /set plugins.var.python.jabber.key "val"
+ '':
+ };
+}
+
+
+
+ In nixpkgs there's a subpackage which contains derivations for WeeChat scripts. Such derivations expect a passthru.scripts attribute which contains a list of all scripts inside the store path. Furthermore all scripts have to live in $out/share. An exemplary derivation looks like this:
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+ name = "exemplary-weechat-script";
+ src = fetchurl {
+ url = "https://scripts.tld/your-scripts.tar.gz";
+ sha256 = "...";
+ };
+ passthru.scripts = [ "foo.py" "bar.lua" ];
+ installPhase = ''
+ mkdir $out/share
+ cp foo.py $out/share
+ cp bar.lua $out/share
+ '';
+}
+
+
diff --git a/doc/builders/packages/xorg.xml b/doc/builders/packages/xorg.xml
new file mode 100644
index 000000000000..ebf4930cc097
--- /dev/null
+++ b/doc/builders/packages/xorg.xml
@@ -0,0 +1,34 @@
+
+ X.org
+
+
+ The Nix expressions for the X.org packages reside in pkgs/servers/x11/xorg/default.nix. This file is automatically generated from lists of tarballs in an X.org release. As such it should not be modified directly; rather, you should modify the lists, the generator script or the file pkgs/servers/x11/xorg/overrides.nix, in which you can override or add to the derivations produced by the generator.
+
+
+
+ The generator is invoked as follows:
+
+$ cd pkgs/servers/x11/xorg
+$ cat tarballs-7.5.list extra.list old.list \
+ | perl ./generate-expr-from-tarballs.pl
+
+ For each of the tarballs in the .list files, the script downloads it, unpacks it, and searches its configure.ac and *.pc.in files for dependencies. This information is used to generate default.nix. The generator caches downloaded tarballs between runs. Pay close attention to the NOT FOUND: name messages at the end of the run, since they may indicate missing dependencies. (Some might be optional dependencies, however.)
+
+
+
+ A file like tarballs-7.5.list contains all tarballs in a X.org release. It can be generated like this:
+
+$ export i="mirror://xorg/X11R7.4/src/everything/"
+$ cat $(PRINT_PATH=1 nix-prefetch-url $i | tail -n 1) \
+ | perl -e 'while (<>) { if (/(href|HREF)="([^"]*.bz2)"/) { print "$ENV{'i'}$2\n"; }; }' \
+ | sort > tarballs-7.4.list
+
+ extra.list contains libraries that aren’t part of X.org proper, but are closely related to it, such as libxcb. old.list contains some packages that were removed from X.org, but are still needed by some people or by other packages (such as imake).
+
+
+
+ If the expression for a package requires derivation attributes that the generator cannot figure out automatically (say, patches or a postInstall hook), you should modify pkgs/servers/x11/xorg/overrides.nix.
+
+
diff --git a/doc/builders/special.xml b/doc/builders/special.xml
index 56d98f025278..15fdba9a0419 100644
--- a/doc/builders/special.xml
+++ b/doc/builders/special.xml
@@ -8,5 +8,3 @@
-
-
diff --git a/doc/builders/trivial-builders.xml b/doc/builders/trivial-builders.xml
index c99425620b16..df0e38da1aa2 100644
--- a/doc/builders/trivial-builders.xml
+++ b/doc/builders/trivial-builders.xml
@@ -3,11 +3,9 @@
xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="chap-trivial-builders">
Trivial builders
-
Nixpkgs provides a couple of functions that help with building derivations. The most important one, stdenv.mkDerivation, has already been documented above. The following functions wrap stdenv.mkDerivation, making it easier to use in certain cases.
-
diff --git a/doc/coding-conventions.xml b/doc/contributing/coding-conventions.xml
similarity index 100%
rename from doc/coding-conventions.xml
rename to doc/contributing/coding-conventions.xml
diff --git a/doc/contributing-to-documentation.xml b/doc/contributing/contributing-to-documentation.xml
similarity index 100%
rename from doc/contributing-to-documentation.xml
rename to doc/contributing/contributing-to-documentation.xml
diff --git a/doc/quick-start.xml b/doc/contributing/quick-start.xml
similarity index 100%
rename from doc/quick-start.xml
rename to doc/contributing/quick-start.xml
diff --git a/doc/reviewing-contributions.xml b/doc/contributing/reviewing-contributions.xml
similarity index 100%
rename from doc/reviewing-contributions.xml
rename to doc/contributing/reviewing-contributions.xml
diff --git a/doc/submitting-changes.xml b/doc/contributing/submitting-changes.xml
similarity index 92%
rename from doc/submitting-changes.xml
rename to doc/contributing/submitting-changes.xml
index 2c7defb81749..f09711624117 100644
--- a/doc/submitting-changes.xml
+++ b/doc/contributing/submitting-changes.xml
@@ -375,31 +375,32 @@ Additional information.
Master branch
-
-
-
-
- It should only see non-breaking commits that do not cause mass rebuilds.
-
-
-
+
+ The master branch is the main development branch.
+ It should only see non-breaking commits that do not cause mass rebuilds.
+
Staging branch
+
+ The staging branch is a development branch where mass-rebuilds go.
+ It should only see non-breaking mass-rebuild commits.
+ That means it is not to be used for testing, and changes must have been well tested already.
+ If the branch is already in a broken state, please refrain from adding extra new breakages.
+
+
-
-
-
- It's only for non-breaking mass-rebuild commits. That means it's not to be used for testing, and changes must have been well tested already. Read policy here.
-
-
-
-
- If the branch is already in a broken state, please refrain from adding extra new breakages. Stabilize it for a few days, merge into master, then resume development on staging. Keep an eye on the staging evaluations here. If any fixes for staging happen to be already in master, then master can be merged into staging.
-
-
-
+
+ Staging-next branch
+
+ The staging-next branch is for stabilizing mass-rebuilds submitted to the staging branch prior to merging them into master.
+ Mass-rebuilds should go via the staging branch.
+ It should only see non-breaking commits that are fixing issues blocking it from being merged into the master branch.
+
+
+ If the branch is already in a broken state, please refrain from adding extra new breakages. Stabilize it for a few days and then merge into master.
+
diff --git a/doc/manual.xml b/doc/manual.xml
index de2c70eaf352..1f69872d2a72 100644
--- a/doc/manual.xml
+++ b/doc/manual.xml
@@ -5,21 +5,21 @@
Version
-
+
Using Nixpkgs
-
-
-
+
+
+
Standard environment
-
-
-
-
-
+
+
+
+
+
Builders
@@ -28,14 +28,14 @@
-
+
Contributing to Nixpkgs
-
-
-
-
-
+
+
+
+
+
diff --git a/doc/packages/citrix.xml b/doc/packages/citrix.xml
deleted file mode 100644
index bc685f97932d..000000000000
--- a/doc/packages/citrix.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
- Citrix Workspace
-
-
-
-
- Please note that the citrix_receiver package has been deprecated since its development was discontinued by upstream and has been replaced by the citrix workspace app.
-
-
- Citrix Receiver and Citrix Workspace App are a remote desktop viewers which provide access to XenDesktop installations.
-
-
-
- Basic usage
-
-
- The tarball archive needs to be downloaded manually as the license agreements of the vendor for Citrix Receiver or Citrix Workspace need to be accepted first. Then run nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz. With the archive available in the store the package can be built and installed with Nix.
-
-
-
- Caution with nix-shell installs
-
- It's recommended to install Citrix Receiver and/or Citrix Workspace using nix-env -i or globally to ensure that the .desktop files are installed properly into $XDG_CONFIG_DIRS. Otherwise it won't be possible to open .ica files automatically from the browser to start a Citrix connection.
-
-
-
-
-
- Custom certificates
-
-
- The Citrix Workspace App in nixpkgs trust several certificates from the Mozilla database by default. However several companies using Citrix might require their own corporate certificate. On distros with imperative packaging these certs can be stored easily in $ICAROOT, however this directory is a store path in nixpkgs. In order to work around this issue the package provides a simple mechanism to add custom certificates without rebuilding the entire package using symlinkJoin:
-
- { config.allowUnfree = true; };
-let extraCerts = [ ./custom-cert-1.pem ./custom-cert-2.pem /* ... */ ]; in
-citrix_workspace.override {
- inherit extraCerts;
-}]]>
-
-
-
-
\ No newline at end of file
diff --git a/doc/packages/dlib.xml b/doc/packages/dlib.xml
deleted file mode 100644
index 98c211cf9df7..000000000000
--- a/doc/packages/dlib.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
- DLib
-
-
- DLib is a modern, C++-based toolkit which provides several machine learning algorithms.
-
-
-
- Compiling without AVX support
-
-
- Especially older CPUs don't support AVX (Advanced Vector Extensions) instructions that are used by DLib to optimize their algorithms.
-
-
-
- On the affected hardware errors like Illegal instruction will occur. In those cases AVX support needs to be disabled:
-self: super: {
- dlib = super.dlib.override { avxSupport = false; };
-}
-
-
-
\ No newline at end of file
diff --git a/doc/packages/eclipse.xml b/doc/packages/eclipse.xml
deleted file mode 100644
index 968c58d3b5bb..000000000000
--- a/doc/packages/eclipse.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-
- Eclipse
-
-
- The Nix expressions related to the Eclipse platform and IDE are in pkgs/applications/editors/eclipse.
-
-
-
- Nixpkgs provides a number of packages that will install Eclipse in its various forms. These range from the bare-bones Eclipse Platform to the more fully featured Eclipse SDK or Scala-IDE packages and multiple version are often available. It is possible to list available Eclipse packages by issuing the command:
-
-$ nix-env -f '<nixpkgs>' -qaP -A eclipses --description
-
- Once an Eclipse variant is installed it can be run using the eclipse command, as expected. From within Eclipse it is then possible to install plugins in the usual manner by either manually specifying an Eclipse update site or by installing the Marketplace Client plugin and using it to discover and install other plugins. This installation method provides an Eclipse installation that closely resemble a manually installed Eclipse.
-
-
-
- If you prefer to install plugins in a more declarative manner then Nixpkgs also offer a number of Eclipse plugins that can be installed in an Eclipse environment. This type of environment is created using the function eclipseWithPlugins found inside the nixpkgs.eclipses attribute set. This function takes as argument { eclipse, plugins ? [], jvmArgs ? [] } where eclipse is a one of the Eclipse packages described above, plugins is a list of plugin derivations, and jvmArgs is a list of arguments given to the JVM running the Eclipse. For example, say you wish to install the latest Eclipse Platform with the popular Eclipse Color Theme plugin and also allow Eclipse to use more RAM. You could then add
-
-packageOverrides = pkgs: {
- myEclipse = with pkgs.eclipses; eclipseWithPlugins {
- eclipse = eclipse-platform;
- jvmArgs = [ "-Xmx2048m" ];
- plugins = [ plugins.color-theme ];
- };
-}
-
- to your Nixpkgs configuration (~/.config/nixpkgs/config.nix) and install it by running nix-env -f '<nixpkgs>' -iA myEclipse and afterward run Eclipse as usual. It is possible to find out which plugins are available for installation using eclipseWithPlugins by running
-
-$ nix-env -f '<nixpkgs>' -qaP -A eclipses.plugins --description
-
-
-
-
- If there is a need to install plugins that are not available in Nixpkgs then it may be possible to define these plugins outside Nixpkgs using the buildEclipseUpdateSite and buildEclipsePlugin functions found in the nixpkgs.eclipses.plugins attribute set. Use the buildEclipseUpdateSite function to install a plugin distributed as an Eclipse update site. This function takes { name, src } as argument where src indicates the Eclipse update site archive. All Eclipse features and plugins within the downloaded update site will be installed. When an update site archive is not available then the buildEclipsePlugin function can be used to install a plugin that consists of a pair of feature and plugin JARs. This function takes an argument { name, srcFeature, srcPlugin } where srcFeature and srcPlugin are the feature and plugin JARs, respectively.
-
-
-
- Expanding the previous example with two plugins using the above functions we have
-
-packageOverrides = pkgs: {
- myEclipse = with pkgs.eclipses; eclipseWithPlugins {
- eclipse = eclipse-platform;
- jvmArgs = [ "-Xmx2048m" ];
- plugins = [
- plugins.color-theme
- (plugins.buildEclipsePlugin {
- name = "myplugin1-1.0";
- srcFeature = fetchurl {
- url = "http://…/features/myplugin1.jar";
- sha256 = "123…";
- };
- srcPlugin = fetchurl {
- url = "http://…/plugins/myplugin1.jar";
- sha256 = "123…";
- };
- });
- (plugins.buildEclipseUpdateSite {
- name = "myplugin2-1.0";
- src = fetchurl {
- stripRoot = false;
- url = "http://…/myplugin2.zip";
- sha256 = "123…";
- };
- });
- ];
- };
-}
-
-
-
\ No newline at end of file
diff --git a/doc/packages/elm.xml b/doc/packages/elm.xml
deleted file mode 100644
index 8ee052852654..000000000000
--- a/doc/packages/elm.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
- Elm
-
-
- To start a development environment do nix-shell -p elmPackages.elm elmPackages.elm-format
-
-
-
- To update Elm compiler, see nixpkgs/pkgs/development/compilers/elm/README.md.
-
-
-
- To package Elm applications, read about elm2nix.
-
-
\ No newline at end of file
diff --git a/doc/packages/ibus.xml b/doc/packages/ibus.xml
deleted file mode 100644
index 561d4d2eabdc..000000000000
--- a/doc/packages/ibus.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
- ibus-engines.typing-booster
-
-
- This package is an ibus-based completion method to speed up typing.
-
-
-
- Activating the engine
-
-
- IBus needs to be configured accordingly to activate typing-booster. The configuration depends on the desktop manager in use. For detailed instructions, please refer to the upstream docs.
-
-
-
- On NixOS you need to explicitly enable ibus with given engines before customizing your desktop to use typing-booster. This can be achieved using the ibus module:
-{ pkgs, ... }: {
- i18n.inputMethod = {
- enabled = "ibus";
- ibus.engines = with pkgs.ibus-engines; [ typing-booster ];
- };
-}
-
-
-
-
- Using custom hunspell dictionaries
-
-
- The IBus engine is based on hunspell to support completion in many languages. By default the dictionaries de-de, en-us, fr-moderne es-es, it-it, sv-se and sv-fi are in use. To add another dictionary, the package can be overridden like this:
-ibus-engines.typing-booster.override {
- langs = [ "de-at" "en-gb" ];
-}
-
-
-
- Note: each language passed to langs must be an attribute name in pkgs.hunspellDicts.
-
-
-
-
- Built-in emoji picker
-
-
- The ibus-engines.typing-booster package contains a program named emoji-picker. To display all emojis correctly, a special font such as noto-fonts-emoji is needed:
-
-
-
- On NixOS it can be installed using the following expression:
-{ pkgs, ... }: {
- fonts.fonts = with pkgs; [ noto-fonts-emoji ];
-}
-
-
-
\ No newline at end of file
diff --git a/doc/packages/linux.xml b/doc/packages/linux.xml
deleted file mode 100644
index 3adfacb6e457..000000000000
--- a/doc/packages/linux.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
- Linux kernel
-
-
- The Nix expressions to build the Linux kernel are in pkgs/os-specific/linux/kernel.
-
-
-
- The function that builds the kernel has an argument kernelPatches which should be a list of {name, patch, extraConfig} attribute sets, where name is the name of the patch (which is included in the kernel’s meta.description attribute), patch is the patch itself (possibly compressed), and extraConfig (optional) is a string specifying extra options to be concatenated to the kernel configuration file (.config).
-
-
-
- The kernel derivation exports an attribute features specifying whether optional functionality is or isn’t enabled. This is used in NixOS to implement kernel-specific behaviour. For instance, if the kernel has the iwlwifi feature (i.e. has built-in support for Intel wireless chipsets), then NixOS doesn’t have to build the external iwlwifi package:
-
-modulesTree = [kernel]
- ++ pkgs.lib.optional (!kernel.features ? iwlwifi) kernelPackages.iwlwifi
- ++ ...;
-
-
-
-
- How to add a new (major) version of the Linux kernel to Nixpkgs:
-
-
-
- Copy the old Nix expression (e.g. linux-2.6.21.nix) to the new one (e.g. linux-2.6.22.nix) and update it.
-
-
-
-
- Add the new kernel to all-packages.nix (e.g., create an attribute kernel_2_6_22).
-
-
-
-
- Now we’re going to update the kernel configuration. First unpack the kernel. Then for each supported platform (i686, x86_64, uml) do the following:
-
-
-
- Make an copy from the old config (e.g. config-2.6.21-i686-smp) to the new one (e.g. config-2.6.22-i686-smp).
-
-
-
-
- Copy the config file for this platform (e.g. config-2.6.22-i686-smp) to .config in the kernel source tree.
-
-
-
-
- Run make oldconfig ARCH={i386,x86_64,um} and answer all questions. (For the uml configuration, also add SHELL=bash.) Make sure to keep the configuration consistent between platforms (i.e. don’t enable some feature on i686 and disable it on x86_64).
-
-
-
-
- If needed you can also run make menuconfig:
-
-$ nix-env -i ncurses
-$ export NIX_CFLAGS_LINK=-lncurses
-$ make menuconfig ARCH=arch
-
-
-
-
- Copy .config over the new config file (e.g. config-2.6.22-i686-smp).
-
-
-
-
-
-
-
- Test building the kernel: nix-build -A kernel_2_6_22. If it compiles, ship it! For extra credit, try booting NixOS with it.
-
-
-
-
- It may be that the new kernel requires updating the external kernel modules and kernel-dependent packages listed in the linuxPackagesFor function in all-packages.nix (such as the NVIDIA drivers, AUFS, etc.). If the updated packages aren’t backwards compatible with older kernels, you may need to keep the older versions around.
-
-
-
-
-
\ No newline at end of file
diff --git a/doc/packages/nginx.xml b/doc/packages/nginx.xml
deleted file mode 100644
index 921a6add2a0a..000000000000
--- a/doc/packages/nginx.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
- Nginx
-
-
- Nginx is a reverse proxy and lightweight webserver.
-
-
-
- ETags on static files served from the Nix store
-
-
- HTTP has a couple different mechanisms for caching to prevent clients from having to download the same content repeatedly if a resource has not changed since the last time it was requested. When nginx is used as a server for static files, it implements the caching mechanism based on the Last-Modified response header automatically; unfortunately, it works by using filesystem timestamps to determine the value of the Last-Modified header. This doesn't give the desired behavior when the file is in the Nix store, because all file timestamps are set to 0 (for reasons related to build reproducibility).
-
-
-
- Fortunately, HTTP supports an alternative (and more effective) caching mechanism: the ETag response header. The value of the ETag header specifies some identifier for the particular content that the server is sending (e.g. a hash). When a client makes a second request for the same resource, it sends that value back in an If-None-Match header. If the ETag value is unchanged, then the server does not need to resend the content.
-
-
-
- As of NixOS 19.09, the nginx package in Nixpkgs is patched such that when nginx serves a file out of /nix/store, the hash in the store path is used as the ETag header in the HTTP response, thus providing proper caching functionality. This happens automatically; you do not need to do modify any configuration to get this behavior.
-
-
-
\ No newline at end of file
diff --git a/doc/packages/opengl.xml b/doc/packages/opengl.xml
deleted file mode 100644
index fcb624736b09..000000000000
--- a/doc/packages/opengl.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
- OpenGL
-
-
- Packages that use OpenGL have NixOS desktop as their primary target. The current solution for loading the GPU-specific drivers is based on libglvnd and looks for the driver implementation in LD_LIBRARY_PATH. If you are using a non-NixOS GNU/Linux/X11 desktop with free software video drivers, consider launching OpenGL-dependent programs from Nixpkgs with Nixpkgs versions of libglvnd and mesa_drivers in LD_LIBRARY_PATH. For proprietary video drivers you might have luck with also adding the corresponding video driver package.
-
-
\ No newline at end of file
diff --git a/doc/packages/shell-helpers.xml b/doc/packages/shell-helpers.xml
deleted file mode 100644
index 53416ce7e171..000000000000
--- a/doc/packages/shell-helpers.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
- Interactive shell helpers
-
-
- Some packages provide the shell integration to be more useful. But unlike other systems, nix doesn't have a standard share directory location. This is why a bunch PACKAGE-share scripts are shipped that print the location of the corresponding shared folder. Current list of such packages is as following:
-
-
-
- autojump: autojump-share
-
-
-
-
- fzf: fzf-share
-
-
-
- E.g. autojump can then used in the .bashrc like this:
-
- source "$(autojump-share)/autojump.bash"
-
-
-
\ No newline at end of file
diff --git a/doc/packages/steam.xml b/doc/packages/steam.xml
deleted file mode 100644
index 413247ee4685..000000000000
--- a/doc/packages/steam.xml
+++ /dev/null
@@ -1,131 +0,0 @@
-
- Steam
-
-
- Steam in Nix
-
-
- Steam is distributed as a .deb file, for now only as an i686 package (the amd64 package only has documentation). When unpacked, it has a script called steam that in Ubuntu (their target distro) would go to /usr/bin . When run for the first time, this script copies some files to the user's home, which include another script that is the ultimate responsible for launching the steam binary, which is also in $HOME.
-
-
-
- Nix problems and constraints:
-
-
-
- We don't have /bin/bash and many scripts point there. Similarly for /usr/bin/python .
-
-
-
-
- We don't have the dynamic loader in /lib .
-
-
-
-
- The steam.sh script in $HOME can not be patched, as it is checked and rewritten by steam.
-
-
-
-
- The steam binary cannot be patched, it's also checked.
-
-
-
-
-
-
- The current approach to deploy Steam in NixOS is composing a FHS-compatible chroot environment, as documented here. This allows us to have binaries in the expected paths without disrupting the system, and to avoid patching them to work in a non FHS environment.
-
-
-
-
- How to play
-
-
- For 64-bit systems it's important to have
-hardware.opengl.driSupport32Bit = true;
- in your /etc/nixos/configuration.nix. You'll also need
-hardware.pulseaudio.support32Bit = true;
- if you are using PulseAudio - this will enable 32bit ALSA apps integration. To use the Steam controller or other Steam supported controllers such as the DualShock 4 or Nintendo Switch Pro, you need to add
-hardware.steam-hardware.enable = true;
- to your configuration.
-
-
-
-
- Troubleshooting
-
-
-
-
-
- Steam fails to start. What do I do?
-
-
-
- Try to run
-strace steam
- to see what is causing steam to fail.
-
-
-
-
-
- Using the FOSS Radeon or nouveau (nvidia) drivers
-
-
-
-
-
- The newStdcpp parameter was removed since NixOS 17.09 and should not be needed anymore.
-
-
-
-
- Steam ships statically linked with a version of libcrypto that conflics with the one dynamically loaded by radeonsi_dri.so. If you get the error
-steam.sh: line 713: 7842 Segmentation fault (core dumped)
- have a look at this pull request.
-
-
-
-
-
-
-
- Java
-
-
-
-
-
- There is no java in steam chrootenv by default. If you get a message like
-/home/foo/.local/share/Steam/SteamApps/common/towns/towns.sh: line 1: java: command not found
- You need to add
- steam.override { withJava = true; };
- to your configuration.
-
-
-
-
-
-
-
-
-
-
- steam-run
-
-
- The FHS-compatible chroot used for steam can also be used to run other linux games that expect a FHS environment. To do it, add
-pkgs.(steam.override {
- nativeOnly = true;
- newStdcpp = true;
- }).run
- to your configuration, rebuild, and run the game with
-steam-run ./foo
-
-
-
\ No newline at end of file
diff --git a/doc/packages/weechat.xml b/doc/packages/weechat.xml
deleted file mode 100644
index aeb240d904b5..000000000000
--- a/doc/packages/weechat.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
- Weechat
-
-
- Weechat can be configured to include your choice of plugins, reducing its closure size from the default configuration which includes all available plugins. To make use of this functionality, install an expression that overrides its configuration such as
-weechat.override {configure = {availablePlugins, ...}: {
- plugins = with availablePlugins; [ python perl ];
- }
-}
- If the configure function returns an attrset without the plugins attribute, availablePlugins will be used automatically.
-
-
-
- The plugins currently available are python, perl, ruby, guile, tcl and lua.
-
-
-
- The python and perl plugins allows the addition of extra libraries. For instance, the inotify.py script in weechat-scripts requires D-Bus or libnotify, and the fish.py script requires pycrypto. To use these scripts, use the plugin's withPackages attribute:
-weechat.override { configure = {availablePlugins, ...}: {
- plugins = with availablePlugins; [
- (python.withPackages (ps: with ps; [ pycrypto python-dbus ]))
- ];
- };
-}
-
-
-
-
- In order to also keep all default plugins installed, it is possible to use the following method:
-weechat.override { configure = { availablePlugins, ... }: {
- plugins = builtins.attrValues (availablePlugins // {
- python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]);
- });
-}; }
-
-
-
-
- WeeChat allows to set defaults on startup using the --run-command. The configure method can be used to pass commands to the program:
-weechat.override {
- configure = { availablePlugins, ... }: {
- init = ''
- /set foo bar
- /server add freenode chat.freenode.org
- '';
- };
-}
- Further values can be added to the list of commands when running weechat --run-command "your-commands".
-
-
-
- Additionally it's possible to specify scripts to be loaded when starting weechat. These will be loaded before the commands from init:
-weechat.override {
- configure = { availablePlugins, ... }: {
- scripts = with pkgs.weechatScripts; [
- weechat-xmpp weechat-matrix-bridge wee-slack
- ];
- init = ''
- /set plugins.var.python.jabber.key "val"
- '':
- };
-}
-
-
-
- In nixpkgs there's a subpackage which contains derivations for WeeChat scripts. Such derivations expect a passthru.scripts attribute which contains a list of all scripts inside the store path. Furthermore all scripts have to live in $out/share. An exemplary derivation looks like this:
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation {
- name = "exemplary-weechat-script";
- src = fetchurl {
- url = "https://scripts.tld/your-scripts.tar.gz";
- sha256 = "...";
- };
- passthru.scripts = [ "foo.py" "bar.lua" ];
- installPhase = ''
- mkdir $out/share
- cp foo.py $out/share
- cp bar.lua $out/share
- '';
-}
-
-
\ No newline at end of file
diff --git a/doc/packages/xorg.xml b/doc/packages/xorg.xml
deleted file mode 100644
index 4526121687fc..000000000000
--- a/doc/packages/xorg.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
- X.org
-
-
- The Nix expressions for the X.org packages reside in pkgs/servers/x11/xorg/default.nix. This file is automatically generated from lists of tarballs in an X.org release. As such it should not be modified directly; rather, you should modify the lists, the generator script or the file pkgs/servers/x11/xorg/overrides.nix, in which you can override or add to the derivations produced by the generator.
-
-
-
- The generator is invoked as follows:
-
-$ cd pkgs/servers/x11/xorg
-$ cat tarballs-7.5.list extra.list old.list \
- | perl ./generate-expr-from-tarballs.pl
-
- For each of the tarballs in the .list files, the script downloads it, unpacks it, and searches its configure.ac and *.pc.in files for dependencies. This information is used to generate default.nix. The generator caches downloaded tarballs between runs. Pay close attention to the NOT FOUND: name messages at the end of the run, since they may indicate missing dependencies. (Some might be optional dependencies, however.)
-
-
-
- A file like tarballs-7.5.list contains all tarballs in a X.org release. It can be generated like this:
-
-$ export i="mirror://xorg/X11R7.4/src/everything/"
-$ cat $(PRINT_PATH=1 nix-prefetch-url $i | tail -n 1) \
- | perl -e 'while (<>) { if (/(href|HREF)="([^"]*.bz2)"/) { print "$ENV{'i'}$2\n"; }; }' \
- | sort > tarballs-7.4.list
-
- extra.list contains libraries that aren’t part of X.org proper, but are closely related to it, such as libxcb. old.list contains some packages that were removed from X.org, but are still needed by some people or by other packages (such as imake).
-
-
-
- If the expression for a package requires derivation attributes that the generator cannot figure out automatically (say, patches or a postInstall hook), you should modify pkgs/servers/x11/xorg/overrides.nix.
-
-
\ No newline at end of file
diff --git a/doc/introduction.chapter.md b/doc/preface.chapter.md
similarity index 72%
rename from doc/introduction.chapter.md
rename to doc/preface.chapter.md
index 713c7181a3a0..88ca5e2e3cec 100644
--- a/doc/introduction.chapter.md
+++ b/doc/preface.chapter.md
@@ -1,44 +1,45 @@
---
-title: Introduction
+title: Preface
author: Frederik Rietdijk
date: 2015-11-25
---
-# Introduction
+# Preface
The Nix Packages collection (Nixpkgs) is a set of thousands of packages for the
-[Nix package manager](http://nixos.org/nix/), released under a
+[Nix package manager](https://nixos.org/nix/), released under a
[permissive MIT/X11 license](https://github.com/NixOS/nixpkgs/blob/master/COPYING).
Packages are available for several platforms, and can be used with the Nix
-package manager on most GNU/Linux distributions as well as NixOS.
+package manager on most GNU/Linux distributions as well as [NixOS](https://nixos.org/nixos).
This manual primarily describes how to write packages for the Nix Packages collection
(Nixpkgs). Thus it’s mainly for packagers and developers who want to add packages to
Nixpkgs. If you like to learn more about the Nix package manager and the Nix
-expression language, then you are kindly referred to the [Nix manual](http://nixos.org/nix/manual/).
+expression language, then you are kindly referred to the [Nix manual](https://nixos.org/nix/manual/).
+The NixOS distribution is documented in the [NixOS manual](https://nixos.org/nixos/manual/).
## Overview of Nixpkgs
Nix expressions describe how to build packages from source and are collected in
the [nixpkgs repository](https://github.com/NixOS/nixpkgs). Also included in the
collection are Nix expressions for
-[NixOS modules](http://nixos.org/nixos/manual/index.html#sec-writing-modules).
+[NixOS modules](https://nixos.org/nixos/manual/index.html#sec-writing-modules).
With these expressions the Nix package manager can build binary packages.
Packages, including the Nix packages collection, are distributed through
-[channels](http://nixos.org/nix/manual/#sec-channels). The collection is
+[channels](https://nixos.org/nix/manual/#sec-channels). The collection is
distributed for users of Nix on non-NixOS distributions through the channel
`nixpkgs`. Users of NixOS generally use one of the `nixos-*` channels, e.g.
-`nixos-16.03`, which includes all packages and modules for the stable NixOS
-16.03. Stable NixOS releases are generally only given
+`nixos-19.09`, which includes all packages and modules for the stable NixOS
+19.09. Stable NixOS releases are generally only given
security updates. More up to date packages and modules are available via the
`nixos-unstable` channel.
Both `nixos-unstable` and `nixpkgs` follow the `master` branch of the Nixpkgs
repository, although both do lag the `master` branch by generally
-[a couple of days](http://howoldis.herokuapp.com/). Updates to a channel are
+[a couple of days](https://howoldis.herokuapp.com/). Updates to a channel are
distributed as soon as all tests for that channel pass, e.g.
-[this table](http://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents)
+[this table](https://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents)
shows the status of tests for the `nixpkgs` channel.
The tests are conducted by a cluster called [Hydra](http://nixos.org/hydra/),
diff --git a/doc/cross-compilation.xml b/doc/stdenv/cross-compilation.xml
similarity index 100%
rename from doc/cross-compilation.xml
rename to doc/stdenv/cross-compilation.xml
diff --git a/doc/meta.xml b/doc/stdenv/meta.xml
similarity index 100%
rename from doc/meta.xml
rename to doc/stdenv/meta.xml
diff --git a/doc/multiple-output.xml b/doc/stdenv/multiple-output.xml
similarity index 100%
rename from doc/multiple-output.xml
rename to doc/stdenv/multiple-output.xml
diff --git a/doc/platform-notes.xml b/doc/stdenv/platform-notes.xml
similarity index 100%
rename from doc/platform-notes.xml
rename to doc/stdenv/platform-notes.xml
diff --git a/doc/stdenv.xml b/doc/stdenv/stdenv.xml
similarity index 100%
rename from doc/stdenv.xml
rename to doc/stdenv/stdenv.xml
diff --git a/doc/configuration.xml b/doc/using/configuration.xml
similarity index 100%
rename from doc/configuration.xml
rename to doc/using/configuration.xml
diff --git a/doc/overlays.xml b/doc/using/overlays.xml
similarity index 100%
rename from doc/overlays.xml
rename to doc/using/overlays.xml
diff --git a/doc/overrides.xml b/doc/using/overrides.xml
similarity index 99%
rename from doc/overrides.xml
rename to doc/using/overrides.xml
index 991e13a1b828..c9d36ddb2d7b 100644
--- a/doc/overrides.xml
+++ b/doc/using/overrides.xml
@@ -3,15 +3,12 @@
xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="chap-overrides">
Overriding
-
Sometimes one wants to override parts of nixpkgs, e.g. derivation attributes, the results of derivations.
-
These functions are used to make changes to packages, returning only single packages. Overlays, on the other hand, can be used to combine the overridden packages across the entire package set of Nixpkgs.
-
<pkg>.override
@@ -45,7 +42,6 @@ mypkg = pkgs.callPackage ./mypkg.nix {
In the first example, pkgs.foo is the result of a function call with some default arguments, usually a derivation. Using pkgs.foo.override will call the same function with the given new arguments.
-
<pkg>.overrideAttrs
@@ -76,7 +72,6 @@ helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
-
<pkg>.overrideDerivation
@@ -124,7 +119,6 @@ mySed = pkgs.gnused.overrideDerivation (oldAttrs: {
-
lib.makeOverridable
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 8e2bda71dc02..2509b3a5b0af 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -7397,4 +7397,16 @@
githubId = 1986844;
name = "Daniel Wheeler";
};
+ zokrezyl = {
+ email = "zokrezyl@gmail.com";
+ github = "zokrezyl";
+ githubId = 51886259;
+ name = "Zokre Zyl";
+ };
+ rakesh4g = {
+ email = "rakeshgupta4u@gmail.com";
+ github = "rakesh4g";
+ githubId = 50867187;
+ name = "Rakesh Gupta";
+ };
}
diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix
index f9de2db1a084..6ca75f869f45 100644
--- a/nixos/doc/manual/default.nix
+++ b/nixos/doc/manual/default.nix
@@ -62,14 +62,13 @@ let
"--stringparam html.stylesheet 'style.css overrides.css highlightjs/mono-blue.css'"
"--stringparam html.script './highlightjs/highlight.pack.js ./highlightjs/loader.js'"
"--param xref.with.number.and.title 1"
- "--param toc.section.depth 3"
+ "--param toc.section.depth 0"
"--stringparam admon.style ''"
"--stringparam callout.graphics.extension .svg"
"--stringparam current.docid manual"
"--param chunk.section.depth 0"
"--param chunk.first.sections 1"
"--param use.id.as.filename 1"
- "--stringparam generate.toc 'book toc appendix toc'"
"--stringparam chunk.toc ${toc}"
];
diff --git a/nixos/doc/manual/manual.xml b/nixos/doc/manual/manual.xml
index 12f52e1997c8..18a67a2dd941 100644
--- a/nixos/doc/manual/manual.xml
+++ b/nixos/doc/manual/manual.xml
@@ -8,32 +8,7 @@
Version
-
- Preface
-
- This manual describes how to install, use and extend NixOS, a Linux
- distribution based on the purely functional package management system Nix.
-
-
- If you encounter problems, please report them on the
- Discourse or
- on the
- #nixos channel on Freenode. Bugs should be
- reported in
- NixOS’
- GitHub issue tracker.
-
-
-
- Commands prefixed with # have to be run as root, either
- requiring to login as root user or temporarily switching to it using
- sudo for example.
-
-
-
+
diff --git a/nixos/doc/manual/preface.xml b/nixos/doc/manual/preface.xml
new file mode 100644
index 000000000000..6ac9ae7e7861
--- /dev/null
+++ b/nixos/doc/manual/preface.xml
@@ -0,0 +1,37 @@
+
+ Preface
+
+ This manual describes how to install, use and extend NixOS, a Linux
+ distribution based on the purely functional package management system
+ Nix, that is composed
+ using modules and packages defined in the
+ Nixpkgs project.
+
+
+ Additional information regarding the Nix package manager and the Nixpkgs
+ project can be found in respectively the
+ Nix manual and the
+ Nixpkgs manual.
+
+
+ If you encounter problems, please report them on the
+ Discourse or
+ on the
+ #nixos channel on Freenode. Bugs should be
+ reported in
+ NixOS’
+ GitHub issue tracker.
+
+
+
+ Commands prefixed with # have to be run as root, either
+ requiring to login as root user or temporarily switching to it using
+ sudo for example.
+
+
+
diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh
index c4149e3e8ffe..f08e500e079a 100755
--- a/nixos/maintainers/scripts/ec2/create-amis.sh
+++ b/nixos/maintainers/scripts/ec2/create-amis.sh
@@ -14,7 +14,7 @@
set -euo pipefail
# configuration
-state_dir=/home/deploy/amis/ec2-images
+state_dir=$HOME/amis/ec2-images
home_region=eu-west-1
bucket=nixos-amis
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index b3bc4a451aa0..9baad9b58545 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -98,11 +98,12 @@ in {
description = ''
If false, a PulseAudio server is launched automatically for
each user that tries to use the sound system. The server runs
- with user privileges. This is the recommended and most secure
- way to use PulseAudio. If true, one system-wide PulseAudio
+ with user privileges. If true, one system-wide PulseAudio
server is launched on boot, running as the user "pulse", and
only users in the "audio" group will have access to the server.
Please read the PulseAudio documentation for more details.
+
+ Don't enable this option unless you know what you are doing.
'';
};
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 3ccdfe8e0c04..e181cecced77 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -550,6 +550,8 @@
./services/network-filesystems/nfsd.nix
./services/network-filesystems/openafs/client.nix
./services/network-filesystems/openafs/server.nix
+ ./services/network-filesystems/orangefs/server.nix
+ ./services/network-filesystems/orangefs/client.nix
./services/network-filesystems/rsyncd.nix
./services/network-filesystems/samba.nix
./services/network-filesystems/tahoe.nix
@@ -603,6 +605,7 @@
./services/networking/gdomap.nix
./services/networking/git-daemon.nix
./services/networking/gnunet.nix
+ ./services/networking/go-shadowsocks2.nix
./services/networking/gogoclient.nix
./services/networking/gvpe.nix
./services/networking/hans.nix
diff --git a/nixos/modules/programs/gnupg.nix b/nixos/modules/programs/gnupg.nix
index 4fb7c43c8b2e..8cb2e669cb28 100644
--- a/nixos/modules/programs/gnupg.nix
+++ b/nixos/modules/programs/gnupg.nix
@@ -14,7 +14,7 @@ let
"qt"
else if xserverCfg.desktopManager.xfce.enable then
"gtk2"
- else if xserverCfg.enable then
+ else if xserverCfg.enable || config.programs.sway.enable then
"gnome3"
else
null;
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index df8ebe505846..886e2e83ba62 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -135,7 +135,8 @@ with lib;
# piwik was renamed to matomo
(mkRenamedOptionModule [ "services" "piwik" "enable" ] [ "services" "matomo" "enable" ])
(mkRenamedOptionModule [ "services" "piwik" "webServerUser" ] [ "services" "matomo" "webServerUser" ])
- (mkRenamedOptionModule [ "services" "piwik" "phpfpmProcessManagerConfig" ] [ "services" "matomo" "phpfpmProcessManagerConfig" ])
+ (mkRemovedOptionModule [ "services" "piwik" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools..settings")
+ (mkRemovedOptionModule [ "services" "matomo" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools..settings")
(mkRenamedOptionModule [ "services" "piwik" "nginx" ] [ "services" "matomo" "nginx" ])
# tarsnap
diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix
index cbeb99cfceff..d14613f22b05 100644
--- a/nixos/modules/security/acme.nix
+++ b/nixos/modules/security/acme.nix
@@ -20,6 +20,16 @@ let
'';
};
+ server = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ ACME Directory Resource URI. Defaults to let's encrypt
+ production endpoint,
+ https://acme-v02.api.letsencrypt.org/directory, if unset.
+ '';
+ };
+
domain = mkOption {
type = types.str;
default = name;
@@ -109,7 +119,15 @@ in
{
###### interface
+ imports = [
+ (mkRemovedOptionModule [ "security" "acme" "production" ] ''
+ Use security.acme.server to define your staging ACME server URL instead.
+ To use the let's encrypt staging server, use security.acme.server =
+ "https://acme-staging-v02.api.letsencrypt.org/directory".
+ ''
+ )
+ ];
options = {
security.acme = {
@@ -129,6 +147,16 @@ in
'';
};
+ server = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ ACME Directory Resource URI. Defaults to let's encrypt
+ production endpoint,
+ https://acme-v02.api.letsencrypt.org/directory, if unset.
+ '';
+ };
+
preliminarySelfsigned = mkOption {
type = types.bool;
default = true;
@@ -142,20 +170,6 @@ in
'';
};
- production = mkOption {
- type = types.bool;
- default = true;
- description = ''
- If set to true, use Let's Encrypt's production environment
- instead of the staging environment. The main benefit of the
- staging environment is to get much higher rate limits.
-
- See
- https://letsencrypt.org/docs/staging-environment
- for more detail.
- '';
- };
-
certs = mkOption {
default = { };
type = with types; attrsOf (submodule certOpts);
@@ -198,7 +212,7 @@ in
++ optionals (data.email != null) [ "--email" data.email ]
++ concatMap (p: [ "-f" p ]) data.plugins
++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains)
- ++ optionals (!cfg.production) ["--server" "https://acme-staging-v02.api.letsencrypt.org/directory"];
+ ++ optionals (cfg.server != null || data.server != null) ["--server" (if data.server == null then cfg.server else data.server)];
acmeService = {
description = "Renew ACME Certificate for ${cert}";
after = [ "network.target" "network-online.target" ];
diff --git a/nixos/modules/services/desktops/geoclue2.nix b/nixos/modules/services/desktops/geoclue2.nix
index 6007dddf50c0..542b2ead4104 100644
--- a/nixos/modules/services/desktops/geoclue2.nix
+++ b/nixos/modules/services/desktops/geoclue2.nix
@@ -188,34 +188,41 @@ in
systemd.packages = [ package ];
- users.users.geoclue = {
- isSystemUser = true;
- home = "/var/lib/geoclue";
- group = "geoclue";
- description = "Geoinformation service";
+ # we cannot use DynamicUser as we need the the geoclue user to exist for the dbus policy to work
+ users = {
+ users.geoclue = {
+ isSystemUser = true;
+ home = "/var/lib/geoclue";
+ group = "geoclue";
+ description = "Geoinformation service";
+ };
+
+ groups.geoclue = {};
};
- users.groups.geoclue = {};
-
- systemd.tmpfiles.rules = [
- "d /var/lib/geoclue 0755 geoclue geoclue"
- ];
-
- # restart geoclue service when the configuration changes
- systemd.services.geoclue.restartTriggers = [
- config.environment.etc."geoclue/geoclue.conf".source
- ];
+ systemd.services.geoclue = {
+ # restart geoclue service when the configuration changes
+ restartTriggers = [
+ config.environment.etc."geoclue/geoclue.conf".source
+ ];
+ serviceConfig.StateDirectory = "geoclue";
+ };
# this needs to run as a user service, since it's associated with the
# user who is making the requests
systemd.user.services = mkIf cfg.enableDemoAgent {
geoclue-agent = {
description = "Geoclue agent";
- script = "${package}/libexec/geoclue-2.0/demos/agent";
# this should really be `partOf = [ "geoclue.service" ]`, but
# we can't be part of a system service, and the agent should
# be okay with the main service coming and going
wantedBy = [ "default.target" ];
+ serviceConfig = {
+ Type = "exec";
+ ExecStart = "${package}/libexec/geoclue-2.0/demos/agent";
+ Restart = "on-failure";
+ PrivateTmp = true;
+ };
};
};
@@ -256,4 +263,6 @@ in
};
} // mapAttrs' appConfigToINICompatible cfg.appConfig);
};
+
+ meta.maintainers = with lib.maintainers; [ worldofpeace ];
}
diff --git a/nixos/modules/services/hardware/trezord.nix b/nixos/modules/services/hardware/trezord.nix
index 62824ed7350a..561106c41626 100644
--- a/nixos/modules/services/hardware/trezord.nix
+++ b/nixos/modules/services/hardware/trezord.nix
@@ -44,20 +44,7 @@ in {
### implementation
config = mkIf cfg.enable {
- services.udev.packages = lib.singleton (pkgs.writeTextFile {
- name = "trezord-udev-rules";
- destination = "/etc/udev/rules.d/51-trezor.rules";
- text = ''
- # TREZOR v1 (One)
- SUBSYSTEM=="usb", ATTR{idVendor}=="534c", ATTR{idProduct}=="0001", MODE="0660", GROUP="trezord", TAG+="uaccess", SYMLINK+="trezor%n"
- KERNEL=="hidraw*", ATTRS{idVendor}=="534c", ATTRS{idProduct}=="0001", MODE="0660", GROUP="trezord", TAG+="uaccess"
-
- # TREZOR v2 (T)
- SUBSYSTEM=="usb", ATTR{idVendor}=="1209", ATTR{idProduct}=="53c0", MODE="0660", GROUP="trezord", TAG+="uaccess", SYMLINK+="trezor%n"
- SUBSYSTEM=="usb", ATTR{idVendor}=="1209", ATTR{idProduct}=="53c1", MODE="0660", GROUP="trezord", TAG+="uaccess", SYMLINK+="trezor%n"
- KERNEL=="hidraw*", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="53c1", MODE="0660", GROUP="trezord", TAG+="uaccess"
- '';
- });
+ services.udev.packages = [ pkgs.trezor-udev-rules ];
systemd.services.trezord = {
description = "TREZOR Bridge";
diff --git a/nixos/modules/services/network-filesystems/orangefs/client.nix b/nixos/modules/services/network-filesystems/orangefs/client.nix
new file mode 100644
index 000000000000..b69d9e713c3d
--- /dev/null
+++ b/nixos/modules/services/network-filesystems/orangefs/client.nix
@@ -0,0 +1,97 @@
+{ config, lib, pkgs, ...} :
+
+with lib;
+
+let
+ cfg = config.services.orangefs.client;
+
+in {
+ ###### interface
+
+ options = {
+ services.orangefs.client = {
+ enable = mkEnableOption "OrangeFS client daemon";
+
+ extraOptions = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "Extra command line options for pvfs2-client.";
+ };
+
+ fileSystems = mkOption {
+ description = ''
+ The orangefs file systems to be mounted.
+ This option is prefered over using directly since
+ the pvfs client service needs to be running for it to be mounted.
+ '';
+
+ example = [{
+ mountPoint = "/orangefs";
+ target = "tcp://server:3334/orangefs";
+ }];
+
+ type = with types; listOf (submodule ({ ... } : {
+ options = {
+
+ mountPoint = mkOption {
+ type = types.str;
+ default = "/orangefs";
+ description = "Mount point.";
+ };
+
+ options = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "Mount options";
+ };
+
+ target = mkOption {
+ type = types.str;
+ default = null;
+ example = "tcp://server:3334/orangefs";
+ description = "Target URL";
+ };
+ };
+ }));
+ };
+ };
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.orangefs ];
+
+ boot.supportedFilesystems = [ "pvfs2" ];
+ boot.kernelModules = [ "orangefs" ];
+
+ systemd.services.orangefs-client = {
+ requires = [ "network-online.target" ];
+ after = [ "network-online.target" ];
+
+ serviceConfig = {
+ Type = "simple";
+
+ ExecStart = ''
+ ${pkgs.orangefs}/bin/pvfs2-client-core \
+ --logtype=syslog ${concatStringsSep " " cfg.extraOptions}
+ '';
+
+ TimeoutStopSec = "120";
+ };
+ };
+
+ systemd.mounts = map (fs: {
+ requires = [ "orangefs-client.service" ];
+ after = [ "orangefs-client.service" ];
+ bindsTo = [ "orangefs-client.service" ];
+ wantedBy = [ "remote-fs.target" ];
+ type = "pvfs2";
+ options = concatStringsSep "," fs.options;
+ what = fs.target;
+ where = fs.mountPoint;
+ }) cfg.fileSystems;
+ };
+}
+
diff --git a/nixos/modules/services/network-filesystems/orangefs/server.nix b/nixos/modules/services/network-filesystems/orangefs/server.nix
new file mode 100644
index 000000000000..74ebdc134024
--- /dev/null
+++ b/nixos/modules/services/network-filesystems/orangefs/server.nix
@@ -0,0 +1,225 @@
+{ config, lib, pkgs, ...} :
+
+with lib;
+
+let
+ cfg = config.services.orangefs.server;
+
+ aliases = mapAttrsToList (alias: url: alias) cfg.servers;
+
+ # Maximum handle number is 2^63
+ maxHandle = 9223372036854775806;
+
+ # One range of handles for each meta/data instance
+ handleStep = maxHandle / (length aliases) / 2;
+
+ fileSystems = mapAttrsToList (name: fs: ''
+
+ Name ${name}
+ ID ${toString fs.id}
+ RootHandle ${toString fs.rootHandle}
+
+ ${fs.extraConfig}
+
+
+ ${concatStringsSep "\n" (
+ imap0 (i: alias:
+ let
+ begin = i * handleStep + 3;
+ end = begin + handleStep - 1;
+ in "Range ${alias} ${toString begin}-${toString end}") aliases
+ )}
+
+
+
+ ${concatStringsSep "\n" (
+ imap0 (i: alias:
+ let
+ begin = i * handleStep + 3 + (length aliases) * handleStep;
+ end = begin + handleStep - 1;
+ in "Range ${alias} ${toString begin}-${toString end}") aliases
+ )}
+
+
+
+ TroveSyncMeta ${if fs.troveSyncMeta then "yes" else "no"}
+ TroveSyncData ${if fs.troveSyncData then "yes" else "no"}
+ ${fs.extraStorageHints}
+
+
+
+ '') cfg.fileSystems;
+
+ configFile = ''
+
+ LogType ${cfg.logType}
+ DataStorageSpace ${cfg.dataStorageSpace}
+ MetaDataStorageSpace ${cfg.metadataStorageSpace}
+
+ BMIModules ${concatStringsSep "," cfg.BMIModules}
+ ${cfg.extraDefaults}
+
+
+ ${cfg.extraConfig}
+
+
+ ${concatStringsSep "\n" (mapAttrsToList (alias: url: "Alias ${alias} ${url}") cfg.servers)}
+
+
+ ${concatStringsSep "\n" fileSystems}
+ '';
+
+in {
+ ###### interface
+
+ options = {
+ services.orangefs.server = {
+ enable = mkEnableOption "OrangeFS server";
+
+ logType = mkOption {
+ type = with types; enum [ "file" "syslog" ];
+ default = "syslog";
+ description = "Destination for log messages.";
+ };
+
+ dataStorageSpace = mkOption {
+ type = types.str;
+ default = null;
+ example = "/data/storage";
+ description = "Directory for data storage.";
+ };
+
+ metadataStorageSpace = mkOption {
+ type = types.str;
+ default = null;
+ example = "/data/meta";
+ description = "Directory for meta data storage.";
+ };
+
+ BMIModules = mkOption {
+ type = with types; listOf str;
+ default = [ "bmi_tcp" ];
+ example = [ "bmi_tcp" "bmi_ib"];
+ description = "List of BMI modules to load.";
+ };
+
+ extraDefaults = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Extra config for <Defaults> section.";
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Extra config for the global section.";
+ };
+
+ servers = mkOption {
+ type = with types; attrsOf types.str;
+ default = {};
+ example = ''
+ {
+ node1="tcp://node1:3334";
+ node2="tcp://node2:3334";
+ }
+ '';
+ description = "URLs for storage server including port. The attribute names define the server alias.";
+ };
+
+ fileSystems = mkOption {
+ description = ''
+ These options will create the <FileSystem> sections of config file.
+ '';
+ default = { orangefs = {}; };
+ defaultText = literalExample "{ orangefs = {}; }";
+ example = literalExample ''
+ {
+ fs1 = {
+ id = 101;
+ };
+
+ fs2 = {
+ id = 102;
+ };
+ }
+ '';
+ type = with types; attrsOf (submodule ({ ... } : {
+ options = {
+ id = mkOption {
+ type = types.int;
+ default = 1;
+ description = "File system ID (must be unique within configuration).";
+ };
+
+ rootHandle = mkOption {
+ type = types.int;
+ default = 3;
+ description = "File system root ID.";
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Extra config for <FileSystem> section.";
+ };
+
+ troveSyncMeta = mkOption {
+ type = types.bool;
+ default = true;
+ description = "Sync meta data.";
+ };
+
+ troveSyncData = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Sync data.";
+ };
+
+ extraStorageHints = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Extra config for <StorageHints> section.";
+ };
+ };
+ }));
+ };
+ };
+ };
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.orangefs ];
+
+ # orangefs daemon will run as user
+ users.users.orangefs.isSystemUser = true;
+ users.groups.orangefs = {};
+
+ # To format the file system the config file is needed.
+ environment.etc."orangefs/server.conf" = {
+ text = configFile;
+ user = "orangefs";
+ group = "orangefs";
+ };
+
+ systemd.services.orangefs-server = {
+ wantedBy = [ "multi-user.target" ];
+ requires = [ "network-online.target" ];
+ after = [ "network-online.target" ];
+
+ serviceConfig = {
+ # Run as "simple" in forground mode.
+ # This is more reliable
+ ExecStart = ''
+ ${pkgs.orangefs}/bin/pvfs2-server -d \
+ /etc/orangefs/server.conf
+ '';
+ TimeoutStopSec = "120";
+ User = "orangefs";
+ Group = "orangefs";
+ };
+ };
+ };
+
+}
diff --git a/nixos/modules/services/networking/go-shadowsocks2.nix b/nixos/modules/services/networking/go-shadowsocks2.nix
new file mode 100644
index 000000000000..afbd7ea27c65
--- /dev/null
+++ b/nixos/modules/services/networking/go-shadowsocks2.nix
@@ -0,0 +1,30 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+let
+ cfg = config.services.go-shadowsocks2.server;
+in {
+ options.services.go-shadowsocks2.server = {
+ enable = mkEnableOption "go-shadowsocks2 server";
+
+ listenAddress = mkOption {
+ type = types.str;
+ description = "Server listen address or URL";
+ example = "ss://AEAD_CHACHA20_POLY1305:your-password@:8488";
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.services.go-shadowsocks2-server = {
+ description = "go-shadowsocks2 server";
+
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ serviceConfig = {
+ ExecStart = "${pkgs.go-shadowsocks2}/bin/go-shadowsocks2 -s '${cfg.listenAddress}'";
+ DynamicUser = true;
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/web-apps/matomo-doc.xml b/nixos/modules/services/web-apps/matomo-doc.xml
index 8485492c51c7..79cece551d34 100644
--- a/nixos/modules/services/web-apps/matomo-doc.xml
+++ b/nixos/modules/services/web-apps/matomo-doc.xml
@@ -105,7 +105,7 @@ GRANT ALL PRIVILEGES ON matomo.* TO 'matomo'@'localhost';
You can use other web servers by forwarding calls for
index.php and piwik.php to the
- /run/phpfpm-matomo.sock fastcgi unix socket. You can use
+ services.phpfpm.pools.<name>.socket fastcgi unix socket. You can use
the nginx configuration in the module code as a reference to what else
should be configured.
diff --git a/nixos/modules/services/web-apps/matomo.nix b/nixos/modules/services/web-apps/matomo.nix
index 1e34aff8d171..352cc4c647bc 100644
--- a/nixos/modules/services/web-apps/matomo.nix
+++ b/nixos/modules/services/web-apps/matomo.nix
@@ -2,15 +2,13 @@
with lib;
let
cfg = config.services.matomo;
+ fpm = config.services.phpfpm.pools.${pool};
user = "matomo";
dataDir = "/var/lib/${user}";
deprecatedDataDir = "/var/lib/piwik";
pool = user;
- # it's not possible to use /run/phpfpm/${pool}.sock because /run/phpfpm/ is root:root 0770,
- # and therefore is not accessible by the web server.
- phpSocket = "/run/phpfpm-${pool}.sock";
phpExecutionUnit = "phpfpm-${pool}";
databaseService = "mysql.service";
@@ -50,7 +48,7 @@ in {
default = null;
example = "lighttpd";
description = ''
- Name of the web server user that forwards requests to the ${phpSocket} fastcgi socket for Matomo if the nginx
+ Name of the web server user that forwards requests to the fastcgi socket for Matomo if the nginx
option is not used. Either this option or the nginx option is mandatory.
If you want to use another webserver than nginx, you need to set this to that server's user
and pass fastcgi requests to `index.php`, `matomo.php` and `piwik.php` (legacy name) to this socket.
@@ -71,25 +69,6 @@ in {
'';
};
- phpfpmProcessManagerConfig = mkOption {
- type = types.str;
- default = ''
- ; default phpfpm process manager settings
- pm = dynamic
- pm.max_children = 75
- pm.start_servers = 10
- pm.min_spare_servers = 5
- pm.max_spare_servers = 20
- pm.max_requests = 500
-
- ; log worker's stdout, but this has a performance hit
- catch_workers_output = yes
- '';
- description = ''
- Settings for phpfpm's process manager. You might need to change this depending on the load for Matomo.
- '';
- };
-
nginx = mkOption {
type = types.nullOr (types.submodule (
recursiveUpdate
@@ -233,15 +212,24 @@ in {
else if (cfg.webServerUser != null) then cfg.webServerUser else "";
in {
${pool} = {
- listen = phpSocket;
- extraConfig = ''
- listen.owner = ${socketOwner}
- listen.group = root
- listen.mode = 0600
- user = ${user}
- env[PIWIK_USER_PATH] = ${dataDir}
- ${cfg.phpfpmProcessManagerConfig}
+ inherit user;
+ phpOptions = ''
+ error_log = 'stderr'
+ log_errors = on
'';
+ settings = mapAttrs (name: mkDefault) {
+ "listen.owner" = socketOwner;
+ "listen.group" = "root";
+ "listen.mode" = "0660";
+ "pm" = "dynamic";
+ "pm.max_children" = 75;
+ "pm.start_servers" = 10;
+ "pm.min_spare_servers" = 5;
+ "pm.max_spare_servers" = 20;
+ "pm.max_requests" = 500;
+ "catch_workers_output" = true;
+ };
+ phpEnv.PIWIK_USER_PATH = dataDir;
};
};
@@ -264,15 +252,15 @@ in {
};
# allow index.php for webinterface
locations."= /index.php".extraConfig = ''
- fastcgi_pass unix:${phpSocket};
+ fastcgi_pass unix:${fpm.socket};
'';
# allow matomo.php for tracking
locations."= /matomo.php".extraConfig = ''
- fastcgi_pass unix:${phpSocket};
+ fastcgi_pass unix:${fpm.socket};
'';
# allow piwik.php for tracking (deprecated name)
locations."= /piwik.php".extraConfig = ''
- fastcgi_pass unix:${phpSocket};
+ fastcgi_pass unix:${fpm.socket};
'';
# Any other attempt to access any php files is forbidden
locations."~* ^.+\\.php$".extraConfig = ''
diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix
index f640bb21b133..3b4e55d39d7b 100644
--- a/nixos/modules/virtualisation/ec2-amis.nix
+++ b/nixos/modules/virtualisation/ec2-amis.nix
@@ -291,5 +291,21 @@ let self = {
"19.03".sa-east-1.hvm-ebs = "ami-0c6a43c6e0ad1f4e2";
"19.03".ap-south-1.hvm-ebs = "ami-0303deb1b5890f878";
- latest = self."19.03";
+ # 19.09.981.205691b7cbe
+ "19.09".eu-west-1.hvm-ebs = "ami-0ebd3156e21e9642f";
+ "19.09".eu-west-2.hvm-ebs = "ami-02a2b5480a79084b7";
+ "19.09".eu-west-3.hvm-ebs = "ami-09aa175c7588734f7";
+ "19.09".eu-central-1.hvm-ebs = "ami-00a7fafd7e237a330";
+ "19.09".us-east-1.hvm-ebs = "ami-00a8eeaf232a74f84";
+ "19.09".us-east-2.hvm-ebs = "ami-093efd3a57a1e03a8";
+ "19.09".us-west-1.hvm-ebs = "ami-0913e9a2b677fac30";
+ "19.09".us-west-2.hvm-ebs = "ami-02d9a19f77b47882a";
+ "19.09".ca-central-1.hvm-ebs = "ami-0627dd3f7b3627a29";
+ "19.09".ap-southeast-1.hvm-ebs = "ami-083614e4d08f2164d";
+ "19.09".ap-southeast-2.hvm-ebs = "ami-0048c704185ded6dc";
+ "19.09".ap-northeast-1.hvm-ebs = "ami-0329e7fc2d7f60bd0";
+ "19.09".ap-northeast-2.hvm-ebs = "ami-03d4ae7d0b5fc364f";
+ "19.09".ap-south-1.hvm-ebs = "ami-0b599690b35aeef23";
+
+ latest = self."19.09";
}; in self
diff --git a/nixos/tests/acme.nix b/nixos/tests/acme.nix
index 85d32d109442..206d97849f02 100644
--- a/nixos/tests/acme.nix
+++ b/nixos/tests/acme.nix
@@ -12,8 +12,11 @@ in import ./make-test.nix {
networking.extraHosts = ''
${config.networking.primaryIPAddress} standalone.com
'';
- security.acme.certs."standalone.com" = {
- webroot = "/var/lib/acme/acme-challenges";
+ security.acme = {
+ server = "https://acme-v02.api.letsencrypt.org/dir";
+ certs."standalone.com" = {
+ webroot = "/var/lib/acme/acme-challenges";
+ };
};
systemd.targets."acme-finished-standalone.com" = {};
systemd.services."acme-standalone.com" = {
@@ -54,6 +57,8 @@ in import ./make-test.nix {
'';
};
+ security.acme.server = "https://acme-v02.api.letsencrypt.org/dir";
+
nesting.clone = [
({pkgs, ...}: {
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 22270501dc1c..78b9b60f114b 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -159,6 +159,7 @@ in
#logstash = handleTest ./logstash.nix {};
mailcatcher = handleTest ./mailcatcher.nix {};
mathics = handleTest ./mathics.nix {};
+ matomo = handleTest ./matomo.nix {};
matrix-synapse = handleTest ./matrix-synapse.nix {};
mediawiki = handleTest ./mediawiki.nix {};
memcached = handleTest ./memcached.nix {};
@@ -210,6 +211,7 @@ in
# openstack-image-userdata doesn't work in a sandbox as the simulated openstack instance needs network access
#openstack-image-userdata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).userdata or {};
openstack-image-metadata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).metadata or {};
+ orangefs = handleTest ./orangefs.nix {};
os-prober = handleTestOn ["x86_64-linux"] ./os-prober.nix {};
osquery = handleTest ./osquery.nix {};
osrm-backend = handleTest ./osrm-backend.nix {};
diff --git a/nixos/tests/common/letsencrypt/0001-Change-ACME-directory-endpoint-to-directory.patch b/nixos/tests/common/letsencrypt/0001-Change-ACME-directory-endpoint-to-directory.patch
deleted file mode 100644
index 9d4a483dd889..000000000000
--- a/nixos/tests/common/letsencrypt/0001-Change-ACME-directory-endpoint-to-directory.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From c3b4004386074342d22cab5e129c1f7e623f4272 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?F=C3=A9lix=20Baylac-Jacqu=C3=A9?=
-Date: Mon, 21 Oct 2019 10:56:13 +0200
-Subject: [PATCH] Change ACME directory endpoint to /directory
-
----
- wfe/wfe.go | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/wfe/wfe.go b/wfe/wfe.go
-index e24797f..10d29fb 100644
---- a/wfe/wfe.go
-+++ b/wfe/wfe.go
-@@ -39,7 +39,7 @@ const (
- // Note: We deliberately pick endpoint paths that differ from Boulder to
- // exercise clients processing of the /directory response
- // We export the DirectoryPath so that the pebble binary can reference it
-- DirectoryPath = "/dir"
-+ DirectoryPath = "/directory"
- noncePath = "/nonce-plz"
- newAccountPath = "/sign-me-up"
- acctPath = "/my-account/"
---
-2.23.0
-
diff --git a/nixos/tests/common/letsencrypt/default.nix b/nixos/tests/common/letsencrypt/default.nix
index aaf2896f21cb..110a2520971d 100644
--- a/nixos/tests/common/letsencrypt/default.nix
+++ b/nixos/tests/common/letsencrypt/default.nix
@@ -62,17 +62,7 @@ let
siteDomain = "letsencrypt.org";
siteCertFile = snakeOilCerts.${siteDomain}.cert;
siteKeyFile = snakeOilCerts.${siteDomain}.key;
- pebble = pkgs.pebble.overrideAttrs (attrs: {
- # The pebble directory endpoint is /dir when the bouder (official
- # ACME server) is /directory. Sadly, this endpoint is hardcoded,
- # we have to patch it.
- #
- # Tried to upstream, that said upstream maintainers rather keep
- # this custom endpoint to test ACME clients robustness. See
- # https://github.com/letsencrypt/pebble/issues/283#issuecomment-545123242
- patches = [ ./0001-Change-ACME-directory-endpoint-to-directory.patch ];
- });
-
+ pebble = pkgs.pebble;
resolver = let
message = "You need to define a resolver for the letsencrypt test module.";
firstNS = lib.head config.networking.nameservers;
diff --git a/nixos/tests/fontconfig-default-fonts.nix b/nixos/tests/fontconfig-default-fonts.nix
index ed567aee215f..1991cec92189 100644
--- a/nixos/tests/fontconfig-default-fonts.nix
+++ b/nixos/tests/fontconfig-default-fonts.nix
@@ -7,7 +7,7 @@ import ./make-test.nix ({ lib, ... }:
fonts.fonts = with pkgs; [
noto-fonts-emoji
cantarell-fonts
- #twitter-color-emoji # Can't be generated with Python 3 version of nototools
+ twitter-color-emoji
source-code-pro
gentium
];
diff --git a/nixos/tests/matomo.nix b/nixos/tests/matomo.nix
new file mode 100644
index 000000000000..4efa65a7b6de
--- /dev/null
+++ b/nixos/tests/matomo.nix
@@ -0,0 +1,43 @@
+{ system ? builtins.currentSystem, config ? { }
+, pkgs ? import ../.. { inherit system config; } }:
+
+with import ../lib/testing.nix { inherit system pkgs; };
+with pkgs.lib;
+
+let
+ matomoTest = package:
+ makeTest {
+ machine = { config, pkgs, ... }: {
+ services.matomo = {
+ package = package;
+ enable = true;
+ nginx = {
+ forceSSL = false;
+ enableACME = false;
+ };
+ };
+ services.mysql = {
+ enable = true;
+ package = pkgs.mysql;
+ };
+ services.nginx.enable = true;
+ };
+
+ testScript = ''
+ startAll;
+ $machine->waitForUnit("mysql.service");
+ $machine->waitForUnit("phpfpm-matomo.service");
+ $machine->waitForUnit("nginx.service");
+ $machine->succeed("curl -sSfL http://localhost/ | grep 'Matomo[^<]*Installation'");
+ '';
+ };
+in {
+ matomo = matomoTest pkgs.matomo // {
+ name = "matomo";
+ meta.maintainers = with maintainers; [ florianjacob kiwi mmilata ];
+ };
+ matomo-beta = matomoTest pkgs.matomo-beta // {
+ name = "matomo-beta";
+ meta.maintainers = with maintainers; [ florianjacob kiwi mmilata ];
+ };
+}
diff --git a/nixos/tests/orangefs.nix b/nixos/tests/orangefs.nix
new file mode 100644
index 000000000000..bdf4fc10c447
--- /dev/null
+++ b/nixos/tests/orangefs.nix
@@ -0,0 +1,88 @@
+import ./make-test.nix ({ ... } :
+
+let
+ server = { pkgs, ... } : {
+ networking.firewall.allowedTCPPorts = [ 3334 ];
+ boot.initrd.postDeviceCommands = ''
+ ${pkgs.e2fsprogs}/bin/mkfs.ext4 -L data /dev/vdb
+ '';
+
+ virtualisation.emptyDiskImages = [ 4096 ];
+
+ fileSystems = pkgs.lib.mkVMOverride
+ [ { mountPoint = "/data";
+ device = "/dev/disk/by-label/data";
+ fsType = "ext4";
+ }
+ ];
+
+ services.orangefs.server = {
+ enable = true;
+ dataStorageSpace = "/data/storage";
+ metadataStorageSpace = "/data/meta";
+ servers = {
+ server1 = "tcp://server1:3334";
+ server2 = "tcp://server2:3334";
+ };
+ };
+ };
+
+ client = { lib, ... } : {
+ networking.firewall.enable = true;
+
+ services.orangefs.client = {
+ enable = true;
+ fileSystems = [{
+ target = "tcp://server1:3334/orangefs";
+ mountPoint = "/orangefs";
+ }];
+ };
+ };
+
+in {
+ name = "orangefs";
+
+ nodes = {
+ server1 = server;
+ server2 = server;
+
+ client1 = client;
+ client2 = client;
+ };
+
+ testScript = ''
+ # format storage
+ foreach my $server (($server1,$server2))
+ {
+ $server->start();
+ $server->waitForUnit("multi-user.target");
+ $server->succeed("mkdir -p /data/storage /data/meta");
+ $server->succeed("chown orangefs:orangefs /data/storage /data/meta");
+ $server->succeed("chmod 0770 /data/storage /data/meta");
+ $server->succeed("sudo -g orangefs -u orangefs pvfs2-server -f /etc/orangefs/server.conf");
+ }
+
+ # start services after storage is formated on all machines
+ foreach my $server (($server1,$server2))
+ {
+ $server->succeed("systemctl start orangefs-server.service");
+ }
+
+ # Check if clients can reach and mount the FS
+ foreach my $client (($client1,$client2))
+ {
+ $client->start();
+ $client->waitForUnit("orangefs-client.service");
+ # Both servers need to be reachable
+ $client->succeed("pvfs2-check-server -h server1 -f orangefs -n tcp -p 3334");
+ $client->succeed("pvfs2-check-server -h server2 -f orangefs -n tcp -p 3334");
+ $client->waitForUnit("orangefs.mount");
+
+ }
+
+ # R/W test between clients
+ $client1->succeed("echo test > /orangefs/file1");
+ $client2->succeed("grep test /orangefs/file1");
+
+ '';
+})
diff --git a/pkgs/applications/accessibility/contrast/default.nix b/pkgs/applications/accessibility/contrast/default.nix
new file mode 100644
index 000000000000..3e03cf2da730
--- /dev/null
+++ b/pkgs/applications/accessibility/contrast/default.nix
@@ -0,0 +1,71 @@
+{ stdenv
+, fetchFromGitLab
+, cairo
+, dbus
+, desktop-file-utils
+, gettext
+, glib
+, gtk3
+, libhandy
+, meson
+, ninja
+, pango
+, pkgconfig
+, python3
+, rustc
+, rustPlatform
+, wrapGAppsHook
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "contrast";
+ version = "0.0.2";
+
+ src = fetchFromGitLab {
+ domain = "gitlab.gnome.org";
+ group = "World";
+ owner = "design";
+ repo = "contrast";
+ rev = version;
+ sha256 = "0rm705zrk9rfv31pwbqxrswi5v6vhnghxa8dgxjmcrh00l8dm6j9";
+ };
+
+ cargoSha256 = "06vgc89d93fhjcyy9d1v6lf8kr34pl5bbpwbv2jpfahpj9y84bgj";
+
+ nativeBuildInputs = [
+ desktop-file-utils
+ gettext
+ meson
+ ninja
+ pkgconfig
+ python3
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ cairo
+ dbus
+ glib
+ gtk3
+ libhandy
+ pango
+ ];
+
+ postPatch = ''
+ patchShebangs build-aux/meson_post_install.py
+ '';
+
+ # Don't use buildRustPackage phases, only use it for rust deps setup
+ configurePhase = null;
+ buildPhase = null;
+ checkPhase = null;
+ installPhase = null;
+
+ meta = with stdenv.lib; {
+ description = "Checks whether the contrast between two colors meet the WCAG requirements";
+ homepage = https://gitlab.gnome.org/World/design/contrast;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ jtojnar ];
+ };
+}
+
diff --git a/pkgs/applications/audio/bsequencer/default.nix b/pkgs/applications/audio/bsequencer/default.nix
new file mode 100644
index 000000000000..e4ac2fbbcdc2
--- /dev/null
+++ b/pkgs/applications/audio/bsequencer/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ pname = "BSEQuencer";
+ version = "0.4";
+
+ src = fetchFromGitHub {
+ owner = "sjaehn";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0c3bm2z6z2bjjv1cy50383zr81h99rcb2frmxad0r7lhi27mjyqn";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ xorg.libX11 cairo lv2
+ ];
+
+ installFlags = [ "PREFIX=$(out)" ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/sjaehn/BSEQuencer;
+ description = "Multi channel MIDI step sequencer LV2 plugin";
+ maintainers = [ maintainers.magnetophon ];
+ platforms = platforms.linux;
+ license = licenses.gpl3;
+ };
+}
diff --git a/pkgs/applications/audio/bshapr/default.nix b/pkgs/applications/audio/bshapr/default.nix
new file mode 100644
index 000000000000..1d49ca1fa4fe
--- /dev/null
+++ b/pkgs/applications/audio/bshapr/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ pname = "BShapr";
+ version = "0.4";
+
+ src = fetchFromGitHub {
+ owner = "sjaehn";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "02b4wdfhr9y7z2k6ls086gv3vz4sjf7b1k8ryh573bzd8nr4896v";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ xorg.libX11 cairo lv2
+ ];
+
+ installFlags = [ "PREFIX=$(out)" ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/sjaehn/BShapr;
+ description = "Beat / envelope shaper LV2 plugin";
+ maintainers = [ maintainers.magnetophon ];
+ platforms = platforms.linux;
+ license = licenses.gpl3;
+ };
+}
diff --git a/pkgs/applications/audio/bslizr/default.nix b/pkgs/applications/audio/bslizr/default.nix
new file mode 100644
index 000000000000..8fbac6daf466
--- /dev/null
+++ b/pkgs/applications/audio/bslizr/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ pname = "BSlizr";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "sjaehn";
+ repo = pname;
+ rev = "${version}";
+ sha256 = "1xqhpppfj47nzmyksbqgfvvi5j807g96hqla544w2f752zz4yi0s";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ xorg.libX11 cairo lv2
+ ];
+
+ installFlags = [ "PREFIX=$(out)" ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/sjaehn/BSlizr;
+ description = "Sequenced audio slicing effect LV2 plugin (step sequencer effect)";
+ maintainers = [ maintainers.magnetophon ];
+ platforms = platforms.linux;
+ license = licenses.gpl3;
+ };
+}
diff --git a/pkgs/applications/audio/spotify-tui/default.nix b/pkgs/applications/audio/spotify-tui/default.nix
index 5c681eac990c..a73a46a7cb07 100644
--- a/pkgs/applications/audio/spotify-tui/default.nix
+++ b/pkgs/applications/audio/spotify-tui/default.nix
@@ -2,16 +2,18 @@
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
- version = "0.6.2";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "Rigellute";
repo = "spotify-tui";
rev = "v${version}";
- sha256 = "0ksrdavnvjpph7h0lcc2hvxhygfbn0dmsabq2ilslvpa80ph2c53";
+ sha256 = "0pgmcld48sd34jpsc4lr8dbqs8iwk0xp9aa3b15m61mv3lf04qc6";
};
- cargoSha256 = "029g80mcqvmckszpbzm4hxs5w63n41ah4rc1b93i9c1nzvncd811";
+ cargoSha256 = "1rb4dl9zn3xx2yrapx5cfsli93ggmdq8w9fqi8cy8giyja1mnqfl";
+
+ cargoPatches = [ ./fix-cargo-lock-version.patch ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ]
diff --git a/pkgs/applications/audio/spotify-tui/fix-cargo-lock-version.patch b/pkgs/applications/audio/spotify-tui/fix-cargo-lock-version.patch
new file mode 100644
index 000000000000..d38c6890033b
--- /dev/null
+++ b/pkgs/applications/audio/spotify-tui/fix-cargo-lock-version.patch
@@ -0,0 +1,13 @@
+diff --git i/Cargo.lock w/Cargo.lock
+index e1eae72..e004898 100644
+--- i/Cargo.lock
++++ w/Cargo.lock
+@@ -1310,7 +1310,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
+
+ [[package]]
+ name = "spotify-tui"
+-version = "0.7.5"
++version = "0.8.0"
+ dependencies = [
+ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
+ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/pkgs/applications/blockchains/clightning.nix b/pkgs/applications/blockchains/clightning.nix
index b20a6b3e8aa8..61c2acab563a 100644
--- a/pkgs/applications/blockchains/clightning.nix
+++ b/pkgs/applications/blockchains/clightning.nix
@@ -1,19 +1,19 @@
{ stdenv, python3, pkgconfig, which, libtool, autoconf, automake,
- autogen, sqlite, gmp, zlib, fetchurl, unzip, fetchpatch }:
+ autogen, sqlite, gmp, zlib, fetchurl, unzip, fetchpatch, gettext }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "clightning";
- version = "0.7.2.1";
+ version = "0.7.3";
src = fetchurl {
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
- sha256 = "3be716948efc1208b5e6a41e3034e4e4eecc5abbdac769fd1d999a104ac3a2ec";
+ sha256 = "ef2193940146d1b8ff0cc03602842c4d81db9ca6a5e73927e4f8932715e931a4";
};
enableParallelBuilding = true;
- nativeBuildInputs = [ autoconf autogen automake libtool pkgconfig which unzip ];
+ nativeBuildInputs = [ autoconf autogen automake libtool pkgconfig which unzip gettext ];
buildInputs =
let py3 = python3.withPackages (p: [ p.Mako ]);
in [ sqlite gmp zlib py3 ];
@@ -28,7 +28,8 @@ stdenv.mkDerivation rec {
patchShebangs \
tools/generate-wire.py \
tools/update-mocks.sh \
- tools/mockup.sh
+ tools/mockup.sh \
+ devtools/sql-rewrite.py
'';
doCheck = false;
diff --git a/pkgs/applications/blockchains/jormungandr/default.nix b/pkgs/applications/blockchains/jormungandr/default.nix
index 7230a5d83f68..328b75eea18a 100644
--- a/pkgs/applications/blockchains/jormungandr/default.nix
+++ b/pkgs/applications/blockchains/jormungandr/default.nix
@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "jormungandr";
- version = "0.7.0-rc1";
+ version = "0.7.0-rc3";
src = fetchgit {
url = "https://github.com/input-output-hk/${pname}";
rev = "v${version}";
- sha256 = "02ihnq7b32rwx7ychrj76rin1z3s9np5yjylppxm0qp5sjkik9ff";
+ sha256 = "09hfmzgz1imz22w27c0aal6v7m4yfivh0sk63mawcd4m7sa6045c";
fetchSubmodules = true;
};
- cargoSha256 = "1pp829azj6aw68ba637rm852sj61nxznxfzrlqs9ds6adk9h7abs";
+ cargoSha256 = "0syfwykwzfm9nqpna0qrmjiv4dp0rxxbpxv8qawq9ivs9z8fbq2m";
nativeBuildInputs = [ pkgconfig protobuf ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
diff --git a/pkgs/applications/editors/texmacs/default.nix b/pkgs/applications/editors/texmacs/default.nix
index 2c391cae517b..31160c0916c5 100644
--- a/pkgs/applications/editors/texmacs/default.nix
+++ b/pkgs/applications/editors/texmacs/default.nix
@@ -1,7 +1,13 @@
{ stdenv, callPackage,
fetchurl, guile_1_8, qt4, xmodmap, which, makeWrapper, freetype,
+ libjpeg,
+ sqlite,
tex ? null,
aspell ? null,
+ git ? null,
+ python3 ? null,
+ cmake,
+ pkgconfig,
ghostscriptX ? null,
extraFonts ? false,
chineseFonts ? false,
@@ -10,7 +16,7 @@
let
pname = "TeXmacs";
- version = "1.99.2";
+ version = "1.99.10";
common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
};
@@ -19,17 +25,38 @@ stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
- url = "http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
- sha256 = "0l48g9746igiaxw657shm8g3xxk565vzsviajlrxqyljbh6py0fs";
+ url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
+ sha256 = "1k12bkcik7mv93q0j7q3b77x8s6rmvlb23s3v7nnzdwjxlp5lph2";
};
- buildInputs = [ guile_1_8 qt4 makeWrapper ghostscriptX freetype ];
+ cmakeFlags = [
+ # Texmacs' cmake build as of writing defaults to Qt5,
+ # but we haven't updated to that yet.
+ "-DTEXMACS_GUI=Qt4"
+ ];
+
+ enableParallelBuilding = true;
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+ buildInputs = [
+ guile_1_8
+ qt4
+ makeWrapper
+ ghostscriptX
+ freetype
+ libjpeg
+ sqlite
+ git
+ python3
+ ];
NIX_LDFLAGS = [ "-lz" ];
postInstall = "wrapProgram $out/bin/texmacs --suffix PATH : " +
(if ghostscriptX == null then "" else "${ghostscriptX}/bin:") +
(if aspell == null then "" else "${aspell}/bin:") +
(if tex == null then "" else "${tex}/bin:") +
+ (if git == null then "" else "${git}/bin:") +
+ (if python3 == null then "" else "${python3}/bin:") +
"${xmodmap}/bin:${which}/bin";
inherit (common) postPatch;
diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix
index bd5dea8014d6..9733f1e2efa0 100644
--- a/pkgs/applications/graphics/meshlab/default.nix
+++ b/pkgs/applications/graphics/meshlab/default.nix
@@ -1,13 +1,53 @@
-{ fetchFromGitHub, libGLU, llvmPackages, qtbase, qtscript, qtxmlpatterns }:
+{ mkDerivation, lib, fetchFromGitHub
+, fetchpatch
+, libGLU
+, qtbase
+, qtscript
+, qtxmlpatterns
+, lib3ds
+, bzip2
+, muparser
+, levmar
+}:
let
- meshlabRev = "d596d7c086c51fbdfb56050f9c30b55dd0286d4c";
- vcglibRev = "6c3c940e34327322507c703889f9f1cfa73ab183";
+ meshlabRev = "25f3d17b1d1d47ddc51179cb955f3027b7638745";
+ vcglibRev = "910da4c3e310f2e6557bd7a39c4f1529e61573e5";
# ^ this should be the latest commit in the vcglib devel branch at the time of the meshlab revision
+ # We keep it separate here instead of using the `vcg` nix package because
+ # as of writing, meshlab upstream does not seem to follow a proper
+ # release process, and the other dependencies of `vcg` may no longer
+ # work when we upgrade it for the purpose of meshlab.
- stdenv = llvmPackages.stdenv; # only building with clang seems to be tested upstream
-in stdenv.mkDerivation {
- name = "meshlab-20180627-beta";
+ # Unfixed upstream compile error; see
+ # https://github.com/cnr-isti-vclab/meshlab/issues/188#issuecomment-364785362
+ # that has with fixed line endings.
+ import_bundle_out_patch = fetchpatch {
+ name = "import_bundle_out.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/import_bundle_out.patch?h=meshlab-git&id=f7250ea818470f07dc9b86726407091d39c0be6f";
+ sha256 = "1g6nli15i3fjd6jsgkxvb33kzbcv67xjkc3jv9r51lrwlm1ifzxi";
+ };
+
+ # Reduces amount of vendored libraries, fixes `/linux` vs `linux-g++`
+ # directory name linker errors.
+ external_patch = fetchpatch {
+ name = "external.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/external.patch?h=meshlab-git&id=f7250ea818470f07dc9b86726407091d39c0be6f";
+ sha256 = "1rxwkxhmxis1420rc1w7dg89gkmym68lpszsq6snl6dzpl3ingsb";
+ };
+ _3ds_patch = fetchpatch {
+ name = "3ds.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/3ds.patch?h=meshlab-git&id=f7250ea818470f07dc9b86726407091d39c0be6f";
+ sha256 = "1w435b7p1ggi2bzib4yyszmk54drjgpbn8n9mnsk1slsxnp2vmg8";
+ };
+ muparser_patch = fetchpatch {
+ name = "muparser.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/muparser.patch?h=meshlab-git&id=f7250ea818470f07dc9b86726407091d39c0be6f";
+ sha256 = "1sf7xqwc2j8xxdx2yklwifii9qqgknvx6ahk2hq76mg78ry1nzhq";
+ };
+
+in mkDerivation {
+ name = "meshlab-20190129-beta";
srcs =
[
@@ -15,38 +55,54 @@ in stdenv.mkDerivation {
owner = "cnr-isti-vclab";
repo = "meshlab";
rev = meshlabRev;
- sha256 = "0xi7wiyy0yi545l5qvccbqahlcsf70mhx829gf7bq29640si4rax";
+ sha256 = "16d2i91hrxvrr5p0k33g3fzis9zp4gsy3n5y2nhafvsgdmaidiij";
name = "meshlab-${meshlabRev}";
})
(fetchFromGitHub {
owner = "cnr-isti-vclab";
repo = "vcglib";
rev = vcglibRev;
- sha256 = "0jfgjvf21y9ncmyr7caipy3ardhig7hh9z8miy885c99b925hhwd";
+ sha256 = "0xpnjpwpj57hgai184rzyk9lbq6d9vbjzr477dvl5nplpwa420m1";
name = "vcglib-${vcglibRev}";
})
];
sourceRoot = "meshlab-${meshlabRev}";
+ # Meshlab is not format-security clean; without disabling hardening, we get:
+ # ../../external/qhull-2003.1/src/io.c:2169:3: error: format not a string literal and no format arguments [-Werror=format-security]
+ # fprintf(fp, endfmt);
+ # ^~~~~~~
hardeningDisable = [ "format" ];
+
enableParallelBuilding = true;
- patches = [ ./fix-20180627-beta.patch ];
+ prePatch =
+ ''
+ # MeshLab has ../vcglib hardcoded everywhere, so move the source dir
+ mv ../vcglib-${vcglibRev} ../vcglib
+
+ # Make all source files writable so that patches can be applied.
+ chmod -R u+w ..
+
+ patch -Np1 --directory=../vcglib -i ${import_bundle_out_patch}
+
+ patch -Np1 -i ${external_patch}
+ # Individual libraries
+ patch -Np1 -i ${_3ds_patch}
+ patch -Np1 -i ${muparser_patch}
+ ''
+ ;
buildPhase = ''
- # MeshLab has ../vcglib hardcoded everywhere, so move the source dir
- mv ../vcglib-${vcglibRev} ../vcglib
-
cd src
export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS"
- export QMAKESPEC="linux-clang"
pushd external
- qmake -recursive external.pro
+ qmake -recursive $QMAKE_FLAGS external.pro
buildPhase
popd
- qmake -recursive meshlab_full.pro
+ qmake -recursive $QMAKE_FLAGS meshlab_full.pro
buildPhase
'';
@@ -57,13 +113,22 @@ in stdenv.mkDerivation {
ln -s $out/opt/meshlab/meshlabserver $out/bin/meshlabserver
'';
- buildInputs = [ libGLU llvmPackages.openmp qtbase qtscript qtxmlpatterns ];
+ buildInputs = [
+ libGLU
+ qtbase
+ qtscript
+ qtxmlpatterns
+ lib3ds
+ bzip2
+ muparser
+ levmar
+ ];
meta = {
description = "A system for processing and editing 3D triangular meshes.";
homepage = http://www.meshlab.net/;
- license = stdenv.lib.licenses.gpl3;
- maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; linux;
+ license = lib.licenses.gpl3;
+ maintainers = with lib.maintainers; [viric];
+ platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/graphics/meshlab/fix-20180627-beta.patch b/pkgs/applications/graphics/meshlab/fix-20180627-beta.patch
deleted file mode 100644
index 177b8e90c574..000000000000
--- a/pkgs/applications/graphics/meshlab/fix-20180627-beta.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/src/meshlabplugins/edit_paint/paintbox.cpp b/src/meshlabplugins/edit_paint/paintbox.cpp
-index 2097a5b..6bcd1a4 100644
---- a/src/meshlabplugins/edit_paint/paintbox.cpp
-+++ b/src/meshlabplugins/edit_paint/paintbox.cpp
-@@ -23,6 +23,7 @@
-
- #include "paintbox.h"
- #include
-+#include
-
- Paintbox::Paintbox(QWidget * parent, Qt::WindowFlags flags) : QWidget(parent, flags)
- {
-diff --git a/src/meshlabplugins/render_gdp/shaderDialog.h b/src/meshlabplugins/render_gdp/shaderDialog.h
-index a62d3b5..7eb1594 100644
---- a/src/meshlabplugins/render_gdp/shaderDialog.h
-+++ b/src/meshlabplugins/render_gdp/shaderDialog.h
-@@ -32,6 +32,8 @@
- #include "shaderStructs.h"
- #include "ui_shaderDialog.h"
- #include
-+#include
-+#include
-
- class QGLWidget;
-
diff --git a/pkgs/applications/misc/cheat/default.nix b/pkgs/applications/misc/cheat/default.nix
index 357dd9bcb8a7..a86c1e8bc055 100644
--- a/pkgs/applications/misc/cheat/default.nix
+++ b/pkgs/applications/misc/cheat/default.nix
@@ -1,36 +1,24 @@
-{ stdenv, python3, fetchFromGitHub }:
+{ stdenv, fetchFromGitHub, buildGoModule }:
-with python3.pkgs;
-buildPythonApplication rec {
+buildGoModule rec {
pname = "cheat";
- version = "2.5.1";
-
- propagatedBuildInputs = [ docopt pygments termcolor ];
+ version = "3.0.3";
src = fetchFromGitHub {
owner = "chrisallenlane";
repo = "cheat";
rev = version;
- sha256 = "1i543hvg1yizamfd83bawflfcb500hvc72i59ikck8j1hjk50hsl";
+ sha256 = "19w1admdcgld9vlc4fsyc5d9bi6rmwhr2x2ji43za2vjlk34hnnx";
};
- # no tests available
- doCheck = false;
- postInstall = ''
- install -D man1/cheat.1.gz $out/share/man/man1/cheat.1.gz
- mv $out/${python3.sitePackages}/etc $out/
- mv $out/${python3.sitePackages}/usr/share/* $out/share/
- rm -r $out/${python3.sitePackages}/usr
- '';
+ subPackages = [ "cmd/cheat" ];
- makeWrapperArgs = [
- "--suffix" "CHEAT_PATH" ":" "$out/share/cheat"
- ];
+ modSha256 = "189cqnfl403f4lk7g9v68mwk93ciglqli639dk4x9091lvn5gq5q";
meta = with stdenv.lib; {
- description = "cheat allows you to create and view interactive cheatsheets on the command-line";
+ description = "Create and view interactive cheatsheets on the command-line";
maintainers = with maintainers; [ mic92 ];
license = with licenses; [ gpl3 mit ];
- homepage = https://github.com/chrisallenlane/cheat;
+ homepage = "https://github.com/chrisallenlane/cheat";
};
}
diff --git a/pkgs/applications/misc/cherrytree/default.nix b/pkgs/applications/misc/cherrytree/default.nix
index 4e734aa849f6..d760cee6374d 100644
--- a/pkgs/applications/misc/cherrytree/default.nix
+++ b/pkgs/applications/misc/cherrytree/default.nix
@@ -1,8 +1,6 @@
-{ stdenv, fetchurl, pythonPackages, gettext }:
-
-with stdenv.lib;
-stdenv.mkDerivation rec {
+{ lib, fetchurl, pythonPackages, gettext }:
+pythonPackages.buildPythonApplication rec {
pname = "cherrytree";
version = "0.38.9";
@@ -11,26 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "0xal09ijgxbzvp003s40xbrfnpq3ald1fw8nnpqq3yg7h6g6c5pw";
};
- buildInputs = with pythonPackages;
- [ python gettext wrapPython pygtk dbus-python pygtksourceview ];
+ nativeBuildInputs = [ gettext ];
- pythonPath = with pythonPackages;
- [ pygtk dbus-python pygtksourceview ];
+ propagatedBuildInputs = with pythonPackages; [ pygtk dbus-python pygtksourceview ];
patches = [ ./subprocess.patch ];
- installPhase = ''
- python setup.py install --prefix="$out"
-
- for file in "$out"/bin/*; do
- wrapProgram "$file" \
- --prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH"
- done
- '';
-
doCheck = false;
- meta = {
+ meta = with lib; {
description = "An hierarchical note taking application";
longDescription = ''
Cherrytree is an hierarchical note taking application,
@@ -42,9 +29,8 @@ stdenv.mkDerivation rec {
around your hard drive can be conveniently placed into a
Cherrytree document where you can easily find it.
'';
- homepage = http://www.giuspen.com/cherrytree;
+ homepage = "http://www.giuspen.com/cherrytree";
license = licenses.gpl3;
- platforms = platforms.linux;
- maintainers = [ maintainers.AndersonTorres ];
+ maintainers = with maintainers; [ AndersonTorres ];
};
}
diff --git a/pkgs/applications/misc/elogind/default.nix b/pkgs/applications/misc/elogind/default.nix
new file mode 100644
index 000000000000..acfbc7ec917f
--- /dev/null
+++ b/pkgs/applications/misc/elogind/default.nix
@@ -0,0 +1,82 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, meson
+, ninja
+, m4
+, gperf
+, getent
+, libcap
+, gettext
+, pkgconfig
+, udev
+, eudev
+, libxslt
+, python3
+, docbook5
+, docbook_xsl
+, docbook_xsl_ns
+, docbook_xml_dtd_42
+, docbook_xml_dtd_45
+
+# Defaulting to false because usually the rationale for using elogind is to
+# use it in situation where a systemd dependency does not work (especially
+# when building with musl, which elogind explicitly supports).
+, enableSystemd ? false
+}:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+ pname = "elogind";
+ version = "239.5";
+
+ src = fetchFromGitHub {
+ owner = "elogind";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1gdiy4vbx4gs2hnb79x14zi530mlq26glxpzp3c95w8l058wj4ba";
+ };
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ m4
+ pkgconfig
+ gperf
+ getent
+ libcap
+ gettext
+ libxslt.bin # xsltproc
+ docbook5 docbook_xsl docbook_xsl_ns docbook_xml_dtd_42 docbook_xml_dtd_45 # needed for docbook without Internet
+ (python3.withPackages (p: with p; [ lxml ])) # fixes: man/meson.build:111:0: ERROR: Could not execute command "/build/source/tools/xml_helper.py".
+ ];
+
+ buildInputs =
+ if enableSystemd then [ udev ] else [ eudev ];
+
+ # Inspired by the systemd `preConfigure`.
+ # Conceptually we should patch all files required during the build, but not scripts
+ # supposed to run at run-time of the software (important for cross-compilation).
+ # This package seems to have mostly scripts that run at build time.
+ preConfigure = ''
+ for dir in tools src/test; do
+ patchShebangs $dir
+ done
+
+ patchShebangs src/basic/generate-*.{sh,py}
+ '';
+
+ mesonFlags = [
+ "-Drootprefix=${placeholder "out"}"
+ "-Dsysconfdir=${placeholder "out"}/etc"
+ ];
+
+ meta = {
+ homepage = https://github.com/elogind/elogind;
+ description = ''The systemd project's "logind", extracted to a standalone package'';
+ platforms = platforms.linux; # probably more
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ nh2 ];
+ };
+}
diff --git a/pkgs/applications/misc/firestarter/default.nix b/pkgs/applications/misc/firestarter/default.nix
index e93d0ab69a7b..82bcf5a4aa07 100644
--- a/pkgs/applications/misc/firestarter/default.nix
+++ b/pkgs/applications/misc/firestarter/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchFromGitHub, python3, cudatoolkit,
+{ stdenv, fetchFromGitHub, glibc, python3, cudatoolkit,
withCuda ? true
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "firestarter";
- version = "1.7.3";
+ version = "1.7.4";
src = fetchFromGitHub {
owner = "tud-zih-energy";
repo = "FIRESTARTER";
rev = "v${version}";
- sha256 = "1gc7kmzx9nw22lyfmpyz72p974jf1hvw5nvszcaq7x6h8cz9ip15";
+ sha256 = "161mg0h1hvp6bxfjdhyfqrljvphys896mfd36254rbgzxm38ibi7";
};
nativeBuildInputs = [ python3 ];
- buildInputs = optionals withCuda [ cudatoolkit ];
+ buildInputs = [ glibc.static ] ++ optionals withCuda [ cudatoolkit ];
preBuild = ''
mkdir -p build
cd build
diff --git a/pkgs/applications/misc/gpxsee/default.nix b/pkgs/applications/misc/gpxsee/default.nix
index ef84b8a4e6d7..674b0061d6da 100644
--- a/pkgs/applications/misc/gpxsee/default.nix
+++ b/pkgs/applications/misc/gpxsee/default.nix
@@ -2,13 +2,13 @@
mkDerivation rec {
pname = "gpxsee";
- version = "7.15";
+ version = "7.16";
src = fetchFromGitHub {
owner = "tumic0";
repo = "GPXSee";
rev = version;
- sha256 = "036g17479nqy3kvy3dy3cn7yi7r57rsp28gkcay0qhf9h0az76p3";
+ sha256 = "1mkfhb2c9qafjpva600nyn6yik49l4q1k6id1xvrci37wsn6ijav";
};
nativeBuildInputs = [ qmake ];
diff --git a/pkgs/applications/misc/lutris/chrootenv.nix b/pkgs/applications/misc/lutris/chrootenv.nix
index 2334221f926d..16bf65262cc3 100644
--- a/pkgs/applications/misc/lutris/chrootenv.nix
+++ b/pkgs/applications/misc/lutris/chrootenv.nix
@@ -29,7 +29,7 @@ in buildFHSUserEnv {
# Dolphin
bluez ffmpeg gettext portaudio wxGTK30 miniupnpc mbedtls lzo sfml gsm
- wavpack gnutls-kdh orc nettle gmp pcre vulkan-loader
+ wavpack orc nettle gmp pcre vulkan-loader
# DOSBox
SDL_net SDL_sound
diff --git a/pkgs/applications/misc/pdfsam-basic/default.nix b/pkgs/applications/misc/pdfsam-basic/default.nix
index 30e68a89a1cb..4b086c691cdf 100644
--- a/pkgs/applications/misc/pdfsam-basic/default.nix
+++ b/pkgs/applications/misc/pdfsam-basic/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "pdfsam-basic";
- version = "4.0.4";
+ version = "4.0.5";
src = fetchurl {
url = "https://github.com/torakiki/pdfsam/releases/download/v${version}/pdfsam_${version}-1_amd64.deb";
- sha256 = "17lhzxlgr4l4dljy0b0avfrgbj9rsfzk1dzg0abqvld4w4igkqbq";
+ sha256 = "1znadsg65312h8yyxvj8k0c4pl3g9daif50vk50acwpblq49wm1v";
};
unpackPhase = ''
diff --git a/pkgs/applications/misc/wofi/default.nix b/pkgs/applications/misc/wofi/default.nix
new file mode 100644
index 000000000000..4cf4792696d4
--- /dev/null
+++ b/pkgs/applications/misc/wofi/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, fetchhg, pkg-config, wayland, gtk3 }:
+
+stdenv.mkDerivation rec {
+ pname = "wofi";
+ version = "2019-10-28";
+
+ src = fetchhg {
+ url = "https://hg.sr.ht/~scoopta/wofi";
+ rev = "3fac708b2b541bb9927ec1b2389c4eb294e1b35b";
+ sha256 = "0sp9hqm1lv9wyxj8z7vazs25nvl6yznd5vfhmwb51axwkr79s2ym";
+ };
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ wayland gtk3 ];
+
+ sourceRoot = "hg-archive/Release";
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp wofi $out/bin/
+ '';
+
+ meta = with lib; {
+ description = "A launcher/menu program for wlroots based wayland compositors such as sway";
+ homepage = "https://hg.sr.ht/~scoopta/wofi";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ erictapen ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
index 34372cb29d98..9851ff94d793 100644
--- a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
+++ b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
@@ -93,19 +93,19 @@ let
fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ];
# Upstream source
- version = "8.5.5";
+ version = "9.0";
lang = "en-US";
srcs = {
x86_64-linux = fetchurl {
url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux64-${version}_${lang}.tar.xz";
- sha256 = "00r5k9bbfpv3s6shxqypl13psr1zz51xiyz3vmm4flhr2qa4ycsz";
+ sha256 = "0aajbk65lpcazn8mdk7ngaqp0sykql8zjlkhznphxxw9v59mq3b7";
};
i686-linux = fetchurl {
- url = "https://github.com/TheTorProject/gettorbrowser/releases/download/v${version}/tor-browser-linux32-${version}_${lang}.tar.xz";
- sha256 = "1nxvw5kiggfr4n5an436ass84cvwjviaa894kfm72yf2ls149f29";
+ url = "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz";
+ sha256 = "08ahs9985ndcq1ywz06q4znai6a3ivibjk473kymzl6k40q1c9y2";
};
};
in
@@ -165,15 +165,12 @@ stdenv.mkDerivation rec {
# interpreter for pre-compiled Go binaries by invoking the interpreter
# directly.
sed -i TorBrowser/Data/Tor/torrc-defaults \
- -e "s|\(ClientTransportPlugin obfs2,obfs3,obfs4,scramblesuit\) exec|\1 exec $interp|" \
+ -e "s|\(ClientTransportPlugin meek_lite,obfs2,obfs3,obfs4,scramblesuit\) exec|\1 exec $interp|"
- # Fixup fte transport
- #
- # Note: the script adds its dirname to search path automatically
- sed -i TorBrowser/Tor/PluggableTransports/fteproxy.bin \
- -e "s,/usr/bin/env python,${python27.interpreter},"
+ # Similarly fixup snowflake
+ sed -i TorBrowser/Data/Tor/torrc-defaults \
+ -e "s|\(ClientTransportPlugin snowflake\) exec|\1 exec $interp|"
- patchelf --set-rpath "${fteLibPath}" TorBrowser/Tor/PluggableTransports/fte/cDFA.so
# Prepare for autoconfig.
#
@@ -237,6 +234,7 @@ stdenv.mkDerivation rec {
# Preload extensions by moving into the runtime instead of storing under the
# user's profile directory.
+ mkdir -p "$TBB_IN_STORE/browser/extensions"
mv "$TBB_IN_STORE/TorBrowser/Data/Browser/profile.default/extensions/"* \
"$TBB_IN_STORE/browser/extensions"
diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix
index 1297a4618310..c8d8d411f2d6 100644
--- a/pkgs/applications/networking/browsers/vivaldi/default.nix
+++ b/pkgs/applications/networking/browsers/vivaldi/default.nix
@@ -17,11 +17,11 @@ let
vivaldiName = if isSnapshot then "vivaldi-snapshot" else "vivaldi";
in stdenv.mkDerivation rec {
pname = "vivaldi";
- version = "2.8.1664.44-1";
+ version = "2.9.1705.31-1";
src = fetchurl {
url = "https://downloads.vivaldi.com/${branch}/vivaldi-${branch}_${version}_amd64.deb";
- sha256 = "0z1d03zw0jhvi14n06qfdr1n63idq56ly7mgiv27s21zvdma887k";
+ sha256 = "113bycfygyx09bc5bgsmdniffp3282004yrl7gr16dssxrw52al2";
};
unpackPhase = ''
diff --git a/pkgs/applications/networking/cawbird/default.nix b/pkgs/applications/networking/cawbird/default.nix
index 2f1f27a0057a..02368990a015 100644
--- a/pkgs/applications/networking/cawbird/default.nix
+++ b/pkgs/applications/networking/cawbird/default.nix
@@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, glib, gtk3, json-glib, sqlite, libsoup, gettext, vala
, meson, ninja, pkgconfig, gnome3, gst_all_1, wrapGAppsHook, gobject-introspection
-, glib-networking, python3, fetchpatch }:
+, glib-networking, python3 }:
stdenv.mkDerivation rec {
- version = "1.0.2";
+ version = "1.0.3.1";
pname = "cawbird";
src = fetchFromGitHub {
owner = "IBBoard";
repo = "cawbird";
rev = "v${version}";
- sha256 = "sha256:0b79ngwilicqkgacva93cir4rmk15yzgsih56yb3a4n6bqjispay";
+ sha256 = "sha256:1v1y4bx0mm518b9vlpsry12fw1qz2j28jfhjqq73blvzd89lgb0y";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 01707f12da22..693a70182130 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -7,7 +7,7 @@ assert lib.elem stdenv.hostPlatform.system platforms;
# Dropbox client to bootstrap installation.
# The client is self-updating, so the actual version may be newer.
let
- version = "81.4.195";
+ version = "83.4.152";
arch = {
x86_64-linux = "x86_64";
diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
index 9f1089d7889d..564e5e17b0a0 100644
--- a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
@@ -2,7 +2,7 @@
, gnome2, gtk3, atk, at-spi2-atk, cairo, pango, gdk-pixbuf, glib, freetype, fontconfig
, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite
, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib
-, cups, expat, udev, libnotify, libuuid, at-spi2-core
+, cups, expat, udev, libnotify, libuuid, at-spi2-core, libappindicator-gtk3
# Unfortunately this also overwrites the UI language (not just the spell
# checking language!):
, hunspellDicts, spellcheckerLanguage ? null # E.g. "de_DE"
@@ -37,6 +37,7 @@ let
gnome2.GConf
gtk3
pango
+ libappindicator-gtk3
libnotify
libuuid
libX11
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
index 7d68f66afc79..6bbe82c4a28e 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/mission-control/default.nix
@@ -1,22 +1,44 @@
-{ stdenv, fetchurl, pkgconfig, gnome3, telepathy-glib, libxslt, makeWrapper }:
+{ stdenv
+, fetchurl
+, pkgconfig
+, gnome3
+, telepathy-glib
+, python3
+, libxslt
+, makeWrapper
+}:
stdenv.mkDerivation rec {
- name = "${pname}-5.16.4";
pname = "telepathy-mission-control";
+ version = "5.16.5";
+
+ outputs = [ "out" "lib" "dev" ];
src = fetchurl {
- url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
- sha256 = "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp";
+ url = "https://telepathy.freedesktop.org/releases/${pname}/${pname}-${version}.tar.gz";
+ sha256 = "00xxv38cfdirnfvgyd56m60j0nkmsv5fz6p2ydyzsychicxl6ssc";
};
- buildInputs = [ telepathy-glib telepathy-glib.python ]; # ToDo: optional stuff missing
+ buildInputs = [
+ python3
+ ]; # ToDo: optional stuff missing
- nativeBuildInputs = [ pkgconfig libxslt makeWrapper ];
+ nativeBuildInputs = [
+ pkgconfig
+ libxslt
+ makeWrapper
+ ];
+
+ propagatedBuildInputs = [
+ telepathy-glib
+ ];
doCheck = true;
+ enableParallelBuilding = true;
+
preFixup = ''
- wrapProgram "$out/libexec/mission-control-5" \
+ wrapProgram "$lib/libexec/mission-control-5" \
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
diff --git a/pkgs/applications/networking/maestral/default.nix b/pkgs/applications/networking/maestral/default.nix
index 65490ada653a..708957bdf015 100644
--- a/pkgs/applications/networking/maestral/default.nix
+++ b/pkgs/applications/networking/maestral/default.nix
@@ -3,13 +3,13 @@
python3Packages.buildPythonApplication rec {
pname = "maestral${lib.optionalString withGui "-gui"}";
- version = "0.4.0";
+ version = "0.4.2";
src = fetchFromGitHub {
owner = "SamSchott";
repo = "maestral-dropbox";
rev = "v${version}";
- sha256 = "1jjn9cz43850xvs52gvx16qc5z4l91y4kpn6fpl05iwgaisbi1ws";
+ sha256 = "0xis0cqfp3wgajwk44dmi2gbfirmz0a0zi25qxdzpdn0z19hp88m";
};
disabled = python3Packages.pythonOlder "3.6";
diff --git a/pkgs/applications/office/pympress/default.nix b/pkgs/applications/office/pympress/default.nix
new file mode 100644
index 000000000000..5cb20e4d6138
--- /dev/null
+++ b/pkgs/applications/office/pympress/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, python3Packages
+, wrapGAppsHook
+, xvfb_run
+, gtk3
+, gobject-introspection
+, libcanberra-gtk3
+, dbus
+, poppler_gi
+, python3
+ }:
+
+python3Packages.buildPythonApplication rec {
+ pname = "pympress";
+ version = "1.4.0";
+
+ src = python3Packages.fetchPypi {
+ inherit pname version;
+ sha256 = "101wj6m931bj0ah6niw79i8ywb5zlb2783g7n7dmkhw6ay3jj4vq";
+ };
+
+ nativeBuildInputs = [
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ gobject-introspection
+ libcanberra-gtk3
+ poppler_gi
+ ];
+
+ propagatedBuildInputs = with python3Packages; [
+ pycairo
+ pygobject3
+ python-vlc
+ watchdog
+ ];
+
+ doCheck = false; # there are no tests
+
+ meta = with lib; {
+ description = "Simple yet powerful PDF reader designed for dual-screen presentations";
+ license = licenses.gpl2Plus;
+ homepage = "https://pympress.xyz/";
+ maintainers = [ maintainers.tbenst ];
+ };
+}
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
index 7c5c8f724401..bfa162a54a28 100644
--- a/pkgs/applications/office/todoman/default.nix
+++ b/pkgs/applications/office/todoman/default.nix
@@ -5,11 +5,11 @@ let
in
buildPythonApplication rec {
pname = "todoman";
- version = "3.6.0";
+ version = "3.7.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1c0jh9bi2xfjc7w4kka68mygl00zkp2qxhffnipmfvvykfjmlhk0";
+ sha256 = "16brw2zhm5vamffin6qjb0lxjlj3ba40vaficl851nw2xh2mrdhy";
};
LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix
index 4b5c2c683444..76519062f590 100644
--- a/pkgs/applications/radio/uhd/default.nix
+++ b/pkgs/applications/radio/uhd/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig
-, python, pythonPackages, orc, libusb1, boost }:
+, python, orc, libusb1, boost }:
# You need these udev rules to not have to run as root (copied from
# ${uhd}/share/uhd/utils/uhd-usrp.rules):
@@ -40,7 +40,12 @@ in stdenv.mkDerivation {
[ (stdenv.lib.optionalString stdenv.isAarch32 "-DCMAKE_CXX_FLAGS=-Wno-psabi") ];
nativeBuildInputs = [ cmake pkgconfig ];
- buildInputs = [ python pythonPackages.pyramid_mako orc libusb1 boost ];
+ buildInputs = [
+ (python.withPackages (ps: with ps; [ Mako six requests ]))
+ orc
+ libusb1
+ boost
+ ];
# Build only the host software
preConfigure = "cd host";
diff --git a/pkgs/applications/radio/welle-io/default.nix b/pkgs/applications/radio/welle-io/default.nix
index c6b09595c202..229200f23528 100644
--- a/pkgs/applications/radio/welle-io/default.nix
+++ b/pkgs/applications/radio/welle-io/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig
+{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
, qtbase, qtcharts, qtmultimedia, qtquickcontrols, qtquickcontrols2
-, faad2, rtl-sdr, soapysdr-with-plugins, libusb, fftwSinglePrec }:
+, faad2, rtl-sdr, soapysdr-with-plugins, libusb, fftwSinglePrec, lame, mpg123 }:
let
- version = "1.0";
+ version = "2.0";
-in stdenv.mkDerivation {
+in mkDerivation {
pname = "welle-io";
inherit version;
@@ -13,8 +13,8 @@ in stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "AlbrechtL";
repo = "welle.io";
- rev = "V${version}";
- sha256 = "1fsr0c2w16z45mcr85sqmllw1xf2gn6hp6f6fmgx2zfprq8gdmcr";
+ rev = "v${version}";
+ sha256 = "0cp8dyswgwidabaj9bvkkc6hl3160096j6myckd5bw00zxnbfiqn";
};
nativeBuildInputs = [ cmake pkgconfig ];
@@ -22,7 +22,9 @@ in stdenv.mkDerivation {
buildInputs = [
faad2
fftwSinglePrec
+ lame
libusb
+ mpg123
qtbase
qtcharts
qtmultimedia
@@ -38,7 +40,7 @@ in stdenv.mkDerivation {
enableParallelBuilding = true;
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A DAB/DAB+ Software Radio";
homepage = https://www.welle.io/;
maintainers = with maintainers; [ ck3d markuskowa ];
diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix
index a791f9a57727..bc0f7ed88316 100644
--- a/pkgs/applications/science/math/R/default.nix
+++ b/pkgs/applications/science/math/R/default.nix
@@ -4,6 +4,9 @@
, curl, Cocoa, Foundation, libobjc, libcxx, tzdata, fetchpatch
, withRecommendedPackages ? true
, enableStrictBarrier ? false
+# R as of writing does not support outputting both .so and .a files; it outputs:
+# --enable-R-static-lib conflicts with --enable-R-shlib and will be ignored
+, static ? false
, javaSupport ? (!stdenv.hostPlatform.isAarch32 && !stdenv.hostPlatform.isAarch64)
}:
@@ -33,6 +36,8 @@ stdenv.mkDerivation rec {
substituteInPlace configure --replace "-install_name libR.dylib" "-install_name $out/lib/R/lib/libR.dylib"
'';
+ dontDisableStatic = static;
+
preConfigure = ''
configureFlagsArray=(
--disable-lto
@@ -47,7 +52,7 @@ stdenv.mkDerivation rec {
--with-libtiff
--with-ICU
${stdenv.lib.optionalString enableStrictBarrier "--enable-strict-barrier"}
- --enable-R-shlib
+ ${if static then "--enable-R-static-lib" else "--enable-R-shlib"}
AR=$(type -p ar)
AWK=$(type -p gawk)
CC=$(type -p cc)
diff --git a/pkgs/applications/science/math/sage/patches/ignore-cmp-deprecation.patch b/pkgs/applications/science/math/sage/patches/ignore-cmp-deprecation.patch
new file mode 100644
index 000000000000..5c1073e13e96
--- /dev/null
+++ b/pkgs/applications/science/math/sage/patches/ignore-cmp-deprecation.patch
@@ -0,0 +1,13 @@
+diff --git a/src/sage/tests/cmdline.py b/src/sage/tests/cmdline.py
+index bd6b76ab82..f8340a8c66 100644
+--- a/src/sage/tests/cmdline.py
++++ b/src/sage/tests/cmdline.py
+@@ -872,7 +872,7 @@ def test_executable(args, input="", timeout=100.0, **kwds):
+ sage: with open(input, 'w') as F:
+ ....: _ = F.write(s)
+ sage: test_executable(["sage", "--rst2sws", input, output]) # py2
+- ('', '', 0)
++ ('', '...', 0)
+ sage: import tarfile # py2
+ sage: f = tarfile.open(output, 'r') # py2
+ sage: print(f.extractfile('sage_worksheet/worksheet.html').read()) # py2
diff --git a/pkgs/applications/science/math/sage/sage-src.nix b/pkgs/applications/science/math/sage/sage-src.nix
index dc9c9b5c874f..c7a3da68b15e 100644
--- a/pkgs/applications/science/math/sage/sage-src.nix
+++ b/pkgs/applications/science/math/sage/sage-src.nix
@@ -104,6 +104,9 @@ stdenv.mkDerivation rec {
url = "https://git.sagemath.org/sage.git/patch?id=d27dc479a5772d59e4bc85d805b6ffd595284f1d";
sha256 = "1nf1s9y7n30lhlbdnam7sghgaq9nasmv96415gl5jlcf7a3hlxk3";
})
+
+ # ignore a deprecation warning for usage of `cmp` in the attrs library in the doctests
+ ./patches/ignore-cmp-deprecation.patch
];
patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches;
diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json
index e78643fecc98..a0e62271373a 100644
--- a/pkgs/applications/version-management/gitlab/data.json
+++ b/pkgs/applications/version-management/gitlab/data.json
@@ -1,9 +1,9 @@
{
- "version": "12.4.0",
- "repo_hash": "0z2jykjv9sa4akq2qd4bl5ngqk3gpy2xfhxmcbd4d61w6l2jw00f",
+ "version": "12.4.1",
+ "repo_hash": "0dmb8ds6c5paxg35nricaywfhsgmp5rr46kk21hy2hsddgwkyb4k",
"owner": "gitlab-org",
"repo": "gitlab",
- "rev": "v12.4.0-ee",
+ "rev": "v12.4.1-ee",
"passthru": {
"GITALY_SERVER_VERSION": "1.67.0",
"GITLAB_PAGES_VERSION": "1.11.0",
diff --git a/pkgs/applications/version-management/monotone-viz/default.nix b/pkgs/applications/version-management/monotone-viz/default.nix
index bee1c82e11b6..c23feec6f436 100644
--- a/pkgs/applications/version-management/monotone-viz/default.nix
+++ b/pkgs/applications/version-management/monotone-viz/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, lablgtk, libgnomecanvas, camlp4, glib, pkgconfig, makeWrapper
+{ stdenv, fetchurl, ocamlPackages, gnome2, pkgconfig, makeWrapper
, libtool, libpng, yacc, expat, fontconfig, gd, pango, libjpeg, libwebp, xlibsWrapper, libXaw
}:
# We need an old version of Graphviz for format compatibility reasons.
@@ -7,6 +7,8 @@ let graphviz_2_0 = import ./graphviz-2.0.nix {
inherit stdenv fetchurl pkgconfig xlibsWrapper libpng libjpeg expat libXaw
yacc libtool fontconfig pango gd libwebp;
}; in
+let inherit (gnome2) libgnomecanvas glib; in
+let inherit (ocamlPackages) ocaml lablgtk camlp4; in
stdenv.mkDerivation rec {
version = "1.0.2";
pname = "monotone-viz";
diff --git a/pkgs/applications/virtualization/umoci/default.nix b/pkgs/applications/virtualization/umoci/default.nix
new file mode 100644
index 000000000000..245bb841af63
--- /dev/null
+++ b/pkgs/applications/virtualization/umoci/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, buildGoPackage }:
+
+buildGoPackage rec {
+ pname = "umoci";
+ version = "0.4.4";
+
+ goPackagePath = "github.com/openSUSE/umoci";
+
+ src = fetchFromGitHub {
+ owner = "openSUSE";
+ repo = "umoci";
+ rev = "v${version}";
+ sha256 = "1mmk9y6xk0qk5rgysmm7x16b025zzwa2sd13jd32drd48scai2dw";
+ };
+
+ meta = with stdenv.lib; {
+ description = "umoci modifies Open Container images";
+ homepage = https://umo.ci;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ zokrezyl ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix
index a1461032f1b8..fb00fff130f9 100644
--- a/pkgs/data/fonts/iosevka/default.nix
+++ b/pkgs/data/fonts/iosevka/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, lib, pkgs, fetchFromGitHub
-, nodejs, nodePackages, remarshal, ttfautohint-nox, otfcc
+{ stdenv, lib, pkgs, fetchFromGitHub, nodejs, nodePackages, remarshal
+, ttfautohint-nox, otfcc
# Custom font set options.
# See https://github.com/be5invis/Iosevka#build-your-own-style
@@ -13,27 +13,30 @@
# ];
# };
, privateBuildPlan ? null
-# Extra parameters. Can be used for ligature mapping.
+ # Extra parameters. Can be used for ligature mapping.
+ # It must be a raw toml string.
+ #
+ # Ex:
+ # [[iosevka.compLig]]
+ # unicode = 57808 # 0xe1d0
+ # featureTag = 'XHS0'
+ # sequence = "+>"
, extraParameters ? null
-# Custom font set name. Required if any custom settings above.
-, set ? null
-}:
+ # Custom font set name. Required if any custom settings above.
+, set ? null }:
assert (privateBuildPlan != null) -> set != null;
stdenv.mkDerivation rec {
- pname =
- if set != null
- then "iosevka-${set}"
- else "iosevka";
+ pname = if set != null then "iosevka-${set}" else "iosevka";
- version = "2.3.0";
+ version = "2.3.2";
src = fetchFromGitHub {
owner = "be5invis";
repo = "Iosevka";
rev = "v${version}";
- sha256 = "1qnbxhx9wvij9zia226mc3sy8j7bfsw5v1cvxvsbbwjskwqdamvv";
+ sha256 = "0s0vdvp1sn8p2pi2xm9n05pabk30ki7wjlmr0zz0nkhidb8apw6k";
};
nativeBuildInputs = [
@@ -44,9 +47,10 @@ stdenv.mkDerivation rec {
ttfautohint-nox
];
- privateBuildPlanJSON = builtins.toJSON { buildPlans.${pname} = privateBuildPlan; };
- extraParametersJSON = builtins.toJSON { ${pname} = extraParameters; };
- passAsFile = [ "privateBuildPlanJSON" "extraParametersJSON" ];
+ privateBuildPlanJSON =
+ builtins.toJSON { buildPlans.${pname} = privateBuildPlan; };
+ inherit extraParameters;
+ passAsFile = [ "privateBuildPlanJSON" "extraParameters" ];
configurePhase = ''
runHook preConfigure
@@ -55,9 +59,11 @@ stdenv.mkDerivation rec {
''}
${lib.optionalString (extraParameters != null) ''
echo -e "\n" >> parameters.toml
- remarshal -i "$extraParametersJSONPath" -if json -of toml >> parameters.toml
+ cat "$extraParametersPath" >> parameters.toml
''}
- ln -s ${nodePackages."iosevka-build-deps-../../data/fonts/iosevka"}/lib/node_modules/iosevka-build-deps/node_modules .
+ ln -s ${
+ nodePackages."iosevka-build-deps-../../data/fonts/iosevka"
+ }/lib/node_modules/iosevka-build-deps/node_modules .
runHook postConfigure
'';
@@ -76,8 +82,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
- homepage = https://be5invis.github.io/Iosevka;
- downloadPage = https://github.com/be5invis/Iosevka/releases;
+ homepage = "https://be5invis.github.io/Iosevka";
+ downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
diff --git a/pkgs/data/fonts/iosevka/package.json b/pkgs/data/fonts/iosevka/package.json
index ae162a975382..e6221b283927 100644
--- a/pkgs/data/fonts/iosevka/package.json
+++ b/pkgs/data/fonts/iosevka/package.json
@@ -1,6 +1,6 @@
{
"name": "iosevka-build-deps",
- "version": "2.3.0",
+ "version": "2.3.2",
"scripts": {
"build": "verda -f verdafile.js"
},
diff --git a/pkgs/data/fonts/twitter-color-emoji/default.nix b/pkgs/data/fonts/twitter-color-emoji/default.nix
index bb22ec517c21..4e464f370229 100644
--- a/pkgs/data/fonts/twitter-color-emoji/default.nix
+++ b/pkgs/data/fonts/twitter-color-emoji/default.nix
@@ -3,28 +3,20 @@
{ stdenv
, fetchFromGitHub
+, fetchpatch
, cairo
-, imagemagick
+, graphicsmagick
, pkg-config
, pngquant
, python3
, which
, zopfli
+, noto-fonts-emoji
}:
let
version = "12.1.2";
- # Cannot use noto-fonts-emoji.src since it is too old
- # and still tries to use vendored pngquant.
- notoSrc = fetchFromGitHub {
- name = "noto";
- owner = "googlefonts";
- repo = "noto-emoji";
- rev = "833a43d03246a9325e748a2d783006454d76ff66";
- sha256 = "1g6ikzk8banm3ihqm9g27ggjq2mn1b1hq3zhpl13lxid6mp60s4a";
- };
-
twemojiSrc = fetchFromGitHub {
name = "twemoji";
owner = "twitter";
@@ -33,36 +25,42 @@ let
sha256 = "0vzmlp83vnk4njcfkn03jcc1vkg2rf12zf5kj3p3a373xr4ds1zn";
};
- python = python3.withPackages (pp: with pp; [
- nototools
- ]);
in
stdenv.mkDerivation rec {
pname = "twitter-color-emoji";
inherit version;
srcs = [
- notoSrc
+ noto-fonts-emoji.src
twemojiSrc
];
- sourceRoot = notoSrc.name;
+ sourceRoot = noto-fonts-emoji.src.name;
postUnpack = ''
chmod -R +w ${twemojiSrc.name}
- mv ${twemojiSrc.name} ${notoSrc.name}
+ mv ${twemojiSrc.name} ${noto-fonts-emoji.src.name}
'';
nativeBuildInputs = [
cairo
- imagemagick
+ graphicsmagick
pkg-config
pngquant
- python
+ python3
+ python3.pkgs.nototools
which
zopfli
];
+ patches = [
+ # ImageMagick -> GrahphicsMagick
+ (fetchpatch {
+ url = "https://src.fedoraproject.org/rpms/twitter-twemoji-fonts/raw/3bc176c10ced2824fe03da5ff561e22a36bf8ccd/f/noto-emoji-use-gm.patch";
+ sha256 = "0yfmfzaaiq5163c06172g4r734aysiqyv1s28siv642vqzsqh4i2";
+ })
+ ];
+
postPatch = let
templateSubstitutions = stdenv.lib.concatStringsSep "; " [
''s#Noto Color Emoji#Twitter Color Emoji#''
@@ -118,6 +116,5 @@ stdenv.mkDerivation rec {
## Non-artwork is MIT
license = with licenses; [ asl20 ofl cc-by-40 mit ];
maintainers = with maintainers; [ jtojnar ];
- broken = true; # Can't be build using the current Python 3 version of nototools
};
}
diff --git a/pkgs/desktops/enlightenment/econnman.nix b/pkgs/desktops/enlightenment/econnman.nix
index 93b0cb59650b..9aca09a510a3 100644
--- a/pkgs/desktops/enlightenment/econnman.nix
+++ b/pkgs/desktops/enlightenment/econnman.nix
@@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
meta = {
description = "A user interface for the connman network connection manager";
homepage = https://enlightenment.org/;
- maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
- platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.lgpl3;
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
};
}
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index 5e3763c9a6dd..153616a3bc8e 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -1,28 +1,32 @@
-{ stdenv, fetchurl, pkgconfig, SDL, SDL2, alsaLib, bullet, curl, dbus,
+{ stdenv, fetchurl, meson, ninja, pkgconfig, SDL, SDL2, alsaLib, avahi, bullet, check, curl, dbus,
doxygen, expat, fontconfig, freetype, fribidi, ghostscript, giflib,
- glib, gst_all_1, gtk3, harfbuzz, jbig2dec, libGL, libdrm, libinput,
+ glib, gst_all_1, gtk3, harfbuzz, ibus, jbig2dec, libGL, libdrm, libinput,
libjpeg, libpng, libpulseaudio, libraw, librsvg, libsndfile,
libspectre, libtiff, libwebp, libxkbcommon, luajit, lz4, mesa,
openjpeg, openssl, poppler, python27Packages, systemd, udev,
- utillinux, writeText, xineLib, xorg, zlib
+ utillinux, writeText, xorg, zlib
}:
stdenv.mkDerivation rec {
pname = "efl";
- version = "1.22.5";
+ version = "1.23.1";
src = fetchurl {
url = "http://download.enlightenment.org/rel/libs/${pname}/${pname}-${version}.tar.xz";
- sha256 = "1cjk56z0whpzcqwg3xdq23kyp1g83xa67m9dlp7ywmb36bn4ca59";
+ sha256 = "0q9g4j7k10s1a8rv2ca9v9lydh7ml3zsrqvgncc4qhvdl76208nn";
};
nativeBuildInputs = [
+ meson
+ ninja
gtk3
pkgconfig
+ check
];
buildInputs = [
SDL
+ avahi
fontconfig
freetype
giflib
@@ -31,6 +35,7 @@ stdenv.mkDerivation rec {
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gstreamer
+ ibus
libGL
libpng
libpulseaudio
@@ -73,7 +78,6 @@ stdenv.mkDerivation rec {
poppler
python27Packages.dbus-python
utillinux
- xineLib
xorg.libXScrnSaver
xorg.libXcomposite
xorg.libXdamage
@@ -90,30 +94,25 @@ stdenv.mkDerivation rec {
xorg.xcbutilkeysyms
];
- # ac_ct_CXX must be set to random value, because then it skips some magic which does alternative searching for g++
- configureFlags = [
- "--enable-sdl"
- "--enable-drm"
- "--enable-elput"
- "--with-opengl=full"
- "--enable-image-loader-jp2k"
- "--enable-xinput22"
- "--enable-multisense"
- "--enable-liblz4"
- "--enable-systemd"
- "--enable-image-loader-webp"
- "--enable-harfbuzz"
- "--enable-xine"
- "--enable-fb"
- "--disable-tslib"
- "--with-systemdunitdir=$out/systemd/user"
- "ac_ct_CXX=foo"
+ mesonFlags = [
+ "--buildtype=release"
+ "-D build-tests=false" # disable build tests, which are not working
+ "-D drm=true"
+ "-D embedded-lz4=false"
+ "-D evas-loaders-disabler=json"
+ "-D fb=true"
+ "-D opengl=full"
+ "-D sdl=true"
];
patches = [ ./efl-elua.patch ];
postPatch = ''
patchShebangs src/lib/elementary/config_embed
+
+ # fix destination of systemd unit and dbus service
+ substituteInPlace systemd-services/meson.build --replace "dep.get_pkgconfig_variable('systemduserunitdir')" "'$out/systemd/user'"
+ substituteInPlace dbus-services/meson.build --replace "dep.get_pkgconfig_variable('session_bus_services_dir')" "'$out/share/dbus-1/services'"
'';
# bin/edje_cc creates $HOME/.run, which would break build of reverse dependencies.
@@ -122,35 +121,38 @@ stdenv.mkDerivation rec {
'';
preConfigure = ''
- export LD_LIBRARY_PATH="$(pwd)/src/lib/eina/.libs:$LD_LIBRARY_PATH"
+ # allow ecore_con to find libcurl.so, which is a runtime dependency (it is dlopened)
+ export LD_LIBRARY_PATH="${curl.out}/lib:$LD_LIBRARY_PATH"
+
source "$setupHook"
'';
NIX_CFLAGS_COMPILE = [ "-DluaL_reg=luaL_Reg" ]; # needed since luajit-2.1.0-beta3
postInstall = ''
+ # fix use of $out variable
substituteInPlace "$out/share/elua/core/util.lua" --replace '$out' "$out"
+
+ # add all module include dirs to the Cflags field in efl.pc
modules=$(for i in "$out/include/"*/; do printf ' -I''${includedir}/'`basename $i`; done)
- substituteInPlace "$out/lib/pkgconfig/efl.pc" --replace 'Cflags: -I''${includedir}/efl-1' \
- 'Cflags: -I''${includedir}/eina-1/eina'"$modules"
+ substituteInPlace "$out/lib/pkgconfig/efl.pc" \
+ --replace 'Cflags: -I''${includedir}/efl-1' \
+ 'Cflags: -I''${includedir}/eina-1/eina'"$modules"
# build icon cache
gtk-update-icon-cache "$out"/share/icons/Enlightenment-X
'';
- # EFL applications depend on libcurl, although it is linked at
- # runtime by hand in code (it is dlopened).
postFixup = ''
+ # EFL applications depend on libcurl, which is linked at runtime by hand in code (it is dlopened)
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/lib/libecore_con.so
'';
- enableParallelBuilding = true;
-
meta = {
description = "Enlightenment foundation libraries";
homepage = https://enlightenment.org/;
- platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.lgpl3;
- maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
};
}
diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix
index 99d1236ea881..0fb249135a24 100644
--- a/pkgs/desktops/enlightenment/enlightenment.nix
+++ b/pkgs/desktops/enlightenment/enlightenment.nix
@@ -17,10 +17,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- (pkgconfig.override { vanilla = true; })
gettext
meson
ninja
+ pkgconfig
];
buildInputs = [
diff --git a/pkgs/desktops/enlightenment/ephoto.nix b/pkgs/desktops/enlightenment/ephoto.nix
index f1455f68338f..3563b9aabc1c 100644
--- a/pkgs/desktops/enlightenment/ephoto.nix
+++ b/pkgs/desktops/enlightenment/ephoto.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- (pkgconfig.override { vanilla = true; })
+ pkgconfig
mesa.dev # otherwise pkg-config does not find gbm
makeWrapper
];
diff --git a/pkgs/desktops/enlightenment/rage.nix b/pkgs/desktops/enlightenment/rage.nix
index 8d99ce6e8e0e..f0a9799e5b49 100644
--- a/pkgs/desktops/enlightenment/rage.nix
+++ b/pkgs/desktops/enlightenment/rage.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson
ninja
- (pkgconfig.override { vanilla = true; })
+ pkgconfig
mesa.dev
wrapGAppsHook
];
diff --git a/pkgs/desktops/enlightenment/terminology.nix b/pkgs/desktops/enlightenment/terminology.nix
index 52f0ff15e235..672e1b3da73c 100644
--- a/pkgs/desktops/enlightenment/terminology.nix
+++ b/pkgs/desktops/enlightenment/terminology.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson
ninja
- (pkgconfig.override { vanilla = true; })
+ pkgconfig
makeWrapper
];
@@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Powerful terminal emulator based on EFL";
homepage = https://www.enlightenment.org/about-terminology;
- platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.bsd2;
- maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
};
}
diff --git a/pkgs/desktops/gnome-3/core/empathy/default.nix b/pkgs/desktops/gnome-3/core/empathy/default.nix
index 5e4bbf8cce17..067772524622 100644
--- a/pkgs/desktops/gnome-3/core/empathy/default.nix
+++ b/pkgs/desktops/gnome-3/core/empathy/default.nix
@@ -1,13 +1,54 @@
-{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib
-, file, librsvg, gnome3, gdk-pixbuf, python3
-, telepathy-glib, telepathy-farstream, glibcLocales
-, clutter-gtk, clutter-gst, gst_all_1, cogl, gnome-online-accounts
-, gcr, libsecret, folks, libpulseaudio, telepathy-mission-control
-, telepathy-logger, libnotify, clutter, libsoup, gnutls
-, evolution-data-server, yelp-xsl
-, libcanberra-gtk3, p11-kit, farstream, libtool, shared-mime-info
-, wrapGAppsHook, itstool, libxml2, libxslt, icu, libgee, gsettings-desktop-schemas
-, isocodes, enchant, libchamplain, geoclue2, geocode-glib, cheese, libgudev }:
+{ stdenv
+, intltool
+, fetchurl
+, webkitgtk
+, pkgconfig
+, gtk3
+, glib
+, file
+, librsvg
+, gnome3
+, gdk-pixbuf
+, python3
+, telepathy-glib
+, telepathy-farstream
+, clutter-gtk
+, clutter-gst
+, gst_all_1
+, cogl
+, gnome-online-accounts
+, gcr
+, libsecret
+, folks
+, libpulseaudio
+, telepathy-mission-control
+, telepathy-logger
+, libnotify
+, clutter
+, libsoup
+, gnutls
+, evolution-data-server
+, yelp-xsl
+, libcanberra-gtk3
+, p11-kit
+, farstream
+, libtool
+, shared-mime-info
+, wrapGAppsHook
+, itstool
+, libxml2
+, libxslt
+, icu
+, libgee
+, gsettings-desktop-schemas
+, isocodes
+, enchant
+, libchamplain
+, geoclue2
+, geocode-glib
+, cheese
+, libgudev
+}:
stdenv.mkDerivation rec {
pname = "empathy";
@@ -18,34 +59,76 @@ stdenv.mkDerivation rec {
sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc";
};
- propagatedUserEnvPkgs = [
- gnome-online-accounts shared-mime-info
- ];
propagatedBuildInputs = [
- folks telepathy-logger evolution-data-server telepathy-mission-control
- ];
- nativeBuildInputs = [
- pkgconfig libtool intltool itstool file wrapGAppsHook
- libxml2 libxslt yelp-xsl python3 glibcLocales
- ];
- buildInputs = [
- gtk3 glib webkitgtk icu gnome-online-accounts
- telepathy-glib clutter-gtk clutter-gst cogl
- gst_all_1.gstreamer gst_all_1.gst-plugins-base
- gcr libsecret libpulseaudio gdk-pixbuf
- libnotify clutter libsoup gnutls libgee p11-kit
- libcanberra-gtk3 telepathy-farstream farstream
- gnome3.adwaita-icon-theme gsettings-desktop-schemas
- librsvg
- # Spell-checking
- enchant isocodes
- # Display maps, location awareness, geocode support
- libchamplain geoclue2 geocode-glib
- # Cheese webcam support, camera monitoring
- cheese libgudev
+ folks
+ telepathy-logger
+ evolution-data-server
+ telepathy-mission-control
];
- LC_ALL = "en_US.UTF-8";
+ nativeBuildInputs = [
+ pkgconfig
+ libtool
+ intltool
+ itstool
+ file
+ wrapGAppsHook
+ libxml2
+ libxslt
+ yelp-xsl
+ python3
+ ];
+
+ buildInputs = [
+ gtk3
+ glib
+ webkitgtk
+ icu
+ gnome-online-accounts
+ telepathy-glib
+ clutter-gtk
+ clutter-gst
+ cogl
+ gst_all_1.gstreamer
+ gst_all_1.gst-plugins-base
+ gcr
+ libsecret
+ libpulseaudio
+ gdk-pixbuf
+ libnotify
+ clutter
+ libsoup
+ gnutls
+ libgee
+ p11-kit
+ libcanberra-gtk3
+ telepathy-farstream
+ farstream
+ gnome3.adwaita-icon-theme
+ gsettings-desktop-schemas
+ librsvg
+
+ # Spell-checking
+ enchant
+ isocodes
+
+ # Display maps, location awareness, geocode support
+ libchamplain
+ geoclue2
+ geocode-glib
+
+ # Cheese webcam support, camera monitoring
+ cheese
+ libgudev
+ ];
+
+ enableParallelBuilding = true;
+
+ preFixup = ''
+ gappsWrapperArgs+=(
+ --prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
+ )
+ '';
passthru = {
updateScript = gnome3.updateScript {
diff --git a/pkgs/development/compilers/elm/packages/node-packages.nix b/pkgs/development/compilers/elm/packages/node-packages.nix
index c62599038534..770e7c3529a1 100644
--- a/pkgs/development/compilers/elm/packages/node-packages.nix
+++ b/pkgs/development/compilers/elm/packages/node-packages.nix
@@ -76,13 +76,13 @@ let
sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
};
};
- "@types/node-12.11.2" = {
+ "@types/node-12.12.3" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.11.2";
+ version = "12.12.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.11.2.tgz";
- sha512 = "dsfE4BHJkLQW+reOS6b17xhZ/6FB1rB8eRRvO08nn5o+voxf3i74tuyFWNH6djdfgX7Sm5s6LD8t6mJug4dpDw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.12.3.tgz";
+ sha512 = "opgSsy+cEF9N8MgaVPnWVtdJ3o4mV2aMHvDq7thkQUFt0EuOHJon4rQpJfhjmNHB+ikl0Cd6WhWIErOyQ+f7tw==";
};
};
"accepts-1.3.7" = {
@@ -238,15 +238,6 @@ let
sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
};
};
- "async-each-1.0.3" = {
- name = "async-each";
- packageName = "async-each";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz";
- sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==";
- };
- };
"async-limiter-1.0.1" = {
name = "async-limiter";
packageName = "async-limiter";
@@ -346,15 +337,6 @@ let
sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
};
};
- "binary-extensions-1.13.1" = {
- name = "binary-extensions";
- packageName = "binary-extensions";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz";
- sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==";
- };
- };
"binary-extensions-2.0.0" = {
name = "binary-extensions";
packageName = "binary-extensions";
@@ -553,15 +535,6 @@ let
sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
};
};
- "chalk-2.1.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
- sha512 = "LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==";
- };
- };
"chalk-2.4.2" = {
name = "chalk";
packageName = "chalk";
@@ -580,15 +553,6 @@ let
sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667";
};
};
- "chokidar-2.1.2" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.2.tgz";
- sha512 = "IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg==";
- };
- };
"chokidar-3.0.2" = {
name = "chokidar";
packageName = "chokidar";
@@ -805,13 +769,13 @@ let
sha512 = "I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA==";
};
};
- "core-js-3.3.3" = {
+ "core-js-3.3.5" = {
name = "core-js";
packageName = "core-js";
- version = "3.3.3";
+ version = "3.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.3.3.tgz";
- sha512 = "0xmD4vUJRY8nfLyV9zcpC17FtSie5STXzw+HyYw2t8IIvmDnbq7RJUULECCo+NstpJtwK9kx8S+898iyqgeUow==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.3.5.tgz";
+ sha512 = "0J3K+Par/ZydhKg8pEiTcK/9d65/nqJOzY62uMkjeBmt05fDOt/khUVjDdh8TpeIuGQDy1yLDDCjiWN/8pFIuw==";
};
};
"core-util-is-1.0.2" = {
@@ -841,15 +805,6 @@ let
sha512 = "2qCRJwBmPlRQXzd50k9gt9PaItultOP8lj/cKSH2Eai9aeBuNqAnDuyolAm9TGn6Pw/4BgbxtPJLU1S+tQ4WMQ==";
};
};
- "cross-spawn-4.0.0" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.0.tgz";
- sha1 = "8254774ab4786b8c5b3cf4dfba66ce563932c252";
- };
- };
"cross-spawn-5.0.1" = {
name = "cross-spawn";
packageName = "cross-spawn";
@@ -1094,22 +1049,13 @@ let
sha512 = "ZHjoHd2Ev6riNXNQirj3J+GKKXXwedAUikfFBYzlVL/+3CdGs96cpZ7nhAk4c5l//Qa9ymltrqX36mOlr0pPFA==";
};
};
- "elm-test-0.19.0-rev6" = {
+ "elm-test-0.19.1" = {
name = "elm-test";
packageName = "elm-test";
- version = "0.19.0-rev6";
- src = fetchurl {
- url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.0-rev6.tgz";
- sha512 = "Qdy9QusZF+eT0203XBiT1Y/UhFeUjcSuyyzf3iyp32dsYpAfcoDTWHjlBVjia1CyvFauESQ4pc81nKaq6snClg==";
- };
- };
- "elmi-to-json-0.19.1" = {
- name = "elmi-to-json";
- packageName = "elmi-to-json";
version = "0.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/elmi-to-json/-/elmi-to-json-0.19.1.tgz";
- sha512 = "O0Z3YsYU9OTb1hTDGORWxi69QjQFEIPfZVq/oc1D5lhL3swduHKY8vdKGuo+WlKVdTas99oNIsgL7yojWdYcsQ==";
+ url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1.tgz";
+ sha512 = "SyZgZ/hxq62budS3k0M1Qj1E8fIRvldSxFSm4XfzE6qRRuHAT2a82fxprZRZl1yG2GwnImGmhuKH5hSyjPpzjA==";
};
};
"elmi-to-json-1.2.0" = {
@@ -1148,15 +1094,6 @@ let
sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
};
};
- "error-ex-1.3.2" = {
- name = "error-ex";
- packageName = "error-ex";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz";
- sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
- };
- };
"es-abstract-1.16.0" = {
name = "es-abstract";
packageName = "es-abstract";
@@ -1445,15 +1382,6 @@ let
sha1 = "7afbd00f8f08c5b622f97cda6f714173d547bb3f";
};
};
- "find-elm-dependencies-2.0.1" = {
- name = "find-elm-dependencies";
- packageName = "find-elm-dependencies";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-elm-dependencies/-/find-elm-dependencies-2.0.1.tgz";
- sha512 = "KBxPjc7J1CLw90jVateMKvMYMROZRTR7/QT2I3MxT+7I6KuUQUMNUFuS/eQXQnMnyElGKQ1iyPbe7GnEuYnFXw==";
- };
- };
"find-elm-dependencies-2.0.2" = {
name = "find-elm-dependencies";
packageName = "find-elm-dependencies";
@@ -1490,15 +1418,6 @@ let
sha1 = "c9f4886e7f7fbf0afc12d71941dce06b192aea05";
};
};
- "firstline-1.2.1" = {
- name = "firstline";
- packageName = "firstline";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/firstline/-/firstline-1.2.1.tgz";
- sha1 = "b88673c42009f8821fac2926e99720acee924fae";
- };
- };
"firstline-2.0.2" = {
name = "firstline";
packageName = "firstline";
@@ -1643,24 +1562,6 @@ let
sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
};
};
- "fsevents-1.2.4" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
- sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
- };
- };
- "fsevents-1.2.9" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz";
- sha512 = "oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==";
- };
- };
"fsevents-2.1.1" = {
name = "fsevents";
packageName = "fsevents";
@@ -1742,15 +1643,6 @@ let
sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
- "glob-7.1.1" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz";
- sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8";
- };
- };
"glob-7.1.4" = {
name = "glob";
packageName = "glob";
@@ -1769,15 +1661,6 @@ let
sha512 = "J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==";
};
};
- "glob-parent-3.1.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
- sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
- };
- };
"glob-parent-5.1.0" = {
name = "glob-parent";
packageName = "glob-parent";
@@ -1814,13 +1697,13 @@ let
sha512 = "qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==";
};
};
- "graceful-fs-4.2.2" = {
+ "graceful-fs-4.2.3" = {
name = "graceful-fs";
packageName = "graceful-fs";
- version = "4.2.2";
+ version = "4.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz";
- sha512 = "IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==";
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz";
+ sha512 = "a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==";
};
};
"har-schema-2.0.0" = {
@@ -1859,15 +1742,6 @@ let
sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
};
};
- "has-flag-2.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
- sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
- };
- };
"has-flag-3.0.0" = {
name = "has-flag";
packageName = "has-flag";
@@ -1949,15 +1823,6 @@ let
sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
};
};
- "hosted-git-info-2.8.5" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "2.8.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz";
- sha512 = "kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==";
- };
- };
"http-cache-semantics-3.8.1" = {
name = "http-cache-semantics";
packageName = "http-cache-semantics";
@@ -2156,24 +2021,6 @@ let
sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
};
};
- "is-arrayish-0.2.1" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- };
- "is-binary-path-1.0.1" = {
- name = "is-binary-path";
- packageName = "is-binary-path";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
- sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
- };
- };
"is-binary-path-2.1.0" = {
name = "is-binary-path";
packageName = "is-binary-path";
@@ -2282,15 +2129,6 @@ let
sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
};
};
- "is-glob-3.1.0" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
- sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
- };
- };
"is-glob-4.0.1" = {
name = "is-glob";
packageName = "is-glob";
@@ -2498,15 +2336,6 @@ let
sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
};
};
- "json-parse-better-errors-1.0.2" = {
- name = "json-parse-better-errors";
- packageName = "json-parse-better-errors";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
- };
- };
"json-schema-0.2.3" = {
name = "json-schema";
packageName = "json-schema";
@@ -2642,15 +2471,6 @@ let
sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
};
};
- "lodash-4.17.11" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz";
- sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==";
- };
- };
"lodash-4.17.15" = {
name = "lodash";
packageName = "lodash";
@@ -2993,15 +2813,6 @@ let
sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
};
};
- "node-elm-compiler-5.0.3" = {
- name = "node-elm-compiler";
- packageName = "node-elm-compiler";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-elm-compiler/-/node-elm-compiler-5.0.3.tgz";
- sha512 = "I3CWm/ExYYQ/a9bjB0OL9VsGa3Lmgbb8QOs4y2kEiB/DTkTqkcTaCr/lVyOYjRpgR25TsmOBATscsg6H6aC9Hg==";
- };
- };
"node-elm-compiler-5.0.4" = {
name = "node-elm-compiler";
packageName = "node-elm-compiler";
@@ -3029,15 +2840,6 @@ let
sha512 = "z9xN2ibI6P0UylFadN7oMcIMsoTeCENC0rZyRM5MVK9AqzSPx+uGqKG6KMPeC/laOV4wOGZq/GH0PTstRNSqOA==";
};
};
- "normalize-package-data-2.5.0" = {
- name = "normalize-package-data";
- packageName = "normalize-package-data";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
- sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==";
- };
- };
"normalize-path-2.1.1" = {
name = "normalize-path";
packageName = "normalize-path";
@@ -3092,15 +2894,6 @@ let
sha512 = "8eyAOAH+bYXFPSnNnKr3J+yoybe8O87Is5rtAQ8qRczJz1ajcsjg8l2oZqP+Ppx15Ii3S1vUTjQN2h4YO2tWWQ==";
};
};
- "npx-10.2.0" = {
- name = "npx";
- packageName = "npx";
- version = "10.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npx/-/npx-10.2.0.tgz";
- sha512 = "DqjFkzET0DeaXYXNJnirnvEovwk4lBa33ZQCw1jxMuas4yH9jdU8q2U8L3cLaB2UqzgmW2Ssqk8lcGiPRL8pRg==";
- };
- };
"oauth-sign-0.9.0" = {
name = "oauth-sign";
packageName = "oauth-sign";
@@ -3335,15 +3128,6 @@ let
sha512 = "EeHQFFTlEmLrkIQoxbE9w0FuAWHoc1XpthDqnZ/i9keOt701cteyXwAxQFLpVqVjj3feh2TodkihjLaRUtIgLg==";
};
};
- "parse-json-4.0.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
- };
- };
"parseurl-1.3.3" = {
name = "parseurl";
packageName = "parseurl";
@@ -3362,15 +3146,6 @@ let
sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
};
};
- "path-dirname-1.0.2" = {
- name = "path-dirname";
- packageName = "path-dirname";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
- sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
- };
- };
"path-exists-3.0.0" = {
name = "path-exists";
packageName = "path-exists";
@@ -3407,15 +3182,6 @@ let
sha512 = "8cChqz0RP6SHJkMt48FW0A7+qUOn+OsnOsVtzI59tZ8m+5bCSk7hzwET0pulwOM2YMn9J1efb07KB9l9f30SGg==";
};
};
- "path-parse-1.0.6" = {
- name = "path-parse";
- packageName = "path-parse";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
- sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
- };
- };
"path-to-regexp-0.1.7" = {
name = "path-to-regexp";
packageName = "path-to-regexp";
@@ -3452,13 +3218,13 @@ let
sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
};
};
- "picomatch-2.0.7" = {
+ "picomatch-2.1.0" = {
name = "picomatch";
packageName = "picomatch";
- version = "2.0.7";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz";
- sha512 = "oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==";
+ url = "https://registry.npmjs.org/picomatch/-/picomatch-2.1.0.tgz";
+ sha512 = "uhnEDzAbrcJ8R3g2fANnSuXZMBtkpSjxTTgn2LeSiQlfmq72enQJWdQllXW24MBLYnA1SBD2vfvx2o0Zw3Ielw==";
};
};
"pify-3.0.0" = {
@@ -3470,6 +3236,15 @@ let
sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
};
};
+ "pjson-1.0.9" = {
+ name = "pjson";
+ packageName = "pjson";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pjson/-/pjson-1.0.9.tgz";
+ sha512 = "4hRJH3YzkUpOlShRzhyxAmThSNnAaIlWZCAb27hd0pVUAXNUAHAO7XZbsPPvsCYwBFEScTmCCL6DGE8NyZ8BdQ==";
+ };
+ };
"posix-character-classes-0.1.1" = {
name = "posix-character-classes";
packageName = "posix-character-classes";
@@ -3515,15 +3290,6 @@ let
sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
};
};
- "project-version-1.2.0" = {
- name = "project-version";
- packageName = "project-version";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/project-version/-/project-version-1.2.0.tgz";
- sha512 = "o94hj3Ld7/7jeFPZEPuZxsbpeOsPqZMXh5iYIDS7rjhjj4UcYHDlb4pYi43qjXMYM3LUcD6qJhQq9siEzg1KIA==";
- };
- };
"proto-list-1.2.4" = {
name = "proto-list";
packageName = "proto-list";
@@ -3659,15 +3425,6 @@ let
sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
};
};
- "read-pkg-4.0.1" = {
- name = "read-pkg";
- packageName = "read-pkg";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz";
- sha1 = "963625378f3e1c4d48c85872b5a6ec7d5d093237";
- };
- };
"readable-stream-2.0.6" = {
name = "readable-stream";
packageName = "readable-stream";
@@ -3686,15 +3443,6 @@ let
sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
};
};
- "readdirp-2.2.1" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
- sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
- };
- };
"readdirp-3.1.3" = {
name = "readdirp";
packageName = "readdirp";
@@ -3830,15 +3578,6 @@ let
sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
};
};
- "resolve-1.12.0" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz";
- sha512 = "B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==";
- };
- };
"resolve-url-0.2.1" = {
name = "resolve-url";
packageName = "resolve-url";
@@ -3875,15 +3614,6 @@ let
sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==";
};
};
- "rimraf-2.2.8" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
- sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
- };
- };
"rimraf-2.6.3" = {
name = "rimraf";
packageName = "rimraf";
@@ -4226,42 +3956,6 @@ let
sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
};
};
- "spdx-correct-3.1.0" = {
- name = "spdx-correct";
- packageName = "spdx-correct";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz";
- sha512 = "lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==";
- };
- };
- "spdx-exceptions-2.2.0" = {
- name = "spdx-exceptions";
- packageName = "spdx-exceptions";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz";
- sha512 = "2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==";
- };
- };
- "spdx-expression-parse-3.0.0" = {
- name = "spdx-expression-parse";
- packageName = "spdx-expression-parse";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz";
- sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==";
- };
- };
- "spdx-license-ids-3.0.5" = {
- name = "spdx-license-ids";
- packageName = "spdx-license-ids";
- version = "3.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz";
- sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==";
- };
- };
"split-1.0.1" = {
name = "split";
packageName = "split";
@@ -4442,15 +4136,6 @@ let
sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
};
};
- "supports-color-4.2.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz";
- sha512 = "Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==";
- };
- };
"supports-color-5.5.0" = {
name = "supports-color";
packageName = "supports-color";
@@ -4487,15 +4172,6 @@ let
sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==";
};
};
- "temp-0.8.3" = {
- name = "temp";
- packageName = "temp";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz";
- sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59";
- };
- };
"temp-0.9.0" = {
name = "temp";
packageName = "temp";
@@ -4757,15 +4433,6 @@ let
sha512 = "NG1h/MdGIX3HzyqMjyj1laBCmlPYhcO4xEy7gEqqzGiSLw7XqDQCnY4nYSn5XSaH8mQ6TFkaujrO8d/PIZN85A==";
};
};
- "upath-1.2.0" = {
- name = "upath";
- packageName = "upath";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz";
- sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==";
- };
- };
"uri-js-4.2.2" = {
name = "uri-js";
packageName = "uri-js";
@@ -4856,15 +4523,6 @@ let
sha512 = "pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==";
};
};
- "validate-npm-package-license-3.0.4" = {
- name = "validate-npm-package-license";
- packageName = "validate-npm-package-license";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
- };
- };
"vary-1.1.2" = {
name = "vary";
packageName = "vary";
@@ -4928,13 +4586,13 @@ let
sha512 = "obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ==";
};
};
- "vscode-uri-2.0.3" = {
+ "vscode-uri-2.1.1" = {
name = "vscode-uri";
packageName = "vscode-uri";
- version = "2.0.3";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.0.3.tgz";
- sha512 = "4D3DI3F4uRy09WNtDGD93H9q034OHImxiIcSq664Hq1Y1AScehlP3qqZyTkX/RWxeu0MRMHGkrxYqm2qlDF/aw==";
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.1.tgz";
+ sha512 = "eY9jmGoEnVf8VE8xr5znSah7Qt1P/xsCdErz+g8HYZtJ7bZqKH5E3d+6oVNm1AC/c6IHUDokbmVXKOi4qPAC9A==";
};
};
"walker-1.0.7" = {
@@ -4946,13 +4604,13 @@ let
sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb";
};
};
- "web-tree-sitter-0.15.9" = {
+ "web-tree-sitter-0.15.10" = {
name = "web-tree-sitter";
packageName = "web-tree-sitter";
- version = "0.15.9";
+ version = "0.15.10";
src = fetchurl {
- url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.15.9.tgz";
- sha512 = "1lf4lnmi8oxuEzI6gpUok2FQlHXOmV1iipltkQvmR785JWnUbjhw1sZnwSCkisQP+/g/aezpMGcW3mjz0uVhMw==";
+ url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.15.10.tgz";
+ sha512 = "8utowZB5h5djbotf1umt4na9Vt6Q18ZICUeC9jW4qWWjUrtQ2xvxDuAJ+EibmqUJBAKATrDMXnY2xYaskGg8wg==";
};
};
"which-1.3.1" = {
@@ -5063,15 +4721,6 @@ let
sha512 = "Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==";
};
};
- "xmlbuilder-8.2.2" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "8.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz";
- sha1 = "69248673410b4ba42e1a6136551d2922335aa773";
- };
- };
"xtend-4.0.2" = {
name = "xtend";
packageName = "xtend";
@@ -5209,7 +4858,7 @@ in
sources."getpass-0.1.7"
sources."glob-7.1.4"
sources."glob-parent-5.1.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
@@ -5257,7 +4906,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.0.7"
+ sources."picomatch-2.1.0"
sources."psl-1.4.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
@@ -5314,379 +4963,169 @@ in
elm-verify-examples = nodeEnv.buildNodePackage {
name = "elm-verify-examples";
packageName = "elm-verify-examples";
- version = "4.0.2";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/elm-verify-examples/-/elm-verify-examples-4.0.2.tgz";
- sha512 = "zvQ1SvfXyMCb9TwiC74+QyFsl/4Hjpr1lb37QRKWrSCu+hOhbxM2MkJ6+KP1izGK36kzRr97y81Z1of0/EX3cg==";
+ url = "https://registry.npmjs.org/elm-verify-examples/-/elm-verify-examples-5.0.0.tgz";
+ sha512 = "dAOv+U9hXZ0IRGx19mkpCAdf5rUwoJWlzFmcR2gvOzE/QjZUSlPh3e0IIDAfGUuEF8DjfE5CTe31fNtIkkd2rQ==";
};
dependencies = [
sources."ajv-6.10.2"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
- (sources."anymatch-2.0.0" // {
- dependencies = [
- sources."normalize-path-2.1.1"
- ];
- })
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-unique-0.3.2"
+ sources."anymatch-3.1.1"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
- sources."assign-symbols-1.0.0"
- sources."async-each-1.0.3"
sources."asynckit-0.4.0"
- sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
sources."bcrypt-pbkdf-1.0.2"
sources."binary-0.3.0"
- sources."binary-extensions-1.13.1"
+ sources."binary-extensions-2.0.0"
sources."binwrap-0.2.2"
sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
+ sources."braces-3.0.2"
sources."buffers-0.1.1"
- sources."cache-base-1.0.1"
sources."camelcase-5.3.1"
sources."caseless-0.12.0"
sources."chainsaw-0.1.0"
sources."chalk-2.4.2"
- (sources."chokidar-2.1.2" // {
- dependencies = [
- sources."fsevents-1.2.9"
- ];
- })
+ sources."chokidar-3.2.1"
sources."chownr-1.1.3"
- (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."cliui-5.0.0"
- sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
- sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
- sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.2"
- sources."cross-spawn-4.0.0"
+ (sources."cross-spawn-7.0.0" // {
+ dependencies = [
+ sources."which-1.3.1"
+ ];
+ })
sources."dashdash-1.14.1"
- sources."debug-2.6.9"
sources."decamelize-1.2.0"
- sources."decode-uri-component-0.2.0"
- sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.2"
- (sources."elm-test-0.19.0-rev6" // {
+ (sources."elm-test-0.19.1" // {
dependencies = [
- sources."chalk-2.1.0"
- sources."fs-extra-0.30.0"
- sources."has-flag-2.0.0"
- sources."supports-color-4.2.0"
+ sources."fs-extra-8.1.0"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.1.0"
];
})
- sources."elmi-to-json-0.19.1"
+ sources."elmi-to-json-1.2.0"
sources."emoji-regex-7.0.3"
sources."escape-string-regexp-1.0.5"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- 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."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
sources."extend-3.0.2"
- sources."extend-shallow-3.0.2"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."find-elm-dependencies-2.0.1" // {
+ sources."fill-range-7.0.1"
+ (sources."find-elm-dependencies-2.0.2" // {
dependencies = [
sources."firstline-1.2.0"
];
})
sources."find-parent-dir-0.3.0"
sources."find-up-3.0.0"
- sources."firstline-1.2.1"
- sources."for-in-1.0.2"
+ sources."firstline-2.0.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
- sources."fragment-cache-0.2.1"
- (sources."fs-extra-5.0.0" // {
- dependencies = [
- sources."jsonfile-4.0.0"
- ];
- })
+ sources."fs-extra-5.0.0"
sources."fs-minipass-1.2.7"
sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
+ sources."fsevents-2.1.1"
sources."get-caller-file-2.0.5"
- sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.1"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.4"
+ sources."glob-parent-5.1.0"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-accessor-descriptor-1.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-buffer-1.1.6"
- sources."is-data-descriptor-1.0.0"
- sources."is-descriptor-1.0.2"
- sources."is-extendable-1.0.1"
+ sources."is-binary-path-2.1.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
+ sources."is-number-7.0.0"
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."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- sources."jsonfile-2.4.0"
+ sources."jsonfile-4.0.0"
sources."jsprim-1.4.1"
- sources."kind-of-6.0.2"
- sources."klaw-1.3.1"
sources."locate-path-3.0.0"
- sources."lodash-4.17.11"
- sources."lru-cache-4.1.5"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."micromatch-3.1.10"
+ sources."lodash-4.17.15"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- (sources."minipass-2.9.0" // {
- dependencies = [
- sources."yallist-3.1.1"
- ];
- })
+ sources."minipass-2.9.0"
sources."minizlib-1.3.3"
- sources."mixin-deep-1.3.2"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
];
})
- sources."ms-2.0.0"
sources."murmur-hash-js-1.0.0"
sources."mustache-3.1.0"
- sources."nan-2.14.0"
- sources."nanomatch-1.2.13"
- sources."node-elm-compiler-5.0.3"
- sources."normalize-path-3.0.0"
- sources."oauth-sign-0.9.0"
- (sources."object-copy-0.1.0" // {
+ sources."nice-try-1.0.5"
+ (sources."node-elm-compiler-5.0.4" // {
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."cross-spawn-6.0.5"
+ sources."path-key-2.0.1"
+ sources."which-1.3.1"
];
})
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
+ sources."normalize-path-3.0.0"
+ sources."oauth-sign-0.9.0"
sources."once-1.4.0"
- sources."os-tmpdir-1.0.2"
sources."p-limit-2.2.1"
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-3.1.0"
sources."performance-now-2.1.0"
- sources."posix-character-classes-0.1.1"
- sources."process-nextick-args-2.0.1"
- sources."pseudomap-1.0.2"
+ sources."picomatch-2.1.0"
sources."psl-1.4.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.2.1"
- sources."regex-not-1.0.2"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
- sources."repeat-string-1.6.1"
+ sources."readdirp-3.1.3"
sources."request-2.88.0"
sources."request-promise-4.2.4"
sources."request-promise-core-1.1.2"
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- (sources."rimraf-2.7.1" // {
- dependencies = [
- sources."glob-7.1.5"
- ];
- })
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.2.0"
sources."safer-buffer-2.1.2"
+ 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."is-extendable-0.1.1"
- ];
- })
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- 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."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- (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.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
sources."split-1.0.1"
- sources."split-string-3.1.0"
sources."sshpk-1.16.1"
- (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."stealthy-require-1.1.1"
sources."string-width-3.1.0"
- sources."string_decoder-1.1.1"
sources."strip-ansi-5.2.0"
sources."supports-color-5.5.0"
- (sources."tar-4.4.13" // {
+ sources."tar-4.4.13"
+ (sources."temp-0.9.0" // {
dependencies = [
- sources."yallist-3.1.1"
- ];
- })
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
+ sources."rimraf-2.6.3"
];
})
sources."through-2.3.8"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
+ sources."to-regex-range-5.0.1"
(sources."tough-cookie-2.4.3" // {
dependencies = [
sources."punycode-1.4.1"
@@ -5695,37 +5134,18 @@ in
sources."traverse-0.3.9"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- (sources."union-value-1.0.1" // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- })
sources."universalify-0.1.2"
- (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."unzip-stream-0.3.0"
- sources."upath-1.2.0"
sources."uri-js-4.2.2"
- sources."urix-0.1.0"
- sources."use-3.1.1"
- sources."util-deprecate-1.0.2"
sources."uuid-3.3.3"
sources."verror-1.10.0"
- sources."which-1.3.1"
+ sources."which-2.0.1"
sources."which-module-2.0.0"
sources."wrap-ansi-5.1.0"
sources."wrappy-1.0.2"
- sources."xmlbuilder-8.2.2"
+ sources."xmlbuilder-13.0.2"
sources."y18n-4.0.0"
- sources."yallist-2.1.2"
+ sources."yallist-3.1.1"
sources."yargs-13.3.0"
sources."yargs-parser-13.1.1"
];
@@ -5741,10 +5161,10 @@ in
elm-doc-preview = nodeEnv.buildNodePackage {
name = "elm-doc-preview";
packageName = "elm-doc-preview";
- version = "3.0.1";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-3.0.1.tgz";
- sha512 = "NpAgEKNiYkQE932gMjFGC/BpcmUD9ohhrbSnGSoQBsC+VPRKCiGdmLJUiql/aPC2eXYIlWQJ5YJ5rFWI0iovbw==";
+ url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-3.0.4.tgz";
+ sha512 = "tLobB4Kv4X/T+mkL4Tc5G1fqnBzvCqV7Pqx/f2sJIQtSTsJcktwI01U8poiBPoo8VwE7ZRuBmApSkl6XTzrymA==";
};
dependencies = [
sources."@cnakazawa/watch-1.0.3"
@@ -5813,7 +5233,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.3.3"
+ sources."core-js-3.3.5"
sources."core-util-is-1.0.2"
sources."cross-spawn-6.0.5"
sources."debug-2.6.9"
@@ -5967,7 +5387,6 @@ in
sources."normalize-path-2.1.1"
sources."normalize-url-2.0.1"
sources."npm-run-path-2.0.2"
- sources."npx-10.2.0"
sources."object-assign-4.1.1"
(sources."object-copy-0.1.0" // {
dependencies = [
@@ -6179,7 +5598,7 @@ in
sources."get-stream-3.0.0"
sources."glob-7.1.5"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-symbol-support-x-1.4.2"
sources."has-to-string-tag-x-1.4.1"
sources."inflight-1.0.6"
@@ -6229,10 +5648,10 @@ in
elm-analyse = nodeEnv.buildNodePackage {
name = "elm-analyse";
packageName = "elm-analyse";
- version = "0.16.4";
+ version = "0.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/elm-analyse/-/elm-analyse-0.16.4.tgz";
- sha512 = "6F6JfcOfbRgTBJj7MF+CqGcatCep8ppZtfIAri+fpC76MsSohJAOfLgmbmd4BWOXcTiWCpvQaaFwUutm7cOlpA==";
+ url = "https://registry.npmjs.org/elm-analyse/-/elm-analyse-0.16.5.tgz";
+ sha512 = "I7dgGFOc+mYDcDuyo1/HcIn3E5MiMbocStNzivsPSjCUviuEieHdDKZmJJ9uM3IdCu0fdBmRNWQBSOXtXrgzKg==";
};
dependencies = [
sources."accepts-1.3.7"
@@ -6246,8 +5665,8 @@ in
sources."aws4-1.8.0"
sources."babel-runtime-6.18.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."body-parser-1.18.2"
- sources."bytes-3.0.0"
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
sources."caseless-0.12.0"
sources."combined-stream-1.0.8"
sources."concat-stream-1.5.2"
@@ -6267,7 +5686,24 @@ in
sources."encodeurl-1.0.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- sources."express-4.16.3"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ sources."bytes-3.0.0"
+ sources."http-errors-1.6.3"
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
+ ];
+ })
(sources."express-ws-2.0.0" // {
dependencies = [
sources."ws-1.1.5"
@@ -6277,7 +5713,11 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
- sources."finalhandler-1.1.1"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
sources."find-0.2.7"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
@@ -6285,12 +5725,12 @@ in
sources."fresh-0.5.2"
sources."fs-extra-2.0.0"
sources."getpass-0.1.7"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
- sources."http-errors-1.6.3"
+ sources."http-errors-1.7.2"
sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.19"
+ sources."iconv-lite-0.4.24"
sources."inherits-2.0.3"
sources."ipaddr.js-1.9.0"
sources."is-stream-1.1.0"
@@ -6304,7 +5744,7 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsprim-1.4.1"
- sources."lodash-4.17.11"
+ sources."lodash-4.17.15"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
@@ -6328,15 +5768,9 @@ in
sources."proxy-addr-2.0.5"
sources."psl-1.4.0"
sources."punycode-2.1.1"
- sources."qs-6.5.1"
+ sources."qs-6.7.0"
sources."range-parser-1.2.1"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."setprototypeof-1.0.3"
- ];
- })
+ sources."raw-body-2.4.0"
sources."readable-stream-2.0.6"
sources."regenerator-runtime-0.9.6"
(sources."request-2.88.0" // {
@@ -6347,15 +5781,22 @@ in
})
sources."safe-buffer-5.1.1"
sources."safer-buffer-2.1.2"
- sources."send-0.16.2"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."http-errors-1.6.3"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
+ ];
+ })
sources."serve-static-1.13.2"
- sources."setprototypeof-1.1.0"
+ sources."setprototypeof-1.1.1"
sources."sshpk-1.16.1"
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."string_decoder-0.10.31"
sources."sums-0.2.4"
sources."through2-2.0.1"
sources."tmp-0.0.31"
+ sources."toidentifier-1.0.0"
(sources."tough-cookie-2.4.3" // {
dependencies = [
sources."punycode-1.4.1"
@@ -6472,7 +5913,7 @@ in
sources."parseurl-1.3.3"
sources."path-key-2.0.1"
sources."pem-1.14.2"
- sources."picomatch-2.0.7"
+ sources."picomatch-2.1.0"
sources."pseudomap-1.0.2"
sources."pump-3.0.0"
sources."range-parser-1.2.1"
@@ -6524,7 +5965,7 @@ in
sources."bluebird-3.7.1"
sources."core-util-is-1.0.2"
sources."fs-extra-6.0.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."inherits-2.0.4"
sources."isarray-1.0.0"
sources."jsonfile-4.0.0"
@@ -6555,10 +5996,10 @@ in
"@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage {
name = "_at_elm-tooling_slash_elm-language-server";
packageName = "@elm-tooling/elm-language-server";
- version = "1.4.3";
+ version = "1.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-1.4.3.tgz";
- sha512 = "UU8u3wHc1pDQUwupJyeKe34keE/m3SjWO22GCgM94pkFdHiGYuAsesQRX3olKycCsV1ZG7xwAD4eGvoUQmNTvQ==";
+ url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-1.4.4.tgz";
+ sha512 = "vhiQZHael3isY254nS/iiW5zFiTwXmyaj+IOO9q1PQ6URP8PKzQla74o7UuURRlkF5B/OuwB+u/hncmEbwyy+w==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.3"
@@ -6567,7 +6008,7 @@ in
sources."@types/events-3.0.0"
sources."@types/glob-7.1.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.11.2"
+ sources."@types/node-12.12.3"
sources."accepts-1.3.7"
sources."ajv-6.10.2"
sources."array-flatten-1.1.1"
@@ -6612,7 +6053,6 @@ in
})
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- sources."error-ex-1.3.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
(sources."execa-3.2.0" // {
@@ -6647,10 +6087,9 @@ in
sources."glob-7.1.5"
sources."glob-parent-5.1.0"
sources."globby-10.0.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
- sources."hosted-git-info-2.8.5"
sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."human-signals-1.1.1"
@@ -6659,7 +6098,6 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ipaddr.js-1.9.0"
- sources."is-arrayish-0.2.1"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
@@ -6670,7 +6108,6 @@ in
sources."isexe-2.0.0"
sources."isstream-0.1.2"
sources."jsbn-0.1.1"
- sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
@@ -6692,7 +6129,6 @@ in
sources."ms-2.0.0"
sources."negotiator-0.6.2"
sources."node-watch-0.5.5"
- sources."normalize-package-data-2.5.0"
sources."npm-run-path-4.0.0"
sources."oauth-sign-0.9.0"
sources."on-finished-2.3.0"
@@ -6703,18 +6139,15 @@ in
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."p-finally-2.0.1"
- sources."parse-json-4.0.0"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.0"
- sources."path-parse-1.0.6"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.0.7"
- sources."pify-3.0.0"
+ sources."picomatch-2.1.0"
+ sources."pjson-1.0.9"
sources."process-nextick-args-1.0.7"
- sources."project-version-1.2.0"
sources."proxy-addr-2.0.5"
sources."psl-1.4.0"
sources."pump-3.0.0"
@@ -6728,7 +6161,6 @@ in
sources."setprototypeof-1.0.3"
];
})
- sources."read-pkg-4.0.1"
sources."readable-stream-2.0.6"
sources."regenerator-runtime-0.9.6"
(sources."request-2.88.0" // {
@@ -6737,13 +6169,11 @@ in
sources."safe-buffer-5.2.0"
];
})
- sources."resolve-1.12.0"
sources."reusify-1.0.4"
sources."run-parallel-1.1.9"
sources."rxjs-6.5.3"
sources."safe-buffer-5.1.1"
sources."safer-buffer-2.1.2"
- sources."semver-5.7.1"
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."setprototypeof-1.1.0"
@@ -6751,10 +6181,6 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.2"
sources."slash-3.0.0"
- sources."spdx-correct-3.1.0"
- sources."spdx-exceptions-2.2.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.5"
sources."sshpk-1.16.1"
sources."statuses-1.4.0"
sources."string_decoder-0.10.31"
@@ -6780,7 +6206,6 @@ in
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.3.3"
- sources."validate-npm-package-license-3.0.4"
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."vscode-jsonrpc-4.0.0"
@@ -6791,8 +6216,8 @@ in
})
sources."vscode-languageserver-protocol-3.14.1"
sources."vscode-languageserver-types-3.14.0"
- sources."vscode-uri-2.0.3"
- sources."web-tree-sitter-0.15.9"
+ sources."vscode-uri-2.1.1"
+ sources."web-tree-sitter-0.15.10"
sources."which-2.0.1"
sources."wrappy-1.0.2"
sources."ws-7.2.0"
diff --git a/pkgs/development/compilers/haxe/default.nix b/pkgs/development/compilers/haxe/default.nix
index 0ae038d47138..5329cf59aa37 100644
--- a/pkgs/development/compilers/haxe/default.nix
+++ b/pkgs/development/compilers/haxe/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchgit, coreutils, ocaml, zlib, pcre, neko, camlp4 }:
+{ stdenv, fetchgit, coreutils, ocamlPackages, zlib, pcre, neko }:
+
+let inherit (ocamlPackages) ocaml camlp4; in
let
generic = { version, sha256, prePatch }:
diff --git a/pkgs/development/libraries/crypto++/GNUmakefile-darwin.patch b/pkgs/development/libraries/crypto++/GNUmakefile-darwin.patch
deleted file mode 100644
index 5a6cb3bcafb4..000000000000
--- a/pkgs/development/libraries/crypto++/GNUmakefile-darwin.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/GNUmakefile b/GNUmakefile
-index 4de9d10..ff4789a 100755
---- a/GNUmakefile
-+++ b/GNUmakefile
-@@ -271,8 +271,8 @@ endif # OpenMP
- endif # IS_LINUX
-
- ifneq ($(IS_DARWIN),0)
--AR = libtool
--ARFLAGS = -static -o
-+AR = ar
-+ARFLAGS = cru
- CXX ?= c++
- ifeq ($(IS_GCC_29),1)
- CXXFLAGS += -fno-coalesce-templates -fno-coalesce-static-vtables
diff --git a/pkgs/development/libraries/crypto++/default.nix b/pkgs/development/libraries/crypto++/default.nix
index cb481fc7084e..b472733f8ee6 100644
--- a/pkgs/development/libraries/crypto++/default.nix
+++ b/pkgs/development/libraries/crypto++/default.nix
@@ -1,49 +1,47 @@
-{ fetchFromGitHub, stdenv }:
+{ stdenv, fetchFromGitHub, nasm, which }:
+with stdenv.lib;
stdenv.mkDerivation rec {
pname = "crypto++";
- majorVersion = "5.6";
- version = "${majorVersion}.5";
+ version = "8.2.0";
+ underscoredVersion = strings.replaceStrings ["."] ["_"] version;
src = fetchFromGitHub {
owner = "weidai11";
repo = "cryptopp";
- rev = "CRYPTOPP_5_6_5";
- sha256 = "1yk7jyf4va9425cg05llskpls2jm7n3jwy2hj5jm74zkr4mwpvl7";
+ rev = "CRYPTOPP_${underscoredVersion}";
+ sha256 = "01zrrzjn14yhkb9fzzl57vmh7ig9a6n6fka45f8za0gf7jpcq3mj";
};
- patches = stdenv.lib.concatLists [
- (stdenv.lib.optional (stdenv.hostPlatform.system != "i686-cygwin") ./dll.patch)
- (stdenv.lib.optional stdenv.hostPlatform.isDarwin ./GNUmakefile-darwin.patch)
- ];
-
-
- configurePhase = ''
- sed -i GNUmakefile \
- -e 's|-march=native|-fPIC|g' \
- -e '/^CXXFLAGS =/s|-g ||'
+ postPatch = ''
+ substituteInPlace GNUmakefile \
+ --replace "AR = libtool" "AR = ar" \
+ --replace "ARFLAGS = -static -o" "ARFLAGS = -cru"
'';
+ nativeBuildInputs = optionals stdenv.hostPlatform.isx86 [ nasm which ];
+
+ preBuild = optionalString stdenv.hostPlatform.isx86 "${stdenv.shell} rdrand-nasm.sh";
+ makeFlags = [ "PREFIX=${placeholder "out"}" ];
+ buildFlags = [ "shared" "libcryptopp.pc" ];
enableParallelBuilding = true;
- makeFlags = [ "PREFIX=$(out)" ];
- buildFlags = [ "libcryptopp.so" ];
- installFlags = [ "LDCONF=true" ];
-
doCheck = true;
- checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
- # prefer -fPIC and .so to .a; cryptotest.exe seems superfluous
- postInstall = ''
- rm "$out"/lib/*.a -r "$out/bin"
- ln -sf "$out"/lib/libcryptopp.so.${version} "$out"/lib/libcryptopp.so.${majorVersion}
+ preInstall = "rm libcryptopp.a"; # built for checks but we don't install static lib into the nix store
+ installTargets = "install-lib";
+ installFlags = [ "LDCONF=true" ];
+ postInstall = optionalString (!stdenv.hostPlatform.isDarwin) ''
+ ln -sr $out/lib/libcryptopp.so.${version} $out/lib/libcryptopp.so.${versions.majorMinor version}
+ ln -sr $out/lib/libcryptopp.so.${version} $out/lib/libcryptopp.so.${versions.major version}
'';
- meta = with stdenv.lib; {
+ meta = {
description = "Crypto++, a free C++ class library of cryptographic schemes";
- homepage = http://cryptopp.com/;
- license = licenses.boost;
+ homepage = "https://cryptopp.com/";
+ changelog = "https://raw.githubusercontent.com/weidai11/cryptopp/CRYPTOPP_${underscoredVersion}/History.txt";
+ license = with licenses; [ boost publicDomain ];
platforms = platforms.all;
- maintainers = [ ];
+ maintainers = with maintainers; [ c0bw3b ];
};
}
diff --git a/pkgs/development/libraries/crypto++/dll.patch b/pkgs/development/libraries/crypto++/dll.patch
deleted file mode 100644
index 12df1fb9e9e9..000000000000
--- a/pkgs/development/libraries/crypto++/dll.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Get rid of Windows-specific stuff.
-
-diff --git a/GNUmakefile b/GNUmakefile
-index 4de9d10..ff4789a 100755
---- a/GNUmakefile
-+++ b/GNUmakefile
-@@ -656,7 +656,7 @@ nolib: $(OBJS)
- dll: cryptest.import.exe dlltest.exe
-
- cryptopp.dll: $(DLLOBJS)
-- $(CXX) -shared -o $@ $(CXXFLAGS) $(DLLOBJS) $(LDFLAGS) $(LDLIBS) -Wl,--out-implib=libcryptopp.dll.a
-+ $(CXX) -shared -o $@ $(CXXFLAGS) $(DLLOBJS) $(LDFLAGS) $(LDLIBS)
-
- libcryptopp.import.a: $(LIBIMPORTOBJS)
- $(AR) $(ARFLAGS) $@ $(LIBIMPORTOBJS)
-diff --git a/dll.cpp b/dll.cpp
-index 72dade9..b5097ab 100644
---- a/dll.cpp
-+++ b/dll.cpp
-@@ -48,7 +48,7 @@ NAMESPACE_END
-
- #endif
-
--#ifdef CRYPTOPP_EXPORTS
-+#if defined CRYPTOPP_EXPORTS && defined _MSC_VER
-
- USING_NAMESPACE(CryptoPP)
-
diff --git a/pkgs/development/libraries/forge/default.nix b/pkgs/development/libraries/forge/default.nix
new file mode 100644
index 000000000000..e6e002f16c5a
--- /dev/null
+++ b/pkgs/development/libraries/forge/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig
+, arrayfire, expat, fontconfig, freeimage, freetype, boost
+, mesa, libGLU_combined, glfw3, SDL2, cudatoolkit
+}:
+
+stdenv.mkDerivation rec {
+ pname = "forge";
+ version = "1.0.4";
+
+ src = fetchFromGitHub {
+ owner = "arrayfire";
+ repo = "forge";
+ rev = "v${version}";
+ sha256 = "00pmky6kccd7pwi8sma79qpmzr2f9pbn6gym3gyqm64yckw6m484";
+ fetchSubmodules = true;
+ };
+
+ nativeBuildInputs = [
+ cmake
+ pkgconfig
+ ];
+
+ buildInputs = [
+ expat
+ fontconfig
+ freetype
+ boost.out
+ boost.dev
+ freeimage
+ mesa
+ libGLU_combined
+ glfw3
+ SDL2
+ cudatoolkit
+ arrayfire
+ ];
+
+ meta = with stdenv.lib; {
+ description = "An OpenGL interop library that can be used with ArrayFire or any other application using CUDA or OpenCL compute backend";
+ longDescription = ''
+ An OpenGL interop library that can be used with ArrayFire or any other application using CUDA or OpenCL compute backend.
+ The goal of Forge is to provide high performance OpenGL visualizations for C/C++ applications that use CUDA/OpenCL.
+ Forge uses OpenGL >=3.3 forward compatible contexts, so please make sure you have capable hardware before trying it out.
+ '';
+ license = licenses.bsd3;
+ homepage = "https://arrayfire.com/";
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ chessai ];
+ };
+
+}
diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix
index 01563ffa656e..edf4d135aba7 100644
--- a/pkgs/development/libraries/glibc/common.nix
+++ b/pkgs/development/libraries/glibc/common.nix
@@ -103,7 +103,7 @@ stdenv.mkDerivation ({
++ lib.optional stdenv.buildPlatform.isDarwin ./darwin-cross-build.patch
# Remove after upgrading to glibc 2.28+
- ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) (fetchpatch {
+ ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform || stdenv.hostPlatform.isMusl) (fetchpatch {
url = "https://sourceware.org/git/?p=glibc.git;a=patch;h=780684eb04298977bc411ebca1eadeeba4877833";
name = "correct-pwent-parsing-issue-and-resulting-build.patch";
sha256 = "08fja894vzaj8phwfhsfik6jj2pbji7kypy3q8pgxvsd508zdv1q";
diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix
index eda71af59783..50b359da96ce 100644
--- a/pkgs/development/libraries/glibc/default.nix
+++ b/pkgs/development/libraries/glibc/default.nix
@@ -40,7 +40,21 @@ callPackage ./common.nix { inherit stdenv; } {
# limit rebuilds by only disabling pie w/musl
++ stdenv.lib.optional stdenv.hostPlatform.isMusl "pie";
- NIX_CFLAGS_COMPILE = if withGd then "-Wno-error=stringop-truncation" else null;
+ NIX_CFLAGS_COMPILE =
+ if !stdenv.hostPlatform.isMusl
+ # TODO: This (returning a string or `null`, instead of a list) is to
+ # not trigger a mass rebuild due to the introduction of the
+ # musl-specific flags below.
+ # At next change to non-musl glibc builds, remove this `then`
+ # and the above condition, instead keeping only the `else` below.
+ then (if withGd then "-Wno-error=stringop-truncation" else null)
+ else
+ builtins.concatLists [
+ (stdenv.lib.optional withGd "-Wno-error=stringop-truncation")
+ # Fix -Werror build failure when building glibc with musl with GCC >= 8, see:
+ # https://github.com/NixOS/nixpkgs/pull/68244#issuecomment-544307798
+ (stdenv.lib.optional stdenv.hostPlatform.isMusl "-Wno-error=attribute-alias")
+ ];
# When building glibc from bootstrap-tools, we need libgcc_s at RPATH for
# any program we run, because the gcc will have been placed at a new
diff --git a/pkgs/development/libraries/gnutls-kdh/generic.nix b/pkgs/development/libraries/gnutls-kdh/generic.nix
index cb81b52b7301..6079387fc720 100644
--- a/pkgs/development/libraries/gnutls-kdh/generic.nix
+++ b/pkgs/development/libraries/gnutls-kdh/generic.nix
@@ -90,5 +90,6 @@ stdenv.mkDerivation {
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ leenaars ];
platforms = platforms.all;
+ broken = true;
};
}
diff --git a/pkgs/development/libraries/libabigail/default.nix b/pkgs/development/libraries/libabigail/default.nix
new file mode 100644
index 000000000000..dc19adfb6a66
--- /dev/null
+++ b/pkgs/development/libraries/libabigail/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, fetchurl
+, autoreconfHook
+, elfutils
+, libxml2
+, pkgconfig
+, strace
+, python3
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libabigail";
+ version = "1.6";
+
+ outputs = [ "bin" "out" "dev" ];
+
+ src = fetchurl {
+ url = "https://mirrors.kernel.org/sourceware/${pname}/${pname}-${version}.tar.gz";
+ sha256 = "04j07lhvwbp6qp8pdwbf7iqnr7kgpabmqylsw4invpmzwnyp6g6g";
+ };
+
+ nativeBuildInputs = [
+ autoreconfHook
+ pkgconfig
+ strace
+ ];
+
+ buildInputs = [
+ elfutils
+ libxml2
+ ];
+
+ checkInputs = [
+ python3
+ ];
+
+ configureFlags = [
+ "--enable-bash-completion=yes"
+ "--enable-cxx11=yes"
+ ];
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ preCheck = ''
+ # runtestdiffpkg needs cache directory
+ export XDG_CACHE_HOME="$TEMPDIR"
+ patchShebangs tests/
+ '';
+
+ meta = with stdenv.lib; {
+ description = "ABI Generic Analysis and Instrumentation Library";
+ homepage = "https://sourceware.org/libabigail/";
+ license = licenses.lgpl3Plus;
+ maintainers = with maintainers; [ jtojnar ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/libck/default.nix b/pkgs/development/libraries/libck/default.nix
new file mode 100644
index 000000000000..934a250ac7cb
--- /dev/null
+++ b/pkgs/development/libraries/libck/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ pname = "ck";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "concurrencykit";
+ repo = pname;
+ rev = version;
+ sha256 = "1w7g0y1n7jslca693fb8sanlfi1biq956dw6avdx6pf3c2s7l9jd";
+ };
+
+ dontDisableStatic = true;
+
+ meta = with stdenv.lib; {
+ description = "High-performance concurrency research library";
+ longDescription = ''
+ Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems.
+ '';
+ license = with licenses; [ asl20 bsd2 ];
+ homepage = "http://concurrencykit.org/";
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ chessai ];
+ };
+}
diff --git a/pkgs/development/libraries/libevdevplus/default.nix b/pkgs/development/libraries/libevdevplus/default.nix
new file mode 100644
index 000000000000..f538aab64adf
--- /dev/null
+++ b/pkgs/development/libraries/libevdevplus/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ pname = "libevdevplus";
+ version = "2019-10-01";
+
+ src = fetchFromGitHub {
+ owner = "YukiWorkshop";
+ repo = "libevdevPlus";
+ rev = "e863df2ade43e2c7d7748cc33ca27fb3eed325ca";
+ sha256 = "18z6pn4j7fhmwwh0q22ip5nn7sc1hfgwvkdzqhkja60i8cw2cvvj";
+ };
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "Easy-to-use event device library in C++";
+ license = licenses.mit;
+ maintainers = with maintainers; [ willibutz ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/development/libraries/libguestfs/appliance.nix b/pkgs/development/libraries/libguestfs/appliance.nix
index 9c2b317ab086..ad4a93517e92 100644
--- a/pkgs/development/libraries/libguestfs/appliance.nix
+++ b/pkgs/development/libraries/libguestfs/appliance.nix
@@ -1,9 +1,9 @@
{ fetchzip }:
fetchzip {
- name = "libguestfs-appliance-1.38.0";
- url = "http://libguestfs.org/download/binaries/appliance/appliance-1.38.0.tar.xz";
- sha256 = "15rxwj5qjflizxk7slpbrj9lcwkd2lgm52f5yv101qba4yyn3g76";
+ name = "libguestfs-appliance-1.40.1";
+ url = "http://download.libguestfs.org/binaries/appliance/appliance-1.40.1.tar.xz";
+ sha256 = "00863mm08p55cv6w8awp7y0lv894rcrm70mjwqfc8nc4yyb70xlm";
meta = {
hydraPlatforms = []; # Hydra fails with "Output limit exceeded"
diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix
index 9b50ddd4b7f4..07f2099f11ab 100644
--- a/pkgs/development/libraries/libguestfs/default.nix
+++ b/pkgs/development/libraries/libguestfs/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, autoreconfHook, makeWrapper
, ncurses, cpio, gperf, cdrkit, flex, bison, qemu, pcre, augeas, libxml2
, acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex
-, gmp, readline, file, numactl, xen, libapparmor
+, gmp, readline, file, numactl, xen, libapparmor, jansson
, getopt, perlPackages, ocamlPackages
, appliance ? null
, javaSupport ? false, jdk ? null }:
@@ -11,16 +11,16 @@ assert javaSupport -> jdk != null;
stdenv.mkDerivation rec {
pname = "libguestfs";
- version = "1.38.6";
+ version = "1.40.2";
src = fetchurl {
- url = "http://libguestfs.org/download/1.38-stable/libguestfs-${version}.tar.gz";
- sha256 = "1v2mggx2jlaq4m3p5shc46gzf7vmaayha6r0nwdnyzd7x6q0is7p";
+ url = "http://libguestfs.org/download/1.40-stable/${pname}-${version}.tar.gz";
+ sha256 = "ad6562c48c38e922a314cb45a90996843d81045595c4917f66b02a6c2dfe8058";
};
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ];
buildInputs = [
- makeWrapper autoreconfHook ncurses cpio gperf
+ ncurses cpio gperf jansson
cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig
systemd fuse yajl libvirt gmp readline file hivex
numactl xen libapparmor getopt perlPackages.ModuleBuild
@@ -65,6 +65,8 @@ stdenv.mkDerivation rec {
doInstallCheck = appliance != null;
installCheckPhase = ''
+ runHook preInstallCheck
+
export HOME=$(mktemp -d) # avoid access to /homeless-shelter/.guestfish
${qemu}/bin/qemu-img create -f qcow2 disk1.img 10G
@@ -77,12 +79,14 @@ stdenv.mkDerivation rec {
mkfs ext2 /dev/sda1
list-filesystems
EOF
+
+ runHook postInstallCheck
'';
meta = with stdenv.lib; {
description = "Tools for accessing and modifying virtual machine disk images";
- license = licenses.gpl2;
- homepage = http://libguestfs.org/;
+ license = with licenses; [ gpl2 lgpl21 ];
+ homepage = "http://libguestfs.org/";
maintainers = with maintainers; [offline];
platforms = platforms.linux;
};
diff --git a/pkgs/development/libraries/libuinputplus/default.nix b/pkgs/development/libraries/libuinputplus/default.nix
new file mode 100644
index 000000000000..700a4701fc87
--- /dev/null
+++ b/pkgs/development/libraries/libuinputplus/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ pname = "libuinputplus";
+ version = "2019-10-01";
+
+ src = fetchFromGitHub {
+ owner = "YukiWorkshop";
+ repo = "libuInputPlus";
+ rev = "962f180b4cc670e1f5cc73c2e4d5d196ae52d630";
+ sha256 = "0jy5i7bmjad7hw1qcyjl4swqribp2027s9g3609zwj7lj8z5x0bg";
+ };
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "Easy-to-use uinput library in C++";
+ license = licenses.mit;
+ maintainers = with maintainers; [ willibutz ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/development/libraries/polkit/default.nix b/pkgs/development/libraries/polkit/default.nix
index 03dcffd046e7..9fdf53a13724 100644
--- a/pkgs/development/libraries/polkit/default.nix
+++ b/pkgs/development/libraries/polkit/default.nix
@@ -1,9 +1,13 @@
{ stdenv, fetchurl, pkgconfig, glib, expat, pam, perl, fetchpatch
, intltool, spidermonkey_60 , gobject-introspection, libxslt, docbook_xsl, dbus
, docbook_xml_dtd_412, gtk-doc, coreutils
-, useSystemd ? stdenv.isLinux, systemd
+, useSystemd ? (stdenv.isLinux && !stdenv.hostPlatform.isMusl), systemd, elogind
, withGnome ? true
-, doCheck ? stdenv.isLinux
+# A few tests currently fail on musl (polkitunixusertest, polkitunixgrouptest, polkitidentitytest segfault).
+# Not yet investigated; it may be due to the "Make netgroup support optional"
+# patch not updating the tests correctly yet, or doing something wrong,
+# or being unrelated to that.
+, doCheck ? (stdenv.isLinux && !stdenv.hostPlatform.isMusl)
}:
let
@@ -28,6 +32,15 @@ stdenv.mkDerivation rec {
url = "https://gitlab.freedesktop.org/polkit/polkit/merge_requests/11.patch";
sha256 = "17lv7xj5ksa27iv4zpm4zwd4iy8zbwjj4ximslfq3sasiz9kxhlp";
})
+ ] ++ stdenv.lib.optionals stdenv.hostPlatform.isMusl [
+ # Make netgroup support optional (musl does not have it)
+ # Upstream MR: https://gitlab.freedesktop.org/polkit/polkit/merge_requests/10
+ # We use the version of the patch that Alpine uses successfully.
+ (fetchpatch {
+ name = "make-innetgr-optional.patch";
+ url = "https://git.alpinelinux.org/aports/plain/main/polkit/make-innetgr-optional.patch?id=391e7de6ced1a96c2dac812e0b12f1d7e0ea705e";
+ sha256 = "1p9qqqhnrfyjvvd50qh6vpl256kyfblm1qnhz5pm09klrl1bh1n4";
+ })
];
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
@@ -41,7 +54,7 @@ stdenv.mkDerivation rec {
++ [ libxslt docbook_xsl docbook_xml_dtd_412 ]; # man pages
buildInputs =
[ expat pam spidermonkey_60 ]
- ++ stdenv.lib.optional useSystemd systemd
+ ++ (if useSystemd then [systemd] else [elogind])
++ stdenv.lib.optional withGnome gobject-introspection;
propagatedBuildInputs = [
diff --git a/pkgs/development/libraries/srt/default.nix b/pkgs/development/libraries/srt/default.nix
index 74cdf90a156b..cf8bffe07362 100644
--- a/pkgs/development/libraries/srt/default.nix
+++ b/pkgs/development/libraries/srt/default.nix
@@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl ];
cmakeFlags = [
+ # the cmake package does not handle absolute CMAKE_INSTALL_INCLUDEDIR correctly
+ # (setting it to an absolute path causes include files to go to $out/$out/include,
+ # because the absolute path is interpreted with root at $out).
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
# TODO Remove this when https://github.com/Haivision/srt/issues/538 is fixed and available to nixpkgs
# Workaround for the fact that srt incorrectly disables GNUInstallDirs when LIBDIR is specified,
# see https://github.com/NixOS/nixpkgs/pull/54463#discussion_r249878330
diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix
index 0bffa8ba1a56..74792f8f34cd 100644
--- a/pkgs/development/libraries/wt/default.nix
+++ b/pkgs/development/libraries/wt/default.nix
@@ -49,12 +49,12 @@ let
};
in {
wt3 = generic {
- version = "3.4.1";
- sha256 = "1bsx7hmy6g2x9p3vl5xw9lv1xk891pnvs93a87s15g257gznkjmj";
+ version = "3.4.2";
+ sha256 = "03mwr4yv3705y74pdh19lmh8szad6gk2x2m23f4pr0wrmqg73307";
};
wt4 = generic {
- version = "4.1.1";
- sha256 = "1f1imx5kbpqlysrqx5h75hf2f8pkq972rz42x0pl6cxbnsyzngid";
+ version = "4.1.2";
+ sha256 = "06bnadpgflg8inikzynnz4l4r6w1bphjwlva4pzf51w648vpkknl";
};
}
diff --git a/pkgs/development/node-packages/composition-v13.nix b/pkgs/development/node-packages/composition-v13.nix
new file mode 100644
index 000000000000..c79053e020ea
--- /dev/null
+++ b/pkgs/development/node-packages/composition-v13.nix
@@ -0,0 +1,17 @@
+# This file has been generated by node2nix 1.7.0. Do not edit!
+
+{pkgs ? import {
+ inherit system;
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-13_x"}:
+
+let
+ nodeEnv = import ./node-env.nix {
+ inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
+ inherit nodejs;
+ libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
+ };
+in
+import ./node-packages-v13.nix {
+ inherit (pkgs) fetchurl fetchgit;
+ inherit nodeEnv;
+}
\ No newline at end of file
diff --git a/pkgs/development/node-packages/default-v13.nix b/pkgs/development/node-packages/default-v13.nix
new file mode 100644
index 000000000000..242aaa70d664
--- /dev/null
+++ b/pkgs/development/node-packages/default-v13.nix
@@ -0,0 +1,16 @@
+{ pkgs, nodejs, stdenv }:
+
+let
+ nodePackages = import ./composition-v13.nix {
+ inherit pkgs nodejs;
+ inherit (stdenv.hostPlatform) system;
+ };
+in
+nodePackages // {
+ node2nix = nodePackages.node2nix.override {
+ buildInputs = [ pkgs.makeWrapper ];
+ postInstall = ''
+ wrapProgram "$out/bin/node2nix" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.nix ]}
+ '';
+ };
+}
diff --git a/pkgs/development/node-packages/generate.sh b/pkgs/development/node-packages/generate.sh
index 06c4c8213666..ca6e06286422 100755
--- a/pkgs/development/node-packages/generate.sh
+++ b/pkgs/development/node-packages/generate.sh
@@ -7,3 +7,4 @@ set -eu -o pipefail
rm -f node-env.nix
node2nix --nodejs-10 -i node-packages-v10.json -o node-packages-v10.nix -c composition-v10.nix
node2nix --nodejs-12 -i node-packages-v12.json -o node-packages-v12.nix -c composition-v12.nix
+node2nix --nodejs-13 -i node-packages-v13.json -o node-packages-v13.nix -c composition-v13.nix
diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix
index 6b7a9f639e3f..27636c5395f9 100644
--- a/pkgs/development/node-packages/node-packages-v10.nix
+++ b/pkgs/development/node-packages/node-packages-v10.nix
@@ -13,67 +13,67 @@ let
sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ==";
};
};
- "@angular-devkit/architect-0.803.5" = {
+ "@angular-devkit/architect-0.803.14" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.803.5";
+ version = "0.803.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.5.tgz";
- sha512 = "hOcYF5fG3oieTc/C1QZqXsON8m8cpdtfdWhY7F7tmqqZ4JBR7igH4SSFQOoQwTj77rsqtkOLI9isVLpoSGX0DQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.14.tgz";
+ sha512 = "CPDDNTpM/9XWCFxCRL1/mYB54ivZcmWaVSjUgN2zcHWBc0gW3lrJrmmb+cJ1KSlOI7hoZaMTV1gWoX2QXd4JrA==";
};
};
- "@angular-devkit/core-8.3.5" = {
+ "@angular-devkit/core-8.3.14" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "8.3.5";
+ version = "8.3.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.5.tgz";
- sha512 = "ag7Nr94wQUqCFtZjw+rMET+djGBmLk989Id5lLWViW99g4XFeS+e45mJv3JYRzF218+6EdicZz0DGQRYHekVeg==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.14.tgz";
+ sha512 = "+IYLbtCxwIpaieRj0wurEXBzZ/fDSdWbyrCfajzDerzsxqghNcafAXSazHXWwISqtbr/pAOuqUNR+mEk2XBz3Q==";
};
};
- "@angular-devkit/schematics-8.3.5" = {
+ "@angular-devkit/schematics-8.3.14" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "8.3.5";
+ version = "8.3.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-8.3.5.tgz";
- sha512 = "RMtM10kS+Docg90jzFMa4HQ+UzX95Gi5rCT/kSydEkBhp+Jeu/B0K2y67Fm2/qTdVNRCujrCpEmtiRcp1qsOQg==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-8.3.14.tgz";
+ sha512 = "5gPmTBN85a2gTxz/FsM5fO9Bxw4KG6uJNLMDAWfPG8vvSQEl7J64ujyqxPz39TernQTEKeuhRC4I5H1aaW9I/Q==";
};
};
- "@antora/asciidoc-loader-2.1.1" = {
+ "@antora/asciidoc-loader-2.1.2" = {
name = "_at_antora_slash_asciidoc-loader";
packageName = "@antora/asciidoc-loader";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-2.1.1.tgz";
- sha512 = "5j4wKrLgoiIoghqMYv9FkEstISozG753L5YMuQ5sbiQToKhZp4frKx8hZfrwlUCyGQ9BKqIVlkhkPValkpp26g==";
+ url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-2.1.2.tgz";
+ sha512 = "Hm/E+ff5HgafFi4iAkMHTHP0/iHRrTg96wnX4fFtogHW3tuAOCN+e0d1e4HmHeUwRwy+PSJgXECKyswWA5h8cw==";
};
};
- "@antora/content-aggregator-2.1.1" = {
+ "@antora/content-aggregator-2.1.2" = {
name = "_at_antora_slash_content-aggregator";
packageName = "@antora/content-aggregator";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-2.1.1.tgz";
- sha512 = "uORcwPt2js5i6m492zOyszU0+GA748+Zvcrwf6jeOWsBePyYIVxI2L6TmJ8Ulw65scEQOKTrvsITb8lFCVLkWQ==";
+ url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-2.1.2.tgz";
+ sha512 = "yNhtS2JcHlwcgz06HS2jtkWmbruxqRENT2raN9xk1PkKeubDEOKmbBXNQHvUjQviDXwpB2jehgIpGFlo/UcqoA==";
};
};
- "@antora/content-classifier-2.1.1" = {
+ "@antora/content-classifier-2.1.2" = {
name = "_at_antora_slash_content-classifier";
packageName = "@antora/content-classifier";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-2.1.1.tgz";
- sha512 = "HQlDCoycTxk8IDMx4IaaNkqlHcik5Q22L2/nHQTevYfiErS4wfCmern1O42DvPj72VT72JnnDg87WBvTgZTRTA==";
+ url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-2.1.2.tgz";
+ sha512 = "JiuBrvJFmjtvka5zcpYOxXbf8n7wWTHDcCMsCxFeadoyXBvUrdGHmT/oKq9/IiyCrda9onwV/IY/mdrD4Gr9uQ==";
};
};
- "@antora/document-converter-2.1.1" = {
+ "@antora/document-converter-2.1.2" = {
name = "_at_antora_slash_document-converter";
packageName = "@antora/document-converter";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-2.1.1.tgz";
- sha512 = "WnMHE5JCkdOYFQ7ytqq2d6Wj0zmy2ifXzU1M2Eo7ZwbSxjkrLVGRFlPbTIybdgnqhIss6ef01qZ+F/+8ZBTFvw==";
+ url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-2.1.2.tgz";
+ sha512 = "gmjXV5gSkDi6dhagojQAMHeMH0jvqmkce8AZCPAePeQfc5gpdiSCtRMP/vld5InfYQJ40ckxdQilPqFUpxJk3Q==";
};
};
"@antora/expand-path-helper-1.0.0" = {
@@ -85,67 +85,76 @@ let
sha512 = "hg3y6M3OvRTb7jtLAnwwloYDxafbyKYttcf16kGCXvP7Wqosh7c+Ag+ltaZ7VSebpzpphO/umb/BXdpU7rxapw==";
};
};
- "@antora/navigation-builder-2.1.1" = {
+ "@antora/navigation-builder-2.1.2" = {
name = "_at_antora_slash_navigation-builder";
packageName = "@antora/navigation-builder";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-2.1.1.tgz";
- sha512 = "H3VmqIfvuCTAae7Xd1rWYXhQKXhvCLhr0lxWeuSvVp6xzTo3Zf/VnhCGlllLoB+69PSCfcSEm2J5oCy6ySa6WA==";
+ url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-2.1.2.tgz";
+ sha512 = "LDc5j9VJWjeBtvGHiQWd3GHSJAUXuLze5oRpO3WaHjlR6oxt0q9vlfWWNTQg+5yj0BBXdINkHv+LzuxcWys0mw==";
};
};
- "@antora/page-composer-2.1.1" = {
+ "@antora/page-composer-2.1.2" = {
name = "_at_antora_slash_page-composer";
packageName = "@antora/page-composer";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-2.1.1.tgz";
- sha512 = "PqxMt+s4aTCW2woC/MjjfTG1Hy20A3olsW7ZqpanAao+CGdcqeGbu9LFh65lKGL3MOM0NBIDJG0qqX1RNBX1Nw==";
+ url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-2.1.2.tgz";
+ sha512 = "COMB+t/9l/QM4G6o3VwP+IBkI24CvhTp2yEmlt/dQ0JE1yFuO/jEKGXmBoL02rll3g/WRlUxSIGNJLt7R1QWZQ==";
};
};
- "@antora/playbook-builder-2.1.1" = {
+ "@antora/playbook-builder-2.1.2" = {
name = "_at_antora_slash_playbook-builder";
packageName = "@antora/playbook-builder";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-2.1.1.tgz";
- sha512 = "mdsV8OJq9gbw8IUOhNI5+gCfPJl5UyS7H/TbE4oVimebHpmHSld3/GKc7DjuR0Ge4jxNxwlRyDEtfQiNvnBmug==";
+ url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-2.1.2.tgz";
+ sha512 = "JggjwTxiguVyAJaOuAVqpg06aYtahYiTXmSsczOILEEP6viehxuXS1dbNCqg+xwvdvPxJhsBI5x3bfWhcTWs0w==";
};
};
- "@antora/redirect-producer-2.1.1" = {
+ "@antora/redirect-producer-2.1.2" = {
name = "_at_antora_slash_redirect-producer";
packageName = "@antora/redirect-producer";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-2.1.1.tgz";
- sha512 = "jdnx19b5qlbjUZCwSGrUTUozRPj39OxTr8PeF3jp+qD+TMZuA6XV/6Qp6d1TN2d6a5PQ+d5852g+B2wZmPMIoQ==";
+ url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-2.1.2.tgz";
+ sha512 = "Y5H5/7Mm9c6rMnLMTRI+c3f2AqHisMDAvBy8OyBW75rlg2+fwG1I1VdZxOoTkCXmAS93QyPX/wDymbRUpiBOHQ==";
};
};
- "@antora/site-mapper-2.1.1" = {
+ "@antora/site-mapper-2.1.2" = {
name = "_at_antora_slash_site-mapper";
packageName = "@antora/site-mapper";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-2.1.1.tgz";
- sha512 = "nJvzzu/S4B+qm5SLfNToaC576spPx/FGZqvS99QbRQ11KK10y7rqERlq/wR/nu1IL+zISgw5zJW3qNlTq9YSIg==";
+ url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-2.1.2.tgz";
+ sha512 = "KgXn7W47HW7WIYuoptawvkXq2Fg1Es6zn0IlTCyQF/zjQmfoxgHrMk6dW93YjD75RdhKTEeI7hhMzKfwoTYRHA==";
};
};
- "@antora/site-publisher-2.1.1" = {
+ "@antora/site-publisher-2.1.2" = {
name = "_at_antora_slash_site-publisher";
packageName = "@antora/site-publisher";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-2.1.1.tgz";
- sha512 = "sGuUeIV5bo4VgbnVN6lJNLnVrJWJyyM1rfu5eInOvPru0dQ5zzH8ij93q+5Lxc30zwj+TDI371AFluzz+TWK3A==";
+ url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-2.1.2.tgz";
+ sha512 = "5ekXPBRk3YMVeqhPCnPdjKNRqcI8OKqxisVhWplS/YgY9n2TGICyz01ZtAmueWD0l3mHH5cJRfPHPnTPNXc7Aw==";
};
};
- "@antora/ui-loader-2.1.1" = {
+ "@antora/ui-loader-2.1.2" = {
name = "_at_antora_slash_ui-loader";
packageName = "@antora/ui-loader";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-2.1.1.tgz";
- sha512 = "/fPYFRtJsUp4LwOu1MrstAcd+BQFdr5afb5l0iaAi3GuXLLLMasdCIH0jByi4GSiNsYlJ6P+/Jbv+BiUiMY/cg==";
+ url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-2.1.2.tgz";
+ sha512 = "fHjJ0wBr0NIaWn6+xDMFOtCc7kf7sdt8I9g/r090X4lImodD2rNm5Jf3wnvAL91M66hDrFaJmE2Fkpbv8fmkBA==";
+ };
+ };
+ "@apollo/federation-0.10.2" = {
+ name = "_at_apollo_slash_federation";
+ packageName = "@apollo/federation";
+ version = "0.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollo/federation/-/federation-0.10.2.tgz";
+ sha512 = "N+JoD7YraGAgDJq1GTkAzRRPUA+FgclFgAUcUDng9ICA4N147nuGUrbrpQdgLnE59nCLJAhcFvOgQRs177XMWw==";
};
};
"@apollographql/apollo-tools-0.4.0" = {
@@ -157,6 +166,42 @@ let
sha512 = "7wEO+S+zgz/wVe3ilFQqICufRBYYDSNUkd1V03JWvXuSydbYq2SM5EgvWmFF+04iadt+aQ0XCCsRzCzRPQODfQ==";
};
};
+ "@apollographql/graphql-language-service-interface-2.0.2" = {
+ name = "_at_apollographql_slash_graphql-language-service-interface";
+ packageName = "@apollographql/graphql-language-service-interface";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/graphql-language-service-interface/-/graphql-language-service-interface-2.0.2.tgz";
+ sha512 = "28wePK0hlIVjgmvMXMAUq8qRSjz9O+6lqFp4PzOTHtfJfSsjVe9EfjF98zTpHsTgT3HcOxmbqDZZy8jlXtOqEA==";
+ };
+ };
+ "@apollographql/graphql-language-service-parser-2.0.2" = {
+ name = "_at_apollographql_slash_graphql-language-service-parser";
+ packageName = "@apollographql/graphql-language-service-parser";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/graphql-language-service-parser/-/graphql-language-service-parser-2.0.2.tgz";
+ sha512 = "rpTPrEJu1PMaRQxz5P8BZWsixNNhYloS0H0dwTxNBuE3qctbARvR7o8UCKLsmKgTbo+cz3T3a6IAsWlkHgMWGg==";
+ };
+ };
+ "@apollographql/graphql-language-service-types-2.0.2" = {
+ name = "_at_apollographql_slash_graphql-language-service-types";
+ packageName = "@apollographql/graphql-language-service-types";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/graphql-language-service-types/-/graphql-language-service-types-2.0.2.tgz";
+ sha512 = "vE+Dz8pG+Xa1Z2nMl82LoO66lQ6JqBUjaXqLDvS3eMjvA3N4hf+YUDOWfPdNZ0zjhHhHXzUIIZCkax6bXfFbzQ==";
+ };
+ };
+ "@apollographql/graphql-language-service-utils-2.0.2" = {
+ name = "_at_apollographql_slash_graphql-language-service-utils";
+ packageName = "@apollographql/graphql-language-service-utils";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/graphql-language-service-utils/-/graphql-language-service-utils-2.0.2.tgz";
+ sha512 = "fDj5rWlTi/czvUS5t7V7I45Ai6bOO3Z7JARYj21Y2xxfbRGtJi6h8FvLX0N/EbzQgo/fiZc/HAhtfwn+OCjD7A==";
+ };
+ };
"@apollographql/graphql-playground-html-1.6.24" = {
name = "_at_apollographql_slash_graphql-playground-html";
packageName = "@apollographql/graphql-playground-html";
@@ -184,15 +229,6 @@ let
sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
};
};
- "@babel/code-frame-7.0.0" = {
- name = "_at_babel_slash_code-frame";
- packageName = "@babel/code-frame";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz";
- sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==";
- };
- };
"@babel/code-frame-7.5.5" = {
name = "_at_babel_slash_code-frame";
packageName = "@babel/code-frame";
@@ -202,22 +238,13 @@ let
sha512 = "27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==";
};
};
- "@babel/core-7.3.4" = {
+ "@babel/core-7.6.4" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.3.4";
+ version = "7.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.3.4.tgz";
- sha512 = "jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==";
- };
- };
- "@babel/core-7.6.0" = {
- name = "_at_babel_slash_core";
- packageName = "@babel/core";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.6.0.tgz";
- sha512 = "FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.6.4.tgz";
+ sha512 = "Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ==";
};
};
"@babel/generator-7.0.0-beta.38" = {
@@ -229,22 +256,13 @@ let
sha512 = "aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==";
};
};
- "@babel/generator-7.3.4" = {
+ "@babel/generator-7.6.4" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.3.4";
+ version = "7.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.3.4.tgz";
- sha512 = "8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==";
- };
- };
- "@babel/generator-7.6.0" = {
- name = "_at_babel_slash_generator";
- packageName = "@babel/generator";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.6.0.tgz";
- sha512 = "Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz";
+ sha512 = "jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==";
};
};
"@babel/helper-annotate-as-pure-7.0.0" = {
@@ -436,13 +454,13 @@ let
sha512 = "o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==";
};
};
- "@babel/helpers-7.6.0" = {
+ "@babel/helpers-7.6.2" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.6.0";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.0.tgz";
- sha512 = "W9kao7OBleOjfXtFGgArGRX6eCP0UEcA2ZWEWNkJdRZnHhW4eEbeswbG3EwaRsnQUAEGWYgMq1HsIXuNNNy2eQ==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz";
+ sha512 = "3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==";
};
};
"@babel/highlight-7.5.0" = {
@@ -454,22 +472,13 @@ let
sha512 = "7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==";
};
};
- "@babel/parser-7.3.4" = {
+ "@babel/parser-7.6.4" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.3.4";
+ version = "7.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.3.4.tgz";
- sha512 = "tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==";
- };
- };
- "@babel/parser-7.6.0" = {
- name = "_at_babel_slash_parser";
- packageName = "@babel/parser";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.6.0.tgz";
- sha512 = "+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz";
+ sha512 = "D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==";
};
};
"@babel/plugin-external-helpers-7.0.0" = {
@@ -517,13 +526,13 @@ let
sha512 = "MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==";
};
};
- "@babel/plugin-proposal-object-rest-spread-7.5.5" = {
+ "@babel/plugin-proposal-object-rest-spread-7.6.2" = {
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
packageName = "@babel/plugin-proposal-object-rest-spread";
- version = "7.5.5";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz";
- sha512 = "F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz";
+ sha512 = "LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==";
};
};
"@babel/plugin-proposal-optional-catch-binding-7.2.0" = {
@@ -535,13 +544,13 @@ let
sha512 = "mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==";
};
};
- "@babel/plugin-proposal-unicode-property-regex-7.4.4" = {
+ "@babel/plugin-proposal-unicode-property-regex-7.6.2" = {
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
packageName = "@babel/plugin-proposal-unicode-property-regex";
- version = "7.4.4";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz";
- sha512 = "j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz";
+ sha512 = "NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw==";
};
};
"@babel/plugin-syntax-async-generators-7.2.0" = {
@@ -643,13 +652,13 @@ let
sha512 = "ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==";
};
};
- "@babel/plugin-transform-block-scoping-7.6.0" = {
+ "@babel/plugin-transform-block-scoping-7.6.3" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.6.0";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz";
- sha512 = "tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz";
+ sha512 = "7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==";
};
};
"@babel/plugin-transform-classes-7.5.5" = {
@@ -679,13 +688,13 @@ let
sha512 = "2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ==";
};
};
- "@babel/plugin-transform-dotall-regex-7.4.4" = {
+ "@babel/plugin-transform-dotall-regex-7.6.2" = {
name = "_at_babel_slash_plugin-transform-dotall-regex";
packageName = "@babel/plugin-transform-dotall-regex";
- version = "7.4.4";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz";
- sha512 = "P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz";
+ sha512 = "KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA==";
};
};
"@babel/plugin-transform-duplicate-keys-7.5.0" = {
@@ -706,22 +715,13 @@ let
sha512 = "umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==";
};
};
- "@babel/plugin-transform-flow-strip-types-7.3.4" = {
+ "@babel/plugin-transform-flow-strip-types-7.6.3" = {
name = "_at_babel_slash_plugin-transform-flow-strip-types";
packageName = "@babel/plugin-transform-flow-strip-types";
- version = "7.3.4";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.3.4.tgz";
- sha512 = "PmQC9R7DwpBFA+7ATKMyzViz3zCaMNouzZMPZN2K5PnbBbtL3AXFYTkDk+Hey5crQq2A90UG5Uthz0mel+XZrA==";
- };
- };
- "@babel/plugin-transform-flow-strip-types-7.4.4" = {
- name = "_at_babel_slash_plugin-transform-flow-strip-types";
- packageName = "@babel/plugin-transform-flow-strip-types";
- version = "7.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz";
- sha512 = "WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.6.3.tgz";
+ sha512 = "l0ETkyEofkqFJ9LS6HChNIKtVJw2ylKbhYMlJ5C6df+ldxxaLIyXY4yOdDQQspfFpV8/vDiaWoJlvflstlYNxg==";
};
};
"@babel/plugin-transform-for-of-7.4.4" = {
@@ -769,15 +769,6 @@ let
sha512 = "n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.2.0" = {
- name = "_at_babel_slash_plugin-transform-modules-commonjs";
- packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz";
- sha512 = "V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ==";
- };
- };
"@babel/plugin-transform-modules-commonjs-7.6.0" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
@@ -805,13 +796,13 @@ let
sha512 = "BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==";
};
};
- "@babel/plugin-transform-named-capturing-groups-regex-7.6.0" = {
+ "@babel/plugin-transform-named-capturing-groups-regex-7.6.3" = {
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
- version = "7.6.0";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz";
- sha512 = "jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz";
+ sha512 = "jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw==";
};
};
"@babel/plugin-transform-new-target-7.4.4" = {
@@ -877,13 +868,13 @@ let
sha512 = "fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==";
};
};
- "@babel/plugin-transform-runtime-7.6.0" = {
+ "@babel/plugin-transform-runtime-7.6.2" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.6.0";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.0.tgz";
- sha512 = "Da8tMf7uClzwUm/pnJ1S93m/aRXmoYNDD7TkHua8xBDdaAs54uZpTWvEt6NGwmoVMb9mZbntfTqmG2oSzN/7Vg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.2.tgz";
+ sha512 = "cqULw/QB4yl73cS5Y0TZlQSjDvNkzDbu0FurTZyHlJpWE5T3PCMdnyV+xXoH1opr1ldyHODe3QAX3OMAii5NxA==";
};
};
"@babel/plugin-transform-shorthand-properties-7.2.0" = {
@@ -895,13 +886,13 @@ let
sha512 = "QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==";
};
};
- "@babel/plugin-transform-spread-7.2.2" = {
+ "@babel/plugin-transform-spread-7.6.2" = {
name = "_at_babel_slash_plugin-transform-spread";
packageName = "@babel/plugin-transform-spread";
- version = "7.2.2";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz";
- sha512 = "KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz";
+ sha512 = "DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg==";
};
};
"@babel/plugin-transform-sticky-regex-7.2.0" = {
@@ -931,49 +922,40 @@ let
sha512 = "2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==";
};
};
- "@babel/plugin-transform-typescript-7.6.0" = {
+ "@babel/plugin-transform-typescript-7.6.3" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.6.0";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.0.tgz";
- sha512 = "yzw7EopOOr6saONZ3KA3lpizKnWRTe+rfBqg4AmQbSow7ik7fqmzrfIqt053osLwLE2AaTqGinLM2tl6+M/uog==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz";
+ sha512 = "aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ==";
};
};
- "@babel/plugin-transform-unicode-regex-7.4.4" = {
+ "@babel/plugin-transform-unicode-regex-7.6.2" = {
name = "_at_babel_slash_plugin-transform-unicode-regex";
packageName = "@babel/plugin-transform-unicode-regex";
- version = "7.4.4";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz";
- sha512 = "il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz";
+ sha512 = "orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw==";
};
};
- "@babel/polyfill-7.4.4" = {
+ "@babel/polyfill-7.6.0" = {
name = "_at_babel_slash_polyfill";
packageName = "@babel/polyfill";
- version = "7.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.4.4.tgz";
- sha512 = "WlthFLfhQQhh+A2Gn5NSFl0Huxz36x86Jn+E9OW7ibK8edKPq+KLy4apM1yDpQ8kJOVi1OVjpP4vSDLdrI04dg==";
- };
- };
- "@babel/preset-env-7.3.4" = {
- name = "_at_babel_slash_preset-env";
- packageName = "@babel/preset-env";
- version = "7.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.3.4.tgz";
- sha512 = "2mwqfYMK8weA0g0uBKOt4FE3iEodiHy9/CW0b+nWXcbL+pGzLx8ESYc+j9IIxr6LTDHWKgPm71i9smo02bw+gA==";
- };
- };
- "@babel/preset-env-7.6.0" = {
- name = "_at_babel_slash_preset-env";
- packageName = "@babel/preset-env";
version = "7.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.0.tgz";
- sha512 = "1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg==";
+ url = "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.6.0.tgz";
+ sha512 = "q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw==";
+ };
+ };
+ "@babel/preset-env-7.6.3" = {
+ name = "_at_babel_slash_preset-env";
+ packageName = "@babel/preset-env";
+ version = "7.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.6.3.tgz";
+ sha512 = "CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ==";
};
};
"@babel/preset-flow-7.0.0" = {
@@ -1003,58 +985,40 @@ let
sha512 = "4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww==";
};
};
- "@babel/register-7.6.0" = {
+ "@babel/register-7.6.2" = {
name = "_at_babel_slash_register";
packageName = "@babel/register";
- version = "7.6.0";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/register/-/register-7.6.0.tgz";
- sha512 = "78BomdN8el+x/nkup9KwtjJXuptW5oXMFmP11WoM2VJBjxrKv4grC3qjpLL8RGGUYUGsm57xnjYFM2uom+jWUQ==";
+ url = "https://registry.npmjs.org/@babel/register/-/register-7.6.2.tgz";
+ sha512 = "xgZk2LRZvt6i2SAUWxc7ellk4+OYRgS3Zpsnr13nMS1Qo25w21Uu8o6vTOAqNaxiqrnv30KTYzh9YWY2k21CeQ==";
};
};
- "@babel/runtime-7.3.4" = {
+ "@babel/runtime-7.6.2" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.3.4";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.4.tgz";
- sha512 = "IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.2.tgz";
+ sha512 = "EXxN64agfUqqIGeEjI5dL5z0Sw0ZwWo1mLTi4mQowCZ42O59b7DRpZAnTC6OqdF28wMBMFKNb/4uFGrVaigSpg==";
};
};
- "@babel/runtime-7.4.5" = {
+ "@babel/runtime-7.6.3" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.4.5";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz";
- sha512 = "TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.3.tgz";
+ sha512 = "kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA==";
};
};
- "@babel/runtime-7.6.0" = {
- name = "_at_babel_slash_runtime";
- packageName = "@babel/runtime";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.0.tgz";
- sha512 = "89eSBLJsxNxOERC0Op4vd+0Bqm6wRMqMbFtV3i0/fbaWw/mJ8Q3eBvgX0G4SyrOOLCtbu98HspF8o09MRT+KzQ==";
- };
- };
- "@babel/runtime-corejs2-7.6.0" = {
+ "@babel/runtime-corejs2-7.6.3" = {
name = "_at_babel_slash_runtime-corejs2";
packageName = "@babel/runtime-corejs2";
- version = "7.6.0";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.6.0.tgz";
- sha512 = "zbPQzlbyJab2xCYb6VaESn8Tk/XiVpQJU7WvIKiQCwlFyc2NSCzKjqtBXCvpZBbiTOHCx10s2656REVnySwb+A==";
- };
- };
- "@babel/template-7.2.2" = {
- name = "_at_babel_slash_template";
- packageName = "@babel/template";
- version = "7.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz";
- sha512 = "zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.6.3.tgz";
+ sha512 = "nuA2o+rgX2+PrNTZ063ehncVcg7sn+tU71BB81SaWRVUbGwCOlb0+yQA1e0QqmzOfRSYOxfvf8cosYqFbJEiwQ==";
};
};
"@babel/template-7.6.0" = {
@@ -1066,22 +1030,13 @@ let
sha512 = "5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==";
};
};
- "@babel/traverse-7.3.4" = {
+ "@babel/traverse-7.6.3" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.3.4";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.3.4.tgz";
- sha512 = "TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==";
- };
- };
- "@babel/traverse-7.6.0" = {
- name = "_at_babel_slash_traverse";
- packageName = "@babel/traverse";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.0.tgz";
- sha512 = "93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz";
+ sha512 = "unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==";
};
};
"@babel/types-7.0.0-beta.38" = {
@@ -1093,22 +1048,13 @@ let
sha512 = "SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==";
};
};
- "@babel/types-7.3.4" = {
+ "@babel/types-7.6.3" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.3.4";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.3.4.tgz";
- sha512 = "WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ==";
- };
- };
- "@babel/types-7.6.1" = {
- name = "_at_babel_slash_types";
- packageName = "@babel/types";
- version = "7.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz";
- sha512 = "X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz";
+ sha512 = "CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==";
};
};
"@calebboyd/semaphore-1.3.1" = {
@@ -1219,6 +1165,15 @@ let
sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw==";
};
};
+ "@endemolshinegroup/cosmiconfig-typescript-loader-1.0.1" = {
+ name = "_at_endemolshinegroup_slash_cosmiconfig-typescript-loader";
+ packageName = "@endemolshinegroup/cosmiconfig-typescript-loader";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.1.tgz";
+ sha512 = "bhUR9035PbgL6A/nfLayjoqKo4W7hCtzxqVxq2cgDB+Ndpsa3dGIr71/ymgY3vCTCQaufkFxAcEeoECyJ498CA==";
+ };
+ };
"@evocateur/libnpmaccess-3.1.2" = {
name = "_at_evocateur_slash_libnpmaccess";
packageName = "@evocateur/libnpmaccess";
@@ -1291,13 +1246,13 @@ let
sha512 = "1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==";
};
};
- "@hapi/hoek-8.2.4" = {
+ "@hapi/hoek-8.3.2" = {
name = "_at_hapi_slash_hoek";
packageName = "@hapi/hoek";
- version = "8.2.4";
+ version = "8.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.2.4.tgz";
- sha512 = "Ze5SDNt325yZvNO7s5C4fXDscjJ6dcqLFXJQ/M7dZRQCewuDj2iDUuBi6jLQt+APbW9RjjVEvLr35FXuOEqjow==";
+ url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.3.2.tgz";
+ sha512 = "NP5SG4bzix+EtSMtcudp8TvI0lB46mXNo8uFpTDw6tqxGx4z5yx+giIunEFA0Z7oUO4DuWrOJV9xqR2tJVEdyA==";
};
};
"@hapi/joi-15.1.1" = {
@@ -1309,13 +1264,13 @@ let
sha512 = "entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==";
};
};
- "@hapi/topo-3.1.4" = {
+ "@hapi/topo-3.1.6" = {
name = "_at_hapi_slash_topo";
packageName = "@hapi/topo";
- version = "3.1.4";
+ version = "3.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.4.tgz";
- sha512 = "aVWQTOI9wBD6zawmOr6f+tdEIxQC8JXfQVLTjgGe8YEStAWGn/GNNVTobKJhbWKveQj2RyYF3oYbO9SC8/eOCA==";
+ url = "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz";
+ sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==";
};
};
"@iarna/toml-2.2.3" = {
@@ -1327,13 +1282,22 @@ let
sha512 = "FmuxfCuolpLl0AnQ2NHSzoUKWEJDFl63qXjzdoWBVyFCXzMGm1spBzk7LeHNoVCiWCF7mRVms9e6jEV9+MoPbg==";
};
};
- "@ionic/cli-framework-2.1.7" = {
+ "@ionic/cli-framework-3.0.0" = {
name = "_at_ionic_slash_cli-framework";
packageName = "@ionic/cli-framework";
- version = "2.1.7";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-2.1.7.tgz";
- sha512 = "osuKbmCIzT0H+g39lDy+EmsP5RHc+aYOv+BN+IngsaxKb7ya0V/JlLO1vLkd7RYT+lmiQWiCi7RpHPeEgQJFtw==";
+ url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-3.0.0.tgz";
+ sha512 = "Pm7Kq2xg/Zas1eU98UC9Ghb4l2kUQh2/IH06SUof5dpB+YpK9mh78IRAcppPnYC5d7SNDYy8fWeo6m+NR9il/w==";
+ };
+ };
+ "@ionic/cli-framework-prompts-1.0.1" = {
+ name = "_at_ionic_slash_cli-framework-prompts";
+ packageName = "@ionic/cli-framework-prompts";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@ionic/cli-framework-prompts/-/cli-framework-prompts-1.0.1.tgz";
+ sha512 = "jYFc8pA9Vk64CX5S0wJ6Mq/WtowsZcebfvQe0X2JRwMkwpiOa2ZqK00CYrw1ytS9jeUzJChNX6n1hBUdarwlsw==";
};
};
"@ionic/discover-2.0.6" = {
@@ -1354,13 +1318,13 @@ let
sha512 = "t0/gXFf70oDPpviGUHpaDD9++zIx8nFXpPm8c3We8iH5dRwEJLSun+AJTqxO/XPzEhM24KBuj3rLY9bSYBadEg==";
};
};
- "@ionic/utils-fs-2.0.7" = {
+ "@ionic/utils-fs-2.0.8" = {
name = "_at_ionic_slash_utils-fs";
packageName = "@ionic/utils-fs";
- version = "2.0.7";
+ version = "2.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-2.0.7.tgz";
- sha512 = "rXTKJD66qocDs8w72+z7yw6P8H095yexIMsUbNiJFjMm3Cx542i+Tw9gbGwYN356WrA/0EATXD/zVZDzvDsSKQ==";
+ url = "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-2.0.8.tgz";
+ sha512 = "7yuU+L+tlt9NIwA6nb/3A+zPr7NIKuvIAo5ijVdHX3VTAdw/x5JXJgGl0BApKcqT1cTJImNt5tc2O4CB1cnhKA==";
};
};
"@ionic/utils-network-1.0.5" = {
@@ -1399,13 +1363,13 @@ let
sha512 = "qha4Msonb44++xvf8YppBR27dNBRuMLSty4/THH9uD6UEdjU2+23LWACKuqnQUSsZjQdvALVDMcRRWEIYEL2VQ==";
};
};
- "@ionic/utils-subprocess-1.0.8" = {
+ "@ionic/utils-subprocess-1.0.9" = {
name = "_at_ionic_slash_utils-subprocess";
packageName = "@ionic/utils-subprocess";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-1.0.8.tgz";
- sha512 = "gfVCzccOQ3PVfY6d1hDZq1Qv7hOXAn3ZlepAEbUBOeFauIhXmwmwVdIRa9cfi3cESpDidNQ3dpmXyC+nKxv0Og==";
+ url = "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-1.0.9.tgz";
+ sha512 = "rNT5/aVsstNebIGM+sq/iibKe1q07NMShKODeRSq1DUVSs8SVQdJGKPZ4/3rGFT5CYsqCZVPQDk/VzDhjQoHMA==";
};
};
"@ionic/utils-terminal-1.0.5" = {
@@ -1426,103 +1390,94 @@ let
sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q==";
};
};
- "@lerna/add-3.16.2" = {
+ "@lerna/add-3.18.0" = {
name = "_at_lerna_slash_add";
packageName = "@lerna/add";
- version = "3.16.2";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.2.tgz";
- sha512 = "RAAaF8aODPogj2Ge9Wj3uxPFIBGpog9M+HwSuq03ZnkkO831AmasCTJDqV+GEpl1U2DvnhZQEwHpWmTT0uUeEw==";
+ url = "https://registry.npmjs.org/@lerna/add/-/add-3.18.0.tgz";
+ sha512 = "Z5EaQbBnJn1LEPb0zb0Q2o9T8F8zOnlCsj6JYpY6aSke17UUT7xx0QMN98iBK+ueUHKjN/vdFdYlNCYRSIdujA==";
};
};
- "@lerna/batch-packages-3.16.0" = {
- name = "_at_lerna_slash_batch-packages";
- packageName = "@lerna/batch-packages";
- version = "3.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.16.0.tgz";
- sha512 = "7AdMkANpubY/FKFI01im01tlx6ygOBJ/0JcixMUWoWP/7Ds3SWQF22ID6fbBr38jUWptYLDs2fagtTDL7YUPuA==";
- };
- };
- "@lerna/bootstrap-3.16.2" = {
+ "@lerna/bootstrap-3.18.0" = {
name = "_at_lerna_slash_bootstrap";
packageName = "@lerna/bootstrap";
- version = "3.16.2";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.2.tgz";
- sha512 = "I+gs7eh6rv9Vyd+CwqL7sftRfOOsSzCle8cv/CGlMN7/p7EAVhxEdAw8SYoHIKHzipXszuqqy1Y3opyleD0qdA==";
+ url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.18.0.tgz";
+ sha512 = "3DZKWIaKvr7sUImoKqSz6eqn84SsOVMnA5QHwgzXiQjoeZ/5cg9x2r+Xj3+3w/lvLoh0j8U2GNtrIaPNis4bKQ==";
};
};
- "@lerna/changed-3.16.4" = {
+ "@lerna/changed-3.18.3" = {
name = "_at_lerna_slash_changed";
packageName = "@lerna/changed";
- version = "3.16.4";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.4.tgz";
- sha512 = "NCD7XkK744T23iW0wqKEgF4R9MYmReUbyHCZKopFnsNpQdqumc3SOIvQUAkKCP6hQJmYvxvOieoVgy/CVDpZ5g==";
+ url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.18.3.tgz";
+ sha512 = "xZW7Rm+DlDIGc0EvKGyJZgT9f8FFa4d52mr/Y752dZuXR2qRmf9tXhVloRG39881s2A6yi3jqLtXZggKhsQW4Q==";
};
};
- "@lerna/check-working-tree-3.14.2" = {
+ "@lerna/check-working-tree-3.16.5" = {
name = "_at_lerna_slash_check-working-tree";
packageName = "@lerna/check-working-tree";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-3.14.2.tgz";
- sha512 = "7safqxM/MYoAoxZxulUDtIJIbnBIgo0PB/FHytueG+9VaX7GMnDte2Bt1EKa0dz2sAyQdmQ3Q8ZXpf/6JDjaeg==";
+ url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-3.16.5.tgz";
+ sha512 = "xWjVBcuhvB8+UmCSb5tKVLB5OuzSpw96WEhS2uz6hkWVa/Euh1A0/HJwn2cemyK47wUrCQXtczBUiqnq9yX5VQ==";
};
};
- "@lerna/child-process-3.14.2" = {
+ "@lerna/child-process-3.16.5" = {
name = "_at_lerna_slash_child-process";
packageName = "@lerna/child-process";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-3.14.2.tgz";
- sha512 = "xnq+W5yQb6RkwI0p16ZQnrn6HkloH/MWTw4lGE1nKsBLAUbmSU5oTE93W1nrG0X3IMF/xWc9UYvNdUGMWvZZ4w==";
+ url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-3.16.5.tgz";
+ sha512 = "vdcI7mzei9ERRV4oO8Y1LHBZ3A5+ampRKg1wq5nutLsUA4mEBN6H7JqjWOMY9xZemv6+kATm2ofjJ3lW5TszQg==";
};
};
- "@lerna/clean-3.16.0" = {
+ "@lerna/clean-3.18.0" = {
name = "_at_lerna_slash_clean";
packageName = "@lerna/clean";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.16.0.tgz";
- sha512 = "5P9U5Y19WmYZr7UAMGXBpY7xCRdlR7zhHy8MAPDKVx70rFIBS6nWXn5n7Kntv74g7Lm1gJ2rsiH5tj1OPcRJgg==";
+ url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.18.0.tgz";
+ sha512 = "BiwBELZNkarRQqj+v5NPB1aIzsOX+Y5jkZ9a5UbwHzEdBUQ5lQa0qaMLSOve/fSkaiZQxe6qnTyatN75lOcDMg==";
};
};
- "@lerna/cli-3.13.0" = {
+ "@lerna/cli-3.18.0" = {
name = "_at_lerna_slash_cli";
packageName = "@lerna/cli";
- version = "3.13.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.13.0.tgz";
- sha512 = "HgFGlyCZbYaYrjOr3w/EsY18PdvtsTmDfpUQe8HwDjXlPeCCUgliZjXLOVBxSjiOvPeOSwvopwIHKWQmYbwywg==";
+ url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.18.0.tgz";
+ sha512 = "AwDyfGx7fxJgeaZllEuyJ9LZ6Tdv9yqRD9RX762yCJu+PCAFvB9bp6OYuRSGli7QQgM0CuOYnSg4xVNOmuGKDA==";
};
};
- "@lerna/collect-uncommitted-3.14.2" = {
+ "@lerna/collect-uncommitted-3.16.5" = {
name = "_at_lerna_slash_collect-uncommitted";
packageName = "@lerna/collect-uncommitted";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-3.14.2.tgz";
- sha512 = "4EkQu4jIOdNL2BMzy/N0ydHB8+Z6syu6xiiKXOoFl0WoWU9H1jEJCX4TH7CmVxXL1+jcs8FIS2pfQz4oew99Eg==";
+ url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-3.16.5.tgz";
+ sha512 = "ZgqnGwpDZiWyzIQVZtQaj9tRizsL4dUOhuOStWgTAw1EMe47cvAY2kL709DzxFhjr6JpJSjXV5rZEAeU3VE0Hg==";
};
};
- "@lerna/collect-updates-3.16.0" = {
+ "@lerna/collect-updates-3.18.0" = {
name = "_at_lerna_slash_collect-updates";
packageName = "@lerna/collect-updates";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.16.0.tgz";
- sha512 = "HwAIl815X2TNlmcp28zCrSdXfoZWNP7GJPEqNWYk7xDJTYLqQ+SrmKUePjb3AMGBwYAraZSEJLbHdBpJ5+cHmQ==";
+ url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.18.0.tgz";
+ sha512 = "LJMKgWsE/var1RSvpKDIxS8eJ7POADEc0HM3FQiTpEczhP6aZfv9x3wlDjaHpZm9MxJyQilqxZcasRANmRcNgw==";
};
};
- "@lerna/command-3.16.0" = {
+ "@lerna/command-3.18.0" = {
name = "_at_lerna_slash_command";
packageName = "@lerna/command";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/command/-/command-3.16.0.tgz";
- sha512 = "u7tE4GC4/gfbPA9eQg+0ulnoJ+PMoMqomx033r/IxqZrHtmJR9+pF/37S0fsxJ2hX/RMFPC7c9Q/i8NEufSpdQ==";
+ url = "https://registry.npmjs.org/@lerna/command/-/command-3.18.0.tgz";
+ sha512 = "JQ0TGzuZc9Ky8xtwtSLywuvmkU8X62NTUT3rMNrUykIkOxBaO+tE0O98u2yo/9BYOeTRji9IsjKZEl5i9Qt0xQ==";
};
};
"@lerna/conventional-commits-3.16.4" = {
@@ -1534,13 +1489,13 @@ let
sha512 = "QSZJ0bC9n6FVaf+7KDIq5zMv8WnHXnwhyL5jG1Nyh3SgOg9q2uflqh7YsYB+G6FwaRfnPaKosh6obijpYg0llA==";
};
};
- "@lerna/create-3.16.0" = {
+ "@lerna/create-3.18.0" = {
name = "_at_lerna_slash_create";
packageName = "@lerna/create";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create/-/create-3.16.0.tgz";
- sha512 = "OZApR1Iz7awutbmj4sAArwhqCyKgcrnw9rH0aWAUrkYWrD1w4TwkvAcYAsfx5GpQGbLQwoXhoyyPwPfZRRWz3Q==";
+ url = "https://registry.npmjs.org/@lerna/create/-/create-3.18.0.tgz";
+ sha512 = "y9oS7ND5T13c+cCTJHa2Y9in02ppzyjsNynVWFuS40eIzZ3z058d9+3qSBt1nkbbQlVyfLoP6+bZPsjyzap5ig==";
};
};
"@lerna/create-symlink-3.16.2" = {
@@ -1552,49 +1507,49 @@ let
sha512 = "pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw==";
};
};
- "@lerna/describe-ref-3.14.2" = {
+ "@lerna/describe-ref-3.16.5" = {
name = "_at_lerna_slash_describe-ref";
packageName = "@lerna/describe-ref";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-3.14.2.tgz";
- sha512 = "qa5pzDRK2oBQXNjyRmRnN7E8a78NMYfQjjlRFB0KNHMsT6mCiL9+8kIS39sSE2NqT8p7xVNo2r2KAS8R/m3CoQ==";
+ url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-3.16.5.tgz";
+ sha512 = "c01+4gUF0saOOtDBzbLMFOTJDHTKbDFNErEY6q6i9QaXuzy9LNN62z+Hw4acAAZuJQhrVWncVathcmkkjvSVGw==";
};
};
- "@lerna/diff-3.16.0" = {
+ "@lerna/diff-3.18.0" = {
name = "_at_lerna_slash_diff";
packageName = "@lerna/diff";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.16.0.tgz";
- sha512 = "QUpVs5TPl8vBIne10/vyjUxanQBQQp7Lk3iaB8MnCysKr0O+oy7trWeFVDPEkBTCD177By7yPGyW5Yey1nCBbA==";
+ url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.18.0.tgz";
+ sha512 = "3iLNlpurc2nV9k22w8ini2Zjm2UPo3xtQgWyqdA6eJjvge0+5AlNAWfPoV6cV+Hc1xDbJD2YDSFpZPJ1ZGilRw==";
};
};
- "@lerna/exec-3.16.0" = {
+ "@lerna/exec-3.18.0" = {
name = "_at_lerna_slash_exec";
packageName = "@lerna/exec";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.16.0.tgz";
- sha512 = "mH3O5NXf/O88jBaBBTUf+d56CUkxpg782s3Jxy7HWbVuSUULt3iMRPTh+zEXO5/555etsIVVDDyUR76meklrJA==";
+ url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.18.0.tgz";
+ sha512 = "hwkuzg1+38+pbzdZPhGtLIYJ59z498/BCNzR8d4/nfMYm8lFbw9RgJJajLcdbuJ9LJ08cZ93hf8OlzetL84TYg==";
};
};
- "@lerna/filter-options-3.16.0" = {
+ "@lerna/filter-options-3.18.0" = {
name = "_at_lerna_slash_filter-options";
packageName = "@lerna/filter-options";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.16.0.tgz";
- sha512 = "InIi1fF8+PxpCwir9bIy+pGxrdE6hvN0enIs1eNGCVS1TTE8osNgiZXa838bMQ1yaEccdcnVX6Z03BNKd56kNg==";
+ url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.18.0.tgz";
+ sha512 = "UGVcixs3TGzD8XSmFSbwUVVQnAjaZ6Rmt8Vuq2RcR98ULkGB1LiGNMY89XaNBhaaA8vx7yQWiLmJi2AfmD63Qg==";
};
};
- "@lerna/filter-packages-3.16.0" = {
+ "@lerna/filter-packages-3.18.0" = {
name = "_at_lerna_slash_filter-packages";
packageName = "@lerna/filter-packages";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.16.0.tgz";
- sha512 = "eGFzQTx0ogkGDCnbTuXqssryR6ilp8+dcXt6B+aq1MaqL/vOJRZyqMm4TY3CUOUnzZCi9S2WWyMw3PnAJOF+kg==";
+ url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.18.0.tgz";
+ sha512 = "6/0pMM04bCHNATIOkouuYmPg6KH3VkPCIgTfQmdkPJTullERyEQfNUKikrefjxo1vHOoCACDpy65JYyKiAbdwQ==";
};
};
"@lerna/get-npm-exec-opts-3.13.0" = {
@@ -1615,13 +1570,13 @@ let
sha512 = "AjsFiaJzo1GCPnJUJZiTW6J1EihrPkc2y3nMu6m3uWFxoleklsSCyImumzVZJssxMi3CPpztj8LmADLedl9kXw==";
};
};
- "@lerna/github-client-3.16.0" = {
+ "@lerna/github-client-3.16.5" = {
name = "_at_lerna_slash_github-client";
packageName = "@lerna/github-client";
- version = "3.16.0";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-3.16.0.tgz";
- sha512 = "IVJjcKjkYaUEPJsDyAblHGEFFNKCRyMagbIDm14L7Ab94ccN6i4TKOqAFEJn2SJHYvKKBdp3Zj2zNlASOMe3DA==";
+ url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-3.16.5.tgz";
+ sha512 = "rHQdn8Dv/CJrO3VouOP66zAcJzrHsm+wFuZ4uGAai2At2NkgKH+tpNhQy2H1PSC0Ezj9LxvdaHYrUzULqVK5Hw==";
};
};
"@lerna/gitlab-client-3.15.0" = {
@@ -1642,58 +1597,58 @@ let
sha512 = "SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ==";
};
};
- "@lerna/has-npm-version-3.16.0" = {
+ "@lerna/has-npm-version-3.16.5" = {
name = "_at_lerna_slash_has-npm-version";
packageName = "@lerna/has-npm-version";
- version = "3.16.0";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.16.0.tgz";
- sha512 = "TIY036dA9J8OyTrZq9J+it2DVKifL65k7hK8HhkUPpitJkw6jwbMObA/8D40LOGgWNPweJWqmlrTbRSwsR7DrQ==";
+ url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.16.5.tgz";
+ sha512 = "WL7LycR9bkftyqbYop5rEGJ9sRFIV55tSGmbN1HLrF9idwOCD7CLrT64t235t3t4O5gehDnwKI5h2U3oxTrF8Q==";
};
};
- "@lerna/import-3.16.0" = {
+ "@lerna/import-3.18.0" = {
name = "_at_lerna_slash_import";
packageName = "@lerna/import";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/import/-/import-3.16.0.tgz";
- sha512 = "trsOmGHzw0rL/f8BLNvd+9PjoTkXq2Dt4/V2UCha254hMQaYutbxcYu8iKPxz9x86jSPlH7FpbTkkHXDsoY7Yg==";
+ url = "https://registry.npmjs.org/@lerna/import/-/import-3.18.0.tgz";
+ sha512 = "2pYIkkBTZsEdccfc+dPsKZeSw3tBzKSyl0b2lGrfmNX2Y41qqOzsJCyI1WO1uvEIP8aOaLy4hPpqRIBe4ee7hw==";
};
};
- "@lerna/init-3.16.0" = {
+ "@lerna/init-3.18.0" = {
name = "_at_lerna_slash_init";
packageName = "@lerna/init";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/init/-/init-3.16.0.tgz";
- sha512 = "Ybol/x5xMtBgokx4j7/Y3u0ZmNh0NiSWzBFVaOs2NOJKvuqrWimF67DKVz7yYtTYEjtaMdug64ohFF4jcT/iag==";
+ url = "https://registry.npmjs.org/@lerna/init/-/init-3.18.0.tgz";
+ sha512 = "/vHpmXkMlSaJaq25v5K13mcs/2L7E32O6dSsEkHaZCDRiV2BOqsZng9jjbE/4ynfsWfLLlU9ZcydwG72C3I+mQ==";
};
};
- "@lerna/link-3.16.2" = {
+ "@lerna/link-3.18.0" = {
name = "_at_lerna_slash_link";
packageName = "@lerna/link";
- version = "3.16.2";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.2.tgz";
- sha512 = "eCPg5Lo8HT525fIivNoYF3vWghO3UgEVFdbsiPmhzwI7IQyZro5HWYzLtywSAdEog5XZpd2Bbn0CsoHWBB3gww==";
+ url = "https://registry.npmjs.org/@lerna/link/-/link-3.18.0.tgz";
+ sha512 = "FbbIpH0EpsC+dpAbvxCoF3cn7F1MAyJjEa5Lh3XkDGATOlinMFuKCbmX0NLpOPQZ5zghvrui97cx+jz5F2IlHw==";
};
};
- "@lerna/list-3.16.0" = {
+ "@lerna/list-3.18.0" = {
name = "_at_lerna_slash_list";
packageName = "@lerna/list";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/list/-/list-3.16.0.tgz";
- sha512 = "TkvstoPsgKqqQ0KfRumpsdMXfRSEhdXqOLq519XyI5IRWYxhoqXqfi8gG37UoBPhBNoe64japn5OjphF3rOmQA==";
+ url = "https://registry.npmjs.org/@lerna/list/-/list-3.18.0.tgz";
+ sha512 = "mpB7Q6T+n2CaiPFz0LuOE+rXphDfHm0mKIwShnyS/XDcii8jXv+z9Iytj8p3rfCH2I1L80j2qL6jWzyGy/uzKA==";
};
};
- "@lerna/listable-3.16.0" = {
+ "@lerna/listable-3.18.0" = {
name = "_at_lerna_slash_listable";
packageName = "@lerna/listable";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.16.0.tgz";
- sha512 = "mtdAT2EEECqrJSDm/aXlOUFr1MRE4p6hppzY//Klp05CogQy6uGaKk+iKG5yyCLaOXFFZvG4HfO11CmoGSDWzw==";
+ url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.18.0.tgz";
+ sha512 = "9gLGKYNLSKeurD+sJ2RA+nz4Ftulr91U127gefz0RlmAPpYSjwcJkxwa0UfJvpQTXv9C7yzHLnn0BjyAQRjuew==";
};
};
"@lerna/log-packed-3.16.0" = {
@@ -1714,22 +1669,22 @@ let
sha512 = "HbO3DUrTkCAn2iQ9+FF/eisDpWY5POQAOF1m7q//CZjdC2HSW3UYbKEGsSisFxSfaF9Z4jtrV+F/wX6qWs3CuA==";
};
};
- "@lerna/npm-dist-tag-3.16.0" = {
+ "@lerna/npm-dist-tag-3.18.1" = {
name = "_at_lerna_slash_npm-dist-tag";
packageName = "@lerna/npm-dist-tag";
- version = "3.16.0";
+ version = "3.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.16.0.tgz";
- sha512 = "MQrBkqJJB9+eNphuj9w90QPMOs4NQXMuSRk9NqzeFunOmdDopPCV0Q7IThSxEuWnhJ2n3B7G0vWUP7tNMPdqIQ==";
+ url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.18.1.tgz";
+ sha512 = "vWkZh2T/O9OjPLDrba0BTWO7ug/C3sCwjw7Qyk1aEbxMBXB/eEJPqirwJTWT+EtRJQYB01ky3K8ZFOhElVyjLw==";
};
};
- "@lerna/npm-install-3.16.0" = {
+ "@lerna/npm-install-3.16.5" = {
name = "_at_lerna_slash_npm-install";
packageName = "@lerna/npm-install";
- version = "3.16.0";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.16.0.tgz";
- sha512 = "APUOIilZCzDzce92uLEwzt1r7AEMKT/hWA1ThGJL+PO9Rn8A95Km3o2XZAYG4W0hR+P4O2nSVuKbsjQtz8CjFQ==";
+ url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.16.5.tgz";
+ sha512 = "hfiKk8Eku6rB9uApqsalHHTHY+mOrrHeWEs+gtg7+meQZMTS3kzv4oVp5cBZigndQr3knTLjwthT/FX4KvseFg==";
};
};
"@lerna/npm-publish-3.16.2" = {
@@ -1741,13 +1696,13 @@ let
sha512 = "tGMb9vfTxP57vUV5svkBQxd5Tzc+imZbu9ZYf8Mtwe0+HYfDjNiiHLIQw7G95w4YRdc5KsCE8sQ0uSj+f2soIg==";
};
};
- "@lerna/npm-run-script-3.14.2" = {
+ "@lerna/npm-run-script-3.16.5" = {
name = "_at_lerna_slash_npm-run-script";
packageName = "@lerna/npm-run-script";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.14.2.tgz";
- sha512 = "LbVFv+nvAoRTYLMrJlJ8RiakHXrLslL7Jp/m1R18vYrB8LYWA3ey+nz5Tel2OELzmjUiemAKZsD9h6i+Re5egg==";
+ url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.16.5.tgz";
+ sha512 = "1asRi+LjmVn3pMjEdpqKJZFT/3ZNpb+VVeJMwrJaV/3DivdNg7XlPK9LTrORuKU4PSvhdEZvJmSlxCKyDpiXsQ==";
};
};
"@lerna/otplease-3.16.0" = {
@@ -1786,13 +1741,13 @@ let
sha512 = "2lHBWpaxcBoiNVbtyLtPUuTYEaB/Z+eEqRS9duxpZs6D+mTTZMNy6/5vpEVSCBmzvdYpyqhqaYjjSLvjjr5Riw==";
};
};
- "@lerna/package-graph-3.16.0" = {
+ "@lerna/package-graph-3.18.0" = {
name = "_at_lerna_slash_package-graph";
packageName = "@lerna/package-graph";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.16.0.tgz";
- sha512 = "A2mum/gNbv7zCtAwJqoxzqv89As73OQNK2MgSX1SHWya46qoxO9a9Z2c5lOFQ8UFN5ZxqWMfFYXRCz7qzwmFXw==";
+ url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.18.0.tgz";
+ sha512 = "BLYDHO5ihPh20i3zoXfLZ5ZWDCrPuGANgVhl7k5pCmRj90LCvT+C7V3zrw70fErGAfvkcYepMqxD+oBrAYwquQ==";
};
};
"@lerna/prerelease-id-from-version-3.16.0" = {
@@ -1804,13 +1759,13 @@ let
sha512 = "qZyeUyrE59uOK8rKdGn7jQz+9uOpAaF/3hbslJVFL1NqF9ELDTqjCPXivuejMX/lN4OgD6BugTO4cR7UTq/sZA==";
};
};
- "@lerna/project-3.16.0" = {
+ "@lerna/project-3.18.0" = {
name = "_at_lerna_slash_project";
packageName = "@lerna/project";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/project/-/project-3.16.0.tgz";
- sha512 = "NrKcKK1EqXqhrGvslz6Q36+ZHuK3zlDhGdghRqnxDcHxMPT01NgLcmsnymmQ+gjMljuLRmvKYYCuHrknzX8VrA==";
+ url = "https://registry.npmjs.org/@lerna/project/-/project-3.18.0.tgz";
+ sha512 = "+LDwvdAp0BurOAWmeHE3uuticsq9hNxBI0+FMHiIai8jrygpJGahaQrBYWpwbshbQyVLeQgx3+YJdW2TbEdFWA==";
};
};
"@lerna/prompt-3.13.0" = {
@@ -1822,13 +1777,13 @@ let
sha512 = "P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA==";
};
};
- "@lerna/publish-3.16.4" = {
+ "@lerna/publish-3.18.3" = {
name = "_at_lerna_slash_publish";
packageName = "@lerna/publish";
- version = "3.16.4";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.4.tgz";
- sha512 = "XZY+gRuF7/v6PDQwl7lvZaGWs8CnX6WIPIu+OCcyFPSL/rdWegdN7HieKBHskgX798qRQc2GrveaY7bNoTKXAw==";
+ url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.18.3.tgz";
+ sha512 = "XlfWOWIhaSK0Y2sX5ppNWI5Y3CDtlxMcQa1hTbZlC5rrDA6vD32iutbmH6Ix3c6wtvVbSkgA39GWsQEXxPS+7w==";
};
};
"@lerna/pulse-till-done-3.13.0" = {
@@ -1840,13 +1795,13 @@ let
sha512 = "1SOHpy7ZNTPulzIbargrgaJX387csN7cF1cLOGZiJQA6VqnS5eWs2CIrG8i8wmaUavj2QlQ5oEbRMVVXSsGrzA==";
};
};
- "@lerna/query-graph-3.16.0" = {
+ "@lerna/query-graph-3.18.0" = {
name = "_at_lerna_slash_query-graph";
packageName = "@lerna/query-graph";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-3.16.0.tgz";
- sha512 = "p0RO+xmHDO95ChJdWkcy9TNLysLkoDARXeRHzY5U54VCwl3Ot/2q8fMCVlA5UeGXDutEyyByl3URqEpcQCWI7Q==";
+ url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-3.18.0.tgz";
+ sha512 = "fgUhLx6V0jDuKZaKj562jkuuhrfVcjl5sscdfttJ8dXNVADfDz76nzzwLY0ZU7/0m69jDedohn5Fx5p7hDEVEg==";
};
};
"@lerna/resolve-symlink-3.16.0" = {
@@ -1858,22 +1813,22 @@ let
sha512 = "Ibj5e7njVHNJ/NOqT4HlEgPFPtPLWsO7iu59AM5bJDcAJcR96mLZ7KGVIsS2tvaO7akMEJvt2P+ErwCdloG3jQ==";
};
};
- "@lerna/rimraf-dir-3.14.2" = {
+ "@lerna/rimraf-dir-3.16.5" = {
name = "_at_lerna_slash_rimraf-dir";
packageName = "@lerna/rimraf-dir";
- version = "3.14.2";
+ version = "3.16.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.14.2.tgz";
- sha512 = "eFNkZsy44Bu9v1Hrj5Zk6omzg8O9h/7W6QYK1TTUHeyrjTEwytaNQlqF0lrTLmEvq55sviV42NC/8P3M2cvq8Q==";
+ url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.16.5.tgz";
+ sha512 = "bQlKmO0pXUsXoF8lOLknhyQjOZsCc0bosQDoX4lujBXSWxHVTg1VxURtWf2lUjz/ACsJVDfvHZbDm8kyBk5okA==";
};
};
- "@lerna/run-3.16.0" = {
+ "@lerna/run-3.18.0" = {
name = "_at_lerna_slash_run";
packageName = "@lerna/run";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run/-/run-3.16.0.tgz";
- sha512 = "woTeLlB1OAAz4zzjdI6RyIxSGuxiUPHJZm89E1pDEPoWwtQV6HMdMgrsQd9ATsJ5Ez280HH4bF/LStAlqW8Ufg==";
+ url = "https://registry.npmjs.org/@lerna/run/-/run-3.18.0.tgz";
+ sha512 = "sblxHBZ9djaaG7wefPcfEicDqzrB7CP1m/jIB0JvPEQwG4C2qp++ewBpkjRw/mBtjtzg0t7v0nNMXzaWYrQckQ==";
};
};
"@lerna/run-lifecycle-3.16.2" = {
@@ -1885,40 +1840,31 @@ let
sha512 = "RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A==";
};
};
- "@lerna/run-parallel-batches-3.16.0" = {
- name = "_at_lerna_slash_run-parallel-batches";
- packageName = "@lerna/run-parallel-batches";
- version = "3.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.16.0.tgz";
- sha512 = "2J/Nyv+MvogmQEfC7VcS21ifk7w0HVvzo2yOZRPvkCzGRu/rducxtB4RTcr58XCZ8h/Bt1aqQYKExu3c/3GXwg==";
- };
- };
- "@lerna/run-topologically-3.16.0" = {
+ "@lerna/run-topologically-3.18.0" = {
name = "_at_lerna_slash_run-topologically";
packageName = "@lerna/run-topologically";
- version = "3.16.0";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-3.16.0.tgz";
- sha512 = "4Hlpv4zDtKWa5Z0tPkeu0sK+bxZEKgkNESMGmWrUCNfj7xwvAJurcraK8+a2Y0TFYwf0qjSLY/MzX+ZbJA3Cgw==";
+ url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-3.18.0.tgz";
+ sha512 = "lrfEewwuUMC3ioxf9Z9NdHUakN6ihekcPfdYbzR2slmdbjYKmIA5srkWdrK8NwOpQCAuekpOovH2s8X3FGEopg==";
};
};
- "@lerna/symlink-binary-3.16.2" = {
+ "@lerna/symlink-binary-3.17.0" = {
name = "_at_lerna_slash_symlink-binary";
packageName = "@lerna/symlink-binary";
- version = "3.16.2";
+ version = "3.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.2.tgz";
- sha512 = "kz9XVoFOGSF83gg4gBqH+mG6uxfJfTp8Uy+Cam40CvMiuzfODrGkjuBEFoM/uO2QOAwZvbQDYOBpKUa9ZxHS1Q==";
+ url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.17.0.tgz";
+ sha512 = "RLpy9UY6+3nT5J+5jkM5MZyMmjNHxZIZvXLV+Q3MXrf7Eaa1hNqyynyj4RO95fxbS+EZc4XVSk25DGFQbcRNSQ==";
};
};
- "@lerna/symlink-dependencies-3.16.2" = {
+ "@lerna/symlink-dependencies-3.17.0" = {
name = "_at_lerna_slash_symlink-dependencies";
packageName = "@lerna/symlink-dependencies";
- version = "3.16.2";
+ version = "3.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.2.tgz";
- sha512 = "wnZqGJQ+Jvr1I3inxrkffrFZfmQI7Ta8gySw/UWCy95QtZWF/f5yk8zVIocCAsjzD0wgb3jJE3CFJ9W5iwWk1A==";
+ url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.17.0.tgz";
+ sha512 = "KmjU5YT1bpt6coOmdFueTJ7DFJL4H1w5eF8yAQ2zsGNTtZ+i5SGFBWpb9AQaw168dydc3s4eu0W0Sirda+F59Q==";
};
};
"@lerna/timer-3.13.0" = {
@@ -1939,13 +1885,13 @@ let
sha512 = "SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA==";
};
};
- "@lerna/version-3.16.4" = {
+ "@lerna/version-3.18.3" = {
name = "_at_lerna_slash_version";
packageName = "@lerna/version";
- version = "3.16.4";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.4.tgz";
- sha512 = "ikhbMeIn5ljCtWTlHDzO4YvTmpGTX1lWFFIZ79Vd1TNyOr+OUuKLo/+p06mCl2WEdZu0W2s5E9oxfAAQbyDxEg==";
+ url = "https://registry.npmjs.org/@lerna/version/-/version-3.18.3.tgz";
+ sha512 = "IXXRlyM3Q/jrc+QZio+bgjG4ZaK+4LYmY4Yql1xyY0wZhAKsWP/Q6ho7e1EJNjNC5dUJO99Fq7qB05MkDf2OcQ==";
};
};
"@lerna/write-log-file-3.13.0" = {
@@ -1966,58 +1912,58 @@ let
sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==";
};
};
- "@node-red/editor-api-0.20.8" = {
+ "@node-red/editor-api-1.0.2" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-0.20.8.tgz";
- sha512 = "VaetYYU/gu4CgUs80ymiBg9BVw4Ge4kYF4NPgs4S8t/c1BRz2ZZd5idCDw7MaN602eDiYnspx3QMH8X3sqYsTQ==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.0.2.tgz";
+ sha512 = "yUvTU5b7gDL35NIC2qC54NY0uuIAewVzcPWsc+Rbjy9YpY1DUD2Gt5Ub9gR2QPWYtVPG4zSPOBtPhZEcZvBSxQ==";
};
};
- "@node-red/editor-client-0.20.8" = {
+ "@node-red/editor-client-1.0.2" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-0.20.8.tgz";
- sha512 = "TyZ+ma0jRU/T0BChpl17hHa0cMOnPX9DYFbpyT8p5ghRHIHYYL/3rFFflwB+5bAwbK1Y8Z2LKB7dngzL7jzpTQ==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.0.2.tgz";
+ sha512 = "BhgzwWjxjrQJnZC/BMIZvco4H5ksZl+qh+3hy40ReDrNpp8xSc3mDIFoB785CZrYBtFMhasE2q0kqdYuNKE/Zw==";
};
};
- "@node-red/nodes-0.20.8" = {
+ "@node-red/nodes-1.0.2" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-0.20.8.tgz";
- sha512 = "yR+kNSkUQowQLHpk7buY36Pz5utA3q3n/49LvgvyxxRwgOPUBv4KNaFLDipUjqgD2spaznh+VTAMT8UUO0xeig==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.0.2.tgz";
+ sha512 = "o5N0FZnLAEd1lF2ArLGoETosukFVI+nPTHWKUOoSd069eLuaS262BOTbbnk/oY4H2DEWQzjGZ2KKBItWlhbpXQ==";
};
};
- "@node-red/registry-0.20.8" = {
+ "@node-red/registry-1.0.2" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-0.20.8.tgz";
- sha512 = "3B5wYJOAWNLa3qhzdFZYqHa8X2+U4mdno6f0GQ2vzaNMdcxM9VvkpXLvmnThcQJsYqbxAiwuaUZUL1mX0KePsA==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.0.2.tgz";
+ sha512 = "i6TZvVriini0732IN2DVMofkG8RmiaLKpkHaP1aRceHvweDQB4yorcQsPDxqU+uiJo3lQlc1oB5j13X3mdq8DQ==";
};
};
- "@node-red/runtime-0.20.8" = {
+ "@node-red/runtime-1.0.2" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-0.20.8.tgz";
- sha512 = "R7X3E8VXGlzXbYd0hTqhgU8rzyc2uNXDb3u37C3rduCViotcKWrQho4n/UdQS4H+T1Bu0H6Zoo+1EGAsQ92nGA==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.0.2.tgz";
+ sha512 = "YMKu5HA4WWYdf2PinysONiEFkmoz+PHD4u9ormREBXPr4iCWmZ2+XqL4QRGAc/RA8FJQ8liCr2rLDUvAuSSVOQ==";
};
};
- "@node-red/util-0.20.8" = {
+ "@node-red/util-1.0.2" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-0.20.8.tgz";
- sha512 = "tid1o8fy94b6XU6/8cVDm5Kn9tNWm1AoaLPrhfDxJaObtrcHC6KtEhJJxPq61nhzZxJOuT/DHqBUGwTXTKg7Zg==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-1.0.2.tgz";
+ sha512 = "DwaS8ZDcIFcMUQCWpMEVt38Pr6H2JBCeghZEs5v6nH+pnemUi1x6Mi+CSvwywVc4WN4uzGhVr8dWxFh1Q6/iEQ==";
};
};
"@nodelib/fs.stat-1.1.3" = {
@@ -2029,13 +1975,121 @@ let
sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==";
};
};
- "@octokit/endpoint-5.3.5" = {
+ "@oclif/color-0.0.0" = {
+ name = "_at_oclif_slash_color";
+ packageName = "@oclif/color";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/color/-/color-0.0.0.tgz";
+ sha512 = "KKd3W7eNwfNF061tr663oUNdt8EMnfuyf5Xv55SGWA1a0rjhWqS/32P7OeB7CbXcJUBdfVrPyR//1afaW12AWw==";
+ };
+ };
+ "@oclif/command-1.5.19" = {
+ name = "_at_oclif_slash_command";
+ packageName = "@oclif/command";
+ version = "1.5.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/command/-/command-1.5.19.tgz";
+ sha512 = "6+iaCMh/JXJaB2QWikqvGE9//wLEVYYwZd5sud8aLoLKog1Q75naZh2vlGVtg5Mq/NqpqGQvdIjJb3Bm+64AUQ==";
+ };
+ };
+ "@oclif/config-1.13.3" = {
+ name = "_at_oclif_slash_config";
+ packageName = "@oclif/config";
+ version = "1.13.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/config/-/config-1.13.3.tgz";
+ sha512 = "qs5XvGRw+1M41abOKCjd0uoeHCgsMxa2MurD2g2K8CtQlzlMXl0rW5idVeimIg5208LLuxkfzQo8TKAhhRCWLg==";
+ };
+ };
+ "@oclif/errors-1.2.2" = {
+ name = "_at_oclif_slash_errors";
+ packageName = "@oclif/errors";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/errors/-/errors-1.2.2.tgz";
+ sha512 = "Eq8BFuJUQcbAPVofDxwdE0bL14inIiwt5EaKRVY9ZDIG11jwdXZqiQEECJx0VfnLyUZdYfRd/znDI/MytdJoKg==";
+ };
+ };
+ "@oclif/linewrap-1.0.0" = {
+ name = "_at_oclif_slash_linewrap";
+ packageName = "@oclif/linewrap";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz";
+ sha512 = "Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==";
+ };
+ };
+ "@oclif/parser-3.8.4" = {
+ name = "_at_oclif_slash_parser";
+ packageName = "@oclif/parser";
+ version = "3.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.4.tgz";
+ sha512 = "cyP1at3l42kQHZtqDS3KfTeyMvxITGwXwH1qk9ktBYvqgMp5h4vHT+cOD74ld3RqJUOZY/+Zi9lb4Tbza3BtuA==";
+ };
+ };
+ "@oclif/plugin-autocomplete-0.1.4" = {
+ name = "_at_oclif_slash_plugin-autocomplete";
+ packageName = "@oclif/plugin-autocomplete";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.1.4.tgz";
+ sha512 = "ZyxJyL6jSt9Df68Smeu14xhZZwELE9IB5twhie1/56rt62nG6TJB4CZhaMqRk+33MDfU3JyWxNbIDMNMESlGqg==";
+ };
+ };
+ "@oclif/plugin-help-2.2.1" = {
+ name = "_at_oclif_slash_plugin-help";
+ packageName = "@oclif/plugin-help";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-2.2.1.tgz";
+ sha512 = "psEA3t41MSGBErLk6xCaAq2jKrRtx3Br+kHpd43vZeGEeZ7Gos4wgK0JAaHBbvhvUQskCHg8dzoqv4XEeTWeVQ==";
+ };
+ };
+ "@oclif/plugin-not-found-1.2.3" = {
+ name = "_at_oclif_slash_plugin-not-found";
+ packageName = "@oclif/plugin-not-found";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-1.2.3.tgz";
+ sha512 = "Igbw2T4gLrb/f28Llr730FeMXBSI2PXdky2YvQfsZeQGDsyBZmC4gprJJtmrMWQcjz0B51IInRBnZYERvwfIpw==";
+ };
+ };
+ "@oclif/plugin-plugins-1.7.8" = {
+ name = "_at_oclif_slash_plugin-plugins";
+ packageName = "@oclif/plugin-plugins";
+ version = "1.7.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.7.8.tgz";
+ sha512 = "GxLxaf8Lk1RqHVAIBZyA7hmhU7u5oV97i/OsWgFPdjPaT+BmWlWXR8IpmtA8giNo6atR+JpfgDmYndMU75zYUQ==";
+ };
+ };
+ "@oclif/plugin-warn-if-update-available-1.7.0" = {
+ name = "_at_oclif_slash_plugin-warn-if-update-available";
+ packageName = "@oclif/plugin-warn-if-update-available";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-1.7.0.tgz";
+ sha512 = "Nwyz3BJ8RhsfQ+OmFSsJSPIfn5YJqMrCzPh72Zgo2jqIjKIBWD8N9vTTe4kZlpeUUn77SyXFfwlBQbNCL5OEuQ==";
+ };
+ };
+ "@oclif/screen-1.0.4" = {
+ name = "_at_oclif_slash_screen";
+ packageName = "@oclif/screen";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/screen/-/screen-1.0.4.tgz";
+ sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw==";
+ };
+ };
+ "@octokit/endpoint-5.5.0" = {
name = "_at_octokit_slash_endpoint";
packageName = "@octokit/endpoint";
- version = "5.3.5";
+ version = "5.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.5.tgz";
- sha512 = "f8KqzIrnzPLiezDsZZPB+K8v8YSv6aKFl7eOu59O46lmlW4HagWl1U6NWl6LmT8d1w7NsKBI3paVtzcnRGO1gw==";
+ url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.0.tgz";
+ sha512 = "TXYS6zXeBImNB9BVj+LneMDqXX+H0exkOpyXobvp92O3B1348QsKnNioISFKgOMsb3ibZvQGwCdpiwQd3KAjIA==";
};
};
"@octokit/plugin-enterprise-rest-3.6.2" = {
@@ -2047,13 +2101,13 @@ let
sha512 = "3wF5eueS5OHQYuAEudkpN+xVeUsg8vYEMMenEzLphUZ7PRZ8OJtDcsreL3ad9zxXmBbaFWzLmFcdob5CLyZftA==";
};
};
- "@octokit/request-5.1.0" = {
+ "@octokit/request-5.3.0" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
- version = "5.1.0";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request/-/request-5.1.0.tgz";
- sha512 = "I15T9PwjFs4tbWyhtFU2Kq7WDPidYMvRB7spmxoQRZfxSmiqullG+Nz+KbSmpkfnlvHwTr1e31R5WReFRKMXjg==";
+ url = "https://registry.npmjs.org/@octokit/request/-/request-5.3.0.tgz";
+ sha512 = "mMIeNrtYyNEIYNsKivDyUAukBkw0M5ckyJX56xoFRXSasDPCloIXaQOnaKNopzQ8dIOvpdq1ma8gmrS+h6O2OQ==";
};
};
"@octokit/request-error-1.0.4" = {
@@ -2065,13 +2119,22 @@ let
sha512 = "L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig==";
};
};
- "@octokit/rest-16.30.0" = {
+ "@octokit/rest-16.34.0" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "16.30.0";
+ version = "16.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.30.0.tgz";
- sha512 = "TN5MbqVuqxT/s87D6tGe3zsMvyHUQSkGFMBHuwBToPQGV3eG2a67rJW2rag2vJr7JusWyERDhQ4g/4HvFo9B1g==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.34.0.tgz";
+ sha512 = "EBe5qMQQOZRuezahWCXCnSe0J6tAqrW2hrEH9U8esXzKor1+HUDf8jgImaZf5lkTyWCQA296x9kAH5c0pxEgVQ==";
+ };
+ };
+ "@octokit/types-1.1.0" = {
+ name = "_at_octokit_slash_types";
+ packageName = "@octokit/types";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@octokit/types/-/types-1.1.0.tgz";
+ sha512 = "t4ZD74UnNVMq6kZBDZceflRKK3q4o5PoCKMAGht0RK84W57tqonqKL3vCxJHtbGExdan9RwV8r7VJBZxIM1O7Q==";
};
};
"@parcel/fs-1.11.0" = {
@@ -2083,13 +2146,13 @@ let
sha512 = "86RyEqULbbVoeo8OLcv+LQ1Vq2PKBAvWTU9fCgALxuCTbbs5Ppcvll4Vr+Ko1AnmMzja/k++SzNAwJfeQXVlpA==";
};
};
- "@parcel/logger-1.11.0" = {
+ "@parcel/logger-1.11.1" = {
name = "_at_parcel_slash_logger";
packageName = "@parcel/logger";
- version = "1.11.0";
+ version = "1.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/logger/-/logger-1.11.0.tgz";
- sha512 = "lIRfDg+junbFUUeU0QtHX00gKCgEsYHZydFKwrJ8dc0D+WE2SYT1FcVCgpPAfKYgtg0QQMns8E9vzT9UjH92PQ==";
+ url = "https://registry.npmjs.org/@parcel/logger/-/logger-1.11.1.tgz";
+ sha512 = "9NF3M6UVeP2udOBDILuoEHd8VrF4vQqoWHEafymO1pfSoOMfxrSJZw1MfyAAIUN/IFp9qjcpDCUbDZB+ioVevA==";
};
};
"@parcel/utils-1.11.0" = {
@@ -2101,13 +2164,13 @@ let
sha512 = "cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ==";
};
};
- "@parcel/watcher-1.12.0" = {
+ "@parcel/watcher-1.12.1" = {
name = "_at_parcel_slash_watcher";
packageName = "@parcel/watcher";
- version = "1.12.0";
+ version = "1.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-1.12.0.tgz";
- sha512 = "yijGiAqG7Tjf5WnFwOkiNWwerfZQDNABldiiqRDtr7vDWLO+F/DIncyB7tTcaD5Loevrr5mzzGo8Ntf3d2GIPg==";
+ url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-1.12.1.tgz";
+ sha512 = "od+uCtCxC/KoNQAIE1vWx1YTyKYY+7CTrxBJPRh3cDWw/C0tCtlBMVlrbplscGoEpt6B27KhJDCv82PBxOERNA==";
};
};
"@parcel/workers-1.11.0" = {
@@ -2218,31 +2281,40 @@ let
sha512 = "YXJqp9gdHcZKAmBY/WnwFpPtNQp2huD/ME2YMurH2YHJvxrVzYsmpKw/pb7yINArRpp8E++fwbQd3ajYXGA45Q==";
};
};
- "@schematics/angular-8.3.5" = {
+ "@samverschueren/stream-to-observable-0.3.0" = {
+ name = "_at_samverschueren_slash_stream-to-observable";
+ packageName = "@samverschueren/stream-to-observable";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz";
+ sha512 = "MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==";
+ };
+ };
+ "@schematics/angular-8.3.14" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "8.3.5";
+ version = "8.3.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-8.3.5.tgz";
- sha512 = "3YKurSNqUfjVrbENVlnTBNGYBWjdyjrWzJRlwWbCq+owQLhkZ/N5qVirt/SDw5T9hK2AEMOKjLkQYtpE+aOCgg==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-8.3.14.tgz";
+ sha512 = "1XXBh9+lowvltRlcCjDJa4GEr5Xq+uNJcxULHBaNY7YfQSwZ5KuyhTBWjCdKmMaTOV3pEcIHwyuNh26mpn98Bw==";
};
};
- "@schematics/update-0.803.5" = {
+ "@schematics/update-0.803.14" = {
name = "_at_schematics_slash_update";
packageName = "@schematics/update";
- version = "0.803.5";
+ version = "0.803.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/update/-/update-0.803.5.tgz";
- sha512 = "v2qU0ATb1jND8GIGQFnI1QLWoquUjJ2fJ37HoDSO3rmttZ/NvoV4sNDGhk/pPUcmeXa+prURfJCCCSeHZ/yKkw==";
+ url = "https://registry.npmjs.org/@schematics/update/-/update-0.803.14.tgz";
+ sha512 = "1erj7oaR2vKXo1DLE0s4BbbouBmgeAHEkPHQM7FPtyroZ18kytlT+qjTbsSnlRCwcFsjxmRkbRjXaXDz7ttsYQ==";
};
};
- "@serverless/cli-1.2.3" = {
+ "@serverless/cli-1.4.0" = {
name = "_at_serverless_slash_cli";
packageName = "@serverless/cli";
- version = "1.2.3";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/cli/-/cli-1.2.3.tgz";
- sha512 = "N/hsPZrE/zK8Iv98bdEG7J6ZhotWXwywjc/bKWcbhZeXENqbS7UD2qtyL/pfGuNodFVG587l8Cf+UvK8OcA6Qg==";
+ url = "https://registry.npmjs.org/@serverless/cli/-/cli-1.4.0.tgz";
+ sha512 = "YqlCiYmRFeGksw6XJaXbigIDlktc7OfRuVpyPB7IZgkCJ9mUlBmvyWdwqJEQdkUz0xPTGsd4Jd/XSrwyiw1Brg==";
};
};
"@serverless/component-metrics-1.0.8" = {
@@ -2254,22 +2326,22 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/core-1.0.0" = {
+ "@serverless/core-1.1.2" = {
name = "_at_serverless_slash_core";
packageName = "@serverless/core";
- version = "1.0.0";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/core/-/core-1.0.0.tgz";
- sha512 = "XP5KXvEGlrNIOV/KJ0KKwzeov9MqZQ+Ck3z7JW/gtd8ryoKK+5+ah2WL77DXETeHeEwxZhJdrNatqc0FXauEiw==";
+ url = "https://registry.npmjs.org/@serverless/core/-/core-1.1.2.tgz";
+ sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ==";
};
};
- "@serverless/enterprise-plugin-3.0.0" = {
+ "@serverless/enterprise-plugin-3.2.0" = {
name = "_at_serverless_slash_enterprise-plugin";
packageName = "@serverless/enterprise-plugin";
- version = "3.0.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-3.0.0.tgz";
- sha512 = "+L+SeQV0MKQN9TBXC6Xmgcw7BVfW8Q3F/lMjB1MPsBd0RZPzYnVlWcVg4cA6tgvkpfdw8NVlh/QXFs+603zHrg==";
+ url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-3.2.0.tgz";
+ sha512 = "FNOlna7fdC9HPAM6l0LG/4dV9z+UOgl0Ju/pwfSHmXanl+ROUg6lcU1ZXX4+fK6T0+doWGcGSP+ksd9XWSBNqw==";
};
};
"@serverless/event-mocks-1.1.1" = {
@@ -2281,22 +2353,22 @@ let
sha512 = "YAV5V/y+XIOfd+HEVeXfPWZb8C6QLruFk9tBivoX2roQLWVq145s4uxf8D0QioCueuRzkukHUS4JIj+KVoS34A==";
};
};
- "@serverless/platform-sdk-2.1.1" = {
+ "@serverless/platform-sdk-2.1.2" = {
name = "_at_serverless_slash_platform-sdk";
packageName = "@serverless/platform-sdk";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-sdk/-/platform-sdk-2.1.1.tgz";
- sha512 = "bWmXwhUmnDxY4A5zFKinbBQaPcMbxd5i07i8nyJUDjvr8F8gB9fo2n5A20c1ahOIEiFntBRC9y4/6fxNjIsXqQ==";
+ url = "https://registry.npmjs.org/@serverless/platform-sdk/-/platform-sdk-2.1.2.tgz";
+ sha512 = "+mMrcagi6ROhlhHaZ5CBSJrWbs/Rk+/24Vqm+KEQliDpktr5CHTC5sFGk01uiKVFyceR3fTwxmNlRyywM7DRPA==";
};
};
- "@serverless/template-1.1.0" = {
+ "@serverless/template-1.1.3" = {
name = "_at_serverless_slash_template";
packageName = "@serverless/template";
- version = "1.1.0";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/template/-/template-1.1.0.tgz";
- sha512 = "ezrtGAf1pKXKfsd+o381L2HAtVxhmXlm59rq7iBPosqChrrE8NI081IIMNTi93JLpTULZaSCRLMDMwVrCJ0ZMw==";
+ url = "https://registry.npmjs.org/@serverless/template/-/template-1.1.3.tgz";
+ sha512 = "hcMiX523rkp6kHeKnM1x6/dXEY+d1UFSr901yVKeeCgpFy4u33UI9vlKaPweAZCF6Ahzqywf01IsFTuBVadCrQ==";
};
};
"@sindresorhus/is-0.14.0" = {
@@ -2326,13 +2398,31 @@ let
sha512 = "CWr7a3rTVrN5Vs8GYReRAvTourbXHOqB1zglcskj05ICH4GZL5BOAza2ARai+qc3Nz0nY08Bozi1x0014KOqlg==";
};
};
- "@snyk/cli-interface-2.1.0" = {
+ "@snyk/cli-interface-1.5.0" = {
name = "_at_snyk_slash_cli-interface";
packageName = "@snyk/cli-interface";
- version = "2.1.0";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/cli-interface/-/cli-interface-2.1.0.tgz";
- sha512 = "b/magC8iNQP9QhSDeV9RQDSaY3sNy57k0UH1Y/sMOSvVLHLsA7dOi/HrPWTiLouyGqcuYzwjkz7bNbu8cwmVDQ==";
+ url = "https://registry.npmjs.org/@snyk/cli-interface/-/cli-interface-1.5.0.tgz";
+ sha512 = "+Qo+IO3YOXWgazlo+CKxOuWFLQQdaNCJ9cSfhFQd687/FuesaIxWdInaAdfpsLScq0c6M1ieZslXgiZELSzxbg==";
+ };
+ };
+ "@snyk/cli-interface-2.2.0" = {
+ name = "_at_snyk_slash_cli-interface";
+ packageName = "@snyk/cli-interface";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/cli-interface/-/cli-interface-2.2.0.tgz";
+ sha512 = "sA7V2JhgqJB9z5uYotgQc5iNDv//y+Mdm39rANxmFjtZMSYJZHkP80arzPjw1mB5ni/sWec7ieYUUFeySZBfVg==";
+ };
+ };
+ "@snyk/cocoapods-lockfile-parser-2.0.4" = {
+ name = "_at_snyk_slash_cocoapods-lockfile-parser";
+ packageName = "@snyk/cocoapods-lockfile-parser";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/cocoapods-lockfile-parser/-/cocoapods-lockfile-parser-2.0.4.tgz";
+ sha512 = "d57bajPjqCiNXMuyMmt9Zt98zbjABZUFw+91B705flzV6oB7OThgtA40Eoin6iatYoStIx28bC3T6b0mScy/iA==";
};
};
"@snyk/composer-lockfile-parser-1.0.3" = {
@@ -2353,6 +2443,15 @@ let
sha512 = "n7+PlHn3SqznHgsCpeBRfEvU1oiQydoGkXQlnSB2+tfImiKXvY7YZbrg4wlbvYgylYiTbpCi5CpPNkJG14S+UQ==";
};
};
+ "@snyk/dep-graph-1.13.0" = {
+ name = "_at_snyk_slash_dep-graph";
+ packageName = "@snyk/dep-graph";
+ version = "1.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-1.13.0.tgz";
+ sha512 = "e0XcLH6Kgs/lunf6iDjbxEnm9+JYFEJn6eo/PlEUW+SMWBZ2uEXHBTDNp9oxjJou48PngzWMveEkniBAN+ulOQ==";
+ };
+ };
"@snyk/gemfile-1.2.0" = {
name = "_at_snyk_slash_gemfile";
packageName = "@snyk/gemfile";
@@ -2362,6 +2461,24 @@ let
sha512 = "nI7ELxukf7pT4/VraL4iabtNNMz8mUo7EXlqCFld8O5z6mIMLX9llps24iPpaIZOwArkY3FWA+4t+ixyvtTSIA==";
};
};
+ "@snyk/ruby-semver-2.0.4" = {
+ name = "_at_snyk_slash_ruby-semver";
+ packageName = "@snyk/ruby-semver";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/ruby-semver/-/ruby-semver-2.0.4.tgz";
+ sha512 = "ceMD4CBS3qtAg+O0BUvkKdsheUNCqi+/+Rju243Ul8PsUgZnXmGiqfk/2z7DCprRQnxUTra4+IyeDQT7wAheCQ==";
+ };
+ };
+ "@snyk/snyk-cocoapods-plugin-1.0.3" = {
+ name = "_at_snyk_slash_snyk-cocoapods-plugin";
+ packageName = "@snyk/snyk-cocoapods-plugin";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/snyk-cocoapods-plugin/-/snyk-cocoapods-plugin-1.0.3.tgz";
+ sha512 = "AHAA7z23nPi1eHODsDxeSkl73Ze3yphuqJjMl39ie323EzBDcb9g6uAACrk0Qn2K/K2D8uyxMAf2zDtc+JGQfw==";
+ };
+ };
"@starptech/expression-parser-0.9.0" = {
name = "_at_starptech_slash_expression-parser";
packageName = "@starptech/expression-parser";
@@ -2461,121 +2578,121 @@ let
sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==";
};
};
- "@textlint/ast-node-types-4.2.4" = {
+ "@textlint/ast-node-types-4.2.5" = {
name = "_at_textlint_slash_ast-node-types";
packageName = "@textlint/ast-node-types";
- version = "4.2.4";
+ version = "4.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.4.tgz";
- sha512 = "ggiixpScxgdMY42b6UafD1iUboSvl9k3vGA9kynP+kd6mEhTDzxtb1aHPDAnV+DpAEw4qpHMz72GBFkX/iOSFw==";
+ url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.5.tgz";
+ sha512 = "+rEx4jLOeZpUcdvll7jEg/7hNbwYvHWFy4IGW/tk2JdbyB3SJVyIP6arAwzTH/sp/pO9jftfyZnRj4//sLbLvQ==";
};
};
- "@textlint/ast-traverse-2.1.5" = {
+ "@textlint/ast-traverse-2.1.6" = {
name = "_at_textlint_slash_ast-traverse";
packageName = "@textlint/ast-traverse";
- version = "2.1.5";
+ version = "2.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.1.5.tgz";
- sha512 = "Xt1x8eBmXS+4nOQ+0VjIoyXgcz9VFxK3ug8EiG7tGkhezIU90HRW2O8jPOPXhOcrrRzBGQNG9tsL7+IUDzF5FQ==";
+ url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.1.6.tgz";
+ sha512 = "qSPTUptR/C4YwoeVXRLUij6TpxbXT7U0P9S0No+p9Q+EYJeNvl1NUTrcpQmzrRydo6vCR0RzVkHmj+gEckH2Ug==";
};
};
- "@textlint/feature-flag-3.1.3" = {
+ "@textlint/feature-flag-3.1.4" = {
name = "_at_textlint_slash_feature-flag";
packageName = "@textlint/feature-flag";
- version = "3.1.3";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.1.3.tgz";
- sha512 = "59RaAmdsMB3e32PD04N0YOJI2L3ljWR8fEk9FDLbOJAZeu7c+TqgETHDiVnkrh8gM+m8RL0h4wWq1jbB1kj0Xw==";
+ url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.1.4.tgz";
+ sha512 = "sQle1237X/ckMnHkSAuQYDRuCnKgBHdJuWFPHMpgT4CBb2UjWSZkjCgmzf3Ov6UZQL/1BwuA53wT4T+i1rB1zw==";
};
};
- "@textlint/fixer-formatter-3.1.8" = {
+ "@textlint/fixer-formatter-3.1.9" = {
name = "_at_textlint_slash_fixer-formatter";
packageName = "@textlint/fixer-formatter";
- version = "3.1.8";
+ version = "3.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.1.8.tgz";
- sha512 = "PKpUA2EOinFSE9kEhr6C2kpdEJj4U7nHuB4dCRHV9so3hIJyqXJBx4YwTpyggIUgNv6OkY2qo8D0g3YOu99zSw==";
+ url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.1.9.tgz";
+ sha512 = "4eU2kJC0A5EljfhbVhwVaNUEiBSCaRq0k4h19/OeVk9blkAwmILtBbAgbuxGuQAOquBLJGLx+3+tspBOlydS2g==";
};
};
- "@textlint/kernel-3.1.8" = {
+ "@textlint/kernel-3.1.9" = {
name = "_at_textlint_slash_kernel";
packageName = "@textlint/kernel";
- version = "3.1.8";
+ version = "3.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.1.8.tgz";
- sha512 = "ViCHoy2QMpCD8Vu+2vXHXc+Jt9D5lIKUH7+j1TzP5JPiPmV1IbEMrztk4ubjacYQTSRHXE9BCLGOffOKSxt+ag==";
+ url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.1.9.tgz";
+ sha512 = "WGD5Xb0wyYMdiqF+Ozo1TqnAo1LA5n+jmpFT/Q/Pnx2zifT4/OszwBd9g43g3xGdsUJKk00eKwvSQaCXxj07wg==";
};
};
- "@textlint/linter-formatter-3.1.7" = {
+ "@textlint/linter-formatter-3.1.8" = {
name = "_at_textlint_slash_linter-formatter";
packageName = "@textlint/linter-formatter";
- version = "3.1.7";
+ version = "3.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.1.7.tgz";
- sha512 = "myFj1Vj22LdzDecAvfIWojobi0AIGCEuEhLlrGcn478Wv6vQgP+51o0zTu1e2Duth1Z7YYjdTIcn2yZWxWSalg==";
+ url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.1.8.tgz";
+ sha512 = "gq8g5GbRDxYlffjP+CuggSk5Hb35jg1fXLbffkLGbiWiJn/s6InbcBqCkxGLCzPqdRhN6uHE40ID3idKJWp2Rg==";
};
};
- "@textlint/markdown-to-ast-6.1.5" = {
+ "@textlint/markdown-to-ast-6.1.6" = {
name = "_at_textlint_slash_markdown-to-ast";
packageName = "@textlint/markdown-to-ast";
- version = "6.1.5";
+ version = "6.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.1.5.tgz";
- sha512 = "WM2z0/wXpEREXAkSoKyPLG4qp5e5XGI5ctuQ5sUG1BE4aaAxJ3ogomaocQc82MPobiQjYp5791A+cXXYx5ML5w==";
+ url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.1.6.tgz";
+ sha512 = "xIaMn6gW1Ig+M+2Xcdbxt4cgOqWJSuB0pIO98KppQyqPzQ5k5deea7SBABqLZiKeNIxLl+2C1vfIfnBFFjxlmg==";
};
};
- "@textlint/module-interop-1.0.1" = {
+ "@textlint/module-interop-1.0.2" = {
name = "_at_textlint_slash_module-interop";
packageName = "@textlint/module-interop";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.0.1.tgz";
- sha512 = "gqx1Te+lMnXX6xyGTUdzGhm8RT7IfiSRMtWoH1FeTMg2InArRT+lTksCFc/x5dtaPN4vwOFZUvU8oTzYQzXbyg==";
- };
- };
- "@textlint/text-to-ast-3.1.5" = {
- name = "_at_textlint_slash_text-to-ast";
- packageName = "@textlint/text-to-ast";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.1.5.tgz";
- sha512 = "LGDlK+Jk5hpVPYcBxFU1Go9bG3AYAkHwNkAy573gLBKuGjb69FY6Wpmt4XBcKCKaa1j7S9cq7OxiSu69dVyQlQ==";
- };
- };
- "@textlint/textlint-plugin-markdown-5.1.8" = {
- name = "_at_textlint_slash_textlint-plugin-markdown";
- packageName = "@textlint/textlint-plugin-markdown";
- version = "5.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.1.8.tgz";
- sha512 = "x38FOJzbgz1DLc5inRz0qyjd879CMvWkeUJc0tcuYvZWEoQ7RS5YwjQK3Q9C3LGGM2JGy4Wnkr6jBIBFCBBbdA==";
- };
- };
- "@textlint/textlint-plugin-text-4.1.8" = {
- name = "_at_textlint_slash_textlint-plugin-text";
- packageName = "@textlint/textlint-plugin-text";
- version = "4.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.1.8.tgz";
- sha512 = "QMc1xQKyQL+oLMNaij6v4Gt02m51lwM4lN5FCjUrhVA+0LfX/2whBLBcXbnw5+GVkkQmVcF98aQovEJ8YPLTtA==";
- };
- };
- "@textlint/types-1.2.1" = {
- name = "_at_textlint_slash_types";
- packageName = "@textlint/types";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/types/-/types-1.2.1.tgz";
- sha512 = "HNbVS+F9hNy4E/Hnv2mV/6rjlPB7Mdc5KCiT+uFjMK7vqiVuW/DeKjkYScRirQ0jf8gWUXBVTxZgwBBlJZmV1Q==";
- };
- };
- "@textlint/utils-1.0.2" = {
- name = "_at_textlint_slash_utils";
- packageName = "@textlint/utils";
version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.0.2.tgz";
- sha512 = "T8med69p37s1TE/G56kxWSYz8PqWYCnqyVZp2K0WoQbkNDrckmqkJ6xTmw4uZg4kypn3+EXVuktWLOpaSUcktA==";
+ url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.0.2.tgz";
+ sha512 = "qQ6dqlg4SYywCywimIbkveQZu1MG6ugf6fcJuWDi3D51FbdkSRsMrPusJ1YoW6Y3XBp0ww9fJjXWtlUStGeQsw==";
+ };
+ };
+ "@textlint/text-to-ast-3.1.6" = {
+ name = "_at_textlint_slash_text-to-ast";
+ packageName = "@textlint/text-to-ast";
+ version = "3.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.1.6.tgz";
+ sha512 = "w0oBF3OeTT8syF+Y3BT1/pFYhBT2ZbzBDGqFELZVeBQNtGUKCpvJtu4Q1fCftElTbOIY01aSecj3GJTS6tmlBg==";
+ };
+ };
+ "@textlint/textlint-plugin-markdown-5.1.9" = {
+ name = "_at_textlint_slash_textlint-plugin-markdown";
+ packageName = "@textlint/textlint-plugin-markdown";
+ version = "5.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.1.9.tgz";
+ sha512 = "5bYPGid5dIWBjY3oKhmWmeWvBfl04ZGp0c4OD24MZHRkxrARKJg7i+hR7qhedAGdkeZ33fxQt/NILvbuLSvQVw==";
+ };
+ };
+ "@textlint/textlint-plugin-text-4.1.9" = {
+ name = "_at_textlint_slash_textlint-plugin-text";
+ packageName = "@textlint/textlint-plugin-text";
+ version = "4.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.1.9.tgz";
+ sha512 = "7iWNs2gsc+GXcDQfaow/S/BVjlu/bSw1dbiMJLfVaRb+D9gAojVm+sGHt9ePAhr9MWjt1uDUsWsvSNDL0UpZWA==";
+ };
+ };
+ "@textlint/types-1.2.2" = {
+ name = "_at_textlint_slash_types";
+ packageName = "@textlint/types";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/types/-/types-1.2.2.tgz";
+ sha512 = "eo+/NSmJxAk47Dvnjp4p3jbA/z/adVoAXjFURRhVQ4W/1KTVLyvB+WdiJBp8fiT5t5Kf3XSxyiS7mZcrY2bf/Q==";
+ };
+ };
+ "@textlint/utils-1.0.3" = {
+ name = "_at_textlint_slash_utils";
+ packageName = "@textlint/utils";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.0.3.tgz";
+ sha512 = "6oGaBKXYpg5Ooph5p32OFdp1dXDUC1z5mpHg2gmQbx6QZjmP4QX+ygBQdNoCq15d1w88+We6koJl0n0WXjItYw==";
};
};
"@types/accepts-1.3.5" = {
@@ -2614,13 +2731,13 @@ let
sha512 = "xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w==";
};
};
- "@types/bluebird-3.5.27" = {
+ "@types/bluebird-3.5.28" = {
name = "_at_types_slash_bluebird";
packageName = "@types/bluebird";
- version = "3.5.27";
+ version = "3.5.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.27.tgz";
- sha512 = "6BmYWSBea18+tSjjSC3QIyV93ZKAeNWGM7R6aYt1ryTZXrlHF+QLV0G2yV0viEGVyRkyQsWfMoJ0k/YghBX5sQ==";
+ url = "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.28.tgz";
+ sha512 = "0Vk/kqkukxPKSzP9c8WJgisgGDx5oZDbsLLWIP5t70yThO/YleE+GEm2S1GlRALTaack3O7U5OS5qEm7q2kciA==";
};
};
"@types/body-parser-1.17.1" = {
@@ -2659,13 +2776,13 @@ let
sha512 = "aRnpPa7ysx3aNW60hTiCtLHlQaIFsXFCgQlpakNgDNVFzbtusSY8PwjAQgRWfSk0ekNoBjO51eQRB6upA9uuyw==";
};
};
- "@types/cookies-0.7.3" = {
+ "@types/cookies-0.7.4" = {
name = "_at_types_slash_cookies";
packageName = "@types/cookies";
- version = "0.7.3";
+ version = "0.7.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.3.tgz";
- sha512 = "NEkYn8pNsYZIxf3ZrjdPoeyueiPc0RbQClUpTwmdHkpmQQ8iDAlQYKpabuegHy7BJcqTteSTkhURMEs9ZxyEWg==";
+ url = "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.4.tgz";
+ sha512 = "oTGtMzZZAVuEjTwCjIh8T8FrC8n/uwy+PG0yTvQcdZ7etoel7C7/3MSd7qrukENTgQtotG7gvBlBojuVs7X5rw==";
};
};
"@types/cors-2.8.6" = {
@@ -2713,13 +2830,13 @@ let
sha512 = "VfH/XCP0QbQk5B5puLqTLEeFgR8lfCJHZJKkInZ9mkYd+u8byX0kztXEQxEk4wZXJs8HI+7km2ALXjn4YKcX9w==";
};
};
- "@types/express-serve-static-core-4.16.9" = {
+ "@types/express-serve-static-core-4.16.10" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.16.9";
+ version = "4.16.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.9.tgz";
- sha512 = "GqpaVWR0DM8FnRUJYKlWgyARoBUAVfRIeVDZQKOttLFp5SmhhF9YFIYeTPwMd/AXfxlP7xVO2dj1fGu0Q+krKQ==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.10.tgz";
+ sha512 = "gM6evDj0OvTILTRKilh9T5dTaGpv1oYiFcJAfgSejuMJgGJUsD9hKEU2lB4aiTNy4WwChxRnjfYFuBQsULzsJw==";
};
};
"@types/fs-capacitor-2.0.0" = {
@@ -2731,6 +2848,15 @@ let
sha512 = "FKVPOCFbhCvZxpVAMhdBdTfVfXUpsh15wFHgqOKxh9N9vzWZVuWCSijZ5T4U34XYNnuj2oduh6xcs1i+LPI+BQ==";
};
};
+ "@types/fs-extra-5.1.0" = {
+ name = "_at_types_slash_fs-extra";
+ packageName = "@types/fs-extra";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-5.1.0.tgz";
+ sha512 = "AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==";
+ };
+ };
"@types/glob-7.1.1" = {
name = "_at_types_slash_glob";
packageName = "@types/glob";
@@ -2758,6 +2884,15 @@ let
sha512 = "PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ==";
};
};
+ "@types/js-yaml-3.12.1" = {
+ name = "_at_types_slash_js-yaml";
+ packageName = "@types/js-yaml";
+ version = "3.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.1.tgz";
+ sha512 = "SGGAhXLHDx+PK4YLNcNGa6goPf9XRWQNAUUbffkwVGGXIxmDKWyGGL4inzq2sPmExu431Ekb9aEMn9BkPqEYFA==";
+ };
+ };
"@types/keygrip-1.0.1" = {
name = "_at_types_slash_keygrip";
packageName = "@types/keygrip";
@@ -2767,13 +2902,13 @@ let
sha1 = "ff540462d2fb4d0a88441ceaf27d287b01c3d878";
};
};
- "@types/koa-2.0.49" = {
+ "@types/koa-2.0.51" = {
name = "_at_types_slash_koa";
packageName = "@types/koa";
- version = "2.0.49";
+ version = "2.0.51";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/koa/-/koa-2.0.49.tgz";
- sha512 = "WQWpCH8O4Dslk8IcXfazff40aM1jXX7BQRbADIj/fKozVPu76P/wQE4sRe2SCWMn8yNkOcare2MkDrnZqLMkPQ==";
+ url = "https://registry.npmjs.org/@types/koa/-/koa-2.0.51.tgz";
+ sha512 = "L5e/l6Z+SR9Jk6HM0wNYdkvWhSUBOvi+7Q5Uwn7kE/VmBXX7NIxARMigARWAyXAtXiv5Ry1P2HmebolFdvuIVg==";
};
};
"@types/koa-compose-3.2.4" = {
@@ -2785,13 +2920,13 @@ let
sha512 = "ioou0rxkuWL+yBQYsHUQAzRTfVxAg8Y2VfMftU+Y3RA03/MzuFL0x/M2sXXj3PkfnENbHsjeHR1aMdezLYpTeA==";
};
};
- "@types/lodash-4.14.138" = {
+ "@types/lodash-4.14.144" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
- version = "4.14.138";
+ version = "4.14.144";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.138.tgz";
- sha512 = "A4uJgHz4hakwNBdHNPdxOTkYmXNgmUAKLbXZ7PKGslgeV0Mb8P3BlbYfPovExek1qnod4pDfRbxuzcVs3dlFLg==";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.144.tgz";
+ sha512 = "ogI4g9W5qIQQUhXAclq6zhqgqNUr7UlFaqDHbch7WLSLeeM/7d3CRaw7GLajxvyFvhJqw4Rpcz5bhoaYtIx6Tg==";
};
};
"@types/long-4.0.0" = {
@@ -2821,40 +2956,31 @@ let
sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
};
};
- "@types/node-10.14.18" = {
+ "@types/node-10.17.0" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "10.14.18";
+ version = "10.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.14.18.tgz";
- sha512 = "ryO3Q3++yZC/+b8j8BdKd/dn9JlzlHBPdm80656xwYUdmPkpTGTjkAdt6BByiNupGPE8w0FhBgvYy/fX9hRNGQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-10.17.0.tgz";
+ sha512 = "wuJwN2KV4tIRz1bu9vq5kSPasJ8IsEjZaP1ZR7KlmdUZvGF/rXy8DmXOVwUD0kAtvtJ7aqMKPqUXC0NUTDbrDg==";
};
};
- "@types/node-12.7.5" = {
+ "@types/node-12.11.7" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.7.5";
+ version = "12.11.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.7.5.tgz";
- sha512 = "9fq4jZVhPNW8r+UYKnxF1e2HkDWOWKM5bC2/7c9wPV835I0aOrVbS/Hw/pWPk2uKrNXQqg9Z959Kz+IYDd5p3w==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.11.7.tgz";
+ sha512 = "JNbGaHFCLwgHn/iCckiGSOZ1XYHsKFwREtzPwSGCVld1SGhOlmZw2D4ZI94HQCrBHbADzW9m4LER/8olJTRGHA==";
};
};
- "@types/node-6.14.7" = {
+ "@types/node-6.14.8" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "6.14.7";
+ version = "6.14.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-6.14.7.tgz";
- sha512 = "YbPXbaynBTe0pVExPhL76TsWnxSPeFAvImIsmylpBWn/yfw+lHy+Q68aawvZHsgskT44ZAoeE67GM5f+Brekew==";
- };
- };
- "@types/node-8.10.54" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "8.10.54";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.10.54.tgz";
- sha512 = "kaYyLYf6ICn6/isAyD4K1MyWWd5Q3JgH6bnMN089LUx88+s4W8GvK9Q6JMBVu5vsFFp7pMdSxdKmlBXwH/VFRg==";
+ url = "https://registry.npmjs.org/@types/node/-/node-6.14.8.tgz";
+ sha512 = "ZVswkI0zxOcADy2b4T9Lj3N+OYyHwCyzMtmkRIi1P94vF/GOLpDPB76P1uBXX/QM6e5wICriSz2XBPSBdxIN5g==";
};
};
"@types/q-1.5.2" = {
@@ -2965,40 +3091,40 @@ let
sha512 = "te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==";
};
};
- "@vue/cli-shared-utils-3.11.0" = {
+ "@vue/cli-shared-utils-4.0.5" = {
name = "_at_vue_slash_cli-shared-utils";
packageName = "@vue/cli-shared-utils";
- version = "3.11.0";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.11.0.tgz";
- sha512 = "D7pst/4v9H1DD66fLxlZOwRR09R03MV0ROdKxBHmh3FmnApCA/RiaolFA/8w+B3CnevYMlV3SJ5fOAgedbswbA==";
+ url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.0.5.tgz";
+ sha512 = "NlNZ4Dx5QcP5uO5fCOLgkN2tbhNan5EcptPvXawW/md18cIpMlKbph6L6lEfJj8vrSvTUf2i/FyoFSh1rV53hw==";
};
};
- "@vue/cli-ui-3.11.0" = {
+ "@vue/cli-ui-4.0.5" = {
name = "_at_vue_slash_cli-ui";
packageName = "@vue/cli-ui";
- version = "3.11.0";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.11.0.tgz";
- sha512 = "mbCUUOJSPGLQ+wxPTX+NE6HsiCpt3wpv56AuUlCv14mUEkm98p+4xzkgPQ1neYxG7fg5Vn8fExiFvge73Lvzdg==";
+ url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.0.5.tgz";
+ sha512 = "pnK0qRMEocjhL965o2Zxw9iYYwwCDOIxAl7jg6pmQybgmz68ipi/gXDTe3IyDzyEJraVIsGDScvJL9/IbRLDZw==";
};
};
- "@vue/cli-ui-addon-webpack-3.11.0" = {
+ "@vue/cli-ui-addon-webpack-4.0.5" = {
name = "_at_vue_slash_cli-ui-addon-webpack";
packageName = "@vue/cli-ui-addon-webpack";
- version = "3.11.0";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.11.0.tgz";
- sha512 = "q0kELq8c6nPAM74J2NELxn9NdaQ0bqYS9l8EsvLbqfTd/GM7leWytkdO6GYClu1VJ3Ohm3xQsKjpDHCcKSW7tw==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.0.5.tgz";
+ sha512 = "BMRW+g374RnqQNFLyUGHg099lADoZbYEjycCKZzBI4v+QCqUXEnn70l02/7H3sEee6PqR/dfquSJiZqxhSIJmQ==";
};
};
- "@vue/cli-ui-addon-widgets-3.11.0" = {
+ "@vue/cli-ui-addon-widgets-4.0.5" = {
name = "_at_vue_slash_cli-ui-addon-widgets";
packageName = "@vue/cli-ui-addon-widgets";
- version = "3.11.0";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.11.0.tgz";
- sha512 = "iEKaaWyGafYmHJKDd2rISSqMw61L3XX9E9Vo/sVWK0uVITTsSyBmNwZeTcaaEB6YVbZeCHRJtq2Q/JRjvD9SPA==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.0.5.tgz";
+ sha512 = "55KgyH0yDiStE0j04+5z+UTLATReQjIc1s7n9aVGsRte+nnt9bN74pBg9//CW8EWpD1OmEpTtsidn2NafuaxLQ==";
};
};
"@webassemblyjs/ast-1.8.1" = {
@@ -3478,13 +3604,13 @@ let
sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e";
};
};
- "abab-2.0.1" = {
+ "abab-2.0.2" = {
name = "abab";
packageName = "abab";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/abab/-/abab-2.0.1.tgz";
- sha512 = "1zSbbCuoIjafKZ3mblY5ikvAb0ODUbqBnFuUb7f6uLeQhhGJ0vEV4ntmtxKLT2WgXCO94E07BjunsIw1jOMPZw==";
+ url = "https://registry.npmjs.org/abab/-/abab-2.0.2.tgz";
+ sha512 = "2scffjvioEmNz0OyDSLGWDfKCVwaKc6l9Pm9kOIREU13ClXZvHpg/nRL5xyjSSSLhOnXqft2HpsAzNEEA8cFFg==";
};
};
"abbrev-1.1.1" = {
@@ -3523,13 +3649,13 @@ let
sha512 = "jzewKKpZbaYUa6HTThnrl+GrJhzjEAeuc7hTVpZdzg7kupXZFoqQDFwyOwLNbmJKJlmzw8yiipMPkDiuKkT06Q==";
};
};
- "abstract-leveldown-6.1.1" = {
+ "abstract-leveldown-6.2.2" = {
name = "abstract-leveldown";
packageName = "abstract-leveldown";
- version = "6.1.1";
+ version = "6.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.1.1.tgz";
- sha512 = "7fK/KySVqzKIomdhkSWzX4YBQhzkzEMbWSiaB6mSN9e+ZdV3KEeKxia/8xQzCkATA5xnnukdP88cFR0D2FsFXw==";
+ url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.2.tgz";
+ sha512 = "/a+Iwj0rn//CX0EJOasNyZJd2o8xur8Ce9C57Sznti/Ilt/cb6Qd8/k98A4ZOklXgTG+iAYYUs1OTG0s1eH+zQ==";
};
};
"abstract-logging-1.0.0" = {
@@ -3631,13 +3757,13 @@ let
sha512 = "/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==";
};
};
- "acorn-7.0.0" = {
+ "acorn-7.1.0" = {
name = "acorn";
packageName = "acorn";
- version = "7.0.0";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-7.0.0.tgz";
- sha512 = "PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz";
+ sha512 = "kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==";
};
};
"acorn-globals-1.0.9" = {
@@ -3676,13 +3802,13 @@ let
sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
};
};
- "acorn-jsx-5.0.2" = {
+ "acorn-jsx-5.1.0" = {
name = "acorn-jsx";
packageName = "acorn-jsx";
- version = "5.0.2";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz";
- sha512 = "tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==";
+ url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.1.0.tgz";
+ sha512 = "tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==";
};
};
"acorn-loose-6.1.0" = {
@@ -3721,15 +3847,6 @@ let
sha512 = "7Bv1We7ZGuU79zZbb6rRqcpxo3OY+zrdtloZWoyD8fmGX+FeXRjE+iuGkZjSXLVovLzrsvMGMy0EkwA0E0umxg==";
};
};
- "adal-node-0.1.28" = {
- name = "adal-node";
- packageName = "adal-node";
- version = "0.1.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.28.tgz";
- sha1 = "468c4bb3ebbd96b1270669f4b9cba4e0065ea485";
- };
- };
"adbkit-2.11.1" = {
name = "adbkit";
packageName = "adbkit";
@@ -3766,13 +3883,13 @@ let
sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1";
};
};
- "addons-linter-1.10.0" = {
+ "addons-linter-1.14.0" = {
name = "addons-linter";
packageName = "addons-linter";
- version = "1.10.0";
+ version = "1.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.10.0.tgz";
- sha512 = "2i2qSayVPx4h1Aa2ZTdQlpgmjcCNIHZ4AJQS8V/QsBXIdmXl+Djmeyr096bjaC3Usq0rZfYhGgFdwR1dgHVItw==";
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.14.0.tgz";
+ sha512 = "Of7A53J2ltaIZzD8RPH1hVxOR+DmLDuHBtwfhXJw8JTXwzpDIvOKn/i6XDtPgfFlj5wIWxpUGV+tFb/kE/K9gg==";
};
};
"addr-to-ip-port-1.5.1" = {
@@ -3784,15 +3901,6 @@ let
sha512 = "bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA==";
};
};
- "addressparser-1.0.1" = {
- name = "addressparser";
- packageName = "addressparser";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz";
- sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746";
- };
- };
"adm-zip-0.4.13" = {
name = "adm-zip";
packageName = "adm-zip";
@@ -3883,13 +3991,13 @@ let
sha1 = "888344dad0220a72e3af50906117f48771925fac";
};
};
- "aggregate-error-3.0.0" = {
+ "aggregate-error-3.0.1" = {
name = "aggregate-error";
packageName = "aggregate-error";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.0.tgz";
- sha512 = "yKD9kEoJIR+2IFqhMwayIBgheLYbB3PS2OBhWae1L/ODTd/JF/30cW0bc9TqzRL3k4U41Dieu3BF4I29p8xesA==";
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz";
+ sha512 = "quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==";
};
};
"airplay-js-0.2.16" = {
@@ -3946,15 +4054,6 @@ let
sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
- "ajv-6.10.0" = {
- name = "ajv";
- packageName = "ajv";
- version = "6.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz";
- sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==";
- };
- };
"ajv-6.10.2" = {
name = "ajv";
packageName = "ajv";
@@ -4315,13 +4414,13 @@ let
sha1 = "fd753efa4beada0eac99981bc52a3f6ff019deb7";
};
};
- "ansi-to-html-0.6.11" = {
+ "ansi-to-html-0.6.12" = {
name = "ansi-to-html";
packageName = "ansi-to-html";
- version = "0.6.11";
+ version = "0.6.12";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.11.tgz";
- sha512 = "88XZtrcwrfkyn6fGstHnkaF1kl7hGtNCYh4vSmItgEV+6JnQHryDBf7udF4f2RhTRQmYvJvPcTtqgaqrxzc9oA==";
+ url = "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.12.tgz";
+ sha512 = "qBkIqLW979675mP76yB7yVkzeAWtATegdnDQ0RA3CZzknx0yUlNxMSML4xFdBfTs2GWYFQ1FELfbGbVSPzJ+LA==";
};
};
"ansi-wrap-0.1.0" = {
@@ -4351,6 +4450,15 @@ let
sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
};
};
+ "any-observable-0.3.0" = {
+ name = "any-observable";
+ packageName = "any-observable";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz";
+ sha512 = "/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==";
+ };
+ };
"any-promise-1.3.0" = {
name = "any-promise";
packageName = "any-promise";
@@ -4378,13 +4486,13 @@ let
sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
};
};
- "anymatch-3.1.0" = {
+ "anymatch-3.1.1" = {
name = "anymatch";
packageName = "anymatch";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.0.tgz";
- sha512 = "Ozz7l4ixzI7Oxj2+cw+p0tVUt27BpaJ+1+q1TCeANWxHpvyn2+Un+YamBdfKu0uh8xLodGhoa1v7595NhKDAuA==";
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz";
+ sha512 = "mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==";
};
};
"ap-0.1.0" = {
@@ -4414,6 +4522,15 @@ let
sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692";
};
};
+ "apollo-2.21.0" = {
+ name = "apollo";
+ packageName = "apollo";
+ version = "2.21.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo/-/apollo-2.21.0.tgz";
+ sha512 = "S0PzWA6Ja3E68/LjG3D4wbOW5BiWo+PdST/TZD7n4TjRKV4eeMONEd95OSv5OzMMYaLtHSRq8xZmQEDe4l0NsA==";
+ };
+ };
"apollo-cache-1.3.2" = {
name = "apollo-cache";
packageName = "apollo-cache";
@@ -4423,13 +4540,13 @@ let
sha512 = "+KA685AV5ETEJfjZuviRTEImGA11uNBp/MJGnaCvkgr+BYRrGLruVKBv6WvyFod27WEB2sp7SsG8cNBKANhGLg==";
};
};
- "apollo-cache-control-0.8.4" = {
+ "apollo-cache-control-0.8.5" = {
name = "apollo-cache-control";
packageName = "apollo-cache-control";
- version = "0.8.4";
+ version = "0.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.8.4.tgz";
- sha512 = "IZ1d3AXZtkZhLYo0kWqTbZ6nqLFaeUvLdMESs+9orMadBZ7mvzcAfBwrhKyCWPGeAAZ/jKv8FtYHybpchHgFAg==";
+ url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.8.5.tgz";
+ sha512 = "2yQ1vKgJQ54SGkoQS/ZLZrDX3La6cluAYYdruFYJMJtL4zQrSdeOCy11CQliCMYEd6eKNyE70Rpln51QswW2Og==";
};
};
"apollo-cache-inmemory-1.6.3" = {
@@ -4468,6 +4585,15 @@ let
sha512 = "sanUIqXWyyDpxY3fYOVU+Hsxwxdj5fmn3Zcy6CcMGnWmh9o7tautQAuod2a63wrDs1jcNQcFq3EKIpeB+2xECw==";
};
};
+ "apollo-codegen-core-0.35.7" = {
+ name = "apollo-codegen-core";
+ packageName = "apollo-codegen-core";
+ version = "0.35.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.35.7.tgz";
+ sha512 = "Aj8bzwUnnsILaOxjPLJKpkzb4yNNQCpY21Atj0NZYGi6Zzfl9EK/PZn7BE2/4pyNpomErjd2C7X3m9bdvndTAg==";
+ };
+ };
"apollo-codegen-flow-0.20.0" = {
name = "apollo-codegen-flow";
packageName = "apollo-codegen-flow";
@@ -4477,6 +4603,15 @@ let
sha512 = "XgKE19B0Q74PBLVqHP/77NcCFrcvrN9wi3CcotH+FV8BeHTjvpHlilTsQMmd2STPt19cCvY2Qtz0EOeLXTUQ2Q==";
};
};
+ "apollo-codegen-flow-0.33.32" = {
+ name = "apollo-codegen-flow";
+ packageName = "apollo-codegen-flow";
+ version = "0.33.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.33.32.tgz";
+ sha512 = "/DWh6/8/BKYlwPg5/kQQQU78skC3TCRxhg4rUaR0s23px/N3YiLCcqmcV6HzcMKpjNE+dIxpha+WLNMAtb4ypg==";
+ };
+ };
"apollo-codegen-flow-legacy-0.20.0" = {
name = "apollo-codegen-flow-legacy";
packageName = "apollo-codegen-flow-legacy";
@@ -4495,6 +4630,15 @@ let
sha512 = "NbnMOfUXXovlTGRj4mIZGXB9HvidQhwKfAmdYHox5peHPkjjsqEzxGCIuWCSnubWiCF2uHZnQoIkg4sXWf0KLw==";
};
};
+ "apollo-codegen-scala-0.34.32" = {
+ name = "apollo-codegen-scala";
+ packageName = "apollo-codegen-scala";
+ version = "0.34.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.34.32.tgz";
+ sha512 = "c41a6NdEsPo/uRSY1FBbEJ2MUfM+NKlLVe3hBulc3huqaStz3PuQuOtQ5ZA0XjCwL8GhLFgC1D8TAiuDCA5+tQ==";
+ };
+ };
"apollo-codegen-swift-0.20.0" = {
name = "apollo-codegen-swift";
packageName = "apollo-codegen-swift";
@@ -4504,6 +4648,15 @@ let
sha512 = "L9Y4StbXw0t/nuF+miz0ybSt/io6tsLc063Yeh1A8GCvhFFQyXE/yK0Rf3nO1Bl5Z9UZ5o8Aae9kK4GSWYIGNQ==";
};
};
+ "apollo-codegen-swift-0.35.12" = {
+ name = "apollo-codegen-swift";
+ packageName = "apollo-codegen-swift";
+ version = "0.35.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.35.12.tgz";
+ sha512 = "pbeUwkLEpfr/hkCLnwmxfxroib5QFP0xz7cvORN3Hh9xxtpqfd0SdnrbXS8RpRxBN2jTbV78ubA6hDFm4B0BCA==";
+ };
+ };
"apollo-codegen-typescript-0.20.0" = {
name = "apollo-codegen-typescript";
packageName = "apollo-codegen-typescript";
@@ -4513,6 +4666,15 @@ let
sha512 = "mzlIJXz+5WPwzeALqRHHR9aPPEf6IlhSrjCawpUHmFU1NK9hgwbguYCEYZv9mKkYBUUgDY+9cGFK1cafJX70AQ==";
};
};
+ "apollo-codegen-typescript-0.35.7" = {
+ name = "apollo-codegen-typescript";
+ packageName = "apollo-codegen-typescript";
+ version = "0.35.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.35.7.tgz";
+ sha512 = "r5MzXwWVPvkuyWfUV5kWzIsezoiDw2o459L3i07iM2JwOl7AW88/wkPsp/GrKh5q/Y2HRABg4oSqEiaQtrVazQ==";
+ };
+ };
"apollo-codegen-typescript-legacy-0.20.0" = {
name = "apollo-codegen-typescript-legacy";
packageName = "apollo-codegen-typescript-legacy";
@@ -4531,22 +4693,22 @@ let
sha512 = "gRYyFVpJgHE2hhS+VxMeOerxXQ/QYxWG7T6QddfugJWYAG9DRCl65e2b7txcGq2NP3r+O1iCm4GNwhRBDJbd8A==";
};
};
- "apollo-engine-reporting-1.4.6" = {
+ "apollo-engine-reporting-1.4.7" = {
name = "apollo-engine-reporting";
packageName = "apollo-engine-reporting";
- version = "1.4.6";
+ version = "1.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-1.4.6.tgz";
- sha512 = "acfb7oFnru/8YQdY4x6+7WJbZfzdVETI8Cl+9ImgUrvUnE8P+f2SsGTKXTC1RuUvve4c56PAvaPgE+z8X1a1Mw==";
+ url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-1.4.7.tgz";
+ sha512 = "qsKDz9VkoctFhojM3Nj3nvRBO98t8TS2uTgtiIjUGs3Hln2poKMP6fIQ37Nm2Q2B3JJst76HQtpPwXmRJd1ZUg==";
};
};
- "apollo-engine-reporting-protobuf-0.4.0" = {
+ "apollo-engine-reporting-protobuf-0.4.1" = {
name = "apollo-engine-reporting-protobuf";
packageName = "apollo-engine-reporting-protobuf";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.4.0.tgz";
- sha512 = "cXHZSienkis8v4RhqB3YG3DkaksqLpcxApRLTpRMs7IXNozgV7CUPYGFyFBEra1ZFgUyHXx4G9MpelV+n2cCfA==";
+ url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.4.1.tgz";
+ sha512 = "d7vFFZ2oUrvGaN0Hpet8joe2ZG0X0lIGilN+SwgVP38dJnOuadjsaYMyrD9JudGQJg0bJA5wVQfYzcCVy0slrw==";
};
};
"apollo-env-0.5.1" = {
@@ -4558,13 +4720,22 @@ let
sha512 = "fndST2xojgSdH02k5hxk1cbqA9Ti8RX4YzzBoAB4oIe1Puhq7+YlhXGXfXB5Y4XN0al8dLg+5nAkyjNAR2qZTw==";
};
};
- "apollo-graphql-0.3.3" = {
+ "apollo-graphql-0.3.4" = {
name = "apollo-graphql";
packageName = "apollo-graphql";
- version = "0.3.3";
+ version = "0.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.3.3.tgz";
- sha512 = "t3CO/xIDVsCG2qOvx2MEbuu4b/6LzQjcBBwiVnxclmmFyAxYCIe7rpPlnLHSq7HyOMlCWDMozjoeWfdqYSaLqQ==";
+ url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.3.4.tgz";
+ sha512 = "w+Az1qxePH4oQ8jvbhQBl5iEVvqcqynmU++x/M7MM5xqN1C7m1kyIzpN17gybXlTJXY4Oxej2WNURC2/hwpfYw==";
+ };
+ };
+ "apollo-language-server-1.17.0" = {
+ name = "apollo-language-server";
+ packageName = "apollo-language-server";
+ version = "1.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-language-server/-/apollo-language-server-1.17.0.tgz";
+ sha512 = "x/CfKYl+GSFGLxLDx6d3aWLzpQssnHUdwczZxTHyU/RkQlfnNyLdZXodCmWBRpSj2Ifkuzii+uxwj4kjWG6jOA==";
};
};
"apollo-link-1.2.13" = {
@@ -4585,6 +4756,24 @@ let
sha512 = "TUi5TyufU84hEiGkpt+5gdH5HkB3Gx46npNfoxR4of3DKBCMuItGERt36RCaryGcU/C3u2zsICU3tJ+Z9LjFoQ==";
};
};
+ "apollo-link-error-1.1.12" = {
+ name = "apollo-link-error";
+ packageName = "apollo-link-error";
+ version = "1.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-link-error/-/apollo-link-error-1.1.12.tgz";
+ sha512 = "psNmHyuy3valGikt/XHJfe0pKJnRX19tLLs6P6EHRxg+6q6JMXNVLYPaQBkL0FkwdTCB0cbFJAGRYCBviG8TDA==";
+ };
+ };
+ "apollo-link-http-1.5.16" = {
+ name = "apollo-link-http";
+ packageName = "apollo-link-http";
+ version = "1.5.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.16.tgz";
+ sha512 = "IA3xA/OcrOzINRZEECI6IdhRp/Twom5X5L9jMehfzEo2AXdeRwAMlH5LuvTZHgKD8V1MBnXdM6YXawXkTDSmJw==";
+ };
+ };
"apollo-link-http-common-0.2.15" = {
name = "apollo-link-http-common";
packageName = "apollo-link-http-common";
@@ -4630,13 +4819,13 @@ let
sha512 = "l7ieNCGxUaUAVAAp600HjbUJxVaxjJygtPV0tPTe1Q3HkPy6LEWoY6mNHV7T268g1hxtPTxcdRu7WLsJrg7ufw==";
};
};
- "apollo-server-core-2.9.3" = {
+ "apollo-server-core-2.9.7" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
- version = "2.9.3";
+ version = "2.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.9.3.tgz";
- sha512 = "KQpOM3nAXdMqKVE0HHcOkH/EVhyDqFEKLNFlsyGHGOn9ujpI6RsltX+YpXRyAdbfQHpTk11v/IAo6XksWN+g1Q==";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.9.7.tgz";
+ sha512 = "EqKyROy+21sM93YHjGpy6wlnzK/vH0fnZh7RCf3uB69aQ3OjgdP4AQ5oWRQ62NDN+aoic7OLhChSDJeDonq/NQ==";
};
};
"apollo-server-env-2.4.3" = {
@@ -4648,58 +4837,58 @@ let
sha512 = "23R5Xo9OMYX0iyTu2/qT0EUb+AULCBriA9w8HDfMoChB8M+lFClqUkYtaTTHDfp6eoARLW8kDBhPOBavsvKAjA==";
};
};
- "apollo-server-errors-2.3.3" = {
+ "apollo-server-errors-2.3.4" = {
name = "apollo-server-errors";
packageName = "apollo-server-errors";
- version = "2.3.3";
+ version = "2.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.3.3.tgz";
- sha512 = "MO4oJ129vuCcbqwr5ZwgxqGGiLz3hCyowz0bstUF7MR+vNGe4oe3DWajC9lv4CxrhcqUHQOeOPViOdIo1IxE3g==";
+ url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.3.4.tgz";
+ sha512 = "Y0PKQvkrb2Kd18d1NPlHdSqmlr8TgqJ7JQcNIfhNDgdb45CnqZlxL1abuIRhr8tiw8OhVOcFxz2KyglBi8TKdA==";
};
};
- "apollo-server-express-2.9.3" = {
+ "apollo-server-express-2.9.7" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
- version = "2.9.3";
+ version = "2.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.9.3.tgz";
- sha512 = "Hkfs+ce6GqaoSzDOJs8Pj7W3YUjH0BzGglo5HMsOXOnjPZ0pJE9v8fmK76rlkITLw7GjvIq5GKlafymC31FMBw==";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.9.7.tgz";
+ sha512 = "+DuJk1oq34Zx0bLYzgBgJH/eXS0JNxw2JycHQvV0+PAQ0Qi01oomJRA2r1S5isnfnSAnHb2E9jyBTptoHdw3MQ==";
};
};
- "apollo-server-plugin-base-0.6.4" = {
+ "apollo-server-plugin-base-0.6.5" = {
name = "apollo-server-plugin-base";
packageName = "apollo-server-plugin-base";
- version = "0.6.4";
+ version = "0.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.6.4.tgz";
- sha512 = "4rY+cBAIpQomGWYBtk8hHkLQWHrh5hgIBPQqmhXh00YFdcY+Ob1/cU2/2iqTcIzhtcaezsc8OZ63au6ahSBQqg==";
+ url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.6.5.tgz";
+ sha512 = "z2ve7HEPWmZI3EzL0iiY9qyt1i0hitT+afN5PzssCw594LB6DfUQWsI14UW+W+gcw8hvl8VQUpXByfUntAx5vw==";
};
};
- "apollo-server-types-0.2.4" = {
+ "apollo-server-types-0.2.5" = {
name = "apollo-server-types";
packageName = "apollo-server-types";
- version = "0.2.4";
+ version = "0.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.2.4.tgz";
- sha512 = "G4FvBVgGQcTW6ZBS2+hvcDQkSfdOIKV+cHADduXA275v+5zl42g+bCaGd/hCCKTDRjmQvObLiMxH/BJ6pDMQgA==";
+ url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.2.5.tgz";
+ sha512 = "6iJQsPh59FWu4K7ABrVmpnQVgeK8Ockx8BcawBh+saFYWTlVczwcLyGSZPeV1tPSKwFwKZutyEslrYSafcarXQ==";
};
};
- "apollo-tracing-0.8.4" = {
+ "apollo-tracing-0.8.5" = {
name = "apollo-tracing";
packageName = "apollo-tracing";
- version = "0.8.4";
+ version = "0.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.8.4.tgz";
- sha512 = "DjbFW0IvHicSlTVG+vK+1WINfBMRCdPPHJSW/j65JMir9Oe56WGeqL8qz8hptdUUmLYEb+azvcyyGsJsiR3zpQ==";
+ url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.8.5.tgz";
+ sha512 = "lZn10/GRBZUlMxVYLghLMFsGcLN0jTYDd98qZfBtxw+wEWUx+PKkZdljDT+XNoOm/kDvEutFGmi5tSLhArIzWQ==";
};
};
- "apollo-upload-client-10.0.1" = {
+ "apollo-upload-client-11.0.0" = {
name = "apollo-upload-client";
packageName = "apollo-upload-client";
- version = "10.0.1";
+ version = "11.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-upload-client/-/apollo-upload-client-10.0.1.tgz";
- sha512 = "K6WnuYQi0RRTNO+aSPVjoUWXp4QSr+eoKU4fE0OKQp25XRF2oXl2cTLs+Q4Nk0wOIHM76YGdo/IHtzuNR7jO+A==";
+ url = "https://registry.npmjs.org/apollo-upload-client/-/apollo-upload-client-11.0.0.tgz";
+ sha512 = "JChTrBi1VSF8u6OPrkWUApJlyUvzwhw98kqRB3fSi7/CU6z0OUD42Mee9s5h8mfjKEfOanK6GNZhF4t2tIPXSw==";
};
};
"apollo-utilities-1.3.2" = {
@@ -4783,15 +4972,6 @@ let
sha1 = "dcfca9e509300e4c3b2d467965fe50c56fc75e66";
};
};
- "applicationinsights-0.16.0" = {
- name = "applicationinsights";
- packageName = "applicationinsights";
- version = "0.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz";
- sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3";
- };
- };
"aproba-1.2.0" = {
name = "aproba";
packageName = "aproba";
@@ -5116,15 +5296,6 @@ let
sha512 = "hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==";
};
};
- "array-from-2.1.1" = {
- name = "array-from";
- packageName = "array-from";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz";
- sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195";
- };
- };
"array-ify-1.0.0" = {
name = "array-ify";
packageName = "array-ify";
@@ -5143,15 +5314,6 @@ let
sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d";
};
};
- "array-indexofobject-0.0.1" = {
- name = "array-indexofobject";
- packageName = "array-indexofobject";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz";
- sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a";
- };
- };
"array-initial-1.1.0" = {
name = "array-initial";
packageName = "array-initial";
@@ -5503,15 +5665,6 @@ let
sha512 = "2mP3TwtkY/aTv5X3ZsMpNAbOnyoC/aMJwJSoaELPkHId0nSQgFcnU4dRW3isxiz7+zBexk0ym3WNVjMiQBnJSw==";
};
};
- "ast-types-0.12.4" = {
- name = "ast-types";
- packageName = "ast-types";
- version = "0.12.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/ast-types/-/ast-types-0.12.4.tgz";
- sha512 = "ky/YVYCbtVAS8TdMIaTiPFHwEpRB5z1hctepJplTr3UW5q8TDrpIMCILyk8pmLxGtn2KCtC/lSn7zOsaI7nzDw==";
- };
- };
"ast-types-0.13.2" = {
name = "ast-types";
packageName = "ast-types";
@@ -5557,15 +5710,6 @@ let
sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
};
};
- "async-0.2.7" = {
- name = "async";
- packageName = "async";
- version = "0.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.7.tgz";
- sha1 = "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df";
- };
- };
"async-0.2.9" = {
name = "async";
packageName = "async";
@@ -5593,15 +5737,6 @@ let
sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
};
};
- "async-1.4.2" = {
- name = "async";
- packageName = "async";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz";
- sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab";
- };
- };
"async-1.5.2" = {
name = "async";
packageName = "async";
@@ -5656,13 +5791,13 @@ let
sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==";
};
};
- "async-3.0.1" = {
+ "async-3.1.0" = {
name = "async";
packageName = "async";
- version = "3.0.1";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-3.0.1.tgz";
- sha512 = "ZswD8vwPtmBZzbn9xyi8XBQWXH3AvOQ43Za1KWYq7JeycrZuUYzx01KvHcVbXltjqH4y0MWrQ33008uLTqXuDw==";
+ url = "https://registry.npmjs.org/async/-/async-3.1.0.tgz";
+ sha512 = "4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==";
};
};
"async-done-1.3.2" = {
@@ -5701,13 +5836,13 @@ let
sha512 = "uczz62z2fMWOFbyo6rG4NlV2SdxugJT6sZA2QcfB1XaSjEiOh8CuOb/TttyMnYQCda6nkWecJe465tGQDPJiKw==";
};
};
- "async-mutex-0.1.3" = {
+ "async-mutex-0.1.4" = {
name = "async-mutex";
packageName = "async-mutex";
- version = "0.1.3";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.1.3.tgz";
- sha1 = "0aad2112369795ab3f17e33744556d2ecf547566";
+ url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.1.4.tgz";
+ sha512 = "zVWTmAnxxHaeB2B1te84oecI8zTDJ/8G49aVBblRX6be0oq6pAybNcUSxwfgVOmOjSCvN4aYZAqwtyNI8e1YGw==";
};
};
"async-retry-1.2.3" = {
@@ -5836,6 +5971,15 @@ let
sha1 = "ece7d92527ca37ea502f99e8f41fe44daf00dbce";
};
};
+ "await-to-js-2.1.1" = {
+ name = "await-to-js";
+ packageName = "await-to-js";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/await-to-js/-/await-to-js-2.1.1.tgz";
+ sha512 = "CHBC6gQGCIzjZ09tJ+XmpQoZOn4GdWePB4qUweCaKNJ0D3f115YdhmYVTZ4rMVpiJ3cFzZcTYK1VMYEICV4YXw==";
+ };
+ };
"aws-sdk-1.18.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
@@ -5845,13 +5989,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.533.0" = {
+ "aws-sdk-2.556.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.533.0";
+ version = "2.556.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.533.0.tgz";
- sha512 = "OSe7C0jnBdgfzedOtK+TgBEwtJaaZovm+Q2fbqIlfhUWg3rhhkt3oLyQ9bRD30/CFaunLhLr/8HAAN+/x+DWAA==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.556.0.tgz";
+ sha512 = "qILMUNl/a7FYWU67Y24OGsXFhyDHM4qYdplMR2tps/g17pN9bEQ5ijxvGzW2T8VVyAsTanmn+dFyl/CH38pC5Q==";
};
};
"aws-sign2-0.6.0" = {
@@ -6340,6 +6484,15 @@ let
sha1 = "2d45021df87e26a374b6d4d1a9c65964d17f2422";
};
};
+ "babel-polyfill-6.26.0" = {
+ name = "babel-polyfill";
+ packageName = "babel-polyfill";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz";
+ sha1 = "379937abc67d7895970adc621f284cd966cf2153";
+ };
+ };
"babel-preset-jest-23.2.0" = {
name = "babel-preset-jest";
packageName = "babel-preset-jest";
@@ -6754,13 +6907,13 @@ let
sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869";
};
};
- "bezier-js-2.4.3" = {
+ "bezier-js-2.4.4" = {
name = "bezier-js";
packageName = "bezier-js";
- version = "2.4.3";
+ version = "2.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bezier-js/-/bezier-js-2.4.3.tgz";
- sha512 = "qAz1iAGoSE+kk5guAMyvoUgfHq+e5JwK5jRHh2/tuk4XDRUuECrrHLouN27jAzjhlJD2vAsBHofCi5sOn1jcbQ==";
+ url = "https://registry.npmjs.org/bezier-js/-/bezier-js-2.4.4.tgz";
+ sha512 = "qYC9FBubdTK4VZe0m+lS7lEpf87w1fnm6g2m1FKsnlz+wfNnJy3gjQt4Y5nnI1NrjJrnQqnZt3S6Z5qjhloDNA==";
};
};
"biased-opener-0.2.8" = {
@@ -6772,13 +6925,13 @@ let
sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "big-integer-1.6.45" = {
+ "big-integer-1.6.47" = {
name = "big-integer";
packageName = "big-integer";
- version = "1.6.45";
+ version = "1.6.47";
src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.45.tgz";
- sha512 = "nmb9E7oEtVJ7SmSCH/DeJobXyuRmaofkpoQSimMFu3HKJ5MADtM825SPLhDuWhZ6TElLAQtgJbQmBZuHIRlZoA==";
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.47.tgz";
+ sha512 = "9t9f7X3as2XGX8b52GqG6ox0GvIdM86LyIXASJnDCFhYNgt+A+MByQZ3W2PyMRZjEvG5f8TEbSPfEotVuMJnQg==";
};
};
"big.js-5.2.2" = {
@@ -6817,15 +6970,6 @@ let
sha1 = "e24ebfa6b63cb0387c5fc174f86e5cc812ca7cc9";
};
};
- "binary-0.3.0" = {
- name = "binary";
- packageName = "binary";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz";
- sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
- };
- };
"binary-extensions-1.13.1" = {
name = "binary-extensions";
packageName = "binary-extensions";
@@ -6979,15 +7123,6 @@ let
sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e";
};
};
- "bl-1.1.2" = {
- name = "bl";
- packageName = "bl";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz";
- sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398";
- };
- };
"bl-1.2.2" = {
name = "bl";
packageName = "bl";
@@ -7006,6 +7141,15 @@ let
sha512 = "EUAyP5UHU5hxF8BPT0LKW8gjYLhq1DQIcneOX/pL/m2Alo+OYDQAJlHq+yseMP50Os2nHXOSic6Ss3vSQeyf4A==";
};
};
+ "bl-4.0.0" = {
+ name = "bl";
+ packageName = "bl";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bl/-/bl-4.0.0.tgz";
+ sha512 = "QwQvAZZA1Bw1FWnhNj2X5lu+sPxxB2ITH3mqEqYyahN6JZR13ONjk+XiTnBaGEzMPUrAgOkaD68pBH1rvPRPsw==";
+ };
+ };
"blake2b-2.1.3" = {
name = "blake2b";
packageName = "blake2b";
@@ -7042,13 +7186,13 @@ let
sha1 = "f962d687ec2c369570ae71af843256e6d0ca1129";
};
};
- "blessed-contrib-4.8.17" = {
+ "blessed-contrib-4.8.18" = {
name = "blessed-contrib";
packageName = "blessed-contrib";
- version = "4.8.17";
+ version = "4.8.18";
src = fetchurl {
- url = "https://registry.npmjs.org/blessed-contrib/-/blessed-contrib-4.8.17.tgz";
- sha512 = "uhywRrzJQxtpkowgDHdejIE911Pgt0raYOQUoFC/qREyQvXsz5DMj2J2JVjwcx2bpzbDdHRoP/lcWLE1Ol3vCQ==";
+ url = "https://registry.npmjs.org/blessed-contrib/-/blessed-contrib-4.8.18.tgz";
+ sha512 = "l0XXpwbxp1NIYMkhTplbi6siZZvVH3JRHy+NPNznPvlD6uBUWVd/wQx4pmo1NCZQMN4MYRjICjedDGp34p/MUQ==";
};
};
"blob-0.0.2" = {
@@ -7150,6 +7294,15 @@ let
sha512 = "5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==";
};
};
+ "bluebird-3.7.1" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz";
+ sha512 = "DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==";
+ };
+ };
"blueimp-md5-2.10.0" = {
name = "blueimp-md5";
packageName = "blueimp-md5";
@@ -7249,13 +7402,13 @@ let
sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
};
};
- "boolean-1.0.0" = {
+ "boolean-2.0.2" = {
name = "boolean";
packageName = "boolean";
- version = "1.0.0";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/boolean/-/boolean-1.0.0.tgz";
- sha512 = "IB1lgIywn37N9Aff8CciCblVpMUflgL42vyxPUH0IvaDdIi/QwBHKv1lq/HOkATHCfa7c4MbMYJ7Bo7hGuoI+w==";
+ url = "https://registry.npmjs.org/boolean/-/boolean-2.0.2.tgz";
+ sha512 = "ymsbJQlux/uogyEWfsXJUYzuyoOzPyp6NvEV71s6/ptQR7ptKO9uHF+WZL2GRATDeN52EFhNyrIu+exNZKh3Cw==";
};
};
"boom-2.10.1" = {
@@ -7357,6 +7510,15 @@ let
sha512 = "cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A==";
};
};
+ "boxen-4.1.0" = {
+ name = "boxen";
+ packageName = "boxen";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boxen/-/boxen-4.1.0.tgz";
+ sha512 = "Iwq1qOkmEsl0EVABa864Bbj3HCL4186DRZgFW/NrFs5y5GMM3ljsxzMLgOHdWISDRvcM8beh8q4tTNzXz+mSKg==";
+ };
+ };
"bplist-creator-0.0.6" = {
name = "bplist-creator";
packageName = "bplist-creator";
@@ -7555,15 +7717,6 @@ let
sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a";
};
};
- "browserify-mime-1.2.9" = {
- name = "browserify-mime";
- packageName = "browserify-mime";
- version = "1.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz";
- sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f";
- };
- };
"browserify-package-json-1.0.1" = {
name = "browserify-package-json";
packageName = "browserify-package-json";
@@ -7600,13 +7753,13 @@ let
sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
};
};
- "browserslist-4.7.0" = {
+ "browserslist-4.7.2" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.7.0";
+ version = "4.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.7.0.tgz";
- sha512 = "9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.7.2.tgz";
+ sha512 = "uZavT/gZXJd2UTi9Ov7/Z340WOSQ3+m1iBVRUknf+okKxonL9P83S3ctiBDtuRmRu8PiCHjqyueqQ9HYlJhxiw==";
};
};
"btoa-lite-1.0.0" = {
@@ -7771,15 +7924,6 @@ let
sha512 = "4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==";
};
};
- "buffer-indexof-polyfill-1.0.1" = {
- name = "buffer-indexof-polyfill";
- packageName = "buffer-indexof-polyfill";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.1.tgz";
- sha1 = "a9fb806ce8145d5428510ce72f278bb363a638bf";
- };
- };
"buffer-queue-1.0.0" = {
name = "buffer-queue";
packageName = "buffer-queue";
@@ -8149,15 +8293,6 @@ let
sha1 = "847e0fce0a223750a9a027c54b33731ad3154134";
};
};
- "caller-id-0.1.0" = {
- name = "caller-id";
- packageName = "caller-id";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caller-id/-/caller-id-0.1.0.tgz";
- sha1 = "59bdac0893d12c3871408279231f97458364f07b";
- };
- };
"caller-path-0.1.0" = {
name = "caller-path";
packageName = "caller-path";
@@ -8302,13 +8437,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30000989" = {
+ "caniuse-lite-1.0.30001004" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30000989";
+ version = "1.0.30001004";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz";
- sha512 = "vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001004.tgz";
+ sha512 = "3nfOR4O8Wa2RWoYfJkMtwRVOsK96TQ+eq57wd0iKaEWl8dwG4hKZ/g0MVBfCvysFvMLi9fQGR/DvozMdkEPl3g==";
};
};
"capture-stack-trace-1.0.1" = {
@@ -8329,6 +8464,15 @@ let
sha1 = "50e21c1b0aa37729f9377def196b5a9cec932ee9";
};
};
+ "cardinal-2.1.1" = {
+ name = "cardinal";
+ packageName = "cardinal";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz";
+ sha1 = "7cc1055d822d212954d07b085dea251cc7bc5505";
+ };
+ };
"caryll-shapeops-0.3.1" = {
name = "caryll-shapeops";
packageName = "caryll-shapeops";
@@ -8428,15 +8572,6 @@ let
sha512 = "azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==";
};
};
- "chainsaw-0.1.0" = {
- name = "chainsaw";
- packageName = "chainsaw";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz";
- sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
- };
- };
"chalk-0.4.0" = {
name = "chalk";
packageName = "chalk";
@@ -8743,22 +8878,13 @@ let
sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==";
};
};
- "chokidar-3.0.2" = {
+ "chokidar-3.2.2" = {
name = "chokidar";
packageName = "chokidar";
- version = "3.0.2";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-3.0.2.tgz";
- sha512 = "c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA==";
- };
- };
- "chokidar-3.1.1" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-3.1.1.tgz";
- sha512 = "df4o16uZmMHzVQwECZRHwfguOt5ixpuQVaZHjYMvYisgKhE+JXwcj/Tcr3+3bu/XeOJQ9ycYmzu7Mv8XrGxJDQ==";
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-3.2.2.tgz";
+ sha512 = "bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg==";
};
};
"chownr-0.0.2" = {
@@ -8770,13 +8896,13 @@ let
sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485";
};
};
- "chownr-1.1.2" = {
+ "chownr-1.1.3" = {
name = "chownr";
packageName = "chownr";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz";
- sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==";
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz";
+ sha512 = "i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==";
};
};
"chroma-js-2.0.6" = {
@@ -8788,13 +8914,13 @@ let
sha512 = "IiiClbBRkRwuXNl6impq5ssEhUGpmWvc5zzImZbDUWLWcFbj6ZbtsdZEx6sIXMKes7azgYaUpnmsY1T8BL6PqQ==";
};
};
- "chrome-dgram-3.0.3" = {
+ "chrome-dgram-3.0.4" = {
name = "chrome-dgram";
packageName = "chrome-dgram";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/chrome-dgram/-/chrome-dgram-3.0.3.tgz";
- sha512 = "rktbTuXuzriInBm9qESjTqRhnscp26gAdsQnUSWIY4a3miF9gnFOBGib+DO0zcJ0ZF2wj6wwQrPgyWfT4+as3g==";
+ url = "https://registry.npmjs.org/chrome-dgram/-/chrome-dgram-3.0.4.tgz";
+ sha512 = "G8rOANSvSRC4hGny/K/ec1gXtNuZGzryFeoev49u0J4g/qws7H25vMKQlbD9izuedFVHwXFTdKQG62Tf/7Cmwg==";
};
};
"chrome-dns-1.0.1" = {
@@ -8806,6 +8932,15 @@ let
sha512 = "HqsYJgIc8ljJJOqOzLphjAs79EUuWSX3nzZi2LNkzlw3GIzAeZbaSektC8iT/tKvLqZq8yl1GJu5o6doA4TRbg==";
};
};
+ "chrome-launcher-0.11.2" = {
+ name = "chrome-launcher";
+ packageName = "chrome-launcher";
+ version = "0.11.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.11.2.tgz";
+ sha512 = "jx0kJDCXdB2ARcDMwNCtrf04oY1Up4rOmVu+fqJ5MTPOOIG8EhRcEU9NZfXZc6dMw9FU8o1r21PNp8V2M0zQ+g==";
+ };
+ };
"chrome-net-3.3.3" = {
name = "chrome-net";
packageName = "chrome-net";
@@ -8815,13 +8950,13 @@ let
sha512 = "11jL8+Ogna8M5TEdyalE8IG6cpaFEU3YcaxAj3YjZKjRM/PeT70pZbrUY+xoGwqiEJZwJE4Td2CvGxUvS9ytKQ==";
};
};
- "chrome-remote-interface-0.26.1" = {
+ "chrome-remote-interface-0.27.2" = {
name = "chrome-remote-interface";
packageName = "chrome-remote-interface";
- version = "0.26.1";
+ version = "0.27.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chrome-remote-interface/-/chrome-remote-interface-0.26.1.tgz";
- sha512 = "ela482aJK0riFu05sl+zdbnb3ezMiqzwsqf/f/27HngWds+Fat3vcZWpIoDoeQuWMid/+LfKAteAYWaWPqsweg==";
+ url = "https://registry.npmjs.org/chrome-remote-interface/-/chrome-remote-interface-0.27.2.tgz";
+ sha512 = "pVLljQ29SAx8KIv5tSa9sIf8GrEsAZdPJoeWOmY3/nrIzFmE+EryNNHvDkddGod0cmAFTv+GmPG0uvzxi2NWsA==";
};
};
"chrome-trace-event-1.0.2" = {
@@ -8968,6 +9103,15 @@ let
sha1 = "5325dc839eab01c974ae0e97f5734782750f88ec";
};
};
+ "clean-html-1.5.0" = {
+ name = "clean-html";
+ packageName = "clean-html";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-html/-/clean-html-1.5.0.tgz";
+ sha512 = "eDu0vN44ZBvoEU0oRIKwWPIccGWXtdnUNmKJuTukZ1de00Uoqavb5pfIMKiC7/r+knQ5RbvAjGuVZiN3JwJL4Q==";
+ };
+ };
"clean-stack-1.3.0" = {
name = "clean-stack";
packageName = "clean-stack";
@@ -9058,6 +9202,15 @@ let
sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582";
};
};
+ "cli-spinner-0.2.10" = {
+ name = "cli-spinner";
+ packageName = "cli-spinner";
+ version = "0.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-spinner/-/cli-spinner-0.2.10.tgz";
+ sha512 = "U0sSQ+JJvSLi1pAYuJykwiA8Dsr15uHEy85iCJ6A+0DjVxivr3d+N2Wjvodeg89uP5K6TswFkKBfAD7B3YSn/Q==";
+ };
+ };
"cli-spinners-1.3.1" = {
name = "cli-spinners";
packageName = "cli-spinners";
@@ -9094,6 +9247,15 @@ let
sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97";
};
};
+ "cli-truncate-0.2.1" = {
+ name = "cli-truncate";
+ packageName = "cli-truncate";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz";
+ sha1 = "9f15cfbb0705005369216c626ac7d05ab90dd574";
+ };
+ };
"cli-truncate-1.1.0" = {
name = "cli-truncate";
packageName = "cli-truncate";
@@ -9103,6 +9265,24 @@ let
sha512 = "bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA==";
};
};
+ "cli-ux-4.9.3" = {
+ name = "cli-ux";
+ packageName = "cli-ux";
+ version = "4.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-ux/-/cli-ux-4.9.3.tgz";
+ sha512 = "/1owvF0SZ5Gn54cgrikJ0QskgTzeg30HGjkmjFoaHDJzAqFpuX1DBpFR8aLvsE1J5s9MgeYRENQK4BFwOag5VA==";
+ };
+ };
+ "cli-ux-5.3.3" = {
+ name = "cli-ux";
+ packageName = "cli-ux";
+ version = "5.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-ux/-/cli-ux-5.3.3.tgz";
+ sha512 = "a16g+BTjASUH41s1pevai4P3JKwhx85wkOSm6sXWsk6KkdSmDeJ16pSCn2x3nqK7W8n35igOu2YiW+qFkqLRJg==";
+ };
+ };
"cli-width-1.1.1" = {
name = "cli-width";
packageName = "cli-width";
@@ -9274,15 +9454,6 @@ let
sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
};
};
- "clone-2.0.0" = {
- name = "clone";
- packageName = "clone";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-2.0.0.tgz";
- sha1 = "df65d3ca142e4a4a47db33da3468d088a16fc76e";
- };
- };
"clone-2.1.2" = {
name = "clone";
packageName = "clone";
@@ -9355,15 +9526,6 @@ let
sha512 = "2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==";
};
};
- "clones-1.2.0" = {
- name = "clones";
- packageName = "clones";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clones/-/clones-1.2.0.tgz";
- sha512 = "FXDYw4TjR8wgPZYui2LeTqWh1BLpfQ8lB6upMtlpDF6WlOOxghmTTxWyngdKTgozqBgKnHbTVwTE+hOHqAykuQ==";
- };
- };
"cmd-shim-2.1.0" = {
name = "cmd-shim";
packageName = "cmd-shim";
@@ -9643,15 +9805,6 @@ let
sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
};
};
- "colors-1.1.2" = {
- name = "colors";
- packageName = "colors";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
- sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
- };
- };
"colors-1.3.2" = {
name = "colors";
packageName = "colors";
@@ -9796,24 +9949,6 @@ let
sha1 = "5e6a88e7070ff5908836ead19169548c30f90bcd";
};
};
- "commander-1.0.4" = {
- name = "commander";
- packageName = "commander";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz";
- sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
- };
- };
- "commander-1.1.1" = {
- name = "commander";
- packageName = "commander";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz";
- sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041";
- };
- };
"commander-1.3.2" = {
name = "commander";
packageName = "commander";
@@ -9868,6 +10003,15 @@ let
sha512 = "7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==";
};
};
+ "commander-2.20.3" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.20.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz";
+ sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==";
+ };
+ };
"commander-2.3.0" = {
name = "commander";
packageName = "commander";
@@ -9904,13 +10048,13 @@ let
sha512 = "pl3QrGOBa9RZaslQiqnnKX2J068wcQw7j9AIaBQ9/JEp5RY6je4jKTImg0Bd+rpoONSe7GUFSgkxLeo17m3Pow==";
};
};
- "commander-3.0.1" = {
+ "commander-3.0.2" = {
name = "commander";
packageName = "commander";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-3.0.1.tgz";
- sha512 = "UNgvDd+csKdc9GD4zjtkHKQbT8Aspt2jCBqNSPp53vAS0L1tS9sXB2TCEOPHJ7kt9bN/niWkYj8T3RQSoMXdSQ==";
+ url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz";
+ sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==";
};
};
"commist-1.1.0" = {
@@ -10399,13 +10543,13 @@ let
sha1 = "3243397ae93a71d655b3026834a51590b958b9e8";
};
};
- "conventional-changelog-angular-5.0.3" = {
+ "conventional-changelog-angular-5.0.5" = {
name = "conventional-changelog-angular";
packageName = "conventional-changelog-angular";
- version = "5.0.3";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.3.tgz";
- sha512 = "YD1xzH7r9yXQte/HF9JBuEDfvjxxwDGGwZU1+ndanbY0oFgA+Po1T9JDSpPLdP0pZT6MhCAsdvFKC4TJ4MTJTA==";
+ url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.5.tgz";
+ sha512 = "RrkdWnL/TVyWV1ayWmSsrWorsTDqjL/VwG5ZSEneBQrd65ONcfeA1cW7FLtNweQyMiKOyriCMTKRSlk18DjTrw==";
};
};
"conventional-changelog-core-3.2.3" = {
@@ -10417,22 +10561,22 @@ let
sha512 = "LMMX1JlxPIq/Ez5aYAYS5CpuwbOk6QFp8O4HLAcZxe3vxoCtABkhfjetk8IYdRB9CDQGwJFLR3Dr55Za6XKgUQ==";
};
};
- "conventional-changelog-preset-loader-2.2.0" = {
+ "conventional-changelog-preset-loader-2.3.0" = {
name = "conventional-changelog-preset-loader";
packageName = "conventional-changelog-preset-loader";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.2.0.tgz";
- sha512 = "zXB+5vF7D5Y3Cb/rJfSyCCvFphCVmF8mFqOdncX3BmjZwAtGAPfYrBcT225udilCKvBbHgyzgxqz2GWDB5xShQ==";
+ url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.0.tgz";
+ sha512 = "/rHb32J2EJnEXeK4NpDgMaAVTFZS3o1ExmjKMtYVgIC4MQn0vkNSbYpdGRotkfGGRWiqk3Ri3FBkiZGbAfIfOQ==";
};
};
- "conventional-changelog-writer-4.0.7" = {
+ "conventional-changelog-writer-4.0.10" = {
name = "conventional-changelog-writer";
packageName = "conventional-changelog-writer";
- version = "4.0.7";
+ version = "4.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.7.tgz";
- sha512 = "p/wzs9eYaxhFbrmX/mCJNwJuvvHR+j4Fd0SQa2xyAhYed6KBiZ780LvoqUUvsayP4R1DtC27czalGUhKV2oabw==";
+ url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.10.tgz";
+ sha512 = "vtO9vBAVh7XnSpGLTB1BOGgsGTz1MdvFjzbSXLrtapWCHWwuVOZFgwdLhlS0MaXwlF1dksWdEb6tnr42Ie2INw==";
};
};
"conventional-commits-filter-2.0.2" = {
@@ -10444,13 +10588,13 @@ let
sha512 = "WpGKsMeXfs21m1zIw4s9H5sys2+9JccTzpN6toXtxhpw2VNF2JUXwIakthKBy+LN4DvJm+TzWhxOMWOs1OFCFQ==";
};
};
- "conventional-commits-parser-3.0.3" = {
+ "conventional-commits-parser-3.0.6" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
- version = "3.0.3";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.0.3.tgz";
- sha512 = "KaA/2EeUkO4bKjinNfGUyqPTX/6w9JGshuQRik4r/wJz7rUw3+D3fDG6sZSEqJvKILzKXFQuFkpPLclcsAuZcg==";
+ url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.0.6.tgz";
+ sha512 = "9FDoCTnNQRhiDRhlRx6UEaxpcKPy6hiHYWZqJO80BAmFlbovAnMcCkdcxGyJGTe8sDidVHEiqPkLoJuG/aUs0A==";
};
};
"conventional-recommended-bump-5.0.1" = {
@@ -10705,31 +10849,31 @@ let
sha512 = "h479g/5a0PXn//yiFuMrD5MDEbB+mtihNkWcE6uD/aCh/6z0FRZ9sWH3NfZbHDB+Bp1yGLYsjbH8LZBL8KOQ0w==";
};
};
- "core-js-2.6.9" = {
+ "core-js-2.6.10" = {
name = "core-js";
packageName = "core-js";
- version = "2.6.9";
+ version = "2.6.10";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz";
- sha512 = "HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.6.10.tgz";
+ sha512 = "I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA==";
};
};
- "core-js-3.2.1" = {
+ "core-js-3.3.4" = {
name = "core-js";
packageName = "core-js";
- version = "3.2.1";
+ version = "3.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz";
- sha512 = "Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.3.4.tgz";
+ sha512 = "BtibooaAmSOptGLRccsuX/dqgPtXwNgqcvYA6kOTTMzonRxZ+pJS4e+6mvVutESfXMeTnK8m3M+aBu3bkJbR+w==";
};
};
- "core-js-compat-3.2.1" = {
+ "core-js-compat-3.3.4" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.2.1";
+ version = "3.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.2.1.tgz";
- sha512 = "MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.3.4.tgz";
+ sha512 = "7OK3/LPP8R3Ovasf3GilEOp+o1w0ZKJ75FMou2RDfTwIV69G5RkKCGFnqgBv/ZhR6xo9GCzlfVALyHmydbE7DA==";
};
};
"core-util-is-1.0.2" = {
@@ -10921,22 +11065,13 @@ let
sha512 = "LuoXnCRMKEo3KR3jEbCRpP3Nu2TUhLTlb/axP9+rl+ouhBpxTaHaTTN1bdUS2x2VK3wWyCBl1OZHyHhlRBntWg==";
};
};
- "creato-1.0.5" = {
+ "creato-1.0.7" = {
name = "creato";
packageName = "creato";
- version = "1.0.5";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/creato/-/creato-1.0.5.tgz";
- sha512 = "bneB5jF+I0XNe4d3E6PYszPRb+5S8B3UQ3hDlY6ZSkfEU34RKqCfbUodxwwJn8DhmPYiuefEqEGxvstXEwXuUA==";
- };
- };
- "crocks-0.12.1" = {
- name = "crocks";
- packageName = "crocks";
- version = "0.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/crocks/-/crocks-0.12.1.tgz";
- sha512 = "2qCRJwBmPlRQXzd50k9gt9PaItultOP8lj/cKSH2Eai9aeBuNqAnDuyolAm9TGn6Pw/4BgbxtPJLU1S+tQ4WMQ==";
+ url = "https://registry.npmjs.org/creato/-/creato-1.0.7.tgz";
+ sha512 = "FuIJS+j87XAZGeblY2GINN+C4QHoFGP1gMAbsdr2uU+m8HvSHokzE/Ok6SLVFnSMQMLjDX0jS0EW6jlVmo5MsQ==";
};
};
"cron-1.7.1" = {
@@ -10975,15 +11110,6 @@ let
sha1 = "7b9247621c23adfdd3856004a823cbe397424d41";
};
};
- "cross-spawn-5.0.1" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.0.1.tgz";
- sha1 = "a3bbb302db2297cbea3c04edf36941f4613aa399";
- };
- };
"cross-spawn-5.1.0" = {
name = "cross-spawn";
packageName = "cross-spawn";
@@ -11002,13 +11128,13 @@ let
sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
};
};
- "cross-spawn-7.0.0" = {
+ "cross-spawn-7.0.1" = {
name = "cross-spawn";
packageName = "cross-spawn";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.0.tgz";
- sha512 = "6U/8SMK2FBNnB21oQ4+6Nsodxanw1gTkntYA2zBdkFYFu3ZDx65P2ONEXGSvob/QS6REjVHQ9zxzdOafwFdstw==";
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz";
+ sha512 = "u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==";
};
};
"cross-spawn-async-2.2.5" = {
@@ -11029,15 +11155,6 @@ let
sha1 = "b1d5f9c1d98af3bdd61f1bda6a86dd1aee4ff8f2";
};
};
- "crx-parser-0.1.2" = {
- name = "crx-parser";
- packageName = "crx-parser";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/crx-parser/-/crx-parser-0.1.2.tgz";
- sha1 = "7eeeed9eddc95e22c189382e34624044a89a5a6d";
- };
- };
"crypt-0.0.2" = {
name = "crypt";
packageName = "crypt";
@@ -11407,15 +11524,6 @@ let
sha1 = "52cc3b3dfc197758c55ad325a95be85071f9e51b";
};
};
- "ctype-0.5.2" = {
- name = "ctype";
- packageName = "ctype";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ctype/-/ctype-0.5.2.tgz";
- sha1 = "fe8091d468a373a0b0c9ff8bbfb3425c00973a1d";
- };
- };
"ctype-0.5.3" = {
name = "ctype";
packageName = "ctype";
@@ -11461,13 +11569,13 @@ let
sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
};
};
- "cuss-1.16.0" = {
+ "cuss-1.17.0" = {
name = "cuss";
packageName = "cuss";
- version = "1.16.0";
+ version = "1.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cuss/-/cuss-1.16.0.tgz";
- sha512 = "VtYrZxNqRWLd/z3a57ezUv9WLR0l0n0qmYA5O9QBepliUWlEvRgBUnfZO6bZK29KocssaZ6ks7EistDLYPFWhA==";
+ url = "https://registry.npmjs.org/cuss/-/cuss-1.17.0.tgz";
+ sha512 = "3ZCx/QsMbJczIwh7A0mFzg4fmugBVf+LS3G310RD5fX6Td2imd9WV+zO1shsN9OkMOjeS3Mk5V28mUrsR6Y6Qg==";
};
};
"custom-error-instance-2.1.1" = {
@@ -11704,13 +11812,13 @@ let
sha512 = "gz9RuhUxq3coYBrelzuFXCNyC579aO3Bm1Wlwa12/9tJr1NP0AAGxpHJYA1HZvt8X7ZdrtMzpFyNvs2Y9PFG6w==";
};
};
- "data-uri-to-buffer-2.0.1" = {
+ "data-uri-to-buffer-1.2.0" = {
name = "data-uri-to-buffer";
packageName = "data-uri-to-buffer";
- version = "2.0.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.1.tgz";
- sha512 = "OkVVLrerfAKZlW2ZZ3Ve2y65jgiWqBKsTfUIAFbn8nVbPcCZg6l6gikKlEYv0kXcmzqGm6mFq/Jf2vriuEkv8A==";
+ url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz";
+ sha512 = "vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==";
};
};
"data-urls-1.1.0" = {
@@ -11722,6 +11830,15 @@ let
sha512 = "YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==";
};
};
+ "date-fns-1.30.1" = {
+ name = "date-fns";
+ packageName = "date-fns";
+ version = "1.30.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz";
+ sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==";
+ };
+ };
"date-format-2.1.0" = {
name = "date-format";
packageName = "date-format";
@@ -11740,24 +11857,6 @@ let
sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
};
};
- "date-utils-1.2.21" = {
- name = "date-utils";
- packageName = "date-utils";
- version = "1.2.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz";
- sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64";
- };
- };
- "dateformat-1.0.2-1.2.3" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "1.0.2-1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
- sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
- };
- };
"dateformat-2.2.0" = {
name = "dateformat";
packageName = "dateformat";
@@ -12181,15 +12280,6 @@ let
sha512 = "R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==";
};
};
- "deepmerge-3.2.0" = {
- name = "deepmerge";
- packageName = "deepmerge";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz";
- sha512 = "6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==";
- };
- };
"deepmerge-3.3.0" = {
name = "deepmerge";
packageName = "deepmerge";
@@ -12199,6 +12289,24 @@ let
sha512 = "GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==";
};
};
+ "deepmerge-4.0.0" = {
+ name = "deepmerge";
+ packageName = "deepmerge";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.0.0.tgz";
+ sha512 = "YZ1rOP5+kHor4hMAH+HRQnBQHg+wvS1un1hAOuIcxcBy0hzcUf6Jg2a1w65kpoOUnurOfZbERwjI1TfZxNjcww==";
+ };
+ };
+ "deepmerge-4.2.1" = {
+ name = "deepmerge";
+ packageName = "deepmerge";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.1.tgz";
+ sha512 = "32P7FIV6JKt0hPMFNlWFytzVGpppYHFKdnhFUEMXheWc8Lw4HnHEzJa5yxhaQedDAXv2SI6zD7+UbqnC5k9g9Q==";
+ };
+ };
"default-browser-id-1.0.4" = {
name = "default-browser-id";
packageName = "default-browser-id";
@@ -12217,15 +12325,6 @@ let
sha512 = "QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==";
};
};
- "default-gateway-4.2.0" = {
- name = "default-gateway";
- packageName = "default-gateway";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz";
- sha512 = "h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==";
- };
- };
"default-resolution-2.0.0" = {
name = "default-resolution";
packageName = "default-resolution";
@@ -12280,13 +12379,13 @@ let
sha1 = "2cef1f111e1c57870d8bbb8af2650e587cd2f5b4";
};
};
- "deferred-leveldown-5.2.1" = {
+ "deferred-leveldown-5.3.0" = {
name = "deferred-leveldown";
packageName = "deferred-leveldown";
- version = "5.2.1";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.2.1.tgz";
- sha512 = "PwXZRn5EmW+IKYVAYVc7G9FsRkShr0myPubPuq+mtLhDq9xSUqfvTlNZKoeQGeXACHXkeCFurKrz5oo6TZ3qwg==";
+ url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz";
+ sha512 = "a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==";
};
};
"define-properties-1.1.3" = {
@@ -12838,13 +12937,13 @@ let
sha1 = "57ddacb47324ae5f58d2cc0da886db4ce9eeb718";
};
};
- "dispensary-0.37.0" = {
+ "dispensary-0.40.0" = {
name = "dispensary";
packageName = "dispensary";
- version = "0.37.0";
+ version = "0.40.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dispensary/-/dispensary-0.37.0.tgz";
- sha512 = "Baqbt8MDkRYQZHB7XEd8iBUP8wRkRLjNWbm16nSDTOIoGvgF4Z8Q9wV1yD72TYjFC0kj1/o3nfPXPiAvWqjC8g==";
+ url = "https://registry.npmjs.org/dispensary/-/dispensary-0.40.0.tgz";
+ sha512 = "ttKDQvGBf+ygQ4rXuLBLErp3kMJIS+Gfmy+nJ6N/EfV8/RQdjd9SORpc729YK5SYAI+IuBo88S2xGUjKjU2jYw==";
};
};
"diveSync-0.3.0" = {
@@ -13216,31 +13315,31 @@ let
sha512 = "HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==";
};
};
- "dotenv-8.1.0" = {
+ "dotenv-8.2.0" = {
name = "dotenv";
packageName = "dotenv";
- version = "8.1.0";
+ version = "8.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz";
- sha512 = "GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==";
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz";
+ sha512 = "8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==";
};
};
- "dotenv-expand-4.2.0" = {
+ "dotenv-expand-5.1.0" = {
name = "dotenv-expand";
packageName = "dotenv-expand";
- version = "4.2.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-4.2.0.tgz";
- sha1 = "def1f1ca5d6059d24a766e587942c21106ce1275";
+ url = "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz";
+ sha512 = "YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==";
};
};
- "dotnet-deps-parser-4.5.0" = {
+ "dotnet-deps-parser-4.5.2" = {
name = "dotnet-deps-parser";
packageName = "dotnet-deps-parser";
- version = "4.5.0";
+ version = "4.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dotnet-deps-parser/-/dotnet-deps-parser-4.5.0.tgz";
- sha512 = "t6rBxcWVZSDNhhWdsbq9ozaCzfPXV79FiyES1JLNEoA7nYF+zDC2VZvFZSnH8ilU3bghJXxZPH+EcKYvfw8g/g==";
+ url = "https://registry.npmjs.org/dotnet-deps-parser/-/dotnet-deps-parser-4.5.2.tgz";
+ sha512 = "bk5Q1luEwQ10rrBwZbtTxUNadaLz2dM6xzOLoTK+oUBcaq6saCeELmkIgdG+Fwkn58XRgLQvOySVS0gp4OG6RA==";
};
};
"downgrade-root-1.2.2" = {
@@ -13432,15 +13531,6 @@ let
sha1 = "12c91b3085a37f0baa336e9486eac4bf94e3e788";
};
};
- "easy-table-1.1.0" = {
- name = "easy-table";
- packageName = "easy-table";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz";
- sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73";
- };
- };
"ecc-jsbn-0.1.2" = {
name = "ecc-jsbn";
packageName = "ecc-jsbn";
@@ -13576,13 +13666,13 @@ let
sha512 = "kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ==";
};
};
- "electron-to-chromium-1.3.264" = {
+ "electron-to-chromium-1.3.296" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.264";
+ version = "1.3.296";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.264.tgz";
- sha512 = "z8E7WkrrquCuGYv+kKyybuZIbdms+4PeHp7Zm2uIgEhAigP0bOwqXILItwj0YO73o+QyHY/7XtEfP5DsHOWQgQ==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.296.tgz";
+ sha512 = "s5hv+TSJSVRsxH190De66YHb50pBGTweT9XGWYu/LMR20KX6TsjFzObo36CjVAzM+PUeeKSBRtm/mISlCzeojQ==";
};
};
"elegant-spinner-1.0.1" = {
@@ -13621,15 +13711,6 @@ let
sha512 = "xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==";
};
};
- "elm-hot-1.1.1" = {
- name = "elm-hot";
- packageName = "elm-hot";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/elm-hot/-/elm-hot-1.1.1.tgz";
- sha512 = "ZHjoHd2Ev6riNXNQirj3J+GKKXXwedAUikfFBYzlVL/+3CdGs96cpZ7nhAk4c5l//Qa9ymltrqX36mOlr0pPFA==";
- };
- };
"email-validator-2.0.4" = {
name = "email-validator";
packageName = "email-validator";
@@ -13757,13 +13838,13 @@ let
sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb";
};
};
- "encoding-down-6.2.0" = {
+ "encoding-down-6.3.0" = {
name = "encoding-down";
packageName = "encoding-down";
- version = "6.2.0";
+ version = "6.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/encoding-down/-/encoding-down-6.2.0.tgz";
- sha512 = "XlIoQMBMbU4aE01uSKpAix0sXBJWK8YPhuOdvKa1CroThZyUpj0zWzt+bbe7g1KWsdhNFFzHkQHSdDymVtpJ1w==";
+ url = "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz";
+ sha512 = "QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==";
};
};
"end-of-stream-0.1.5" = {
@@ -13793,13 +13874,13 @@ let
sha1 = "e9353258baa9108965efc41cb0ef8ade2f3cfb07";
};
};
- "end-of-stream-1.4.1" = {
+ "end-of-stream-1.4.4" = {
name = "end-of-stream";
packageName = "end-of-stream";
- version = "1.4.1";
+ version = "1.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
- sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz";
+ sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
};
};
"end-with-1.0.2" = {
@@ -13946,6 +14027,15 @@ let
sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
};
};
+ "enhanced-resolve-4.1.1" = {
+ name = "enhanced-resolve";
+ packageName = "enhanced-resolve";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz";
+ sha512 = "98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==";
+ };
+ };
"ensure-posix-path-1.1.1" = {
name = "ensure-posix-path";
packageName = "ensure-posix-path";
@@ -13991,6 +14081,15 @@ let
sha512 = "D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==";
};
};
+ "env-ci-3.2.2" = {
+ name = "env-ci";
+ packageName = "env-ci";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/env-ci/-/env-ci-3.2.2.tgz";
+ sha512 = "AOiNZ3lmxrtva3r/roqaYDF+1PX2V+ouUzuGqJf7KNxyyYkuU+CsfFbbUeibQPdixxjI/lP6eDtvtkX1/wymJw==";
+ };
+ };
"env-paths-1.0.0" = {
name = "env-paths";
packageName = "env-paths";
@@ -14009,15 +14108,6 @@ let
sha512 = "zoB603vQReOFvTg5xMl9I1P2PnHsHQQKTEowsKKD7nseUfJq6UWzK+4YtlWUO1nhiQUxe6XMkk+JleSZD1NZFA==";
};
};
- "envconf-0.0.4" = {
- name = "envconf";
- packageName = "envconf";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/envconf/-/envconf-0.0.4.tgz";
- sha1 = "85675afba237c43f98de2d46adc0e532a4dcf48b";
- };
- };
"envinfo-7.3.1" = {
name = "envinfo";
packageName = "envinfo";
@@ -14027,6 +14117,15 @@ let
sha512 = "GvXiDTqLYrORVSCuJCsWHPXF5BFvoWMQA9xX4YVjPT1jyS3aZEHUBwjzxU/6LTPF9ReHgVEbX7IEN5UvSXHw/A==";
};
};
+ "envinfo-7.4.0" = {
+ name = "envinfo";
+ packageName = "envinfo";
+ version = "7.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/envinfo/-/envinfo-7.4.0.tgz";
+ sha512 = "FdDfnWnCVjxTTpWE3d6Jgh5JDIA3Cw7LCgpM/pI7kK1ORkjaqI2r6NqQ+ln2j0dfpgxY00AWieSvtkiZQKIItA==";
+ };
+ };
"epidemic-broadcast-trees-7.0.0" = {
name = "epidemic-broadcast-trees";
packageName = "epidemic-broadcast-trees";
@@ -14090,13 +14189,13 @@ let
sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==";
};
};
- "es-abstract-1.14.2" = {
+ "es-abstract-1.16.0" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.14.2";
+ version = "1.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.14.2.tgz";
- sha512 = "DgoQmbpFNOofkjJtKwr87Ma5EW4Dc8fWhD0R+ndq7Oc456ivUfGOOP6oAZTTKl5/CcNMP+EN+e3/iUzgE0veZg==";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.16.0.tgz";
+ sha512 = "xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg==";
};
};
"es-to-primitive-1.2.0" = {
@@ -14216,15 +14315,6 @@ let
sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203";
};
};
- "es6-promisify-6.0.1" = {
- name = "es6-promisify";
- packageName = "es6-promisify";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.0.1.tgz";
- sha512 = "J3ZkwbEnnO+fGAKrjVpeUAnZshAdfZvbhQpqfIH9kSAspReRC4nJnu8ewm55b4y9ElyeuhCTzJD0XiH8Tsbhlw==";
- };
- };
"es6-promisify-6.0.2" = {
name = "es6-promisify";
packageName = "es6-promisify";
@@ -14414,13 +14504,13 @@ let
sha512 = "S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==";
};
};
- "eslint-6.4.0" = {
+ "eslint-6.6.0" = {
name = "eslint";
packageName = "eslint";
- version = "6.4.0";
+ version = "6.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-6.4.0.tgz";
- sha512 = "WTVEzK3lSFoXUovDHEbkJqCVPEPwbhCq4trDktNI6ygs7aO41d4cDT0JFAT5MivzZeVLWlg7vHL+bgrQv/t3vA==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-6.6.0.tgz";
+ sha512 = "PpEBq7b6qY/qrOmpYQ/jTMDYfuQMELR4g4WI1M/NaSDDD/bdcMb+dj4Hgks7p41kW2caXsPsEZAEAyAgjVVC0g==";
};
};
"eslint-plugin-no-unsafe-innerhtml-1.0.16" = {
@@ -14477,22 +14567,13 @@ let
sha512 = "oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==";
};
};
- "eslint-utils-1.4.2" = {
+ "eslint-utils-1.4.3" = {
name = "eslint-utils";
packageName = "eslint-utils";
- version = "1.4.2";
+ version = "1.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz";
- sha512 = "eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==";
- };
- };
- "eslint-visitor-keys-1.0.0" = {
- name = "eslint-visitor-keys";
- packageName = "eslint-visitor-keys";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz";
- sha512 = "qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==";
+ url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz";
+ sha512 = "fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==";
};
};
"eslint-visitor-keys-1.1.0" = {
@@ -14567,6 +14648,15 @@ let
sha512 = "EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ==";
};
};
+ "espree-6.1.2" = {
+ name = "espree";
+ packageName = "espree";
+ version = "6.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-6.1.2.tgz";
+ sha512 = "2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA==";
+ };
+ };
"esprima-1.1.1" = {
name = "esprima";
packageName = "esprima";
@@ -14792,15 +14882,6 @@ let
sha1 = "5da9cf3c7900975989db5a68c28e5b3c98ebe03a";
};
};
- "event-stream-3.1.5" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz";
- sha1 = "6cba5a3ae02a7e4967d65ad04ef12502a2fff66c";
- };
- };
"event-stream-3.1.7" = {
name = "event-stream";
packageName = "event-stream";
@@ -15035,6 +15116,15 @@ let
sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
};
};
+ "execa-3.2.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-3.2.0.tgz";
+ sha512 = "kJJfVbI/lZE1PZYDI5VPxp8zXPO9rtxOkhpZ0jMKha56AI9y2gGVC6bkukStQf0ka5Rh15BA5m7cCCH4jmHqkw==";
+ };
+ };
"execall-1.0.0" = {
name = "execall";
packageName = "execall";
@@ -15377,6 +15467,15 @@ let
sha1 = "5abbedc98c0d5202e3278727f9192d7e086c6be1";
};
};
+ "extract-stack-1.0.0" = {
+ name = "extract-stack";
+ packageName = "extract-stack";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-stack/-/extract-stack-1.0.0.tgz";
+ sha1 = "b97acaf9441eea2332529624b732fc5a1c8165fa";
+ };
+ };
"extract-zip-1.6.7" = {
name = "extract-zip";
packageName = "extract-zip";
@@ -15521,15 +15620,6 @@ let
sha512 = "FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==";
};
};
- "fast-json-patch-0.5.6" = {
- name = "fast-json-patch";
- packageName = "fast-json-patch";
- version = "0.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz";
- sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402";
- };
- };
"fast-json-patch-2.2.1" = {
name = "fast-json-patch";
packageName = "fast-json-patch";
@@ -15683,24 +15773,6 @@ let
sha512 = "lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg==";
};
};
- "feedparser-2.2.9" = {
- name = "feedparser";
- packageName = "feedparser";
- version = "2.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/feedparser/-/feedparser-2.2.9.tgz";
- sha1 = "9138197dafdae05fcadde0036beeaf6066c2c5e9";
- };
- };
- "fibers-1.0.15" = {
- name = "fibers";
- packageName = "fibers";
- version = "1.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz";
- sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c";
- };
- };
"fields-0.1.24" = {
name = "fields";
packageName = "fields";
@@ -15746,13 +15818,13 @@ let
sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
};
};
- "figures-3.0.0" = {
+ "figures-3.1.0" = {
name = "figures";
packageName = "figures";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/figures/-/figures-3.0.0.tgz";
- sha512 = "HKri+WoWoUgr83pehn/SIgLOMZ9nAWC6dcGj26RY2R4F50u4+RTUz0RCrUlOV3nKRAICW1UGzyb+kcX2qK1S/g==";
+ url = "https://registry.npmjs.org/figures/-/figures-3.1.0.tgz";
+ sha512 = "ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==";
};
};
"file-entry-cache-2.0.0" = {
@@ -16250,13 +16322,13 @@ let
sha512 = "ougBA2q6Rn9sZrjZQ9r5pTFxCotlGouySpD2yRIuq5AYwwfIT8HHhVMeSwrN5qJayjHINLJyrnsSkkPCZyfMrQ==";
};
};
- "flow-parser-0.108.0" = {
+ "flow-parser-0.110.1" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.108.0";
+ version = "0.110.1";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.108.0.tgz";
- sha512 = "Ug8VuwlyDIZq5Xgrf+T7XLpKydhqYyNd8lmFtf7PZbu90T5LL+FeHjWzxyrBn35RCCZMw7pXrjCrHOSs+2zXyg==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.110.1.tgz";
+ sha512 = "k0QoogCKfE7cr3WSgHYTt8QhZxxoi0tun4uVMSqx68L0E9ao1ltxlhJAKibTGlwR1V6lnGfKXU1zU9JB1q2ZRg==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -16502,15 +16574,6 @@ let
sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577";
};
};
- "form-data-1.0.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz";
- sha1 = "ae315db9a4907fa065502304a66d7733475ee37c";
- };
- };
"form-data-2.1.4" = {
name = "form-data";
packageName = "form-data";
@@ -16889,13 +16952,13 @@ let
sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
};
};
- "fs2-0.3.5" = {
+ "fs2-0.3.6" = {
name = "fs2";
packageName = "fs2";
- version = "0.3.5";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/fs2/-/fs2-0.3.5.tgz";
- sha512 = "EL6G81ucjbmmycRwgekYMjjbKGFSop+eHgYLvBiQydp0H0Qugwbs5qOhifSzbCLZPy25rgXxsxsSrFqpTkitwA==";
+ url = "https://registry.npmjs.org/fs2/-/fs2-0.3.6.tgz";
+ sha512 = "Zs7c3SBPiiNEEg+w3PTIgxTbWA6ZWVJP+1DlwUCxNDtwQD2qM5pfdho7IaiR0ceu4UVvXRj9l6Ml+X6rs21ERw==";
};
};
"fsevents-1.2.9" = {
@@ -16916,6 +16979,15 @@ let
sha512 = "a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==";
};
};
+ "fsevents-2.1.1" = {
+ name = "fsevents";
+ packageName = "fsevents";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.1.tgz";
+ sha512 = "4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw==";
+ };
+ };
"fstream-0.1.31" = {
name = "fstream";
packageName = "fstream";
@@ -17006,15 +17078,6 @@ let
sha512 = "igHogHf5wTqqaPPTOav18MMTVq/eoeTJiw/PvPUuwnzU8vbyZInFPgR66G9ZBwvwxC7e611nbtB4xSMcYVhlvg==";
};
};
- "galaxy-0.1.12" = {
- name = "galaxy";
- packageName = "galaxy";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/galaxy/-/galaxy-0.1.12.tgz";
- sha1 = "0c989774f2870c69378aa665648cdc60f343aa53";
- };
- };
"gauge-1.2.7" = {
name = "gauge";
packageName = "gauge";
@@ -17249,13 +17312,13 @@ let
sha512 = "EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==";
};
};
- "get-uri-2.0.3" = {
+ "get-uri-2.0.4" = {
name = "get-uri";
packageName = "get-uri";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/get-uri/-/get-uri-2.0.3.tgz";
- sha512 = "x5j6Ks7FOgLD/GlvjKwgu7wdmMR55iuRHhn8hj/+gA+eSbxQvZ+AEomq+3MgVEZj1vpi738QahGbCCSIDtXtkw==";
+ url = "https://registry.npmjs.org/get-uri/-/get-uri-2.0.4.tgz";
+ sha512 = "v7LT/s8kVjs+Tx0ykk1I+H/rbpzkHvuIq87LmeXptcf5sNWm9uQiwjNAt94SJPA1zOlCntmnOlJvVWKmzsxG8Q==";
};
};
"get-value-2.0.6" = {
@@ -17348,6 +17411,15 @@ let
sha1 = "c57d1145eec16465ab9bfbdf575262b1691624d6";
};
};
+ "git-parse-1.0.3" = {
+ name = "git-parse";
+ packageName = "git-parse";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-parse/-/git-parse-1.0.3.tgz";
+ sha512 = "LlGDePBQ9Lr/jsL3ULrnV8SQL8sk3cdScyc+vAk6jVLkHBOxdIj3JosNWemH2o9pNnGtcqukl+ym1Nl6k5jw0Q==";
+ };
+ };
"git-raw-commits-2.0.0" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
@@ -17438,15 +17510,6 @@ let
sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b";
};
};
- "github-0.1.6" = {
- name = "github";
- packageName = "github";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz";
- sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922";
- };
- };
"github-from-package-0.0.0" = {
name = "github-from-package";
packageName = "github-from-package";
@@ -17555,6 +17618,15 @@ let
sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==";
};
};
+ "glob-7.1.5" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz";
+ sha512 = "J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==";
+ };
+ };
"glob-base-0.3.0" = {
name = "glob-base";
packageName = "glob-base";
@@ -17654,13 +17726,13 @@ let
sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
};
};
- "global-agent-2.1.1" = {
+ "global-agent-2.1.5" = {
name = "global-agent";
packageName = "global-agent";
- version = "2.1.1";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/global-agent/-/global-agent-2.1.1.tgz";
- sha512 = "MjLP2o331SpSxBMBFSWxs5PaWDhjXxysHepQ/hmBCjhjw74cbO9R/IBCbaSJ4GLPKm01dRcgXBtRr7p7XZEnfg==";
+ url = "https://registry.npmjs.org/global-agent/-/global-agent-2.1.5.tgz";
+ sha512 = "pYJjCxxNBzYxo6iNO62JZn8iCFVbvpiM0zE4w/G5hBNIvLjnvzIeCVQPMKc3aK8ju5L7Q8NNI/oBSosU0eeSYw==";
};
};
"global-dirs-0.1.1" = {
@@ -17988,13 +18060,13 @@ let
sha512 = "b9usnbDGnD928gJB3LrCmxoibr3VE4U2SMo5PBuBnokWyDADTqDPXg4YpwKF1trpH+UbGp7QLicO3+aWEy0+mw==";
};
};
- "graceful-fs-4.2.2" = {
+ "graceful-fs-4.2.3" = {
name = "graceful-fs";
packageName = "graceful-fs";
- version = "4.2.2";
+ version = "4.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz";
- sha512 = "IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==";
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz";
+ sha512 = "a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==";
};
};
"graceful-readlink-1.0.1" = {
@@ -18060,13 +18132,13 @@ let
sha512 = "QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==";
};
};
- "graphql-14.5.7" = {
+ "graphql-14.5.8" = {
name = "graphql";
packageName = "graphql";
- version = "14.5.7";
+ version = "14.5.8";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-14.5.7.tgz";
- sha512 = "as410RMJSUFqF8RcH2QWxZ5ioqHzsH9VWnWbaU+UnDXJ/6azMDIYPrtXCBPXd8rlunEVb7W8z6fuUnNHMbFu9A==";
+ url = "https://registry.npmjs.org/graphql/-/graphql-14.5.8.tgz";
+ sha512 = "MMwmi0zlVLQKLdGiMfWkgQD7dY/TUKt4L+zgJ/aR0Howebod3aNgP5JkgvAULiR2HPVZaP2VEElqtdidHweLkg==";
};
};
"graphql-anywhere-4.2.4" = {
@@ -18114,13 +18186,13 @@ let
sha512 = "bOufkkog0cSfHJ9gVD3Wy+KHmkSTHWcFfPaV/NVpIvfJx15gU0/CzuC6lcTjioWmn+UGzYdoqmP7OrJAWT57sw==";
};
};
- "graphql-extensions-0.10.3" = {
+ "graphql-extensions-0.10.4" = {
name = "graphql-extensions";
packageName = "graphql-extensions";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.10.3.tgz";
- sha512 = "kwU0gUe+Qdfr8iZYT91qrPSwQNgPhB/ClF1m1LEPdxlptk5FhFmjpxAcbMZ8q7j0kjfnbp2IeV1OhRDCEPqz2w==";
+ url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.10.4.tgz";
+ sha512 = "lE6MroluEYocbR/ICwccv39w+Pz4cBPadJ11z1rJkbZv5wstISEganbDOwl9qN21rcZGiWzh7QUNxUiFUXXEDw==";
};
};
"graphql-import-0.4.5" = {
@@ -18204,31 +18276,31 @@ let
sha512 = "jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==";
};
};
- "graphql-tools-4.0.5" = {
+ "graphql-tools-4.0.6" = {
name = "graphql-tools";
packageName = "graphql-tools";
- version = "4.0.5";
+ version = "4.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.5.tgz";
- sha512 = "kQCh3IZsMqquDx7zfIGWBau42xe46gmqabwYkpPlCLIjcEY1XK+auP7iGRD9/205BPyoQdY8hT96MPpgERdC9Q==";
+ url = "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.6.tgz";
+ sha512 = "jHLQw8x3xmSNRBCsaZqelXXsFfUSUSktSCUP8KYHiX1Z9qEuwcMpAf+FkdBzk8aTAFqOlPdNZ3OI4DKKqGKUqg==";
};
};
- "graphql-type-json-0.2.4" = {
+ "graphql-type-json-0.3.0" = {
name = "graphql-type-json";
packageName = "graphql-type-json";
- version = "0.2.4";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-type-json/-/graphql-type-json-0.2.4.tgz";
- sha512 = "/tq02ayMQjrG4oDFDRLLrPk0KvJXue0nVXoItBe7uAdbNXjQUu+HYCBdAmPLQoseVzUKKMzrhq2P/sfI76ON6w==";
+ url = "https://registry.npmjs.org/graphql-type-json/-/graphql-type-json-0.3.0.tgz";
+ sha512 = "lnxg5HiB95yxy+/5cDKtP6pZo0zgntsOmqsjeCBXFGJ4YoMF3+1YaSEKWJntNTu+VsAm3zf6lPxFpp1kxzofLA==";
};
};
- "graphql-upload-8.0.7" = {
+ "graphql-upload-8.1.0" = {
name = "graphql-upload";
packageName = "graphql-upload";
- version = "8.0.7";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-upload/-/graphql-upload-8.0.7.tgz";
- sha512 = "gi2yygbDPXbHPC7H0PNPqP++VKSoNoJO4UrXWq4T0Bi4IhyUd3Ycop/FSxhx2svWIK3jdXR/i0vi91yR1aAF0g==";
+ url = "https://registry.npmjs.org/graphql-upload/-/graphql-upload-8.1.0.tgz";
+ sha512 = "U2OiDI5VxYmzRKw0Z2dmfk0zkqMRaecH9Smh1U277gVgVe9Qn+18xqf4skwr4YJszGIh7iQDZ57+5ygOK9sM/Q==";
};
};
"gray-matter-2.1.1" = {
@@ -18330,13 +18402,13 @@ let
sha512 = "FQLY7unaHdTOXG0jlwxeBQcWoPPrTMQZRA7HfYwSNi9IPVx5l7GJEN72mG4ri2yigp/f/VNGUAJnFMJHBmH3iw==";
};
};
- "gulp-sourcemaps-2.6.4" = {
+ "gulp-sourcemaps-2.6.5" = {
name = "gulp-sourcemaps";
packageName = "gulp-sourcemaps";
- version = "2.6.4";
+ version = "2.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-2.6.4.tgz";
- sha1 = "cbb2008450b1bcce6cd23bf98337be751bf6e30a";
+ url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-2.6.5.tgz";
+ sha512 = "SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg==";
};
};
"gulp-typescript-4.0.2" = {
@@ -18348,13 +18420,13 @@ let
sha512 = "Hhbn5Aa2l3T+tnn0KqsG6RRJmcYEsr3byTL2nBpNBeAK8pqug9Od4AwddU4JEI+hRw7mzZyjRbB8DDWR6paGVA==";
};
};
- "gulp-uglify-3.0.1" = {
+ "gulp-uglify-3.0.2" = {
name = "gulp-uglify";
packageName = "gulp-uglify";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.1.tgz";
- sha512 = "KVffbGY9d4Wv90bW/B1KZJyunLMyfHTBbilpDvmcrj5Go0/a1G3uVpt+1gRBWSw/11dqR3coJ1oWNTt1AiXuWQ==";
+ url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.2.tgz";
+ sha512 = "gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg==";
};
};
"gulp-util-3.0.8" = {
@@ -18384,13 +18456,13 @@ let
sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5";
};
};
- "handlebars-4.2.1" = {
+ "handlebars-4.4.5" = {
name = "handlebars";
packageName = "handlebars";
- version = "4.2.1";
+ version = "4.4.5";
src = fetchurl {
- url = "https://registry.npmjs.org/handlebars/-/handlebars-4.2.1.tgz";
- sha512 = "bqPIlDk06UWbVEIFoYj+LVo42WhK96J+b25l7hbFDpxrOXMphFM3fNIm+cluwg4Pk2jiLjWU5nHQY7igGE75NQ==";
+ url = "https://registry.npmjs.org/handlebars/-/handlebars-4.4.5.tgz";
+ sha512 = "0Ce31oWVB7YidkaTq33ZxEbN+UDxMMgThvCe8ptgQViymL5DPis9uLdTA13MiRPhgvqyxIegugrP97iK3JeBHg==";
};
};
"har-schema-1.0.5" = {
@@ -18987,13 +19059,13 @@ let
sha1 = "08a74d9272a9cc83ae8e6bbe0303f0ee76432094";
};
};
- "hosted-git-info-2.8.4" = {
+ "hosted-git-info-2.8.5" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "2.8.4";
+ version = "2.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.4.tgz";
- sha512 = "pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ==";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz";
+ sha512 = "kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==";
};
};
"hsl-regex-1.0.0" = {
@@ -19059,15 +19131,6 @@ let
sha1 = "c78de65b5663aa597989dd2b7ab49200d7e4db98";
};
};
- "html-to-text-5.1.1" = {
- name = "html-to-text";
- packageName = "html-to-text";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/html-to-text/-/html-to-text-5.1.1.tgz";
- sha512 = "Bci6bD/JIfZSvG4s0gW/9mMKwBRoe/1RWLxUME/d6WUSZCdY7T60bssf/jFf7EYXRyqU4P5xdClVqiYU0/ypdA==";
- };
- };
"html-void-elements-1.0.4" = {
name = "html-void-elements";
packageName = "html-void-elements";
@@ -19149,15 +19212,6 @@ let
sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31";
};
};
- "http-basic-2.5.1" = {
- name = "http-basic";
- packageName = "http-basic";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz";
- sha1 = "8ce447bdb5b6c577f8a63e3fa78056ec4bb4dbfb";
- };
- };
"http-cache-semantics-3.8.1" = {
name = "http-cache-semantics";
packageName = "http-cache-semantics";
@@ -19176,6 +19230,15 @@ let
sha512 = "TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew==";
};
};
+ "http-call-5.2.5" = {
+ name = "http-call";
+ packageName = "http-call";
+ version = "5.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-call/-/http-call-5.2.5.tgz";
+ sha512 = "SfJ9j2xfi8zhQuJxcBCN1AhPCUAvPhipNaoeHWHfHiV0gz4uf9RUt2kl+xu9mxJLKxhNP7We87aRGbaSGPjr8A==";
+ };
+ };
"http-errors-1.6.3" = {
name = "http-errors";
packageName = "http-errors";
@@ -19276,15 +19339,6 @@ let
sha512 = "qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==";
};
};
- "http-response-object-1.1.0" = {
- name = "http-response-object";
- packageName = "http-response-object";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz";
- sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3";
- };
- };
"http-signature-0.11.0" = {
name = "http-signature";
packageName = "http-signature";
@@ -19339,15 +19393,6 @@ let
sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6";
};
};
- "https-proxy-agent-2.2.1" = {
- name = "https-proxy-agent";
- packageName = "https-proxy-agent";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz";
- sha512 = "HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==";
- };
- };
"https-proxy-agent-2.2.2" = {
name = "https-proxy-agent";
packageName = "https-proxy-agent";
@@ -19357,6 +19402,24 @@ let
sha512 = "c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg==";
};
};
+ "https-proxy-agent-2.2.4" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz";
+ sha512 = "OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==";
+ };
+ };
+ "https-proxy-agent-3.0.1" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-3.0.1.tgz";
+ sha512 = "+ML2Rbh6DAuee7d07tYGEKOEi2voWPUGan+ExdPbPW6Z3svq+JCqr0v8WmKPOkz1vOVykPCBSuobe7G8GJUtVg==";
+ };
+ };
"hue-sdk-0.1.0" = {
name = "hue-sdk";
packageName = "hue-sdk";
@@ -19366,6 +19429,15 @@ let
sha512 = "Rz+tFQZs4n+7atl2mukSgXzi0EPGYwlN0Z4clFMQM9ktOyX+sIZ3fC8y9+8LMXMYQpUvdsweFQM6MGGoolOtLw==";
};
};
+ "human-signals-1.1.1" = {
+ name = "human-signals";
+ packageName = "human-signals";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz";
+ sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==";
+ };
+ };
"humanize-0.0.9" = {
name = "humanize";
packageName = "humanize";
@@ -19456,6 +19528,15 @@ let
sha512 = "JolPS374h6oS1rmz1iebFfeDDvA2nAtiHbx9VJJGMgSDSx4Q77eeY09hDgZwY7KatSKUGWnnSyydSgVUb3+8Lw==";
};
};
+ "hyperlinker-1.0.0" = {
+ name = "hyperlinker";
+ packageName = "hyperlinker";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz";
+ sha512 = "Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==";
+ };
+ };
"hyperquest-2.1.3" = {
name = "hyperquest";
packageName = "hyperquest";
@@ -19474,13 +19555,13 @@ let
sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
};
};
- "i18next-15.1.0" = {
+ "i18next-15.1.2" = {
name = "i18next";
packageName = "i18next";
- version = "15.1.0";
+ version = "15.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/i18next/-/i18next-15.1.0.tgz";
- sha512 = "7cCrVn/BcoSOGJwTilAjGgWWzUDg4scTLX1sIBMWq6QjYYBrT+ChSAvmgVyQxkHinaIcswC04XK6l15RxM4Dkg==";
+ url = "https://registry.npmjs.org/i18next/-/i18next-15.1.2.tgz";
+ sha512 = "98ELn/dqep00DQ/v1E1gpM21HNN6nqU3mS85mYKd9P7lXrhfUcuysPaa3HviKSFb3WPdjf7avuAST3P0dhNp/A==";
};
};
"iconv-lite-0.4.23" = {
@@ -19591,13 +19672,13 @@ let
sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
};
};
- "ignore-walk-3.0.2" = {
+ "ignore-walk-3.0.3" = {
name = "ignore-walk";
packageName = "ignore-walk";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.2.tgz";
- sha512 = "EXyErtpHbn75ZTsOADsfx6J/FPo6/5cjev46PXrcTpd8z3BoRkXgYu9/JVqrI7tusjmwCZutGeRJeU0Wo1e4Cw==";
+ url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz";
+ sha512 = "m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==";
};
};
"image-data-uri-2.0.1" = {
@@ -20149,15 +20230,6 @@ let
sha1 = "ae9fbf93b984878785d50a8de1b356956058cf5c";
};
};
- "internal-ip-4.3.0" = {
- name = "internal-ip";
- packageName = "internal-ip";
- version = "4.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz";
- sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==";
- };
- };
"interpret-1.1.0" = {
name = "interpret";
packageName = "interpret";
@@ -20230,6 +20302,15 @@ let
sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
};
};
+ "invert-kv-3.0.0" = {
+ name = "invert-kv";
+ packageName = "invert-kv";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.0.tgz";
+ sha512 = "JzF8q2BeZA1ZkE3XROwRpoMQ9ObMgTtp0JH8EXewlbkikuOj2GPLIpUipdO+VL8QsTr2teAJD02EFGGL5cO7uw==";
+ };
+ };
"iota-array-1.0.0" = {
name = "iota-array";
packageName = "iota-array";
@@ -20401,13 +20482,13 @@ let
sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6";
};
};
- "is-absolute-url-3.0.2" = {
+ "is-absolute-url-3.0.3" = {
name = "is-absolute-url";
packageName = "is-absolute-url";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.2.tgz";
- sha512 = "+5g/wLlcm1AcxSP7014m6GvbPHswDx980vD/3bZaap8aGV9Yfs7Q6y6tfaupgZ5O74Byzc8dGrSCJ+bFXx0KdA==";
+ url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz";
+ sha512 = "opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==";
};
};
"is-accessor-descriptor-0.1.6" = {
@@ -20509,13 +20590,13 @@ let
sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
};
};
- "is-buffer-2.0.3" = {
+ "is-buffer-2.0.4" = {
name = "is-buffer";
packageName = "is-buffer";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz";
- sha512 = "U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==";
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz";
+ sha512 = "Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==";
};
};
"is-callable-1.1.4" = {
@@ -20842,6 +20923,15 @@ let
sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
};
};
+ "is-interactive-1.0.0" = {
+ name = "is-interactive";
+ packageName = "is-interactive";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz";
+ sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==";
+ };
+ };
"is-invalid-path-0.1.0" = {
name = "is-invalid-path";
packageName = "is-invalid-path";
@@ -20860,13 +20950,13 @@ let
sha1 = "7e147be4768dc466db3bfb21cc60b31e6ad69393";
};
};
- "is-mergeable-object-1.1.0" = {
+ "is-mergeable-object-1.1.1" = {
name = "is-mergeable-object";
packageName = "is-mergeable-object";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.0.tgz";
- sha512 = "JfyDDwUdtS4yHCgUpxOyKB9dnfZ0gecufxB0eytX6BmSXSE+8dbxDGt+V7CNRIRJ9sYFV/WQt2KJG6hNob2sBw==";
+ url = "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz";
+ sha512 = "CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==";
};
};
"is-module-1.0.0" = {
@@ -20986,6 +21076,15 @@ let
sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
};
};
+ "is-observable-1.1.0" = {
+ name = "is-observable";
+ packageName = "is-observable";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz";
+ sha512 = "NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==";
+ };
+ };
"is-options-1.0.1" = {
name = "is-options";
packageName = "is-options";
@@ -21121,13 +21220,13 @@ let
sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
};
};
- "is-relative-url-2.0.0" = {
+ "is-relative-url-3.0.0" = {
name = "is-relative-url";
packageName = "is-relative-url";
- version = "2.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-relative-url/-/is-relative-url-2.0.0.tgz";
- sha1 = "72902d7fe04b3d4792e7db15f9db84b7204c9cef";
+ url = "https://registry.npmjs.org/is-relative-url/-/is-relative-url-3.0.0.tgz";
+ sha512 = "U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==";
};
};
"is-resolvable-1.1.0" = {
@@ -21184,6 +21283,15 @@ let
sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
};
};
+ "is-stream-2.0.0" = {
+ name = "is-stream";
+ packageName = "is-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz";
+ sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==";
+ };
+ };
"is-string-1.0.4" = {
name = "is-string";
packageName = "is-string";
@@ -21220,13 +21328,13 @@ let
sha512 = "HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==";
};
};
- "is-text-path-2.0.0" = {
+ "is-text-path-1.0.1" = {
name = "is-text-path";
packageName = "is-text-path";
- version = "2.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz";
- sha512 = "+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==";
+ url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz";
+ sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e";
};
};
"is-typedarray-1.0.0" = {
@@ -21607,13 +21715,22 @@ let
sha1 = "dc5ebed10d04a5e0eaf49ef0009bec473d1a6b31";
};
};
- "jaeger-client-3.16.0" = {
+ "jaeger-client-3.17.1" = {
name = "jaeger-client";
packageName = "jaeger-client";
- version = "3.16.0";
+ version = "3.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.16.0.tgz";
- sha512 = "F4y4rQ7RTYFDu6QGsFXOnrZb2Pk6BvhnecOZQZvM+BmNahgE+5y9mfToMe4SsELuJ7NQM5JF+Oau1u/xwefr9A==";
+ url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.17.1.tgz";
+ sha512 = "S3fS3vk7dcWTWUWGqMWD9fGa/diLhPIP9h0S8L+OQdz24+7hR7cdALk+AOZD1VzbvqUIQbj6uUELp31J4Frgcw==";
+ };
+ };
+ "java-properties-1.0.2" = {
+ name = "java-properties";
+ packageName = "java-properties";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz";
+ sha512 = "qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==";
};
};
"javascript-natural-sort-0.7.1" = {
@@ -21679,22 +21796,22 @@ let
sha1 = "06d4912255093419477d425633606e0e90782967";
};
};
- "joplin-turndown-4.0.17" = {
+ "joplin-turndown-4.0.18" = {
name = "joplin-turndown";
packageName = "joplin-turndown";
- version = "4.0.17";
+ version = "4.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin-turndown/-/joplin-turndown-4.0.17.tgz";
- sha512 = "57mw92ZOKoR77YBLUkauN1xNq1xlxOm2KaPty/jlYrkEyGotUBBvq46a6wXh6d3aM4CccGuwymSge18/9IoB3A==";
+ url = "https://registry.npmjs.org/joplin-turndown/-/joplin-turndown-4.0.18.tgz";
+ sha512 = "YD0pkj2a7+XjjNNI1X9ZIwYthFwNsswvO4gl5aAoWdwJj5m8tunnoSyVenvqleXzAcaURIi/q9EOAQ1jw7xDiQ==";
};
};
- "joplin-turndown-plugin-gfm-1.0.9" = {
+ "joplin-turndown-plugin-gfm-1.0.11" = {
name = "joplin-turndown-plugin-gfm";
packageName = "joplin-turndown-plugin-gfm";
- version = "1.0.9";
+ version = "1.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin-turndown-plugin-gfm/-/joplin-turndown-plugin-gfm-1.0.9.tgz";
- sha512 = "SOa/Uiy3nyoBGtHqFe+TBg10UTIOzzcUUzNhx2MyR4Z0vbKL3enGggGypig1t7G5uHwv5j+NhooRuM619Zk0bw==";
+ url = "https://registry.npmjs.org/joplin-turndown-plugin-gfm/-/joplin-turndown-plugin-gfm-1.0.11.tgz";
+ sha512 = "S2I+VCTqIhpWKKkPHsyJ5rdll9H/JjMXoBVClRX1TnphcmrSxufevdoXWWVgLncdXpSSiuoifCXgFZy3ueVElg==";
};
};
"jpeg-js-0.1.2" = {
@@ -21841,15 +21958,6 @@ let
sha1 = "102790f265d986fe95a4d0f2a792e7a7bd886eec";
};
};
- "js2xmlparser-1.0.0" = {
- name = "js2xmlparser";
- packageName = "js2xmlparser";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz";
- sha1 = "5a170f2e8d6476ce45405e04823242513782fe30";
- };
- };
"js2xmlparser-4.0.0" = {
name = "js2xmlparser";
packageName = "js2xmlparser";
@@ -21976,15 +22084,6 @@ let
sha512 = "FD/SedD78LCdSvJaOUQAXseT8oQBb5z6IVYaQaCrVUlu9zOAr1BDdKyVYQaSD/GDsAMrXpKcOyBD4LIl8nfjHw==";
};
};
- "json-edm-parser-0.1.2" = {
- name = "json-edm-parser";
- packageName = "json-edm-parser";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz";
- sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4";
- };
- };
"json-merge-patch-0.2.3" = {
name = "json-merge-patch";
packageName = "json-merge-patch";
@@ -22057,13 +22156,13 @@ let
sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
};
};
- "json-schema-deref-sync-0.3.4" = {
+ "json-schema-deref-sync-0.6.0" = {
name = "json-schema-deref-sync";
packageName = "json-schema-deref-sync";
- version = "0.3.4";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.3.4.tgz";
- sha512 = "4Ssj+1UGDJAzPIdTL1QW/rvHwWeuwC28gjbA0EjStLxVsalc+UPciKXxs3rhtr4gaGdIBojW/VmvC8B8bCQwcA==";
+ url = "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.6.0.tgz";
+ sha512 = "0efemmp3LWItb3Nux9gsoDA0xpzWaCDwoUuECEBOZQaTjAGqTrGkrJQwaIHAOD+X0SJnY+1dpsd2yE4EO+ZzRg==";
};
};
"json-schema-faker-0.2.16" = {
@@ -22174,6 +22273,15 @@ let
sha512 = "8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==";
};
};
+ "json5-2.1.1" = {
+ name = "json5";
+ packageName = "json5";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz";
+ sha512 = "l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==";
+ };
+ };
"jsonata-1.6.5" = {
name = "jsonata";
packageName = "jsonata";
@@ -22183,6 +22291,15 @@ let
sha512 = "iRx9U6AkvsjrRdFf9MMbQmGVAL3bXVANR12vbVxjgXouMPU9VJQEcFnLWUCaW8IDmOzdxsaxK4Xe7SGlBYr5Bg==";
};
};
+ "jsonata-1.7.0" = {
+ name = "jsonata";
+ packageName = "jsonata";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-1.7.0.tgz";
+ sha512 = "W1qxnGXtbaboFFA8DMLL2GZgiWoeFuMo0Yf3J23o03omzIuW9a9hgowgfUChQq8bfMfh/zmQJpwn/gQirn46ew==";
+ };
+ };
"jsonc-parser-1.0.3" = {
name = "jsonc-parser";
packageName = "jsonc-parser";
@@ -22246,15 +22363,6 @@ let
sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830";
};
};
- "jsonminify-0.4.1" = {
- name = "jsonminify";
- packageName = "jsonminify";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz";
- sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c";
- };
- };
"jsonparse-0.0.5" = {
name = "jsonparse";
packageName = "jsonparse";
@@ -22273,15 +22381,6 @@ let
sha1 = "ab599f19324d4ae178fa21a930192ab11ab61a4e";
};
};
- "jsonparse-1.2.0" = {
- name = "jsonparse";
- packageName = "jsonparse";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz";
- sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd";
- };
- };
"jsonparse-1.3.1" = {
name = "jsonparse";
packageName = "jsonparse";
@@ -22354,15 +22453,6 @@ let
sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
};
};
- "jsrsasign-4.8.2" = {
- name = "jsrsasign";
- packageName = "jsrsasign";
- version = "4.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsrsasign/-/jsrsasign-4.8.2.tgz";
- sha1 = "bd0a7040d426d7598d6c742ec8f875d0e88644a9";
- };
- };
"jssha-2.3.1" = {
name = "jssha";
packageName = "jssha";
@@ -22706,15 +22796,6 @@ let
sha512 = "vBUF/IsBDzaejHkNpiquKdc5uPrImXuQ4Mb9lEfNNJ5cyHGI8ThDupR+h3eMFZhfmPE/brfwcIAn/fm0yOvJUg==";
};
};
- "kuduscript-1.0.16" = {
- name = "kuduscript";
- packageName = "kuduscript";
- version = "1.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.16.tgz";
- sha512 = "++ulra2RtdutmJhZZFohhF+kbccz2XdFTf23857x8X1M9Jfm54ZKY4kXPJKgPdMz6eTH1MBXWXh17RvGWxLNrw==";
- };
- };
"kuler-1.0.1" = {
name = "kuler";
packageName = "kuler";
@@ -22877,6 +22958,15 @@ let
sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
};
};
+ "lcid-3.1.1" = {
+ name = "lcid";
+ packageName = "lcid";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcid/-/lcid-3.1.1.tgz";
+ sha512 = "M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==";
+ };
+ };
"ldap-filter-0.2.2" = {
name = "ldap-filter";
packageName = "ldap-filter";
@@ -22985,13 +23075,13 @@ let
sha512 = "UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==";
};
};
- "level-iterator-stream-4.0.1" = {
+ "level-iterator-stream-4.0.2" = {
name = "level-iterator-stream";
packageName = "level-iterator-stream";
- version = "4.0.1";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.1.tgz";
- sha512 = "pSZWqXK6/yHQkZKCHrR59nKpU5iqorKM22C/BOHTb/cwNQ2EOZG+bovmFFGcOgaBoF3KxqJEI27YwewhJQTzsw==";
+ url = "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz";
+ sha512 = "ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==";
};
};
"level-js-4.0.1" = {
@@ -23003,13 +23093,13 @@ let
sha512 = "m5JRIyHZn5VnCCFeRegJkn5bQd3MJK5qZX12zg3Oivc8+BUIS2yFS6ANMMeHX2ieGxucNvEn6/ZnyjmZQLLUWw==";
};
};
- "level-packager-5.0.3" = {
+ "level-packager-5.1.0" = {
name = "level-packager";
packageName = "level-packager";
- version = "5.0.3";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/level-packager/-/level-packager-5.0.3.tgz";
- sha512 = "Ut62o3nvUNCxYldM5+13+0sYow6ifKj2C26/0ToB7zKgdypF5wRKcVkcztQVwsQi+ZnrmDzhimp7FKP5Ynv6Rg==";
+ url = "https://registry.npmjs.org/level-packager/-/level-packager-5.1.0.tgz";
+ sha512 = "3pbJmDgGvp/lUQNULPoYQZtUbhMI8KoViYDw7Sa0kWl1mPeHWWJF7T/9upWI/NTMuEikkEE/cd6wBvmrW1+ZnQ==";
};
};
"level-post-1.0.7" = {
@@ -23030,13 +23120,22 @@ let
sha512 = "SBSR60x+dghhwGUxPKS+BvV1xNqnwsEUBKmnFepPaHJ6VkBXyPK9SImGc3K2BkwBfpxlt7GKkBNlCnrdufsejA==";
};
};
- "leveldown-5.2.1" = {
+ "level-supports-1.0.1" = {
+ name = "level-supports";
+ packageName = "level-supports";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz";
+ sha512 = "rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==";
+ };
+ };
+ "leveldown-5.4.1" = {
name = "leveldown";
packageName = "leveldown";
- version = "5.2.1";
+ version = "5.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/leveldown/-/leveldown-5.2.1.tgz";
- sha512 = "369I1rGibXV7CIoLhsSpp/ExwQucI3xUe0RXQrMu4ji6OG9PFMVAQuzsEXKwAi3BWsjFzcFtodAP8MW5fmfung==";
+ url = "https://registry.npmjs.org/leveldown/-/leveldown-5.4.1.tgz";
+ sha512 = "3lMPc7eU3yj5g+qF1qlALInzIYnkySIosR1AsUKFjL9D8fYbTLuENBAeDRZXIG4qeWOAyqRItOoLu2v2avWiMA==";
};
};
"levelup-0.19.1" = {
@@ -23048,13 +23147,13 @@ let
sha1 = "f3a6a7205272c4b5f35e412ff004a03a0aedf50b";
};
};
- "levelup-4.2.0" = {
+ "levelup-4.3.2" = {
name = "levelup";
packageName = "levelup";
- version = "4.2.0";
+ version = "4.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/levelup/-/levelup-4.2.0.tgz";
- sha512 = "TiHUSYrSUQhG7a5MZIKq6ClDcARSvMvSy5GTM8I62tHV5XiWqf+aInF+CAenQKzVRG2s6fufg62Lv8614Extyg==";
+ url = "https://registry.npmjs.org/levelup/-/levelup-4.3.2.tgz";
+ sha512 = "cRTjU4ktWo59wf13PHEiOayHC3n0dOh4i5+FHr4tv4MX9+l7mqETicNq3Aj07HKlLdk0z5muVoDL2RD+ovgiyA==";
};
};
"leven-2.1.0" = {
@@ -23093,24 +23192,6 @@ let
sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
};
};
- "libbase64-1.0.3" = {
- name = "libbase64";
- packageName = "libbase64";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/libbase64/-/libbase64-1.0.3.tgz";
- sha512 = "ULQZAATVGTAgVNwP61R+MbbSGNBy1tVzWupB9kbE6p+VccWd+J+ICXgOwQic5Yqagzpu+oPZ8sI7yXdWJnPPkA==";
- };
- };
- "libmime-4.1.1" = {
- name = "libmime";
- packageName = "libmime";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/libmime/-/libmime-4.1.1.tgz";
- sha512 = "HkOfBSj+l7pBOOucEgiI6PdbgHa8ljv+1rARzW743HQ51UP8gabMlcA2wAF3Dg1aeuMjHZ+LzAPYxM52IZsyGA==";
- };
- };
"libnested-1.4.1" = {
name = "libnested";
packageName = "libnested";
@@ -23129,31 +23210,22 @@ let
sha512 = "9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA==";
};
};
- "libqp-1.1.0" = {
- name = "libqp";
- packageName = "libqp";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz";
- sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8";
- };
- };
- "libsodium-0.7.5" = {
+ "libsodium-0.7.6" = {
name = "libsodium";
packageName = "libsodium";
- version = "0.7.5";
+ version = "0.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.5.tgz";
- sha512 = "0YVU2QJc5sDR5HHkGCaliYImS7pGeXi11fiOfm4DirBd96PJVZIn3LJa06ZOFjLNsWkL3UbNjYhLRUOABPL9vw==";
+ url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.6.tgz";
+ sha512 = "hPb/04sEuLcTRdWDtd+xH3RXBihpmbPCsKW/Jtf4PsvdyKh+D6z2D2gvp/5BfoxseP+0FCOg66kE+0oGUE/loQ==";
};
};
- "libsodium-wrappers-0.7.5" = {
+ "libsodium-wrappers-0.7.6" = {
name = "libsodium-wrappers";
packageName = "libsodium-wrappers";
- version = "0.7.5";
+ version = "0.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.5.tgz";
- sha512 = "QE9Q+FxLLGdJRiJTuC2GB3LEHZeHX/VcbMQeNPdAixEKo86JPy6bOWND1XmMLu0tjWUu0xIY0YpJYQApxIZwbQ==";
+ url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.6.tgz";
+ sha512 = "OUO2CWW5bHdLr6hkKLHIKI4raEkZrf3QHkhXsJ1yCh6MZ3JDA7jFD3kCATNquuGSG6MjjPHQIQms0y0gBDzjQg==";
};
};
"libspiro-js-0.3.1" = {
@@ -23192,6 +23264,15 @@ let
sha512 = "DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==";
};
};
+ "lighthouse-logger-1.2.0" = {
+ name = "lighthouse-logger";
+ packageName = "lighthouse-logger";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz";
+ sha512 = "wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw==";
+ };
+ };
"limit-spawn-0.0.3" = {
name = "limit-spawn";
packageName = "limit-spawn";
@@ -23201,6 +23282,15 @@ let
sha1 = "cc09c24467a0f0a1ed10a5196dba597cad3f65dc";
};
};
+ "lines-and-columns-1.1.6" = {
+ name = "lines-and-columns";
+ packageName = "lines-and-columns";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz";
+ sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00";
+ };
+ };
"linewise-0.0.3" = {
name = "linewise";
packageName = "linewise";
@@ -23210,22 +23300,13 @@ let
sha1 = "bf967ba0dd31faaf09ab5bdb3676ad7f2aa18493";
};
};
- "link-check-4.4.5" = {
+ "link-check-4.4.6" = {
name = "link-check";
packageName = "link-check";
- version = "4.4.5";
+ version = "4.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/link-check/-/link-check-4.4.5.tgz";
- sha512 = "csF0k7MAQjyDLkrZfsAJNkTav/vvATMYkm9dAstzmu60vzNGlgvWd3SgBTFH9KLWOO1hUuVxgSEPuWv+fdyuaQ==";
- };
- };
- "linkify-it-2.1.0" = {
- name = "linkify-it";
- packageName = "linkify-it";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/linkify-it/-/linkify-it-2.1.0.tgz";
- sha512 = "4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg==";
+ url = "https://registry.npmjs.org/link-check/-/link-check-4.4.6.tgz";
+ sha512 = "83RPcCsgZ1BsSuUtcdEOYv7zndQ3fbZCuoKIrKCuUfDhBWqBzWnU+Un1WdGuveMGAOHahL0LHLFUr6KqZ2Mrzg==";
};
};
"linkify-it-2.2.0" = {
@@ -23237,13 +23318,40 @@ let
sha512 = "GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==";
};
};
- "listenercount-1.0.1" = {
- name = "listenercount";
- packageName = "listenercount";
- version = "1.0.1";
+ "listr-0.14.3" = {
+ name = "listr";
+ packageName = "listr";
+ version = "0.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz";
- sha1 = "84c8a72ab59c4725321480c975e6508342e70937";
+ url = "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz";
+ sha512 = "RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==";
+ };
+ };
+ "listr-silent-renderer-1.1.1" = {
+ name = "listr-silent-renderer";
+ packageName = "listr-silent-renderer";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz";
+ sha1 = "924b5a3757153770bf1a8e3fbf74b8bbf3f9242e";
+ };
+ };
+ "listr-update-renderer-0.5.0" = {
+ name = "listr-update-renderer";
+ packageName = "listr-update-renderer";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz";
+ sha512 = "tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==";
+ };
+ };
+ "listr-verbose-renderer-0.5.0" = {
+ name = "listr-verbose-renderer";
+ packageName = "listr-verbose-renderer";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz";
+ sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==";
};
};
"load-ip-set-2.1.0" = {
@@ -23966,15 +24074,6 @@ let
sha1 = "0b08a1dcf68397c397855c3239783832df7403d1";
};
};
- "lodash.has-4.5.2" = {
- name = "lodash.has";
- packageName = "lodash.has";
- version = "4.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz";
- sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862";
- };
- };
"lodash.identity-2.4.1" = {
name = "lodash.identity";
packageName = "lodash.identity";
@@ -23984,6 +24083,15 @@ let
sha1 = "6694cffa65fef931f7c31ce86c74597cf560f4f1";
};
};
+ "lodash.identity-3.0.0" = {
+ name = "lodash.identity";
+ packageName = "lodash.identity";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.identity/-/lodash.identity-3.0.0.tgz";
+ sha1 = "ad7bc6a4e647d79c972e1b80feef7af156267876";
+ };
+ };
"lodash.includes-4.3.0" = {
name = "lodash.includes";
packageName = "lodash.includes";
@@ -24236,6 +24344,15 @@ let
sha1 = "52f05610fff9ded422611441ed1fc123a03001b3";
};
};
+ "lodash.pickby-4.6.0" = {
+ name = "lodash.pickby";
+ packageName = "lodash.pickby";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.pickby/-/lodash.pickby-4.6.0.tgz";
+ sha1 = "7dea21d8c18d7703a27c704c15d3b84a67e33aff";
+ };
+ };
"lodash.reduce-4.6.0" = {
name = "lodash.reduce";
packageName = "lodash.reduce";
@@ -24398,6 +24515,15 @@ let
sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21";
};
};
+ "lodash.xorby-4.7.0" = {
+ name = "lodash.xorby";
+ packageName = "lodash.xorby";
+ version = "4.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.xorby/-/lodash.xorby-4.7.0.tgz";
+ sha1 = "9c19a6f9f063a6eb53dd03c1b6871799801463d7";
+ };
+ };
"log-symbols-1.0.2" = {
name = "log-symbols";
packageName = "log-symbols";
@@ -24416,6 +24542,15 @@ let
sha512 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==";
};
};
+ "log-symbols-3.0.0" = {
+ name = "log-symbols";
+ packageName = "log-symbols";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz";
+ sha512 = "dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==";
+ };
+ };
"log-update-1.0.2" = {
name = "log-update";
packageName = "log-update";
@@ -24533,15 +24668,6 @@ let
sha1 = "d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965";
};
};
- "longjohn-0.2.12" = {
- name = "longjohn";
- packageName = "longjohn";
- version = "0.2.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.12.tgz";
- sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e";
- };
- };
"looper-2.0.0" = {
name = "looper";
packageName = "looper";
@@ -24605,13 +24731,13 @@ let
sha1 = "5b46f80147edee578870f086d04821cf998e551f";
};
};
- "loud-rejection-2.1.0" = {
+ "loud-rejection-2.2.0" = {
name = "loud-rejection";
packageName = "loud-rejection";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-2.1.0.tgz";
- sha512 = "g/6MQxUXYHeVqZ4PGpPL1fS1fOvlXoi7bay0pizmjAd/3JhyXwxzwrnr74yzdmhuerlslbRJ3x7IOXzFz0cE5w==";
+ url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-2.2.0.tgz";
+ sha512 = "S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==";
};
};
"lowdb-1.0.0" = {
@@ -24857,6 +24983,15 @@ let
sha512 = "6QK0OpF/phMz0Q2AxILkX2mFhi7m+WMwTRg0LQKq/WBB0cDP4rYH3Wp4/d3OTXlrPLVJT/RFqj8tFeAR4nk8AA==";
};
};
+ "magic-string-0.25.4" = {
+ name = "magic-string";
+ packageName = "magic-string";
+ version = "0.25.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz";
+ sha512 = "oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==";
+ };
+ };
"magicli-0.0.5" = {
name = "magicli";
packageName = "magicli";
@@ -24902,24 +25037,6 @@ let
sha512 = "VYaJMxhr8B9BrCiNINUsuhaEe40YnG+AQBwcqUKO66lSVaI9I3A1iH/6EmEwRI8OYUg5Gt+4lLE7achg676lrg==";
};
};
- "mailparser-2.7.1" = {
- name = "mailparser";
- packageName = "mailparser";
- version = "2.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mailparser/-/mailparser-2.7.1.tgz";
- sha512 = "qAyDPuyd0ygTM3V9yzxVilYyRt0mpjLmp6OSzBPjwMZYX1PVDOoGEyUgDtyCDoEgC5fqslpXpWCI6t7RN3i3fw==";
- };
- };
- "mailsplit-4.4.1" = {
- name = "mailsplit";
- packageName = "mailsplit";
- version = "4.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mailsplit/-/mailsplit-4.4.1.tgz";
- sha512 = "AmWLEHQAg/zbNb1MdrPQS9VOzysHaU9IuoQV9kGU5fgjM5RCbgqVkZzp0+DhPep8sj8iHfbWkl16Nb1PbNlTYg==";
- };
- };
"make-dir-1.3.0" = {
name = "make-dir";
packageName = "make-dir";
@@ -24956,13 +25073,13 @@ let
sha1 = "df0388fcd0b37816dff0a5fb8108939777dcbc9d";
};
};
- "make-fetch-happen-5.0.0" = {
+ "make-fetch-happen-5.0.1" = {
name = "make-fetch-happen";
packageName = "make-fetch-happen";
- version = "5.0.0";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-5.0.0.tgz";
- sha512 = "nFr/vpL1Jc60etMVKeaLOqfGjMMb3tAHFVJWxHOFCFS04Zmd7kGlMxo0l1tzfhoQje0/UPnd0X8OeGUiXXnfPA==";
+ url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-5.0.1.tgz";
+ sha512 = "b4dfaMvUDR67zxUq1+GN7Ke9rH5WvGRmoHuMH7l+gmUCR2tCXFP6mpeJ9Dp+jB6z8mShRopSf1vLRBhRs8Cu5w==";
};
};
"make-iterator-1.0.1" = {
@@ -25118,13 +25235,13 @@ let
sha512 = "GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==";
};
};
- "markdown-it-anchor-5.2.4" = {
+ "markdown-it-anchor-5.2.5" = {
name = "markdown-it-anchor";
packageName = "markdown-it-anchor";
- version = "5.2.4";
+ version = "5.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.4.tgz";
- sha512 = "n8zCGjxA3T+Mx1pG8HEgbJbkB8JFUuRkeTZQuIM8iPY6oQ8sWOPRZJDFC9a/pNg2QkHEjjGkhBEl/RSyzaDZ3A==";
+ url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.5.tgz";
+ sha512 = "xLIjLQmtym3QpoY9llBgApknl7pxAcN3WDRc2d3rwpl+/YvDZHPmKscGs+L6E05xf2KrCXPBvosWt7MZukwSpQ==";
};
};
"markdown-it-emoji-1.4.0" = {
@@ -25136,13 +25253,13 @@ let
sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc";
};
};
- "markdown-it-github-headings-1.1.1" = {
+ "markdown-it-github-headings-1.1.2" = {
name = "markdown-it-github-headings";
packageName = "markdown-it-github-headings";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.1.tgz";
- sha512 = "jEthmVitZXhYJ0Fkvh6RfBcxdIKKec/p3LidX9a+Hs5/AnUjtxi1nxDVhu1muyacXoTiA+ChVilASQyTdfWk2Q==";
+ url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.2.tgz";
+ sha512 = "8haIwpAx87DQHcEtzkfsWv2hxg4jOvow6/nJKAMQ2wYRMZQTIfJm9VzrDkqw72Bb4YXBmI0u3GA/3MdXVL/x5g==";
};
};
"markdown-it-task-checkbox-1.0.6" = {
@@ -25154,13 +25271,13 @@ let
sha512 = "7pxkHuvqTOu3iwVGmDPeYjQg+AIS9VQxzyLP9JCg9lBjgPAJXGEkChK6A2iFuj3tS0GV3HG2u5AMNhcQqwxpJw==";
};
};
- "markdown-link-extractor-1.2.1" = {
+ "markdown-link-extractor-1.2.2" = {
name = "markdown-link-extractor";
packageName = "markdown-link-extractor";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-1.2.1.tgz";
- sha512 = "eo4hXLZC6/NrVimHqEu0X029ymIreg0VQjlWudGtOg1FiiZYPwU+Sh1CP3CQqP16woyCsDplVfqPD2Oi8JRpdw==";
+ url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-1.2.2.tgz";
+ sha512 = "VYDUhlC70hKl0coCY6dXyJ4OCRAX5dTh0/oSTdidhYS7dYIJ9kYAez6KR0vc3HWySMuo564J1rN0NOAPBDI0iA==";
};
};
"markdown-serve-0.3.3" = {
@@ -25190,15 +25307,6 @@ let
sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
};
};
- "marked-0.6.3" = {
- name = "marked";
- packageName = "marked";
- version = "0.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-0.6.3.tgz";
- sha512 = "Fqa7eq+UaxfMriqzYLayfqAE40WN03jf+zHjT18/uXNuzjq3TY0XTbrAoPeqSJrAmPz11VuUA+kBPYOhHt9oOQ==";
- };
- };
"marked-0.7.0" = {
name = "marked";
packageName = "marked";
@@ -25286,8 +25394,8 @@ let
version = "3.0.0";
src = fetchgit {
url = "git://github.com/mathjax/MathJax-src.git";
- rev = "0d74266e1820220d33cb6b29d4ca3575b352ac0d";
- sha256 = "a4d1a272ec79367f3e4515d1cbd9bbe3f77687aa17443398288e91a6f23b1241";
+ rev = "1e1a30f0a89e52fa7764dbb510763145a4da49f1";
+ sha256 = "e44c97d2d7ade5ac91d13456a631778a9f2f3d73ef7e4cffc2b5e7bffa02164b";
};
};
"mathjs-5.10.3" = {
@@ -25317,15 +25425,6 @@ let
sha512 = "UC0qFwyAjn4YdPpKaDNw6gNxRf7Mcx7jC1UGCY4boCzgvU2Aoc1mOGzTtrjjLKhM5ivsnhoKpQVxKPp+1j1qwg==";
};
};
- "md5.js-1.3.4" = {
- name = "md5.js";
- packageName = "md5.js";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz";
- sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
- };
- };
"md5.js-1.3.5" = {
name = "md5.js";
packageName = "md5.js";
@@ -25362,13 +25461,13 @@ let
sha1 = "c04891883c28c83602e1d06b05a11037e359b4c8";
};
};
- "mdn-browser-compat-data-0.0.82" = {
+ "mdn-browser-compat-data-0.0.94" = {
name = "mdn-browser-compat-data";
packageName = "mdn-browser-compat-data";
- version = "0.0.82";
+ version = "0.0.94";
src = fetchurl {
- url = "https://registry.npmjs.org/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.82.tgz";
- sha512 = "RmC87C45AgXLuNlkrGLCK2wh0zRwpFnnro5jsNxmS90xLCxfKmTLPtqM9cocKFD7Ro9pWmtvkIkRiesGakd1Ig==";
+ url = "https://registry.npmjs.org/mdn-browser-compat-data/-/mdn-browser-compat-data-0.0.94.tgz";
+ sha512 = "O3zJqbmehz0Hn3wpk62taA0+jNF7yn6BDWqQ9Wh2bEoO9Rx1BYiTmNX565eNVbW0ixfQkY6Sp9FvY/rr79Qmyg==";
};
};
"mdn-data-1.1.4" = {
@@ -25488,6 +25587,15 @@ let
sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==";
};
};
+ "mem-5.1.1" = {
+ name = "mem";
+ packageName = "mem";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem/-/mem-5.1.1.tgz";
+ sha512 = "qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==";
+ };
+ };
"mem-fs-1.1.3" = {
name = "mem-fs";
packageName = "mem-fs";
@@ -25506,13 +25614,13 @@ let
sha512 = "/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==";
};
};
- "memory-cache-0.1.6" = {
+ "memory-cache-0.2.0" = {
name = "memory-cache";
packageName = "memory-cache";
- version = "0.1.6";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/memory-cache/-/memory-cache-0.1.6.tgz";
- sha1 = "2ed9933ed7a8c718249be7366f7ca8749acf8a24";
+ url = "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz";
+ sha1 = "7890b01d52c00c8ebc9d533e1f8eb17e3034871a";
};
};
"memory-chunk-store-1.3.0" = {
@@ -25542,6 +25650,15 @@ let
sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
};
};
+ "memory-fs-0.5.0" = {
+ name = "memory-fs";
+ packageName = "memory-fs";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz";
+ sha512 = "jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==";
+ };
+ };
"memory-pager-1.5.0" = {
name = "memory-pager";
packageName = "memory-pager";
@@ -25650,6 +25767,15 @@ let
sha1 = "a5de46538dae84d4114cc5ea02b4772a6346701f";
};
};
+ "merge-stream-2.0.0" = {
+ name = "merge-stream";
+ packageName = "merge-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz";
+ sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==";
+ };
+ };
"merge2-1.3.0" = {
name = "merge2";
packageName = "merge2";
@@ -25839,15 +25965,6 @@ let
sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
};
};
- "mime-2.4.3" = {
- name = "mime";
- packageName = "mime";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-2.4.3.tgz";
- sha512 = "QgrPRJfE+riq5TPZMcHZOtm8c6K/yYrMbKIoRfapfiGLxS8OTeIfRhUGW5LU7MlRa52KOAGCfUNruqLrIBvWZw==";
- };
- };
"mime-2.4.4" = {
name = "mime";
packageName = "mime";
@@ -25884,13 +26001,13 @@ let
sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==";
};
};
- "mime-db-1.41.0" = {
+ "mime-db-1.42.0" = {
name = "mime-db";
packageName = "mime-db";
- version = "1.41.0";
+ version = "1.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.41.0.tgz";
- sha512 = "B5gxBI+2K431XW8C2rcc/lhppbuji67nf9v39eH8pkWoZDxnAL0PxdpH32KYRScniF8qDHBDlI+ipgg5WrCUYw==";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz";
+ sha512 = "UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ==";
};
};
"mime-types-2.0.14" = {
@@ -26091,13 +26208,13 @@ let
sha512 = "oP88Dw3LK/pdrKyMdlbmg3W50969UNr4ctISzJfPl+YPYHTAOrS+dihXnsgRNKSRIzDsrnV3eE2CCVlZbpOKdQ==";
};
};
- "minipass-2.8.1" = {
+ "minipass-2.9.0" = {
name = "minipass";
packageName = "minipass";
- version = "2.8.1";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.8.1.tgz";
- sha512 = "QCG523ParRcE2+9A6wYh9UI3uy2FFLw4DQaVYQrY5HPfszc5M6VDD+j0QCwHm19LI2imes4RB+NBD8cOJccyCg==";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz";
+ sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==";
};
};
"minitouch-prebuilt-1.2.0" = {
@@ -26109,13 +26226,13 @@ let
sha512 = "YBTCTK0kPQIry0dJUqnj+OKw7qk1BDk4JnOH55ujaL4vtf9f3fRsHtD+zz899SKwT2t319HrrfBNwMLx6h2Vtg==";
};
};
- "minizlib-1.2.2" = {
+ "minizlib-1.3.3" = {
name = "minizlib";
packageName = "minizlib";
- version = "1.2.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/minizlib/-/minizlib-1.2.2.tgz";
- sha512 = "hR3At21uSrsjjDTWrbu0IMLTpnkpv8IIMFDFaoz43Tmu4LkmAXfH44vNNzpTnf+OAQQCHrb91y/wc2J4x5XgSQ==";
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz";
+ sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==";
};
};
"mired-0.0.0" = {
@@ -26271,15 +26388,6 @@ let
sha512 = "Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg==";
};
};
- "moment-2.22.2" = {
- name = "moment";
- packageName = "moment";
- version = "2.22.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
- sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
- };
- };
"moment-2.24.0" = {
name = "moment";
packageName = "moment";
@@ -26298,13 +26406,13 @@ let
sha1 = "359a19ec634cda3c706c8709adda54c0329aaec4";
};
};
- "moment-timezone-0.5.26" = {
+ "moment-timezone-0.5.27" = {
name = "moment-timezone";
packageName = "moment-timezone";
- version = "0.5.26";
+ version = "0.5.27";
src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.26.tgz";
- sha512 = "sFP4cgEKTCymBBKgoxZjYzlSovC20Y6J7y3nanDc5RoBIXKlZhoYwBoZGe3flwU6A372AcRwScH8KiwV6zjy1g==";
+ url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.27.tgz";
+ sha512 = "EIKQs7h5sAsjhPCqN6ggx6cEbs94GK050254TIJySD1bzoM5JTYDwAU1IoVOeTOL6Gm27kYJ51/uuvq1kIlrbw==";
};
};
"monotonic-timestamp-0.0.9" = {
@@ -26379,13 +26487,13 @@ let
sha512 = "ZQQjf0VEiqPucwRvmT3e0pfZfMSE3nc5ngGUiN1+2VMxCtrInrlAjZ2K6jpNmxSZ/roiQne/ovYJYTeOvZDXPw==";
};
};
- "mpath-0.2.1" = {
+ "mpath-0.5.2" = {
name = "mpath";
packageName = "mpath";
- version = "0.2.1";
+ version = "0.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz";
- sha1 = "3a4e829359801de96309c27a6b2e102e89f9e96e";
+ url = "https://registry.npmjs.org/mpath/-/mpath-0.5.2.tgz";
+ sha512 = "NOeCoW6AYc3hLi30npe7uzbD9b4FQZKH40YKABUCCvaKKL5agj6YzvHoNx8jQpDMNPgIa5bvSZQbQpWBAVD0Kw==";
};
};
"mqtt-2.18.8" = {
@@ -26406,15 +26514,6 @@ let
sha512 = "eaF9rO2uFrIYEHomJxziuKTDkbWW5psLBaIGCazQSKqYsTaB3n4SpvJ1PexKaDBiPnMLPIFWBIiTYT3IfEJfww==";
};
};
- "mri-1.1.4" = {
- name = "mri";
- packageName = "mri";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/mri/-/mri-1.1.4.tgz";
- sha512 = "6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==";
- };
- };
"ms-0.7.0" = {
name = "ms";
packageName = "ms";
@@ -26460,24 +26559,6 @@ let
sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==";
};
};
- "ms-rest-1.15.7" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "1.15.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
- sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
- };
- };
- "ms-rest-2.5.3" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "2.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.3.tgz";
- sha512 = "p0CnzrTzEkS8UTEwgCqT2O5YVK9E8KGBBlJVm3hFtMZvf0dmncKYXWFPyUa4PAsfBL7h4jfu39tOIFTu6exntg==";
- };
- };
"msgpack-lite-0.1.26" = {
name = "msgpack-lite";
packageName = "msgpack-lite";
@@ -26487,15 +26568,6 @@ let
sha1 = "dd3c50b26f059f25e7edee3644418358e2a9ad89";
};
};
- "multer-1.4.1" = {
- name = "multer";
- packageName = "multer";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multer/-/multer-1.4.1.tgz";
- sha512 = "zzOLNRxzszwd+61JFuAo0fxdQfvku12aNJgnla0AQ+hHxFmfc/B7jBVuPr5Rmvu46Jze/iJrFpSOsD7afO8SDw==";
- };
- };
"multer-1.4.2" = {
name = "multer";
packageName = "multer";
@@ -26640,13 +26712,13 @@ let
sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
};
};
- "multiserver-3.4.0" = {
+ "multiserver-3.6.0" = {
name = "multiserver";
packageName = "multiserver";
- version = "3.4.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multiserver/-/multiserver-3.4.0.tgz";
- sha512 = "HSGnZBXDM9e8gi3YyhObwiDYP3BFeL+TV22H1dAReigHHMc52IDBsz9N1OR72OKxCd7SMD+gKBpVJbJohhb3og==";
+ url = "https://registry.npmjs.org/multiserver/-/multiserver-3.6.0.tgz";
+ sha512 = "MeANpx7//lJTwYKLYfsucdRvDafbyxaijUm9BhmF+QfLBMGRebNoKRYLhZItbHYAcsI0HBTtpBVHNw+bmRRnFQ==";
};
};
"multiserver-address-1.0.1" = {
@@ -26694,13 +26766,13 @@ let
sha512 = "KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==";
};
};
- "mustache-3.0.1" = {
+ "mustache-3.0.2" = {
name = "mustache";
packageName = "mustache";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mustache/-/mustache-3.0.1.tgz";
- sha512 = "jFI/4UVRsRYdUbuDTKT7KzfOp7FiD5WzYmmwNwXyUVypC0xjoTL78Fqc0jHUPIvvGD+6DQSPHIt1NE7D1ArsqA==";
+ url = "https://registry.npmjs.org/mustache/-/mustache-3.0.2.tgz";
+ sha512 = "64neoEgmozb8e/ecGBOSE+RfnevLSFzCI0UKPcrWmjv953/8fXhYO9+EQFtfbi6hwoFxcTA+Fp5mRiOiI9eTuA==";
};
};
"mutate.js-0.2.0" = {
@@ -26919,13 +26991,13 @@ let
sha512 = "XowCxURA68arCQEypYKAxyIvBUP2EkqA8mZCXqJ2yzLpFblxSjiP06PUUpVK2no3cgGhsbRlBrsEuYIflxu79w==";
};
};
- "nanoid-2.1.1" = {
+ "nanoid-2.1.6" = {
name = "nanoid";
packageName = "nanoid";
- version = "2.1.1";
+ version = "2.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-2.1.1.tgz";
- sha512 = "0YbJdaL4JFoejIOoawgLcYValFGJ2iyUuVDIWL3g8Es87SSOWFbWdRUMV3VMSiyPs3SQ3QxCIxFX00q5DLkMCw==";
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-2.1.6.tgz";
+ sha512 = "2NDzpiuEy3+H0AVtdt8LoFi7PnqkOnIzYmJQp7xsEU6VexLluHQwKREuiz57XaQC5006seIadPrIZJhyS2n7aw==";
};
};
"nanolru-1.0.0" = {
@@ -27076,13 +27148,22 @@ let
sha1 = "17b09581988979fddafe0201e931ba933c96cbb4";
};
};
- "ncjsm-3.0.0" = {
+ "natural-orderby-2.0.3" = {
+ name = "natural-orderby";
+ packageName = "natural-orderby";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz";
+ sha512 = "p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==";
+ };
+ };
+ "ncjsm-4.0.1" = {
name = "ncjsm";
packageName = "ncjsm";
- version = "3.0.0";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ncjsm/-/ncjsm-3.0.0.tgz";
- sha512 = "UEEzv/yccTNNyS7ZLmOUquT/k9ttrJCgGrswRrfuj4riplQquZoxAhCaoxSATj59gdpLaGWqXDXRxrRS2zOarw==";
+ url = "https://registry.npmjs.org/ncjsm/-/ncjsm-4.0.1.tgz";
+ sha512 = "gxh5Sgait8HyclaulfhgetHQGyhFm00ZQqISIfqtwFVnyWJ20rk+55SUamo9n3KhM6Vk63gemKPxIDYiSV/xZw==";
};
};
"nconf-0.10.0" = {
@@ -27472,13 +27553,13 @@ let
sha512 = "iEOqDAOFl6uN5jZGRj39Jdo8qALzf2HPXtpFso8+BMaDylDrUMYMwhFbfYGgxdnMlsRnxYTwv68kaXEpsHIapg==";
};
};
- "node-abi-2.11.0" = {
+ "node-abi-2.12.0" = {
name = "node-abi";
packageName = "node-abi";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-2.11.0.tgz";
- sha512 = "kuy/aEg75u40v378WRllQ4ZexaXJiCvB68D2scDXclp/I4cRq6togpbOoKhmN07tns9Zldu51NNERo0wehfX9g==";
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.12.0.tgz";
+ sha512 = "VhPBXCIcvmo/5K8HPmnWJyyhvgKxnHTUMXR/XwGHV68+wrgkzST4UmQrY/XszSWA5dtnXpNp528zkcyJ/pzVcw==";
};
};
"node-addon-api-1.7.1" = {
@@ -27617,15 +27698,6 @@ let
sha1 = "fa6f846f42fa93f63a0a30c9fbff7b4e130e0858";
};
};
- "node-forge-0.6.23" = {
- name = "node-forge";
- packageName = "node-forge";
- version = "0.6.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.23.tgz";
- sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf";
- };
- };
"node-forge-0.7.6" = {
name = "node-forge";
packageName = "node-forge";
@@ -27644,13 +27716,13 @@ let
sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
};
};
- "node-gyp-5.0.3" = {
+ "node-gyp-5.0.5" = {
name = "node-gyp";
packageName = "node-gyp";
- version = "5.0.3";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz";
- sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ==";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.5.tgz";
+ sha512 = "WABl9s4/mqQdZneZHVWVG4TVr6QQJZUC6PAx47ITSk9lreZ1n+7Z9mMAIbA3vnO4J9W20P7LhCxtzfWsAD/KDw==";
};
};
"node-gyp-build-3.7.0" = {
@@ -27716,15 +27788,6 @@ let
sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40";
};
};
- "node-notifier-5.4.0" = {
- name = "node-notifier";
- packageName = "node-notifier";
- version = "5.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz";
- sha512 = "SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==";
- };
- };
"node-notifier-5.4.3" = {
name = "node-notifier";
packageName = "node-notifier";
@@ -27734,6 +27797,15 @@ let
sha512 = "M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==";
};
};
+ "node-notifier-6.0.0" = {
+ name = "node-notifier";
+ packageName = "node-notifier";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz";
+ sha512 = "SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==";
+ };
+ };
"node-persist-2.1.0" = {
name = "node-persist";
packageName = "node-persist";
@@ -27788,24 +27860,6 @@ let
sha512 = "OsJV74qxnvz/AMGgcfZoDaeDXKD3oY3QVIbBmwszTFkRisTSXbMQyn4UWzUMOtA5SVhrBZOTp0wcoSBgfMfMmQ==";
};
};
- "node-red-node-email-1.6.3" = {
- name = "node-red-node-email";
- packageName = "node-red-node-email";
- version = "1.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-1.6.3.tgz";
- sha512 = "78O7CASdGAP2wmMJvqsMYdNrCHI54lSE97hWpbNQPG2QC2d15TEUQU+E8KgNzquPtJn0Pjh/cvzt+kQwKjkaUg==";
- };
- };
- "node-red-node-feedparser-0.1.14" = {
- name = "node-red-node-feedparser";
- packageName = "node-red-node-feedparser";
- version = "0.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.14.tgz";
- sha512 = "Bb9M5bFrOqoFxBVxfstBM/g+VPaV4EPQptXQBMrlsCd3P40CXcGL0mDylXU+3cekWNd5hLHfqTHvXJdkowHGDw==";
- };
- };
"node-red-node-rbe-0.2.5" = {
name = "node-red-node-rbe";
packageName = "node-red-node-rbe";
@@ -27815,40 +27869,22 @@ let
sha512 = "WPwIOZIdDprgfqOe8bEun47wkFFc+5Uw/1w3O/kZn/kS2IpI1q+wijUDK+Hw8q4d8KgA58B30wh+10UvXzsPDA==";
};
};
- "node-red-node-sentiment-0.1.4" = {
- name = "node-red-node-sentiment";
- packageName = "node-red-node-sentiment";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-sentiment/-/node-red-node-sentiment-0.1.4.tgz";
- sha512 = "lZxov4OdGKoqvXcUK7oyVeW5a2qJsBr5+T8cq9kP5N0bnI9AQoywiIiVQ2HcFCHXy70U4ZIAhetGroNfAb68Zg==";
- };
- };
- "node-red-node-tail-0.0.2" = {
+ "node-red-node-tail-0.0.3" = {
name = "node-red-node-tail";
packageName = "node-red-node-tail";
- version = "0.0.2";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-tail/-/node-red-node-tail-0.0.2.tgz";
- sha512 = "+92kgY+SOW6Oq7GfH3x9HC/9YBAg5UmdZBl426nFg0K4x9oegLqCqW2S0/fBAgyDBQQF8eHmn/GjHeO32R0aRg==";
+ url = "https://registry.npmjs.org/node-red-node-tail/-/node-red-node-tail-0.0.3.tgz";
+ sha512 = "wEiT7bSeU9oVHPK7S+mHb3cR6cIf9l205wTiHzhnUAuoDJS+IdwQkkpFgKTYmkL4Py2LvqCU90h85YpQul7QFQ==";
};
};
- "node-red-node-twitter-1.1.5" = {
- name = "node-red-node-twitter";
- packageName = "node-red-node-twitter";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-1.1.5.tgz";
- sha512 = "8V4tLL0nM1DOUgEtTOBSTZcLbtZ4Gg4CPFVHiPmLCo2QYTMQ0JdBIYj4pg95LbJbYkV721fqsw1RDsitBfYuCQ==";
- };
- };
- "node-releases-1.1.32" = {
+ "node-releases-1.1.39" = {
name = "node-releases";
packageName = "node-releases";
- version = "1.1.32";
+ version = "1.1.39";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.32.tgz";
- sha512 = "VhVknkitq8dqtWoluagsGPn3dxTvN9fwgR59fV3D7sLBHe0JfDramsMI8n8mY//ccq/Kkrf8ZRHRpsyVZ3qw1A==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.39.tgz";
+ sha512 = "8MRC/ErwNCHOlAFycy9OPca46fQYUjbJRDcZTHVWIGXIjYLM73k70vv3WkYutVnM4cCo4hE0MqBVVZjP6vjISA==";
};
};
"node-request-by-swagger-1.1.4" = {
@@ -27950,31 +27986,13 @@ let
sha1 = "fae179165265509302cefbebeabd29bd4035184d";
};
};
- "nodemailer-6.1.1" = {
- name = "nodemailer";
- packageName = "nodemailer";
- version = "6.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.1.1.tgz";
- sha512 = "/x5MRIh56VyuuhLfcz+DL2SlBARpZpgQIf2A4Ao4hMb69MHSgDIMPwYmFwesGT1lkRDZ0eBSoym5+JoIZ3N+cQ==";
- };
- };
- "nodemailer-6.3.0" = {
- name = "nodemailer";
- packageName = "nodemailer";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.3.0.tgz";
- sha512 = "TEHBNBPHv7Ie/0o3HXnb7xrPSSQmH1dXwQKRaMKDBGt/ZN54lvDVujP6hKkO/vjkIYL9rK8kHSG11+G42Nhxuw==";
- };
- };
- "nodemon-1.19.2" = {
+ "nodemon-1.19.4" = {
name = "nodemon";
packageName = "nodemon";
- version = "1.19.2";
+ version = "1.19.4";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.19.2.tgz";
- sha512 = "hRLYaw5Ihyw9zK7NF+9EUzVyS6Cvgc14yh8CAYr38tPxJa6UrOxwAQ351GwrgoanHCF0FalQFn6w5eoX/LGdJw==";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.19.4.tgz";
+ sha512 = "VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ==";
};
};
"nomnom-1.8.1" = {
@@ -28121,13 +28139,13 @@ let
sha512 = "U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==";
};
};
- "normalize-url-4.4.1" = {
+ "normalize-url-4.5.0" = {
name = "normalize-url";
packageName = "normalize-url";
- version = "4.4.1";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.4.1.tgz";
- sha512 = "rjH3yRt0Ssx19mUwS0hrDUOdG9VI+oRLpLHJ7tXRdjcuQ7v7wo6qPvOZppHRrqfslTKr0L2yBhjj4UXd7c3cQg==";
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz";
+ sha512 = "2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==";
};
};
"now-and-later-2.0.1" = {
@@ -28211,13 +28229,13 @@ let
sha512 = "qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==";
};
};
- "npm-packlist-1.4.4" = {
+ "npm-packlist-1.4.6" = {
name = "npm-packlist";
packageName = "npm-packlist";
- version = "1.4.4";
+ version = "1.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.4.tgz";
- sha512 = "zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==";
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.6.tgz";
+ sha512 = "u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg==";
};
};
"npm-path-2.0.4" = {
@@ -28283,13 +28301,13 @@ let
sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
};
};
- "npm-registry-fetch-4.0.1" = {
+ "npm-registry-fetch-4.0.2" = {
name = "npm-registry-fetch";
packageName = "npm-registry-fetch";
- version = "4.0.1";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-4.0.1.tgz";
- sha512 = "1ZQ+yjnxc698R5h9Yje9CASapzAZr7aYDkJDdERg9xg2hOEY0vRJwskOaJAXq8N/eLavzvW4g564YAfq6zMn/A==";
+ url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-4.0.2.tgz";
+ sha512 = "Z0IFtPEozNdeZRPh3aHHxdG+ZRpzcbQaJLthsm3VhNf6DScicTFRHZzK82u8RsJUsUHkX+QH/zcB/5pmd20H4A==";
};
};
"npm-run-4.1.2" = {
@@ -28319,6 +28337,24 @@ let
sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
};
};
+ "npm-run-path-3.1.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz";
+ sha512 = "Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==";
+ };
+ };
+ "npm-run-path-4.0.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.0.tgz";
+ sha512 = "8eyAOAH+bYXFPSnNnKr3J+yoybe8O87Is5rtAQ8qRczJz1ajcsjg8l2oZqP+Ppx15Ii3S1vUTjQN2h4YO2tWWQ==";
+ };
+ };
"npm-which-3.0.1" = {
name = "npm-which";
packageName = "npm-which";
@@ -28761,15 +28797,6 @@ let
sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==";
};
};
- "omelette-0.3.2" = {
- name = "omelette";
- packageName = "omelette";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/omelette/-/omelette-0.3.2.tgz";
- sha1 = "68c1b3c57ced778b4e67d8637d2559b2c1b3ec26";
- };
- };
"omggif-1.0.10" = {
name = "omggif";
packageName = "omggif";
@@ -28968,6 +28995,15 @@ let
sha512 = "IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==";
};
};
+ "open-7.0.0" = {
+ name = "open";
+ packageName = "open";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-7.0.0.tgz";
+ sha512 = "K6EKzYqnwQzk+/dzJAQSBORub3xlBTxMz+ntpZpH/LyCa1o6KjXhuN+2npAaI9jaSmU3R1Q8NWf4KUWcyytGsQ==";
+ };
+ };
"opencollective-postinstall-2.0.2" = {
name = "opencollective-postinstall";
packageName = "opencollective-postinstall";
@@ -28995,15 +29031,6 @@ let
sha1 = "707375e59ab9f73025899727679b20328171c9aa";
};
};
- "openssl-wrapper-0.3.4" = {
- name = "openssl-wrapper";
- packageName = "openssl-wrapper";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz";
- sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07";
- };
- };
"opentracing-0.13.0" = {
name = "opentracing";
packageName = "opentracing";
@@ -29166,6 +29193,15 @@ let
sha512 = "eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==";
};
};
+ "ora-4.0.2" = {
+ name = "ora";
+ packageName = "ora";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-4.0.2.tgz";
+ sha512 = "YUOZbamht5mfLxPmk4M35CD/5DuOkAacxlEUbStVXpBAt4fyhBf+vZHI/HRkI++QUp3sNoeA2Gw4C+hi4eGSig==";
+ };
+ };
"orchestrator-0.3.8" = {
name = "orchestrator";
packageName = "orchestrator";
@@ -29238,6 +29274,15 @@ let
sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==";
};
};
+ "os-locale-4.0.0" = {
+ name = "os-locale";
+ packageName = "os-locale";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-locale/-/os-locale-4.0.0.tgz";
+ sha512 = "HsSR1+2l6as4Wp2SGZxqLnuFHxVvh1Ir9pvZxyujsC13egZVe7P0YeBLN0ijQzM/twrO5To3ia3jzBXAvpMTEA==";
+ };
+ };
"os-name-3.1.0" = {
name = "os-name";
packageName = "os-name";
@@ -29364,6 +29409,15 @@ let
sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
};
};
+ "p-finally-2.0.1" = {
+ name = "p-finally";
+ packageName = "p-finally";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz";
+ sha512 = "vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==";
+ };
+ };
"p-is-promise-1.1.0" = {
name = "p-is-promise";
packageName = "p-is-promise";
@@ -29463,13 +29517,13 @@ let
sha512 = "3cRXXn3/O0o3+eVmUroJPSj/esxoEFIm0ZOno/T+NzG/VZgPOqQ8WKmlNqubSEpZmCIngEy34unkHGg83ZIBmg==";
};
};
- "p-queue-6.1.1" = {
+ "p-queue-6.2.0" = {
name = "p-queue";
packageName = "p-queue";
- version = "6.1.1";
+ version = "6.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/p-queue/-/p-queue-6.1.1.tgz";
- sha512 = "R9gq36Th88xZ+rWAptN5IXLwqkwA1gagCQhT6ZXQ6RxEfmjb9ZW+UBzRVqv9sm5TQmbbI/TsKgGLbOaA61xR5w==";
+ url = "https://registry.npmjs.org/p-queue/-/p-queue-6.2.0.tgz";
+ sha512 = "B2LXNONcyn/G6uz2UBFsGjmSa0e/br3jznlzhEyCXg56c7VhEpiT2pZxGOfv32Q3FSyugAdys9KGpsv3kV+Sbg==";
};
};
"p-reduce-1.0.0" = {
@@ -29544,13 +29598,13 @@ let
sha1 = "7ed94b3ceb3332782353af6aae11aa9fc235bb00";
};
};
- "pac-proxy-agent-3.0.0" = {
+ "pac-proxy-agent-3.0.1" = {
name = "pac-proxy-agent";
packageName = "pac-proxy-agent";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-3.0.0.tgz";
- sha512 = "AOUX9jES/EkQX2zRz0AW7lSx9jD//hQS8wFXBvcnd/J2Py9KaMJMqV/LPqJssj1tgGufotb2mmopGPR15ODv1Q==";
+ url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-3.0.1.tgz";
+ sha512 = "44DUg21G/liUZ48dJpUSjZnFfZro/0K5JTyFYLBcmh9+T6Ooi4/i4efwUiEy0+4oQusCBqWdhv16XohIj1GqnQ==";
};
};
"pac-resolver-3.0.0" = {
@@ -29832,6 +29886,15 @@ let
sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
};
};
+ "parse-json-5.0.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz";
+ sha512 = "OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==";
+ };
+ };
"parse-latin-4.2.0" = {
name = "parse-latin";
packageName = "parse-latin";
@@ -30129,6 +30192,15 @@ let
sha1 = "fad9db6ae252f8b088e0c5decd20a7da0c5d9f1e";
};
};
+ "password-prompt-1.1.2" = {
+ name = "password-prompt";
+ packageName = "password-prompt";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz";
+ sha512 = "bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==";
+ };
+ };
"patel-0.33.1" = {
name = "patel";
packageName = "patel";
@@ -30453,15 +30525,6 @@ let
sha1 = "cf8bafae6eddff4b5a7efb185269eaaf4610ddbd";
};
};
- "pem-1.14.2" = {
- name = "pem";
- packageName = "pem";
- version = "1.14.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pem/-/pem-1.14.2.tgz";
- sha512 = "TOnPtq3ZFnCniOZ+rka4pk8UIze9xG1qI+wNE7EmkiR/cg+53uVvk5QbkWZ7M6RsuOxzz62FW1hlAobJr/lTOA==";
- };
- };
"pend-1.2.0" = {
name = "pend";
packageName = "pend";
@@ -30606,13 +30669,13 @@ let
sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
};
};
- "pino-5.12.6" = {
+ "pino-5.13.3" = {
name = "pino";
packageName = "pino";
- version = "5.12.6";
+ version = "5.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-5.12.6.tgz";
- sha512 = "LM5ug2b27uymIIkaBw54ncF+9DSf8S4z1uzw+Y5I94dRu3Z+lFuB13j0kg1InAeyxy+CsLGnWHKy9+zgTreFOg==";
+ url = "https://registry.npmjs.org/pino/-/pino-5.13.3.tgz";
+ sha512 = "FL12DKlPwBlbhztlUz6kseR03PRR8nD+wvLdN/Sji9UiBYYfSjX+k8ocU7/NwW55JdFRONTn3iACoelXnMFVVQ==";
};
};
"pino-std-serializers-2.4.2" = {
@@ -30858,22 +30921,13 @@ let
sha1 = "47bb2952da32d58a1be2f256a598eebc0b745118";
};
};
- "poplib-0.1.7" = {
- name = "poplib";
- packageName = "poplib";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/poplib/-/poplib-0.1.7.tgz";
- sha1 = "2f4b58b5592972350cd97f482aba68f8e05574bc";
- };
- };
- "portfinder-1.0.24" = {
+ "portfinder-1.0.25" = {
name = "portfinder";
packageName = "portfinder";
- version = "1.0.24";
+ version = "1.0.25";
src = fetchurl {
- url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.24.tgz";
- sha512 = "ekRl7zD2qxYndYflwiryJwMioBI7LI7rVXg3EnLK3sjkouT5eOuhS3gS255XxBksa30VG8UPZYZCdgfGOfkSUg==";
+ url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz";
+ sha512 = "6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==";
};
};
"posix-character-classes-0.1.1" = {
@@ -30913,15 +30967,6 @@ let
sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
};
};
- "postcss-7.0.16" = {
- name = "postcss";
- packageName = "postcss";
- version = "7.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-7.0.16.tgz";
- sha512 = "MOo8zNSlIqh22Uaa3drkdIAgUGEL+AD1ESiSdmElLUmE2uVDo1QloiT/IfW9qRw8Gw+Y/w69UVMGwbufMSftxA==";
- };
- };
"postcss-7.0.18" = {
name = "postcss";
packageName = "postcss";
@@ -30931,6 +30976,15 @@ let
sha512 = "/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==";
};
};
+ "postcss-7.0.21" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "7.0.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz";
+ sha512 = "uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==";
+ };
+ };
"postcss-calc-7.0.1" = {
name = "postcss-calc";
packageName = "postcss-calc";
@@ -31498,13 +31552,13 @@ let
sha512 = "zsK6DDEC+cnNiunYamcVbx4ZCLbKnzTOZa09K4Pj3/tH3nQFPUO9K2QoYy4kfxLqmoyw6RPDtACN9OYviMQZ2Q==";
};
};
- "probe-image-size-4.0.0" = {
+ "probe-image-size-5.0.0" = {
name = "probe-image-size";
packageName = "probe-image-size";
- version = "4.0.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-4.0.0.tgz";
- sha512 = "nm7RvWUxps+2+jZKNLkd04mNapXNariS6G5WIEVzvAqjx7EUuKcY1Dp3e6oUK7GLwzJ+3gbSbPLFAASHFQrPcQ==";
+ url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-5.0.0.tgz";
+ sha512 = "V6uBYw5eBc5UVIE7MUZD6Nxg0RYuGDWLDenEn0B1WC6PcTvn1xdQ6HLDDuznefsiExC6rNrCz7mFRBo0f3Xekg==";
};
};
"process-0.10.1" = {
@@ -31741,13 +31795,13 @@ let
sha1 = "0ee97a7fc020b1a2a55b8659eda4aa8d869094bd";
};
};
- "property-information-5.2.2" = {
+ "property-information-5.3.0" = {
name = "property-information";
packageName = "property-information";
- version = "5.2.2";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/property-information/-/property-information-5.2.2.tgz";
- sha512 = "N2moasZmjn2mjVGIWpaqz5qnz6QyeQSGgGvMtl81gA9cPTWa6wpesRSe/quNnOjUHpvSH1oZx0pdz0EEckLFnA==";
+ url = "https://registry.npmjs.org/property-information/-/property-information-5.3.0.tgz";
+ sha512 = "IslotQn1hBCZDY7SaJ3zmCjVea219VTwmOk6Pu3z9haU9m4+T8GwaDubur+6NMHEU+Fjs/6/p66z6QULPkcL1w==";
};
};
"proto-list-1.2.4" = {
@@ -31840,13 +31894,13 @@ let
sha512 = "t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==";
};
};
- "proxy-agent-3.1.0" = {
+ "proxy-agent-3.1.1" = {
name = "proxy-agent";
packageName = "proxy-agent";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-3.1.0.tgz";
- sha512 = "IkbZL4ClW3wwBL/ABFD2zJ8iP84CY0uKMvBPk/OceQe/cEjrxzN1pMHsLwhbzUoRhG9QbSxYC+Z7LBkTiBNvrA==";
+ url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-3.1.1.tgz";
+ sha512 = "WudaR0eTsDx33O3EJE16PjBRZWcX8GqCEeERw1W3hZJgH/F2a46g7jty6UGty6NeJ4CKQy8ds2CJPMiyeqaTvw==";
};
};
"proxy-from-env-1.0.0" = {
@@ -32758,15 +32812,6 @@ let
sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
};
};
- "qs-6.2.3" = {
- name = "qs";
- packageName = "qs";
- version = "6.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
- sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
- };
- };
"qs-6.3.2" = {
name = "qs";
packageName = "qs";
@@ -32884,13 +32929,13 @@ let
sha512 = "F9wwNePtXrzZenAB3ax0Y8TSKGvuB7Qw16J30hspEUTbfUM+H827XyN3rlpwhVmtm5wuZtbKIHjOnwDn7MUxWQ==";
};
};
- "quick-format-unescaped-3.0.2" = {
+ "quick-format-unescaped-3.0.3" = {
name = "quick-format-unescaped";
packageName = "quick-format-unescaped";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-3.0.2.tgz";
- sha512 = "FXTaCkwvpIlkdKeGDNgcq07SXWS383noQUuZjvdE1QcTt+eLuqof6/BDiEPqB59FWLie/l91+HtlJSw7iCViSA==";
+ url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-3.0.3.tgz";
+ sha512 = "dy1yjycmn9blucmJLXOfZDx1ikZJUi6E8bBZLnhPG5gBrVhHXx2xVyqqgKBubVNEXmx51dBACMHpoMQK/N/AXQ==";
};
};
"quick-lru-1.1.0" = {
@@ -33208,13 +33253,13 @@ let
sha512 = "C0SIXdXDSus2yqqvV7qifnb4NoWP7mEBXJq3axci301mXHCZb8Djwm4hrEZo4UeXRaEnfjH98uQ8EBppk2oNWA==";
};
};
- "react-is-16.9.0" = {
+ "react-is-16.11.0" = {
name = "react-is";
packageName = "react-is";
- version = "16.9.0";
+ version = "16.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz";
- sha512 = "tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==";
+ url = "https://registry.npmjs.org/react-is/-/react-is-16.11.0.tgz";
+ sha512 = "gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw==";
};
};
"read-1.0.7" = {
@@ -33397,15 +33442,6 @@ let
sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
};
};
- "readable-stream-2.0.6" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz";
- sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e";
- };
- };
"readable-stream-2.3.6" = {
name = "readable-stream";
packageName = "readable-stream";
@@ -33442,13 +33478,13 @@ let
sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
};
};
- "readdirp-3.1.2" = {
+ "readdirp-3.2.0" = {
name = "readdirp";
packageName = "readdirp";
- version = "3.1.2";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-3.1.2.tgz";
- sha512 = "8rhl0xs2cxfVsqzreYCvs8EwBfn/DhVdqtoLmw19uI3SC5avYX9teCurlErfpPXGmYtMHReGaP2RsLnFvz/lnw==";
+ url = "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz";
+ sha512 = "crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==";
};
};
"readline2-0.1.1" = {
@@ -33487,13 +33523,13 @@ let
sha512 = "O/7qXi51DPjRVdbrpNzoBQH5dnAPQNbfoOFyRiUwreTMJfIHYOEBzwuH+c0+/BTSJ3CQyKs6ILSWXhESH6Op3A==";
};
};
- "recast-0.17.6" = {
+ "recast-0.18.5" = {
name = "recast";
packageName = "recast";
- version = "0.17.6";
+ version = "0.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/recast/-/recast-0.17.6.tgz";
- sha512 = "yoQRMRrK1lszNtbkGyM4kN45AwylV5hMiuEveUBlxytUViWevjvX6w+tzJt1LH4cfUhWt4NZvy3ThIhu6+m5wQ==";
+ url = "https://registry.npmjs.org/recast/-/recast-0.18.5.tgz";
+ sha512 = "sD1WJrpLQAkXGyQZyGzTM75WJvyAd98II5CHdK3IYbt/cZlU0UzCRVU11nUFNXX9fBVEt4E9ajkMjBlUlG+Oog==";
};
};
"rechoir-0.6.2" = {
@@ -33559,6 +33595,15 @@ let
sha1 = "e96c193b40c0816b00aec842698e61185e55498a";
};
};
+ "redeyed-2.1.1" = {
+ name = "redeyed";
+ packageName = "redeyed";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz";
+ sha1 = "8984b5815d99cb220469c99eeeffe38913e6cc0b";
+ };
+ };
"redis-0.12.1" = {
name = "redis";
packageName = "redis";
@@ -33613,6 +33658,15 @@ let
sha512 = "LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==";
};
};
+ "regenerator-runtime-0.10.5" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
+ sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
+ };
+ };
"regenerator-runtime-0.11.1" = {
name = "regenerator-runtime";
packageName = "regenerator-runtime";
@@ -33622,24 +33676,6 @@ let
sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
};
};
- "regenerator-runtime-0.12.1" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz";
- sha512 = "odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==";
- };
- };
- "regenerator-runtime-0.13.2" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.13.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz";
- sha512 = "S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA==";
- };
- };
"regenerator-runtime-0.13.3" = {
name = "regenerator-runtime";
packageName = "regenerator-runtime";
@@ -33685,15 +33721,6 @@ let
sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
};
};
- "regexp-tree-0.1.13" = {
- name = "regexp-tree";
- packageName = "regexp-tree";
- version = "0.1.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.13.tgz";
- sha512 = "hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw==";
- };
- };
"regexp.prototype.flags-1.2.0" = {
name = "regexp.prototype.flags";
packageName = "regexp.prototype.flags";
@@ -33793,13 +33820,13 @@ let
sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
};
};
- "regjsgen-0.5.0" = {
+ "regjsgen-0.5.1" = {
name = "regjsgen";
packageName = "regjsgen";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz";
- sha512 = "RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==";
+ url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz";
+ sha512 = "5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==";
};
};
"regjsparser-0.1.5" = {
@@ -34072,15 +34099,6 @@ let
sha1 = "81d81ac7aeb72d7f5c4942adf2697a3220688d8e";
};
};
- "request-2.74.0" = {
- name = "request";
- packageName = "request";
- version = "2.74.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz";
- sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab";
- };
- };
"request-2.76.0" = {
name = "request";
packageName = "request";
@@ -34162,13 +34180,13 @@ let
sha512 = "rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==";
};
};
- "requestretry-4.0.0" = {
+ "requestretry-4.0.2" = {
name = "requestretry";
packageName = "requestretry";
- version = "4.0.0";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/requestretry/-/requestretry-4.0.0.tgz";
- sha512 = "ST8m0+5FQH2FA+gbzUQyOQjUwHf22kbPQnd6TexveR0p+2UV1YYBg+Roe7BnKQ1Bb/+LtJwwm0QzxK2NA20Cug==";
+ url = "https://registry.npmjs.org/requestretry/-/requestretry-4.0.2.tgz";
+ sha512 = "ZGdO1ZXUQAeCB9xOS2keSN501y7T1t0zPOD58jTAOwamt6qkcBMaGdRBHEOMQRnDtT5fn7S99F0dwADUqCmYqg==";
};
};
"require-directory-2.1.1" = {
@@ -34234,15 +34252,6 @@ let
sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3";
};
};
- "require-uncached-2.0.0" = {
- name = "require-uncached";
- packageName = "require-uncached";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-uncached/-/require-uncached-2.0.0.tgz";
- sha512 = "rPv1//BQwg4gzIbpJcKXWIfjDJEtgS8jzbsNoLcdVSE5FpBzKEKKuoG6MfCbLC28ZTv+qlQWC9/K7J5GBGPSMg==";
- };
- };
"requireg-0.2.2" = {
name = "requireg";
packageName = "requireg";
@@ -34738,13 +34747,13 @@ let
sha1 = "df43e80d9bc82ad4430bcfef03f49c717e8b2e8c";
};
};
- "roarr-2.14.1" = {
+ "roarr-2.14.2" = {
name = "roarr";
packageName = "roarr";
- version = "2.14.1";
+ version = "2.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/roarr/-/roarr-2.14.1.tgz";
- sha512 = "Fhm9shQ8JhpjFnOT7bgxKR7Xcg1Tq+0/Tdy+bloB4sUxxAib4MZDMJ6AjUBRE+798l2MnhhF2JTqbqx1+/kRyQ==";
+ url = "https://registry.npmjs.org/roarr/-/roarr-2.14.2.tgz";
+ sha512 = "ibqv70DCUhGVMfPe0JSUHBZ9PKLhxdk8VJ/Y2M7vVr+L4VakW1CdVTU9cJQBbM2STQa84CgBAzd7hJGcnALGeg==";
};
};
"rollup-0.67.0" = {
@@ -34837,13 +34846,13 @@ let
sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d";
};
};
- "rss-parser-3.7.2" = {
+ "rss-parser-3.7.3" = {
name = "rss-parser";
packageName = "rss-parser";
- version = "3.7.2";
+ version = "3.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/rss-parser/-/rss-parser-3.7.2.tgz";
- sha512 = "kx0VIFelgwBk5qA4n32U6cx40anAU7TwlRXjyxLDFgMlg8/UcJ64x+Hj5oRX1Kjos+OeFGOmnd5YXH5ES+bmzg==";
+ url = "https://registry.npmjs.org/rss-parser/-/rss-parser-3.7.3.tgz";
+ sha512 = "Ys+fC5wHqWkfR+jNEL7QvC0crUCAcygxHel3ab9QQzHjmH7fNz379lrp984CuCPUf3WzxHEa73lL86W7yc9qjQ==";
};
};
"rsvp-3.6.2" = {
@@ -35107,15 +35116,6 @@ let
sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
};
};
- "safer-eval-1.3.5" = {
- name = "safer-eval";
- packageName = "safer-eval";
- version = "1.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/safer-eval/-/safer-eval-1.3.5.tgz";
- sha512 = "BJ//K2Y+EgCbOHEsDGS5YahYBcYy7JcFpKDo2ba5t4MnOGHYtk7HvQkcxTDFvjQvJ0CRcdas/PyF+gTTCay+3w==";
- };
- };
"sander-0.5.1" = {
name = "sander";
packageName = "sander";
@@ -35377,15 +35377,6 @@ let
sha512 = "PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==";
};
};
- "semver-5.6.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz";
- sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==";
- };
- };
"semver-5.7.1" = {
name = "semver";
packageName = "semver";
@@ -35404,15 +35395,6 @@ let
sha512 = "0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ==";
};
};
- "semver-6.1.1" = {
- name = "semver";
- packageName = "semver";
- version = "6.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz";
- sha512 = "rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==";
- };
- };
"semver-6.1.3" = {
name = "semver";
packageName = "semver";
@@ -35422,15 +35404,6 @@ let
sha512 = "aymF+56WJJMyXQHcd4hlK4N75rwj5RQpfW8ePlQnJsTYOBLlLbcIErR/G1s9SkIvKBqOudR3KAx4wEqP+F1hNQ==";
};
};
- "semver-6.2.0" = {
- name = "semver";
- packageName = "semver";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-6.2.0.tgz";
- sha512 = "jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A==";
- };
- };
"semver-6.3.0" = {
name = "semver";
packageName = "semver";
@@ -35566,22 +35539,13 @@ let
sha512 = "QnpHNykm4nI4T6mT+NoVayh9Ixl5DohYCSVqMgPJsO2WejOcqaYTh4HQOkmzaDzXH3NO5pif4z/hpo2NGtgNlg==";
};
};
- "sentence-splitter-3.0.11" = {
+ "sentence-splitter-3.1.0" = {
name = "sentence-splitter";
packageName = "sentence-splitter";
- version = "3.0.11";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.0.11.tgz";
- sha512 = "8k/74ErjpdvgBVLQ7kI7jbbaqNdgMXVqMF8gWlJan25xfm1mg8cYmHQgMb+zx8xyocm1Dq46af4TpmnKWHr/yA==";
- };
- };
- "sentiment-2.1.0" = {
- name = "sentiment";
- packageName = "sentiment";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sentiment/-/sentiment-2.1.0.tgz";
- sha1 = "33279100c35c38519ca5e435245186c512fe0fdc";
+ url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.1.0.tgz";
+ sha512 = "S8ye/Ic5ryKynwgjcS0ggncqhVJW3mgmo/gFNIcKKU1cdLjYzqtQ/PCkD7l0rZtSSfcjLqqVjfdMVN6FKkwUuQ==";
};
};
"separator-escape-0.0.0" = {
@@ -35602,13 +35566,13 @@ let
sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c";
};
};
- "serialize-error-4.1.0" = {
+ "serialize-error-5.0.0" = {
name = "serialize-error";
packageName = "serialize-error";
- version = "4.1.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serialize-error/-/serialize-error-4.1.0.tgz";
- sha512 = "5j9GgyGsP9vV9Uj1S0lDCvlsd+gc2LEPVK7HHHte7IyPwOD4lVQFeaX143gx3U5AnoCi+wbcb3mvaxVysjpxEw==";
+ url = "https://registry.npmjs.org/serialize-error/-/serialize-error-5.0.0.tgz";
+ sha512 = "/VtpuyzYf82mHYTtI4QKtwHa79vAdU5OQpNPAmE/0UDdlGT0ZxHwC+J6gXkw29wwoVI8fMPsfcVHOwXtUQYYQA==";
};
};
"serialize-javascript-1.9.1" = {
@@ -35620,13 +35584,13 @@ let
sha512 = "0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==";
};
};
- "serialize-to-js-1.2.2" = {
+ "serialize-to-js-3.0.0" = {
name = "serialize-to-js";
packageName = "serialize-to-js";
- version = "1.2.2";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz";
- sha512 = "mUc8vA5iJghe+O+3s0YDGFLMJcqitVFk787YKiv8a4sf6RX5W0u81b+gcHrp15O0fFa010dRBVZvwcKXOWsL9Q==";
+ url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-3.0.0.tgz";
+ sha512 = "WdGgi0jGnWCQXph2p3vkxceDnTfvfyXfYxherQMRcZjSaJzMQdMBAW6i0nojsBKIZ3fFOztZKKVbbm05VbIdRA==";
};
};
"serializerr-1.0.3" = {
@@ -35647,13 +35611,13 @@ let
sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0";
};
};
- "serve-handler-6.1.0" = {
+ "serve-handler-6.1.2" = {
name = "serve-handler";
packageName = "serve-handler";
- version = "6.1.0";
+ version = "6.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.0.tgz";
- sha512 = "63N075Tn3PsFYcu0NVV7tb367UbiW3gnC+/50ohL4oqOhAG6bmbaWqiRcXQgbzqc0ALBjSAzg7VTfa0Qw4E3hA==";
+ url = "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.2.tgz";
+ sha512 = "RFh49wX7zJmmOVDcIjiDSJnMH+ItQEvyuYLYuDBVoA/xmQSCuj+uRmk1cmBB5QQlI3qOiWKp6p4DUGY+Z5AB2A==";
};
};
"serve-index-1.9.1" = {
@@ -35764,13 +35728,13 @@ let
sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==";
};
};
- "seventh-0.7.28" = {
+ "seventh-0.7.30" = {
name = "seventh";
packageName = "seventh";
- version = "0.7.28";
+ version = "0.7.30";
src = fetchurl {
- url = "https://registry.npmjs.org/seventh/-/seventh-0.7.28.tgz";
- sha512 = "WitJqSwsjLWbCP9cciaozByx4csddLQyNoaPBqOpYFMNE6iD6FK/pM8J2yqtpauSxJUUo7Wfv5KF5w1jbVov7A==";
+ url = "https://registry.npmjs.org/seventh/-/seventh-0.7.30.tgz";
+ sha512 = "GDX4eZEZXQFqURkUA802R3GkawzGA8zm2QS9AfFqPcJKakoytxhI0soTRfhEqNhqh0RrRFO/EraffrAULaxiQQ==";
};
};
"sha.js-2.4.11" = {
@@ -35836,6 +35800,15 @@ let
sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
};
};
+ "shebang-command-2.0.0" = {
+ name = "shebang-command";
+ packageName = "shebang-command";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz";
+ sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==";
+ };
+ };
"shebang-regex-1.0.0" = {
name = "shebang-regex";
packageName = "shebang-regex";
@@ -35845,6 +35818,15 @@ let
sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
};
};
+ "shebang-regex-3.0.0" = {
+ name = "shebang-regex";
+ packageName = "shebang-regex";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz";
+ sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==";
+ };
+ };
"shell-quote-1.6.1" = {
name = "shell-quote";
packageName = "shell-quote";
@@ -36151,6 +36133,15 @@ let
sha512 = "ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==";
};
};
+ "slash-3.0.0" = {
+ name = "slash";
+ packageName = "slash";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz";
+ sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==";
+ };
+ };
"slasp-0.0.4" = {
name = "slasp";
packageName = "slasp";
@@ -36331,15 +36322,6 @@ let
sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
};
};
- "snyk-1.228.3" = {
- name = "snyk";
- packageName = "snyk";
- version = "1.228.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.228.3.tgz";
- sha512 = "TwyJcMXBvic1xJ+rVLdIYS1xDYuzcogIXdmyvGvXBZgwIQdjOVMnZBVxUo5igkOIntBL2sCynZiydQtGbe08JA==";
- };
- };
"snyk-config-2.2.3" = {
name = "snyk-config";
packageName = "snyk-config";
@@ -36349,13 +36331,13 @@ let
sha512 = "9NjxHVMd1U1LFw66Lya4LXgrsFUiuRiL4opxfTFo0LmMNzUoU5Bk/p0zDdg3FE5Wg61r4fP2D8w+QTl6M8CGiw==";
};
};
- "snyk-docker-plugin-1.29.1" = {
+ "snyk-docker-plugin-1.33.1" = {
name = "snyk-docker-plugin";
packageName = "snyk-docker-plugin";
- version = "1.29.1";
+ version = "1.33.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.29.1.tgz";
- sha512 = "Mucc1rZ7l0U8Dykr5m6HPjau8b2H8JVtVaXGbKSZD6e/47JDJhudkgrWjsS5Yt/Zdp1weE3+4SguftFiVR971A==";
+ url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.33.1.tgz";
+ sha512 = "xfs3DN1tPMTh6J8x2341wGK4HRr+pI5+i/YRuRmsslnBnwk/DkKYcbt8zOIWk6kzMoW8vo+9LqqXBQO/24szKg==";
};
};
"snyk-go-parser-1.3.1" = {
@@ -36367,13 +36349,13 @@ let
sha512 = "jrFRfIk6yGHFeipGD66WV9ei/A/w/lIiGqI80w1ndMbg6D6M5pVNbK7ngDTmo4GdHrZDYqx/VBGBsUm2bol3Rg==";
};
};
- "snyk-go-plugin-1.11.0" = {
+ "snyk-go-plugin-1.11.1" = {
name = "snyk-go-plugin";
packageName = "snyk-go-plugin";
- version = "1.11.0";
+ version = "1.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.11.0.tgz";
- sha512 = "9hsGgloioGuey5hbZfv+MkFEslxXHyzUlaAazcR0NsY7VLyG/b2g3f88f/ZwCwlWaKL9LMv/ERIiey3oWAB/qg==";
+ url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.11.1.tgz";
+ sha512 = "IsNi7TmpHoRHzONOWJTT8+VYozQJnaJpKgnYNQjzNm2JlV8bDGbdGQ1a8LcEoChxnJ8v8aMZy7GTiQyGGABtEQ==";
};
};
"snyk-gradle-plugin-3.1.0" = {
@@ -36412,13 +36394,13 @@ let
sha512 = "cf3uozRXEG88nsjOQlo+SfOJPpcLs45qpnuk2vhBBZ577IMnV+fTOJQsP2YRiikLUbdgkVlduviwUO6OVn1PhA==";
};
};
- "snyk-nuget-plugin-1.12.1" = {
+ "snyk-nuget-plugin-1.13.0" = {
name = "snyk-nuget-plugin";
packageName = "snyk-nuget-plugin";
- version = "1.12.1";
+ version = "1.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.12.1.tgz";
- sha512 = "QuANQxBjTGj3hEf2YpEQ0WuI4Yq/93boqWUs4eoSTfDyBRFgIkUP6fLkzNldrkL8fQbcagqQ2Xz8M9IEKRQtMg==";
+ url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.13.0.tgz";
+ sha512 = "9PrsN6kSz79lKUlpfqAYvMtac7HYbscf4OJ5LTzTcPn2XRs24NCTZylUUpilkSY0r2DyDLY18cl+qHHjfJKnig==";
};
};
"snyk-paket-parser-1.5.0" = {
@@ -36448,13 +36430,13 @@ let
sha512 = "KI6GHt+Oj4fYKiCp7duhseUj5YhyL/zJOrrJg0u6r59Ux9w8gmkUYT92FHW27ihwuT6IPzdGNEuy06Yv2C9WaQ==";
};
};
- "snyk-python-plugin-1.13.2" = {
+ "snyk-python-plugin-1.13.3" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.13.2";
+ version = "1.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.13.2.tgz";
- sha512 = "G9R1cYHw0E/VSx9tFa5nZp+653FIMXheteidrF3hjUe71jRdJELEUV/z5jxqYEWEFemcwGhMfW87De91GChVIQ==";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.13.3.tgz";
+ sha512 = "Ud7mHmpMG4uCChvYLx5jA8HwOV/FNpT65xTxSt+6wsOjIUTuLiqM86mbvgzgk3pir8vMP9yQEsCi1i0zYLBArw==";
};
};
"snyk-resolve-1.0.1" = {
@@ -36925,15 +36907,6 @@ let
sha1 = "32552aa64b458392a85eab3b0b5ee61527167aeb";
};
};
- "source-map-support-0.5.12" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz";
- sha512 = "4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==";
- };
- };
"source-map-support-0.5.13" = {
name = "source-map-support";
packageName = "source-map-support";
@@ -37105,13 +37078,13 @@ let
sha512 = "z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ==";
};
};
- "speedtest-net-1.5.1" = {
+ "speedtest-net-1.6.0" = {
name = "speedtest-net";
packageName = "speedtest-net";
- version = "1.5.1";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/speedtest-net/-/speedtest-net-1.5.1.tgz";
- sha512 = "az10ue3vkUUt49p5ommRO5eKXB5GfzyLehWCNRUnO686GjtdXJcSJFPnluc93UdoWTtWbr4fCVeH9Kka1OpHIA==";
+ url = "https://registry.npmjs.org/speedtest-net/-/speedtest-net-1.6.0.tgz";
+ sha512 = "uxeA4BGApj3Ghb6VQtcsem0ZoeyQGwLDzL6WP3hJiegS9GBIvpPKDeTzY5/K2/CMoZcihrVYIW3yIABQb2LMOg==";
};
};
"split-0.2.10" = {
@@ -37276,13 +37249,13 @@ let
sha1 = "06cd70795ee58d1462d100a45c660df3179d3b39";
};
};
- "ssb-blobs-1.2.1" = {
+ "ssb-blobs-1.2.2" = {
name = "ssb-blobs";
packageName = "ssb-blobs";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-blobs/-/ssb-blobs-1.2.1.tgz";
- sha512 = "3x21LBIo/TDdUVw3IPnMYyh3T31+i6Xw2v0WftiuY0djPkq3dfwQV11+t3AY6LBtKsN1jS1bpxaDZcM/npF9dA==";
+ url = "https://registry.npmjs.org/ssb-blobs/-/ssb-blobs-1.2.2.tgz";
+ sha512 = "N+X46lE/KaIH9y1w3LQ9pPnt2tQr5VCSj1dAo/pJGYnSwnHz8GhIiboq7UGzrCZwCWgVUs22/2YiytCXSC9ASg==";
};
};
"ssb-caps-1.1.0" = {
@@ -37312,13 +37285,13 @@ let
sha512 = "UF+4+khFXILLBqtu9HfrpUwYnDXIdAyJe3u9X4GrApuoakxuSKwaUGakUxLPyo6COyV2brMqufUgf+fDOI8Ftw==";
};
};
- "ssb-config-3.3.2" = {
+ "ssb-config-3.4.2" = {
name = "ssb-config";
packageName = "ssb-config";
- version = "3.3.2";
+ version = "3.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-config/-/ssb-config-3.3.2.tgz";
- sha512 = "EUOp8QbFgCqy6RzNgLqoTqI+jtpBi3AHUwAymR3jHGbgc3DqCMnvGCHt7My8m15LA88oyeDjrzNNJsLfbVyTZQ==";
+ url = "https://registry.npmjs.org/ssb-config/-/ssb-config-3.4.2.tgz";
+ sha512 = "y8SQeTsTzkbB7rrugSytdTqnJbQuNe9AayOAuFGlbR5Z81tRskWjDgOvqm/4rPkS6BO8YWRwSaRnHF2LVAT8DA==";
};
};
"ssb-db-19.2.0" = {
@@ -37366,22 +37339,22 @@ let
sha512 = "7GVq5Ael/get+3Ot5exLdRWU8psSQNv/SkyO0KUhjoc4VfTdz8XuN1K195LKiyL/7u31A50KmkG9U9twb+1rGQ==";
};
};
- "ssb-gossip-1.1.0" = {
+ "ssb-gossip-1.1.1" = {
name = "ssb-gossip";
packageName = "ssb-gossip";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-gossip/-/ssb-gossip-1.1.0.tgz";
- sha512 = "z4DBUtGJ+/k6z67EjavmPYAKz9BLF7zWcSDwUwLKZZT3AJp/5J6iPxHkilz2UfJ9LdGT4gF5CUe2xyIt1QFguA==";
+ url = "https://registry.npmjs.org/ssb-gossip/-/ssb-gossip-1.1.1.tgz";
+ sha512 = "lbizlDBCtOOnbnz7zS81NOtnAyHnXu9E3gxrAJHZe7oyxINRI7IpQ8J79to9aXzkb8+2M32R8K4whmsAHGvJAg==";
};
};
- "ssb-invite-2.1.3" = {
+ "ssb-invite-2.1.4" = {
name = "ssb-invite";
packageName = "ssb-invite";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-invite/-/ssb-invite-2.1.3.tgz";
- sha512 = "hHLsmlTqk6ecxpWlHiwpFNwXDfMY8gO6OdXrU2lkoqLStPrriPgzlCJnfZA06Gdi2ZL5Az4+M2fyWvnza9x/kg==";
+ url = "https://registry.npmjs.org/ssb-invite/-/ssb-invite-2.1.4.tgz";
+ sha512 = "bq4Iow4DOfsfWKE6otgD2+sWd59PcLW/WUbwZdJlukaT2m0nazPu2s8k9xX/95p+pJS7xkLyywHxMzytiKRqTg==";
};
};
"ssb-issues-1.0.0" = {
@@ -37591,15 +37564,6 @@ let
sha512 = "ZPO9rECxzs5JIQ6G/2EfL1I9ho/BVZkx9HRKn8+0af7QgwAmumQ7XBFP1ggMyPMo+/tUbmv0HFdv4qifdO/9JA==";
};
};
- "ssh-key-to-pem-0.11.0" = {
- name = "ssh-key-to-pem";
- packageName = "ssh-key-to-pem";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssh-key-to-pem/-/ssh-key-to-pem-0.11.0.tgz";
- sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4";
- };
- };
"sshpk-1.14.1" = {
name = "sshpk";
packageName = "sshpk";
@@ -38068,33 +38032,6 @@ let
sha512 = "4Wi2v47HMkNdRWrlFJNlIsrhV6z6nCyVKVAIiq14MAnc7wILEAINmn96IiPWTcXzT8y2S6yfBoX++MUxqiovag==";
};
};
- "streamline-0.10.17" = {
- name = "streamline";
- packageName = "streamline";
- version = "0.10.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamline/-/streamline-0.10.17.tgz";
- sha1 = "fa2170da74194dbd0b54f756523f0d0d370426af";
- };
- };
- "streamline-0.4.11" = {
- name = "streamline";
- packageName = "streamline";
- version = "0.4.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamline/-/streamline-0.4.11.tgz";
- sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782";
- };
- };
- "streamline-streams-0.1.5" = {
- name = "streamline-streams";
- packageName = "streamline-streams";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamline-streams/-/streamline-streams-0.1.5.tgz";
- sha1 = "5b0ff80cf543f603cc3438ed178ca2aec7899b54";
- };
- };
"streamroller-1.0.6" = {
name = "streamroller";
packageName = "streamroller";
@@ -38158,13 +38095,13 @@ let
sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0";
};
};
- "string-kit-0.9.12" = {
+ "string-kit-0.10.1" = {
name = "string-kit";
packageName = "string-kit";
- version = "0.9.12";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string-kit/-/string-kit-0.9.12.tgz";
- sha512 = "l6BRL9uO4uV1o6/r/mJthahp8qatqGv4l6Z2o2mX+y2VYc7gFb2YD0k3zThvw3BATj/nDvLTB1s167vc2JdeDg==";
+ url = "https://registry.npmjs.org/string-kit/-/string-kit-0.10.1.tgz";
+ sha512 = "qxIqv5bJqYoWzJa0WJFdw9CCoPJ3/9EixXQXVerIYMghd45w0XiESgUchYCEeGg8bQQWHS+TYZW1DcJmHwAxZA==";
};
};
"string-length-2.0.0" = {
@@ -38446,6 +38383,15 @@ let
sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
};
};
+ "strip-bom-4.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz";
+ sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==";
+ };
+ };
"strip-bom-buf-1.0.0" = {
name = "strip-bom-buf";
packageName = "strip-bom-buf";
@@ -38518,6 +38464,15 @@ let
sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
};
};
+ "strip-final-newline-2.0.0" = {
+ name = "strip-final-newline";
+ packageName = "strip-final-newline";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz";
+ sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==";
+ };
+ };
"strip-indent-1.0.1" = {
name = "strip-indent";
packageName = "strip-indent";
@@ -38644,13 +38599,13 @@ let
sha512 = "Yw3WMTzVwevT6ZTrLCYNHAFmanMxdylelL3hkWNgPMeTCpMwpV3nXjpOHuBXtFv7aiO2xRuQS6OoAdgkNcSNug==";
};
};
- "stylus-supremacy-2.12.7" = {
+ "stylus-supremacy-2.14.0" = {
name = "stylus-supremacy";
packageName = "stylus-supremacy";
- version = "2.12.7";
+ version = "2.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stylus-supremacy/-/stylus-supremacy-2.12.7.tgz";
- sha512 = "Z5P0XttU45C+s1F360Bn9pd/5rZrct28NTfhKnrXC33Y7KDWwJCYHvT8Ypwie6Huxnt9W1ffCjBbkZYlk9yXYw==";
+ url = "https://registry.npmjs.org/stylus-supremacy/-/stylus-supremacy-2.14.0.tgz";
+ sha512 = "XeoMvDSTxgJnRPvnyVnIyTDLawLoKcZw1zoWc88p9oFZXxZbEDx8PGLjR4pSkLXVn/VqU5p5YILa7FqYaFakUA==";
};
};
"subarg-1.0.0" = {
@@ -38824,6 +38779,15 @@ let
sha512 = "qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==";
};
};
+ "supports-hyperlinks-1.0.1" = {
+ name = "supports-hyperlinks";
+ packageName = "supports-hyperlinks";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz";
+ sha512 = "HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==";
+ };
+ };
"sver-compat-1.5.0" = {
name = "sver-compat";
packageName = "sver-compat";
@@ -38905,13 +38869,13 @@ let
sha1 = "70070468d6d2977ca5237b2e519ca7d06a2ea3fd";
};
};
- "swagger-test-templates-1.5.1" = {
+ "swagger-test-templates-1.6.0" = {
name = "swagger-test-templates";
packageName = "swagger-test-templates";
- version = "1.5.1";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-test-templates/-/swagger-test-templates-1.5.1.tgz";
- sha512 = "p5EotTsyVunfNGvIr07r33Tij5p4r1aUv7QFvYYW3iO6pEUo2OXxINufkx8jBjD4/4hvP2ZlCjgLDexT2ClnGw==";
+ url = "https://registry.npmjs.org/swagger-test-templates/-/swagger-test-templates-1.6.0.tgz";
+ sha512 = "yWlUYlxT6FjVSvWJbHCMnAAAShSYdGvk1V1hd78Huey08Ra1Vzl8kIhhdExQ5+oLVzMrQE/FIm8fOtNjRXQqjA==";
};
};
"swagger-tools-0.9.16" = {
@@ -39004,15 +38968,6 @@ let
sha1 = "717d22cc53f0ce1def5594362f3a89a2ebb91105";
};
};
- "sync-request-3.0.0" = {
- name = "sync-request";
- packageName = "sync-request";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz";
- sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c";
- };
- };
"syntax-error-1.4.0" = {
name = "syntax-error";
packageName = "syntax-error";
@@ -39022,13 +38977,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.14.8" = {
+ "systeminformation-4.14.17" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "4.14.8";
+ version = "4.14.17";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.14.8.tgz";
- sha512 = "05wW1YaMBI6LlVtvw2wXQGr0thpX8E0IImYcpbqUiNanfmq8e+V89pDW2L5V/mN8kU37W0VtVySftQ0PwMIXKw==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.14.17.tgz";
+ sha512 = "CQbT5vnkqNb3JNl41xr8sYA8AX7GoaWP55/jnmFNQY0XQmUuoFshSNUkCkxiDdEC1qu2Vg9s0jR6LLmVSmNJUw==";
};
};
"syswide-cas-5.3.0" = {
@@ -39085,13 +39040,13 @@ let
sha1 = "bb9c2ca6324f659fde7634c2caf3c096e1187ca7";
};
};
- "tabtab-2.2.2" = {
+ "tabtab-3.0.2" = {
name = "tabtab";
packageName = "tabtab";
- version = "2.2.2";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tabtab/-/tabtab-2.2.2.tgz";
- sha1 = "7a047f143b010b4cbd31f857e82961512cbf4e14";
+ url = "https://registry.npmjs.org/tabtab/-/tabtab-3.0.2.tgz";
+ sha512 = "jANKmUe0sIQc/zTALTBy186PoM/k6aPrh3A7p6AaAfF6WPSbTx1JYeGIGH162btpH+mmVEXln+UxwViZHO2Jhg==";
};
};
"tabtab-git+https://github.com/mixu/node-tabtab.git" = {
@@ -39194,13 +39149,13 @@ let
sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==";
};
};
- "tar-4.4.11" = {
+ "tar-4.4.13" = {
name = "tar";
packageName = "tar";
- version = "4.4.11";
+ version = "4.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.11.tgz";
- sha512 = "iI4zh3ktLJKaDNZKZc+fUONiQrSn9HkCFzamtb7k8FFmVilHVob7QsLX/VySAW8lAviMzMbFw4QtFb4errwgYA==";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz";
+ sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==";
};
};
"tar-fs-2.0.0" = {
@@ -39275,13 +39230,13 @@ let
sha1 = "9450e8768c83b416fd4d1a6a9449eeccbf496c29";
};
};
- "telegraf-3.32.0" = {
+ "telegraf-3.33.0" = {
name = "telegraf";
packageName = "telegraf";
- version = "3.32.0";
+ version = "3.33.0";
src = fetchurl {
- url = "https://registry.npmjs.org/telegraf/-/telegraf-3.32.0.tgz";
- sha512 = "5ZHiovyuG1rVLygJjaqf57wDt8e1nijAinKXCxN1tyUZ4BcrkZW/z5rVTEXA+KegpFbWxKKv3KnJwUJrKDqD0Q==";
+ url = "https://registry.npmjs.org/telegraf/-/telegraf-3.33.0.tgz";
+ sha512 = "5N47JPHVfypNW8U8xCE1hg59itFfohvRvMVceigYbj+A7pb9o9aZzjYA5MjNeTXuADubFVl/ZdWFMfNf/uN7TQ==";
};
};
"telegram-typings-3.6.1" = {
@@ -39374,13 +39329,22 @@ let
sha1 = "458b83887f288fc56d6fffbfad262e26638efa69";
};
};
- "terminal-kit-1.31.3" = {
+ "term-size-2.1.0" = {
+ name = "term-size";
+ packageName = "term-size";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/term-size/-/term-size-2.1.0.tgz";
+ sha512 = "I42EWhJ+2aeNQawGx1VtpO0DFI9YcfuvAMNIdKyf/6sRbHJ4P+ZQ/zIT87tE+ln1ymAGcCJds4dolfSAS0AcNg==";
+ };
+ };
+ "terminal-kit-1.31.4" = {
name = "terminal-kit";
packageName = "terminal-kit";
- version = "1.31.3";
+ version = "1.31.4";
src = fetchurl {
- url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.31.3.tgz";
- sha512 = "nFNMB70bnvvlCazD2GLhJNmL8uaYxtCd5NarsNFI98oDtn7VJr2TCkfKGX2NxIK42wFWE9ieCUEA93kDvPcBWw==";
+ url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.31.4.tgz";
+ sha512 = "alrT1vDcKamNxdU8HrN25hTsHBuSWb++HVPVy98xbbUJBTw5l+NiF+ILAO56fl0XQLPOMqVUs0lhqf0B20Lucg==";
};
};
"terser-3.17.0" = {
@@ -39392,13 +39356,13 @@ let
sha512 = "/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==";
};
};
- "terser-4.3.1" = {
+ "terser-4.3.9" = {
name = "terser";
packageName = "terser";
- version = "4.3.1";
+ version = "4.3.9";
src = fetchurl {
- url = "https://registry.npmjs.org/terser/-/terser-4.3.1.tgz";
- sha512 = "pnzH6dnFEsR2aa2SJaKb1uSCl3QmIsJ8dEkj0Fky+2AwMMcC9doMqLOQIH6wVTEKaVfKVvLSk5qxPBEZT9mywg==";
+ url = "https://registry.npmjs.org/terser/-/terser-4.3.9.tgz";
+ sha512 = "NFGMpHjlzmyOtPL+fDw3G7+6Ueh/sz4mkaUYa4lJCxOPTNzd0Uj0aZJOmsDYoSQyfuVoWDMSWTPU3huyOm2zdA==";
};
};
"terser-webpack-plugin-1.4.1" = {
@@ -39419,13 +39383,13 @@ let
sha512 = "SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==";
};
};
- "text-extensions-2.0.0" = {
+ "text-extensions-1.9.0" = {
name = "text-extensions";
packageName = "text-extensions";
- version = "2.0.0";
+ version = "1.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/text-extensions/-/text-extensions-2.0.0.tgz";
- sha512 = "F91ZqLgvi1E0PdvmxMgp+gcf6q8fMH7mhdwWfzXnl1k+GbpQDmi8l7DzLC5JTASKbwpY3TfxajAUzAXcv2NmsQ==";
+ url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz";
+ sha512 = "wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==";
};
};
"text-hex-1.0.0" = {
@@ -39491,15 +39455,6 @@ let
sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2";
};
};
- "then-request-2.2.0" = {
- name = "then-request";
- packageName = "then-request";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz";
- sha1 = "6678b32fa0ca218fe569981bbd8871b594060d81";
- };
- };
"thenify-3.3.0" = {
name = "thenify";
packageName = "thenify";
@@ -39572,15 +39527,6 @@ let
sha1 = "6e8e21200191d4eb6a99f6f010df46aa1c6eb2bd";
};
};
- "through-2.3.4" = {
- name = "through";
- packageName = "through";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz";
- sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455";
- };
- };
"through-2.3.8" = {
name = "through";
packageName = "through";
@@ -39671,13 +39617,13 @@ let
sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
};
};
- "thunky-1.0.3" = {
+ "thunky-1.1.0" = {
name = "thunky";
packageName = "thunky";
- version = "1.0.3";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz";
- sha512 = "YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==";
+ url = "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz";
+ sha512 = "eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==";
};
};
"tildify-1.2.0" = {
@@ -40184,13 +40130,13 @@ let
sha512 = "H/Z/yCuvZJj1vl1IQHI8dvF2QrUuXRJoptT5DW5967/dsLpXlCg+uyhFR5lfNj5mNaYePUbKtnL+qKWZGXv4Nw==";
};
};
- "torrent-stream-1.1.0" = {
+ "torrent-stream-1.2.0" = {
name = "torrent-stream";
packageName = "torrent-stream";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.1.0.tgz";
- sha512 = "yjKU8l985+/D2CdnAR2+pEpyMX13rlQ1kNYik34EHxcul7BjifW5sMizT+u47suOeBTji3lHBA7eZGhBjpnM6g==";
+ url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.2.0.tgz";
+ sha512 = "piQP9/wrXRYvEUAsmdu+fy2D2WPwU7BcsflTnKLsZsrUDBT/Y1INhuYU7Fw9PqEm+RF7QAa2gD8nMmvfb7QomA==";
};
};
"tosource-1.0.0" = {
@@ -40283,15 +40229,6 @@ let
sha1 = "8a7e8ab3044ad19f233f50c15894cbf69e5d205e";
};
};
- "traverse-0.3.9" = {
- name = "traverse";
- packageName = "traverse";
- version = "0.3.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz";
- sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9";
- };
- };
"traverse-0.4.6" = {
name = "traverse";
packageName = "traverse";
@@ -40337,22 +40274,13 @@ let
sha512 = "7mV4KbsLMuA6ths3J1wpVUj2PLmLdoNEGnP9fm3kxef4UXYC/A0rL5gKsqtkUaCMuRYUMORyioy8IpBWUBQ1Ig==";
};
};
- "tree-sitter-0.13.23" = {
- name = "tree-sitter";
- packageName = "tree-sitter";
- version = "0.13.23";
+ "treeify-1.1.0" = {
+ name = "treeify";
+ packageName = "treeify";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.13.23.tgz";
- sha512 = "75AiPbMEstv+YK8h4FkAHnmAJ6nNIUj/NFzRvKCHovmwSEKMi8Wc/E/crB4lJnHBOfV/f/DMQjN+e1Y36kagug==";
- };
- };
- "tree-sitter-bash-0.13.9" = {
- name = "tree-sitter-bash";
- packageName = "tree-sitter-bash";
- version = "0.13.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/tree-sitter-bash/-/tree-sitter-bash-0.13.9.tgz";
- sha512 = "b0L+QLS2eeIVrHnnbkFlvO1nElhPwqTxLIwyTeJytPYT0TS50Pe7bP+uPi3gkHT1YajxcauCxX1aDWDiZK1h5Q==";
+ url = "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz";
+ sha512 = "1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==";
};
};
"trim-0.0.1" = {
@@ -40580,6 +40508,15 @@ let
sha512 = "+bGy9iDAqg3WSfc2ZrprToSPJhZjqy7vUv9wupQzsiv+BVPVx1T2a6G4T0290SpQj+56Toaw9BiLO5j5Bd7QzA==";
};
};
+ "tty-1.0.1" = {
+ name = "tty";
+ packageName = "tty";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tty/-/tty-1.0.1.tgz";
+ sha1 = "e4409ac98b0dd1c50b59ff38e86eac3f0764ee45";
+ };
+ };
"tty-browserify-0.0.0" = {
name = "tty-browserify";
packageName = "tty-browserify";
@@ -40598,24 +40535,6 @@ let
sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==";
};
};
- "tunnel-0.0.2" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz";
- sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334";
- };
- };
- "tunnel-0.0.5" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz";
- sha512 = "gj5sdqherx4VZKMcBA4vewER7zdK25Td+z1npBqpbDys4eJrLx+SlYjJvq1bDXs2irkuJM5pf8ktaEQVipkrbA==";
- };
- };
"tunnel-0.0.6" = {
name = "tunnel";
packageName = "tunnel";
@@ -40688,15 +40607,6 @@ let
sha512 = "Kjart2102Kf0IdsEmLonSJKcByU7o9uiJhBde3GhrNHrX4XenT5WSKu4Hpkx+rF6Kyppeyd48BKsCREIOPXd/g==";
};
};
- "twitter-ng-0.6.2" = {
- name = "twitter-ng";
- packageName = "twitter-ng";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/twitter-ng/-/twitter-ng-0.6.2.tgz";
- sha1 = "13707115dd04c9bd1f2c646da976589be4d64bc4";
- };
- };
"txt-to-ast-3.0.3" = {
name = "txt-to-ast";
packageName = "txt-to-ast";
@@ -40715,6 +40625,15 @@ let
sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==";
};
};
+ "type-2.0.0" = {
+ name = "type";
+ packageName = "type";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type/-/type-2.0.0.tgz";
+ sha512 = "KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==";
+ };
+ };
"type-check-0.3.2" = {
name = "type-check";
packageName = "type-check";
@@ -40751,6 +40670,15 @@ let
sha512 = "DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==";
};
};
+ "type-fest-0.8.1" = {
+ name = "type-fest";
+ packageName = "type-fest";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz";
+ sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==";
+ };
+ };
"type-is-1.5.7" = {
name = "type-is";
packageName = "type-is";
@@ -40823,22 +40751,13 @@ let
sha512 = "kk80vLW9iGtjMnIv11qyxLqZm20UklzuR2tL0QAnDIygIUIemcZMxlMWudl9OOt76H3ntVzcTiddQ1/pAAJMYg==";
};
};
- "typescript-3.5.3" = {
+ "typescript-3.6.4" = {
name = "typescript";
packageName = "typescript";
- version = "3.5.3";
+ version = "3.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz";
- sha512 = "ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==";
- };
- };
- "typescript-3.6.3" = {
- name = "typescript";
- packageName = "typescript";
- version = "3.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz";
- sha512 = "N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-3.6.4.tgz";
+ sha512 = "unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==";
};
};
"typescript-eslint-parser-16.0.1" = {
@@ -40931,15 +40850,6 @@ let
sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==";
};
};
- "uglify-js-3.4.9" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.4.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz";
- sha512 = "8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==";
- };
- };
"uglify-js-3.6.0" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -40949,6 +40859,15 @@ let
sha512 = "W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==";
};
};
+ "uglify-js-3.6.4" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.4.tgz";
+ sha512 = "9Yc2i881pF4BPGhjteCXQNaXx1DCwm3dtOyBaG2hitHjLWOczw/ki8vD1bqyT3u6K0Ms/FpCShkmfg+FtlOfYA==";
+ };
+ };
"uglify-to-browserify-1.0.2" = {
name = "uglify-to-browserify";
packageName = "uglify-to-browserify";
@@ -41129,15 +41048,6 @@ let
sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
};
};
- "underscore-1.8.3" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz";
- sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
- };
- };
"underscore-1.9.1" = {
name = "underscore";
packageName = "underscore";
@@ -41561,13 +41471,13 @@ let
sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
};
};
- "unix-crypt-td-js-1.0.0" = {
+ "unix-crypt-td-js-1.1.4" = {
name = "unix-crypt-td-js";
packageName = "unix-crypt-td-js";
- version = "1.0.0";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz";
- sha1 = "1c0824150481bc7a01d49e98f1ec668d82412f3b";
+ url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz";
+ sha512 = "8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==";
};
};
"unixify-1.0.0" = {
@@ -41696,24 +41606,6 @@ let
sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
};
};
- "unzipper-0.9.7" = {
- name = "unzipper";
- packageName = "unzipper";
- version = "0.9.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/unzipper/-/unzipper-0.9.7.tgz";
- sha512 = "icFtME1RD648v+cjfcUWoky4bHbMTi8nk06nGxH77EPYyEeKaTgT3nRHM/dQ3znGXLi3+OlhYo86zQzNBRdNhw==";
- };
- };
- "upath-1.1.2" = {
- name = "upath";
- packageName = "upath";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz";
- sha512 = "kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==";
- };
- };
"upath-1.2.0" = {
name = "upath";
packageName = "upath";
@@ -41804,13 +41696,13 @@ let
sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
};
};
- "urijs-1.19.1" = {
+ "urijs-1.19.2" = {
name = "urijs";
packageName = "urijs";
- version = "1.19.1";
+ version = "1.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/urijs/-/urijs-1.19.1.tgz";
- sha512 = "xVrGVi94ueCJNrBSTjWqjvtgvl3cyOTThp2zaMaFNGp3F542TR6sM3f2o8RqZl+AwteClSVmoCyt0ka4RjQOQg==";
+ url = "https://registry.npmjs.org/urijs/-/urijs-1.19.2.tgz";
+ sha512 = "s/UIq9ap4JPZ7H1EB5ULo/aOUbWqfDi7FKzMC2Nz+0Si8GiT1rIEaprt8hy3Vy2Ex2aJPpOQv4P4DuOZ+K1c6w==";
};
};
"urix-0.1.0" = {
@@ -42326,15 +42218,6 @@ let
sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==";
};
};
- "validator-5.2.0" = {
- name = "validator";
- packageName = "validator";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz";
- sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
- };
- };
"validator-5.7.0" = {
name = "validator";
packageName = "validator";
@@ -42344,15 +42227,6 @@ let
sha1 = "7a87a58146b695ac486071141c0c49d67da05e5c";
};
};
- "validator-9.4.1" = {
- name = "validator";
- packageName = "validator";
- version = "9.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz";
- sha512 = "YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA==";
- };
- };
"value-or-function-3.0.0" = {
name = "value-or-function";
packageName = "value-or-function";
@@ -42470,13 +42344,13 @@ let
sha512 = "fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==";
};
};
- "verda-1.0.0-4" = {
+ "verda-1.0.0-10" = {
name = "verda";
packageName = "verda";
- version = "1.0.0-4";
+ version = "1.0.0-10";
src = fetchurl {
- url = "https://registry.npmjs.org/verda/-/verda-1.0.0-4.tgz";
- sha512 = "DKr2WdWlPwJvmqCcjs6LPaBOacFQUdk6+u7tqwkxYKbHa0Touff7Y6x+YAWbnT1dace5Qlv/CRr6YBEaB08r3A==";
+ url = "https://registry.npmjs.org/verda/-/verda-1.0.0-10.tgz";
+ sha512 = "5VWCbPzZnYjjrlvCE4XW4wT8ko9ppCSo6EyHDfH7XBsv0EEglzq/Pdg8k77aV/9xQwFvnFcd1y/XnmDbya77Ow==";
};
};
"verror-1.1.0" = {
@@ -42821,13 +42695,13 @@ let
sha512 = "pTnfXbsME3pl+yDfhUp/mtvPyIJk0Le4zqJxDn56s9GY9LqY0RmkSEh0oHH6D0HXR3Ni6wKosIaqu8a2G0+jdw==";
};
};
- "vscode-emmet-helper-1.2.15" = {
+ "vscode-emmet-helper-1.2.16" = {
name = "vscode-emmet-helper";
packageName = "vscode-emmet-helper";
- version = "1.2.15";
+ version = "1.2.16";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-emmet-helper/-/vscode-emmet-helper-1.2.15.tgz";
- sha512 = "JplvmMMWSvm/6/dZezix2ADPM49u6YahPYjs/QToohUpomW/2Eb27ecCrkCyOGBPfKLKGiOPHCssss8TSDA9ag==";
+ url = "https://registry.npmjs.org/vscode-emmet-helper/-/vscode-emmet-helper-1.2.16.tgz";
+ sha512 = "BuQK6fTV2w65Yd0/CJGj1EOvcJ9NHWfrMJ9nA8pjnu9jzAAnXLhnbviuGT9medMiPU0mp0tJqc/8Z0qlXcqdGw==";
};
};
"vscode-html-languageservice-2.1.12" = {
@@ -42857,13 +42731,13 @@ let
sha512 = "perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg==";
};
};
- "vscode-jsonrpc-4.1.0-next.3" = {
+ "vscode-jsonrpc-5.0.0-next.2" = {
name = "vscode-jsonrpc";
packageName = "vscode-jsonrpc";
- version = "4.1.0-next.3";
+ version = "5.0.0-next.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.1.0-next.3.tgz";
- sha512 = "Z6oxBiMks2+UADV1QHXVooSakjyhI+eHTnXzDyVvVMmegvSfkXk2w6mPEdSkaNHFBdtWW7n20H1yw2nA3A17mg==";
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-5.0.0-next.2.tgz";
+ sha512 = "Q3/jabZUNviCG9hhF6hHWjhrABevPF9mv0aiE2j8BYCAP2k+aHTpjMyk+04MzaAqWYwXdQuZkLSbcYCCqbzJLg==";
};
};
"vscode-languageclient-4.0.1" = {
@@ -42920,13 +42794,13 @@ let
sha512 = "IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g==";
};
};
- "vscode-languageserver-protocol-3.15.0-next.8" = {
+ "vscode-languageserver-protocol-3.15.0-next.9" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
- version = "3.15.0-next.8";
+ version = "3.15.0-next.9";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.15.0-next.8.tgz";
- sha512 = "9FigDhuYTUqX73IGKgJeyLmfXQJv9p3t22RF3peT+HM33uFiTZE3MUgHj4I9m/dKCDvuJt0yvbI27ut4hDoGRQ==";
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.15.0-next.9.tgz";
+ sha512 = "b9PAxouMmtsLEe8ZjbIMPb7wRWPhckGfgjwZLmp/dWnaAuRPYtY3lGO0/rNbLc3jKIqCVlnEyYVFKalzDAzj0g==";
};
};
"vscode-languageserver-protocol-3.6.0" = {
@@ -42956,13 +42830,13 @@ let
sha512 = "lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A==";
};
};
- "vscode-languageserver-types-3.15.0-next.4" = {
+ "vscode-languageserver-types-3.15.0-next.5" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
- version = "3.15.0-next.4";
+ version = "3.15.0-next.5";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.15.0-next.4.tgz";
- sha512 = "IKIWTdUPBnOtwznIrhxKnjVZ7hYxEzwZ3M2xmDi7OjjexuOM6LnGtoo1Dv4wYSik4epK4STEib6e8da2GxUsJA==";
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.15.0-next.5.tgz";
+ sha512 = "7hrELhTeWieUgex3+6692KjCkcmO/+V/bFItM5MHGcBotzwmjEuXjapLLYTYhIspuJ1ibRSik5MhX5YwLpsPiw==";
};
};
"vscode-languageserver-types-3.6.0" = {
@@ -43010,6 +42884,15 @@ let
sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
};
};
+ "vscode-uri-1.0.6" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz";
+ sha512 = "sLI2L0uGov3wKVb9EB+vIQBl9tVP90nqRvxSoJ35vI3NjxE8jfsE5DSOhWgSunHSZmKS4OCi2jrtfxK7uyp2ww==";
+ };
+ };
"vscode-uri-1.0.8" = {
name = "vscode-uri";
packageName = "vscode-uri";
@@ -43028,13 +42911,13 @@ let
sha1 = "13587190f34e72ba7a07ebbaa7e70ac147b1fb7d";
};
};
- "vue-cli-plugin-apollo-0.20.0" = {
+ "vue-cli-plugin-apollo-0.21.3" = {
name = "vue-cli-plugin-apollo";
packageName = "vue-cli-plugin-apollo";
- version = "0.20.0";
+ version = "0.21.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vue-cli-plugin-apollo/-/vue-cli-plugin-apollo-0.20.0.tgz";
- sha512 = "Ey/luK5HtP4ZQhua5RKETR672pE7BPymaso//Ccl/wxQI1BqVTxg9o/wYeXuURBIw2Et9JaVLXmh0e9uKgk8Jw==";
+ url = "https://registry.npmjs.org/vue-cli-plugin-apollo/-/vue-cli-plugin-apollo-0.21.3.tgz";
+ sha512 = "8CzRVrAsFkB9lpl600cRCNR9OUnrSYYAIVF9/qW4pP0TMXbhrd1F1wEAAN6E0CPimjTLB+qSt6zWS4vb2wC8Wg==";
};
};
"vue-eslint-parser-2.0.3" = {
@@ -43199,6 +43082,15 @@ let
sha512 = "sukVBk0chRCL4n+Xwurl2TlD4/JmezNv4L2nwlTZx4KwMeUPfmD9TdGl6A6taayNgjObYzp0k0gubAcQCp7TMg==";
};
};
+ "web-tree-sitter-0.15.10" = {
+ name = "web-tree-sitter";
+ packageName = "web-tree-sitter";
+ version = "0.15.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.15.10.tgz";
+ sha512 = "8utowZB5h5djbotf1umt4na9Vt6Q18ZICUeC9jW4qWWjUrtQ2xvxDuAJ+EibmqUJBAKATrDMXnY2xYaskGg8wg==";
+ };
+ };
"webassemblyjs-1.8.5" = {
name = "webassemblyjs";
packageName = "webassemblyjs";
@@ -43226,13 +43118,13 @@ let
sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==";
};
};
- "webpack-4.40.2" = {
+ "webpack-4.41.2" = {
name = "webpack";
packageName = "webpack";
- version = "4.40.2";
+ version = "4.41.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-4.40.2.tgz";
- sha512 = "5nIvteTDCUws2DVvP9Qe+JPla7kWPPIDFZv55To7IycHWZ+Z5qBdaBYPyuXWdhggTufZkQwfIK+5rKQTVovm2A==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-4.41.2.tgz";
+ sha512 = "Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==";
};
};
"webpack-cli-3.3.9" = {
@@ -43352,6 +43244,15 @@ let
sha512 = "37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==";
};
};
+ "whatwg-url-7.1.0" = {
+ name = "whatwg-url";
+ packageName = "whatwg-url";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz";
+ sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==";
+ };
+ };
"whatwg-url-compat-0.6.5" = {
name = "whatwg-url-compat";
packageName = "whatwg-url-compat";
@@ -43397,6 +43298,15 @@ let
sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
};
};
+ "which-2.0.1" = {
+ name = "which";
+ packageName = "which";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-2.0.1.tgz";
+ sha512 = "N7GBZOTswtB9lkQBZA4+zAXrjEIWAUOB93AvzUiudRzRxhUdLURQ7D/gAIMY1gatT/LTbmbcv8SiYazy3eYB7w==";
+ };
+ };
"which-module-1.0.0" = {
name = "which-module";
packageName = "which-module";
@@ -43460,6 +43370,15 @@ let
sha512 = "Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==";
};
};
+ "widest-line-3.1.0" = {
+ name = "widest-line";
+ packageName = "widest-line";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz";
+ sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==";
+ };
+ };
"win-detect-browsers-1.0.2" = {
name = "win-detect-browsers";
packageName = "win-detect-browsers";
@@ -43712,6 +43631,15 @@ let
sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
};
};
+ "wrap-ansi-4.0.0" = {
+ name = "wrap-ansi";
+ packageName = "wrap-ansi";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz";
+ sha512 = "uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg==";
+ };
+ };
"wrap-ansi-5.1.0" = {
name = "wrap-ansi";
packageName = "wrap-ansi";
@@ -43721,13 +43649,13 @@ let
sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==";
};
};
- "wrap-ansi-6.0.0" = {
+ "wrap-ansi-6.1.0" = {
name = "wrap-ansi";
packageName = "wrap-ansi";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.0.0.tgz";
- sha512 = "8YwLklVkHe4QNpGFrK6Mxm+BaMY7da6C9GlDED3xs3XwThyJHSbVwg9qC4s1N8tBFcnM1S0s8I390RC6SgGe+g==";
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.1.0.tgz";
+ sha512 = "y8j9eJaotnWgJkysmwld5GkLH2KE9srRvqQE2bu1tZb0O9Qgk1mLyz4Q4KIWyjZAi2+6NRqkM/A580IsUseDdw==";
};
};
"wrap-fn-0.1.5" = {
@@ -43775,13 +43703,13 @@ let
sha512 = "GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==";
};
};
- "write-file-atomic-3.0.0" = {
+ "write-file-atomic-3.0.1" = {
name = "write-file-atomic";
packageName = "write-file-atomic";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.0.tgz";
- sha512 = "EIgkf60l2oWsffja2Sf2AL384dx328c0B+cIYPTQq5q2rOYuDV00/iPFBOUiDKKwKMOhkymH8AidPaRvzfxY+Q==";
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.1.tgz";
+ sha512 = "JPStrIyyVJ6oCSz/691fAjFtefZ6q+fP6tm+OS4Qw6o+TGQxNp1ziY2PgS+X/m0V8OWhZiO/m4xSj+Pr4RrZvw==";
};
};
"write-good-0.11.3" = {
@@ -43883,15 +43811,6 @@ let
sha512 = "GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==";
};
};
- "ws-7.1.1" = {
- name = "ws";
- packageName = "ws";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.1.1.tgz";
- sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A==";
- };
- };
"ws-7.1.2" = {
name = "ws";
packageName = "ws";
@@ -43901,6 +43820,15 @@ let
sha512 = "gftXq3XI81cJCgkUiAVixA0raD9IVmXqsylCrjRygw4+UOOGzPoxnQ6r/CnVL9i+mDncJo94tSkyrtuuQVBmrg==";
};
};
+ "ws-7.2.0" = {
+ name = "ws";
+ packageName = "ws";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-7.2.0.tgz";
+ sha512 = "+SqNqFbwTm/0DC18KYzIsMTnEWpLwJsiasW/O17la4iDRRIO9uaHbvKiAS3AHgTiuuWerK/brj4O6MYZkei9xg==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -44027,15 +43955,6 @@ let
sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==";
};
};
- "xml2js-0.1.14" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz";
- sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c";
- };
- };
"xml2js-0.2.4" = {
name = "xml2js";
packageName = "xml2js";
@@ -44334,13 +44253,13 @@ let
sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
};
};
- "yallist-3.0.3" = {
+ "yallist-3.1.1" = {
name = "yallist";
packageName = "yallist";
- version = "3.0.3";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz";
- sha512 = "S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==";
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz";
+ sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==";
};
};
"yaml-ast-parser-0.0.40" = {
@@ -44406,13 +44325,13 @@ let
sha512 = "ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==";
};
};
- "yargs-11.1.0" = {
+ "yargs-11.1.1" = {
name = "yargs";
packageName = "yargs";
- version = "11.1.0";
+ version = "11.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz";
- sha512 = "NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-11.1.1.tgz";
+ sha512 = "PRU7gJrJaXv3q3yQZ/+/X6KBswZiaQ+zOmdprZcouPYtQgvNU35i+68M4b1ZHLZtYFT5QObFLV+ZkmJYcwKdiw==";
};
};
"yargs-12.0.4" = {
@@ -44433,15 +44352,6 @@ let
sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==";
};
};
- "yargs-13.2.2" = {
- name = "yargs";
- packageName = "yargs";
- version = "13.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz";
- sha512 = "WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA==";
- };
- };
"yargs-13.2.4" = {
name = "yargs";
packageName = "yargs";
@@ -44460,13 +44370,22 @@ let
sha512 = "2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==";
};
};
- "yargs-14.1.0" = {
+ "yargs-14.0.0" = {
name = "yargs";
packageName = "yargs";
- version = "14.1.0";
+ version = "14.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-14.1.0.tgz";
- sha512 = "IdkQq1NiiV1fPwN5I2o4B0PKVjKh1EP71egpWO8dlovT8LG8JrXRmbH23v6I3CtjeEMnNC/IF3lq6XepPoELdg==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-14.0.0.tgz";
+ sha512 = "ssa5JuRjMeZEUjg7bEL99AwpitxU/zWGAGpdj0di41pOEmJti8NR6kyUIJBkR78DTYNPZOU08luUo0GTHuB+ow==";
+ };
+ };
+ "yargs-14.2.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "14.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-14.2.0.tgz";
+ sha512 = "/is78VKbKs70bVZH7w4YaZea6xcJWOAwkhbR0CFuZBmYtfTYF0xjGJF43AYd8g2Uii1yJwmS5GR2vBmrc32sbg==";
};
};
"yargs-3.10.0" = {
@@ -44559,13 +44478,13 @@ let
sha512 = "oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==";
};
};
- "yargs-parser-14.0.0" = {
+ "yargs-parser-15.0.0" = {
name = "yargs-parser";
packageName = "yargs-parser";
- version = "14.0.0";
+ version = "15.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-14.0.0.tgz";
- sha512 = "zn/Mnx+tbFjkCFUodEpjXckNS65NfpB5oyqOkDDEG/8uxlfLZJu2IoBLQFjukUkn9rBbGkVYNzrDh6qy4NUd3g==";
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.0.tgz";
+ sha512 = "xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ==";
};
};
"yargs-parser-2.4.1" = {
@@ -44622,13 +44541,13 @@ let
sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
};
};
- "yargs-unparser-1.5.0" = {
+ "yargs-unparser-1.6.0" = {
name = "yargs-unparser";
packageName = "yargs-unparser";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz";
- sha512 = "HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw==";
+ url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz";
+ sha512 = "W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==";
};
};
"yarn-1.17.3" = {
@@ -44640,6 +44559,15 @@ let
sha512 = "CgA8o7nRZaQvmeF/WBx2FC7f9W/0X59T2IaLYqgMo6637wfp5mMEsM3YXoJtKUspnpmDJKl/gGFhnqS+sON7hA==";
};
};
+ "yarn-1.19.1" = {
+ name = "yarn";
+ packageName = "yarn";
+ version = "1.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.19.1.tgz";
+ sha512 = "gBnfbL9rYY05Gt0cjJhs/siqQXHYlZalTjK3nXn2QO20xbkIFPob+LlH44ML47GcR4VU9/2dYck1BWFM0Javxw==";
+ };
+ };
"yauzl-2.10.0" = {
name = "yauzl";
packageName = "yauzl";
@@ -44694,13 +44622,13 @@ let
sha512 = "CP0fwGk5Y+jel+A0AQbyqnIFZRRpkKOeYUibiTSmlgV9PcgNFFVwn86VcUIpDLOqVjF+9v+O9FWQMo+IUcV2mA==";
};
};
- "yeoman-environment-2.4.0" = {
+ "yeoman-environment-2.5.0" = {
name = "yeoman-environment";
packageName = "yeoman-environment";
- version = "2.4.0";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.4.0.tgz";
- sha512 = "SsvoL0RNAFIX69eFxkUhwKUN2hG1UwUjxrcP+T2ytwdhqC/kHdnFOH2SXdtSN1Ju4aO4xuimmzfRoheYY88RuA==";
+ url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.5.0.tgz";
+ sha512 = "RCxVKbSiW1o0l5C7dkGvG4BHmI4dfSA50pcBU9VQ2AOUErgGdCtfU+bLM6g7NV9iA2uxFGFYv6iJArhmWzRouA==";
};
};
"yn-3.1.1" = {
@@ -44808,17 +44736,17 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "8.3.5";
+ version = "8.3.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-8.3.5.tgz";
- sha512 = "gKzYV5YhypXKpt4vH/YJ/T7a72EqxTJynJ8dtoVsZw5YTdCzqa6APvObNs4lZaZ3pYxUOQr36W4Rz8Lv8CSBWA==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-8.3.14.tgz";
+ sha512 = "cOP2UvnnYocx1U1aiNkuLCcBxSktIXkadzrY7UlWJtQiCPGWm3Y87BfrQXub9Nsh79iyV8k8uKZKEax2ayESSg==";
};
dependencies = [
- sources."@angular-devkit/architect-0.803.5"
- sources."@angular-devkit/core-8.3.5"
- sources."@angular-devkit/schematics-8.3.5"
- sources."@schematics/angular-8.3.5"
- sources."@schematics/update-0.803.5"
+ sources."@angular-devkit/architect-0.803.14"
+ sources."@angular-devkit/core-8.3.14"
+ sources."@angular-devkit/schematics-8.3.14"
+ sources."@schematics/angular-8.3.14"
+ sources."@schematics/update-0.803.14"
sources."@yarnpkg/lockfile-1.1.0"
sources."JSONStream-1.3.5"
sources."agent-base-4.3.0"
@@ -44837,15 +44765,19 @@ in
sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
sources."buffer-from-1.1.1"
sources."builtins-1.0.3"
- sources."cacache-12.0.3"
+ (sources."cacache-12.0.3" // {
+ dependencies = [
+ sources."rimraf-2.7.1"
+ ];
+ })
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."cli-cursor-3.1.0"
sources."cli-width-2.2.0"
sources."color-convert-1.9.3"
@@ -44853,7 +44785,11 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
- sources."copy-concurrently-1.0.5"
+ (sources."copy-concurrently-1.0.5" // {
+ dependencies = [
+ sources."rimraf-2.7.1"
+ ];
+ })
sources."core-util-is-1.0.2"
sources."cyclist-1.0.1"
sources."dashdash-1.14.1"
@@ -44866,9 +44802,9 @@ in
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."err-code-1.1.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
@@ -44879,7 +44815,7 @@ in
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
sources."figgy-pudding-3.5.1"
- sources."figures-3.0.0"
+ sources."figures-3.1.0"
sources."flush-write-stream-1.1.1"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
@@ -44891,14 +44827,14 @@ in
sources."genfun-5.0.0"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-cache-semantics-3.8.1"
(sources."http-proxy-agent-2.1.0" // {
dependencies = [
@@ -44907,7 +44843,7 @@ in
];
})
sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.2" // {
+ (sources."https-proxy-agent-2.2.4" // {
dependencies = [
sources."debug-3.2.6"
];
@@ -44915,7 +44851,7 @@ in
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."iferr-0.1.5"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
sources."imurmurhash-0.1.4"
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
@@ -44944,17 +44880,21 @@ in
sources."lodash-4.17.15"
sources."lru-cache-5.1.1"
sources."magic-string-0.25.3"
- sources."make-fetch-happen-5.0.0"
+ sources."make-fetch-happen-5.0.1"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mississippi-3.0.0"
sources."mkdirp-0.5.1"
- sources."move-concurrently-1.0.1"
+ (sources."move-concurrently-1.0.1" // {
+ dependencies = [
+ sources."rimraf-2.7.1"
+ ];
+ })
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."node-fetch-npm-2.0.2"
@@ -44969,13 +44909,13 @@ in
sources."semver-5.7.1"
];
})
- sources."npm-packlist-1.4.4"
- (sources."npm-pick-manifest-2.2.3" // {
+ sources."npm-packlist-1.4.6"
+ (sources."npm-pick-manifest-3.0.2" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."npm-registry-fetch-4.0.1"
+ sources."npm-registry-fetch-4.0.2"
sources."oauth-sign-0.9.0"
sources."object-inspect-1.6.0"
sources."object-keys-1.1.1"
@@ -44988,6 +44928,8 @@ in
sources."osenv-0.1.5"
(sources."pacote-9.5.5" // {
dependencies = [
+ sources."npm-pick-manifest-2.2.3"
+ sources."rimraf-2.7.1"
sources."semver-5.7.1"
];
})
@@ -45020,7 +44962,7 @@ in
sources."resolve-1.12.0"
sources."restore-cursor-3.1.0"
sources."retry-0.10.1"
- sources."rimraf-2.7.1"
+ sources."rimraf-3.0.0"
sources."run-async-2.3.0"
sources."run-queue-1.0.3"
sources."rxjs-6.4.0"
@@ -45062,7 +45004,7 @@ in
sources."strip-ansi-5.2.0"
sources."supports-color-5.5.0"
sources."symbol-observable-1.2.0"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."through-2.3.8"
sources."through2-2.0.5"
sources."tmp-0.0.33"
@@ -45094,7 +45036,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-4.0.0"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -45109,24 +45051,28 @@ in
"@antora/cli" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_cli";
packageName = "@antora/cli";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/cli/-/cli-2.1.1.tgz";
- sha512 = "U0xrC4/k2ci04u9Y1Qme6DcZNo1vcJfX8GC8JueMbe+58V6mxewE6yoIuYYCsuy+SI1D0Kbod+M8DrDnxubMSA==";
+ url = "https://registry.npmjs.org/@antora/cli/-/cli-2.1.2.tgz";
+ sha512 = "U0N8yjQl7kFUsJuCSMiXTWFnXFKMwmDwPy0cH98Kx251PrsvNRv1i2SdHrlp6Ve2+VcaJ3qpv2UcuyG1GKUzKg==";
};
dependencies = [
- sources."@antora/playbook-builder-2.1.1"
+ sources."@antora/playbook-builder-2.1.2"
sources."@iarna/toml-2.2.3"
sources."argparse-1.0.10"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.0.1"
- sources."commander-3.0.1"
- sources."convict-5.1.0"
+ sources."commander-3.0.2"
+ (sources."convict-5.1.0" // {
+ dependencies = [
+ sources."json5-2.1.0"
+ ];
+ })
sources."decamelize-1.2.0"
sources."deep-freeze-node-1.1.3"
sources."esprima-4.0.1"
sources."js-yaml-3.13.1"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."lodash.clonedeep-4.5.0"
sources."map-obj-4.1.0"
sources."minimist-1.2.0"
@@ -45149,25 +45095,25 @@ in
"@antora/site-generator-default" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_site-generator-default";
packageName = "@antora/site-generator-default";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-2.1.1.tgz";
- sha512 = "lXE4+gW29OM20t8z1aYyr51KQuEow7kxu4sN8TDCr+2yU0Oqx/6Nxm9zUN33hT6XkNH0oMccdcWr0Aay22Lg2w==";
+ url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-2.1.2.tgz";
+ sha512 = "iHy4YFdIsOO5wTuB1CAvuPcojTSSIhKgiY1E4e1FZVUe3J7SGfbrj49pSbwYugrMgPtCf2KwcCZKwXnKW+k71A==";
};
dependencies = [
- sources."@antora/asciidoc-loader-2.1.1"
- sources."@antora/content-aggregator-2.1.1"
- sources."@antora/content-classifier-2.1.1"
- sources."@antora/document-converter-2.1.1"
+ sources."@antora/asciidoc-loader-2.1.2"
+ sources."@antora/content-aggregator-2.1.2"
+ sources."@antora/content-classifier-2.1.2"
+ sources."@antora/document-converter-2.1.2"
sources."@antora/expand-path-helper-1.0.0"
- sources."@antora/navigation-builder-2.1.1"
- sources."@antora/page-composer-2.1.1"
- sources."@antora/playbook-builder-2.1.1"
- sources."@antora/redirect-producer-2.1.1"
- sources."@antora/site-mapper-2.1.1"
- sources."@antora/site-publisher-2.1.1"
- sources."@antora/ui-loader-2.1.1"
- sources."@babel/runtime-7.6.0"
+ sources."@antora/navigation-builder-2.1.2"
+ sources."@antora/page-composer-2.1.2"
+ sources."@antora/playbook-builder-2.1.2"
+ sources."@antora/redirect-producer-2.1.2"
+ sources."@antora/site-mapper-2.1.2"
+ sources."@antora/site-publisher-2.1.2"
+ sources."@antora/ui-loader-2.1.2"
+ sources."@babel/runtime-7.6.3"
sources."@iarna/toml-2.2.3"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
@@ -45178,7 +45124,7 @@ in
sources."balanced-match-1.0.0"
sources."base64-js-0.0.2"
sources."benchmark-1.0.0"
- sources."bl-3.0.0"
+ sources."bl-4.0.0"
sources."bops-0.0.7"
sources."brace-expansion-1.1.11"
sources."buffer-crc32-0.2.13"
@@ -45209,14 +45155,18 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
(sources."convert-source-map-1.6.0" // {
dependencies = [
sources."safe-buffer-5.1.2"
];
})
- sources."convict-5.1.0"
+ (sources."convict-5.1.0" // {
+ dependencies = [
+ sources."json5-2.1.0"
+ ];
+ })
sources."core-util-is-1.0.2"
sources."crc-32-1.2.0"
sources."decamelize-1.2.0"
@@ -45235,7 +45185,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."escape-string-regexp-2.0.0"
sources."esprima-4.0.1"
sources."event-stream-3.3.4"
@@ -45271,7 +45221,7 @@ in
sources."glob-parent-3.1.0"
(sources."glob-stream-6.1.0" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -45285,7 +45235,7 @@ in
sources."mimic-response-1.0.1"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
(sources."gulp-vinyl-zip-2.1.2" // {
dependencies = [
sources."readable-stream-2.3.6"
@@ -45294,7 +45244,7 @@ in
sources."through2-2.0.5"
];
})
- sources."handlebars-4.2.1"
+ sources."handlebars-4.4.5"
sources."has-symbols-1.0.0"
sources."http-cache-semantics-4.0.3"
sources."ignore-5.1.4"
@@ -45315,7 +45265,7 @@ in
sources."js-yaml-3.13.1"
sources."json-buffer-3.0.0"
sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."jsonfile-4.0.0"
sources."keyv-3.1.0"
(sources."lazystream-1.0.0" // {
@@ -45345,7 +45295,7 @@ in
sources."neo-async-2.6.1"
sources."nick-0.1.3"
sources."normalize-path-2.1.1"
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
sources."now-and-later-2.0.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.0"
@@ -45434,7 +45384,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.6.0"
+ sources."uglify-js-3.6.4"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -45475,22 +45425,27 @@ in
"@vue/cli" = nodeEnv.buildNodePackage {
name = "_at_vue_slash_cli";
packageName = "@vue/cli";
- version = "3.11.0";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli/-/cli-3.11.0.tgz";
- sha512 = "dhnkqsg1TRyaauKl7j8b0n5N8vB1Vm6cBqU4n2Re0LeYzO4UUE6KlOAt1zTVn+5Nx45V1NAoPWff1iefPDTT8g==";
+ url = "https://registry.npmjs.org/@vue/cli/-/cli-4.0.5.tgz";
+ sha512 = "G13V2wlye7IClgO/S8j/QOjp1fBv7MEawTXqGBX/FqSajY4DPmzZRK0eoc6+IZQLmHSYAwmVZ242HE8YL1McAw==";
};
dependencies = [
sources."@akryum/winattr-3.0.0"
+ sources."@apollo/federation-0.10.2"
sources."@apollographql/apollo-tools-0.4.0"
+ sources."@apollographql/graphql-language-service-interface-2.0.2"
+ sources."@apollographql/graphql-language-service-parser-2.0.2"
+ sources."@apollographql/graphql-language-service-types-2.0.2"
+ sources."@apollographql/graphql-language-service-utils-2.0.2"
sources."@apollographql/graphql-playground-html-1.6.24"
sources."@babel/code-frame-7.5.5"
- (sources."@babel/core-7.6.0" // {
+ (sources."@babel/core-7.6.4" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."@babel/generator-7.6.0"
+ sources."@babel/generator-7.6.4"
sources."@babel/helper-annotate-as-pure-7.0.0"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0"
sources."@babel/helper-call-delegate-7.4.4"
@@ -45511,16 +45466,16 @@ in
sources."@babel/helper-simple-access-7.1.0"
sources."@babel/helper-split-export-declaration-7.4.4"
sources."@babel/helper-wrap-function-7.2.0"
- sources."@babel/helpers-7.6.0"
+ sources."@babel/helpers-7.6.2"
sources."@babel/highlight-7.5.0"
- sources."@babel/parser-7.6.0"
+ sources."@babel/parser-7.6.4"
sources."@babel/plugin-proposal-async-generator-functions-7.2.0"
sources."@babel/plugin-proposal-class-properties-7.5.5"
sources."@babel/plugin-proposal-dynamic-import-7.5.0"
sources."@babel/plugin-proposal-json-strings-7.2.0"
- sources."@babel/plugin-proposal-object-rest-spread-7.5.5"
+ sources."@babel/plugin-proposal-object-rest-spread-7.6.2"
sources."@babel/plugin-proposal-optional-catch-binding-7.2.0"
- sources."@babel/plugin-proposal-unicode-property-regex-7.4.4"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.6.2"
sources."@babel/plugin-syntax-async-generators-7.2.0"
sources."@babel/plugin-syntax-dynamic-import-7.2.0"
sources."@babel/plugin-syntax-flow-7.2.0"
@@ -45531,14 +45486,14 @@ in
sources."@babel/plugin-transform-arrow-functions-7.2.0"
sources."@babel/plugin-transform-async-to-generator-7.5.0"
sources."@babel/plugin-transform-block-scoped-functions-7.2.0"
- sources."@babel/plugin-transform-block-scoping-7.6.0"
+ sources."@babel/plugin-transform-block-scoping-7.6.3"
sources."@babel/plugin-transform-classes-7.5.5"
sources."@babel/plugin-transform-computed-properties-7.2.0"
sources."@babel/plugin-transform-destructuring-7.6.0"
- sources."@babel/plugin-transform-dotall-regex-7.4.4"
+ sources."@babel/plugin-transform-dotall-regex-7.6.2"
sources."@babel/plugin-transform-duplicate-keys-7.5.0"
sources."@babel/plugin-transform-exponentiation-operator-7.2.0"
- sources."@babel/plugin-transform-flow-strip-types-7.4.4"
+ sources."@babel/plugin-transform-flow-strip-types-7.6.3"
sources."@babel/plugin-transform-for-of-7.4.4"
sources."@babel/plugin-transform-function-name-7.4.4"
sources."@babel/plugin-transform-literals-7.2.0"
@@ -45547,7 +45502,7 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.6.0"
sources."@babel/plugin-transform-modules-systemjs-7.5.0"
sources."@babel/plugin-transform-modules-umd-7.2.0"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.3"
sources."@babel/plugin-transform-new-target-7.4.4"
sources."@babel/plugin-transform-object-super-7.5.5"
sources."@babel/plugin-transform-parameters-7.4.4"
@@ -45555,30 +45510,80 @@ in
sources."@babel/plugin-transform-regenerator-7.4.5"
sources."@babel/plugin-transform-reserved-words-7.2.0"
sources."@babel/plugin-transform-shorthand-properties-7.2.0"
- sources."@babel/plugin-transform-spread-7.2.2"
+ sources."@babel/plugin-transform-spread-7.6.2"
sources."@babel/plugin-transform-sticky-regex-7.2.0"
sources."@babel/plugin-transform-template-literals-7.4.4"
sources."@babel/plugin-transform-typeof-symbol-7.2.0"
- sources."@babel/plugin-transform-typescript-7.6.0"
- sources."@babel/plugin-transform-unicode-regex-7.4.4"
- (sources."@babel/preset-env-7.6.0" // {
+ sources."@babel/plugin-transform-typescript-7.6.3"
+ sources."@babel/plugin-transform-unicode-regex-7.6.2"
+ (sources."@babel/preset-env-7.6.3" // {
dependencies = [
sources."semver-5.7.1"
];
})
sources."@babel/preset-flow-7.0.0"
sources."@babel/preset-typescript-7.6.0"
- sources."@babel/register-7.6.0"
+ sources."@babel/register-7.6.2"
+ (sources."@babel/runtime-7.6.3" // {
+ dependencies = [
+ sources."regenerator-runtime-0.13.3"
+ ];
+ })
sources."@babel/template-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
+ sources."@babel/traverse-7.6.3"
+ sources."@babel/types-7.6.3"
+ sources."@endemolshinegroup/cosmiconfig-typescript-loader-1.0.1"
sources."@hapi/address-2.1.2"
sources."@hapi/bourne-1.3.2"
- sources."@hapi/hoek-8.2.4"
+ sources."@hapi/hoek-8.3.2"
sources."@hapi/joi-15.1.1"
- sources."@hapi/topo-3.1.4"
+ sources."@hapi/topo-3.1.6"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
+ sources."@oclif/color-0.0.0"
+ (sources."@oclif/command-1.5.19" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."@oclif/config-1.13.3"
+ (sources."@oclif/errors-1.2.2" // {
+ dependencies = [
+ sources."clean-stack-1.3.0"
+ sources."indent-string-3.2.0"
+ ];
+ })
+ sources."@oclif/linewrap-1.0.0"
+ sources."@oclif/parser-3.8.4"
+ (sources."@oclif/plugin-autocomplete-0.1.4" // {
+ dependencies = [
+ sources."debug-3.2.6"
+ sources."fs-extra-6.0.1"
+ ];
+ })
+ (sources."@oclif/plugin-help-2.2.1" // {
+ dependencies = [
+ sources."indent-string-3.2.0"
+ sources."string-width-3.1.0"
+ ];
+ })
+ sources."@oclif/plugin-not-found-1.2.3"
+ (sources."@oclif/plugin-plugins-1.7.8" // {
+ dependencies = [
+ sources."cli-ux-5.3.3"
+ sources."indent-string-3.2.0"
+ sources."npm-run-path-3.1.0"
+ sources."path-key-3.1.0"
+ sources."semver-5.7.1"
+ sources."string-width-3.1.0"
+ ];
+ })
+ (sources."@oclif/plugin-warn-if-update-available-1.7.0" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."@oclif/screen-1.0.4"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
sources."@protobufjs/codegen-2.0.4"
@@ -45589,76 +45594,89 @@ in
sources."@protobufjs/path-1.1.2"
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
+ sources."@samverschueren/stream-to-observable-0.3.0"
sources."@types/accepts-1.3.5"
sources."@types/body-parser-1.17.1"
sources."@types/connect-3.4.32"
- sources."@types/cookies-0.7.3"
+ sources."@types/cookies-0.7.4"
sources."@types/cors-2.8.6"
sources."@types/events-3.0.0"
sources."@types/express-4.17.1"
- sources."@types/express-serve-static-core-4.16.9"
+ sources."@types/express-serve-static-core-4.16.10"
sources."@types/fs-capacitor-2.0.0"
+ sources."@types/fs-extra-5.1.0"
sources."@types/glob-7.1.1"
sources."@types/graphql-upload-8.0.3"
sources."@types/http-assert-1.5.1"
sources."@types/keygrip-1.0.1"
- sources."@types/koa-2.0.49"
+ sources."@types/koa-2.0.51"
sources."@types/koa-compose-3.2.4"
sources."@types/long-4.0.0"
sources."@types/mime-2.0.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."@types/range-parser-1.2.3"
sources."@types/serve-static-1.13.3"
sources."@types/ws-6.0.3"
sources."@types/zen-observable-0.8.0"
- sources."@vue/cli-shared-utils-3.11.0"
- (sources."@vue/cli-ui-3.11.0" // {
+ sources."@vue/cli-shared-utils-4.0.5"
+ (sources."@vue/cli-ui-4.0.5" // {
dependencies = [
sources."clone-2.1.2"
];
})
- sources."@vue/cli-ui-addon-webpack-3.11.0"
- sources."@vue/cli-ui-addon-widgets-3.11.0"
+ sources."@vue/cli-ui-addon-webpack-4.0.5"
+ sources."@vue/cli-ui-addon-widgets-4.0.5"
sources."@wry/context-0.4.4"
sources."@wry/equality-0.1.9"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
- sources."aggregate-error-3.0.0"
+ sources."aggregate-error-3.0.1"
sources."ajv-6.10.2"
sources."ansi-align-2.0.0"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
+ sources."ansicolors-0.3.2"
+ sources."any-observable-0.3.0"
(sources."anymatch-2.0.0" // {
dependencies = [
sources."normalize-path-2.1.1"
];
})
+ sources."apollo-2.21.0"
sources."apollo-cache-1.3.2"
- sources."apollo-cache-control-0.8.4"
+ sources."apollo-cache-control-0.8.5"
sources."apollo-cache-inmemory-1.6.3"
sources."apollo-client-2.6.4"
+ sources."apollo-codegen-core-0.35.7"
+ sources."apollo-codegen-flow-0.33.32"
+ sources."apollo-codegen-scala-0.34.32"
+ sources."apollo-codegen-swift-0.35.12"
+ sources."apollo-codegen-typescript-0.35.7"
sources."apollo-datasource-0.6.3"
- sources."apollo-engine-reporting-1.4.6"
- sources."apollo-engine-reporting-protobuf-0.4.0"
+ sources."apollo-engine-reporting-1.4.7"
+ sources."apollo-engine-reporting-protobuf-0.4.1"
sources."apollo-env-0.5.1"
- sources."apollo-graphql-0.3.3"
+ sources."apollo-graphql-0.3.4"
+ sources."apollo-language-server-1.17.0"
sources."apollo-link-1.2.13"
sources."apollo-link-context-1.0.19"
+ sources."apollo-link-error-1.1.12"
+ sources."apollo-link-http-1.5.16"
sources."apollo-link-http-common-0.2.15"
sources."apollo-link-persisted-queries-0.2.2"
sources."apollo-link-state-0.4.2"
sources."apollo-link-ws-1.0.19"
sources."apollo-server-caching-0.5.0"
- sources."apollo-server-core-2.9.3"
+ sources."apollo-server-core-2.9.7"
sources."apollo-server-env-2.4.3"
- sources."apollo-server-errors-2.3.3"
- sources."apollo-server-express-2.9.3"
- sources."apollo-server-plugin-base-0.6.4"
- sources."apollo-server-types-0.2.4"
- sources."apollo-tracing-0.8.4"
- sources."apollo-upload-client-10.0.1"
+ sources."apollo-server-errors-2.3.4"
+ sources."apollo-server-express-2.9.7"
+ sources."apollo-server-plugin-base-0.6.5"
+ sources."apollo-server-types-0.2.5"
+ sources."apollo-tracing-0.8.5"
+ sources."apollo-upload-client-11.0.0"
sources."apollo-utilities-1.3.2"
sources."arg-4.1.1"
sources."argparse-1.0.10"
@@ -45673,17 +45691,30 @@ in
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."ast-types-0.11.7"
- sources."async-1.5.2"
+ sources."ast-types-0.13.2"
+ sources."astral-regex-1.0.0"
+ sources."async-2.6.3"
sources."async-each-1.0.3"
sources."async-limiter-1.0.1"
sources."async-retry-1.2.3"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
+ sources."await-to-js-2.1.1"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
sources."babel-core-7.0.0-bridge.0"
sources."babel-plugin-dynamic-import-node-2.3.0"
+ (sources."babel-polyfill-6.26.0" // {
+ dependencies = [
+ sources."core-js-2.6.10"
+ ];
+ })
+ (sources."babel-runtime-6.26.0" // {
+ dependencies = [
+ sources."core-js-2.6.10"
+ sources."regenerator-runtime-0.11.1"
+ ];
+ })
sources."backo2-1.0.2"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
@@ -45700,13 +45731,30 @@ in
sources."debug-2.6.9"
sources."http-errors-1.7.2"
sources."inherits-2.0.3"
+ sources."ms-2.0.0"
];
})
sources."boolbase-1.0.0"
- sources."boxen-1.3.0"
+ (sources."boxen-4.1.0" // {
+ dependencies = [
+ (sources."ansi-align-3.0.0" // {
+ dependencies = [
+ sources."string-width-3.1.0"
+ ];
+ })
+ sources."camelcase-5.3.1"
+ sources."cli-boxes-2.2.0"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.1.0"
+ sources."term-size-2.1.0"
+ sources."type-fest-0.5.2"
+ sources."widest-line-3.1.0"
+ ];
+ })
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.7.0"
+ sources."browserslist-4.7.2"
sources."buffer-5.4.3"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -45715,15 +45763,22 @@ in
sources."buffer-from-1.1.1"
sources."builtins-1.0.3"
sources."busboy-0.3.1"
+ sources."byline-5.0.0"
sources."bytes-3.1.0"
sources."cache-base-1.0.1"
sources."call-me-maybe-1.0.1"
+ sources."caller-callsite-2.0.0"
+ sources."caller-path-2.0.0"
+ sources."callsites-2.0.0"
+ sources."camel-case-3.0.0"
sources."camelcase-4.1.0"
- sources."caniuse-lite-1.0.30000989"
+ sources."caniuse-lite-1.0.30001004"
sources."capture-stack-trace-1.0.1"
+ sources."cardinal-2.1.1"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
+ sources."change-case-3.1.0"
sources."chardet-0.7.0"
sources."cheerio-1.0.0-rc.3"
sources."chokidar-2.1.8"
@@ -45749,36 +45804,53 @@ in
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.2.0"
+ (sources."cli-truncate-0.2.1" // {
+ 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."cli-ux-4.9.3" // {
+ dependencies = [
+ sources."indent-string-3.2.0"
+ sources."semver-5.7.1"
+ ];
+ })
sources."cli-width-2.2.0"
sources."clipboard-2.0.4"
sources."clone-1.0.4"
sources."cmd-shim-2.1.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.4.0"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
+ sources."common-tags-1.8.0"
sources."commondir-1.0.1"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."config-chain-1.1.12"
sources."configstore-3.1.2"
+ sources."constant-case-2.0.0"
sources."content-disposition-0.5.3"
sources."content-type-1.0.4"
sources."convert-source-map-1.6.0"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.2.1"
- sources."core-js-compat-3.2.1"
+ sources."core-js-3.3.4"
+ sources."core-js-compat-3.3.4"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
+ sources."cosmiconfig-5.2.1"
sources."create-error-class-3.0.2"
(sources."cross-spawn-5.1.0" // {
dependencies = [
sources."lru-cache-4.1.5"
- sources."yallist-2.1.2"
];
})
sources."crypto-random-string-1.0.0"
@@ -45786,12 +45858,9 @@ in
sources."css-what-2.1.3"
sources."csv-parser-1.12.1"
sources."dashdash-1.14.1"
+ sources."date-fns-1.30.1"
sources."de-indent-1.0.2"
- (sources."debug-4.1.1" // {
- dependencies = [
- sources."ms-2.1.2"
- ];
- })
+ sources."debug-4.1.1"
sources."decode-uri-component-0.2.0"
(sources."decompress-4.2.0" // {
dependencies = [
@@ -45831,7 +45900,9 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.5.1"
+ sources."dot-case-2.1.1"
sources."dot-prop-4.2.0"
+ sources."dotenv-8.2.0"
(sources."download-5.0.3" // {
dependencies = [
sources."pify-2.3.0"
@@ -45843,12 +45914,16 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.1"
- sources."electron-to-chromium-1.3.264"
+ sources."electron-to-chromium-1.3.296"
+ sources."elegant-spinner-1.0.1"
+ sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
- sources."envinfo-7.3.1"
- sources."es-abstract-1.14.2"
+ sources."env-ci-3.2.2"
+ sources."envinfo-7.4.0"
+ sources."error-ex-1.3.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -45882,12 +45957,14 @@ in
})
sources."is-descriptor-0.1.6"
sources."kind-of-5.1.0"
+ sources."ms-2.0.0"
];
})
sources."expand-tilde-2.0.2"
(sources."express-4.17.1" // {
dependencies = [
sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
sources."express-history-api-fallback-2.2.1"
@@ -45900,12 +45977,14 @@ in
];
})
sources."extract-files-5.0.1"
+ sources."extract-stack-1.0.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
sources."fast-glob-2.2.7"
sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
sources."fd-slicer-1.1.0"
- sources."figures-2.0.0"
+ sources."figures-1.7.0"
sources."file-type-5.2.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-2.1.0"
@@ -45913,6 +45992,7 @@ in
(sources."finalhandler-1.1.2" // {
dependencies = [
sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
(sources."find-cache-dir-2.1.0" // {
@@ -45924,7 +46004,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.108.0"
+ sources."flow-parser-0.110.1"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
@@ -45940,6 +46020,7 @@ in
sources."fsevents-1.2.9"
sources."fswin-2.17.1227"
sources."function-bind-1.1.1"
+ sources."gaze-1.1.3"
sources."generate-function-1.1.0"
sources."generate-object-property-1.2.0"
sources."get-proxy-2.1.0"
@@ -45948,6 +46029,12 @@ in
sources."getpass-0.1.7"
sources."git-clone-0.1.0"
sources."git-config-path-1.0.1"
+ sources."git-parse-1.0.3"
+ (sources."git-rev-sync-1.12.0" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
sources."glob-7.1.4"
(sources."glob-parent-3.1.0" // {
dependencies = [
@@ -45960,28 +46047,35 @@ in
(sources."globby-9.2.0" // {
dependencies = [
sources."pify-4.0.1"
+ sources."slash-2.0.0"
];
})
+ sources."globule-1.2.1"
sources."good-listener-1.2.2"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graceful-readlink-1.0.1"
- sources."graphql-14.5.7"
+ sources."graphql-14.5.8"
(sources."graphql-anywhere-4.2.4" // {
dependencies = [
sources."ts-invariant-0.3.3"
];
})
- sources."graphql-extensions-0.10.3"
+ sources."graphql-extensions-0.10.4"
sources."graphql-subscriptions-1.1.0"
sources."graphql-tag-2.10.1"
- sources."graphql-tools-4.0.5"
- sources."graphql-type-json-0.2.4"
- sources."graphql-upload-8.0.7"
+ sources."graphql-tools-4.0.6"
+ sources."graphql-type-json-0.3.0"
+ sources."graphql-upload-8.1.0"
sources."growly-1.3.0"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."has-flag-3.0.0"
sources."has-symbol-support-x-1.4.2"
sources."has-symbols-1.0.0"
@@ -45994,30 +46088,46 @@ in
})
sources."hash.js-1.1.7"
sources."he-1.2.0"
+ sources."header-case-1.0.1"
sources."homedir-polyfill-1.0.3"
(sources."htmlparser2-3.10.1" // {
dependencies = [
sources."readable-stream-3.4.0"
];
})
+ (sources."http-call-5.2.5" // {
+ dependencies = [
+ sources."is-stream-2.0.0"
+ ];
+ })
sources."http-errors-1.7.3"
sources."http-signature-1.2.0"
+ sources."human-signals-1.1.1"
+ sources."hyperlinker-1.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.1.13"
sources."ignore-4.0.6"
sources."ignore-by-default-1.0.1"
+ sources."import-fresh-2.0.0"
sources."import-global-0.1.0"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
- sources."indent-string-3.2.0"
+ sources."indent-string-4.0.0"
+ sources."inflected-2.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.5"
- sources."inquirer-6.5.2"
+ (sources."inquirer-6.5.2" // {
+ dependencies = [
+ sources."figures-2.0.0"
+ ];
+ })
+ sources."interpret-1.2.0"
sources."into-stream-2.0.1"
sources."invariant-2.2.4"
sources."ipaddr.js-1.9.0"
sources."is-accessor-descriptor-1.0.0"
+ sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.1.4"
@@ -46025,11 +46135,13 @@ in
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.1"
sources."is-descriptor-1.0.2"
+ sources."is-directory-0.3.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
sources."is-installed-globally-0.1.0"
+ sources."is-lower-case-1.1.3"
sources."is-natural-number-4.0.1"
sources."is-npm-1.0.0"
(sources."is-number-3.0.0" // {
@@ -46039,6 +46151,7 @@ in
})
sources."is-obj-1.0.1"
sources."is-object-1.0.1"
+ sources."is-observable-1.1.0"
sources."is-path-inside-1.0.1"
sources."is-plain-object-2.0.4"
sources."is-promise-2.1.0"
@@ -46049,6 +46162,7 @@ in
sources."is-stream-1.1.0"
sources."is-symbol-1.0.2"
sources."is-typedarray-1.0.0"
+ sources."is-upper-case-1.1.2"
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
@@ -46058,6 +46172,7 @@ in
sources."isstream-0.1.2"
sources."isurl-1.0.0"
sources."iterall-1.2.2"
+ sources."java-properties-1.0.2"
sources."javascript-stringify-1.6.0"
sources."js-levenshtein-1.1.6"
sources."js-message-1.0.5"
@@ -46067,31 +46182,77 @@ in
sources."jsbn-0.1.1"
(sources."jscodeshift-0.6.4" // {
dependencies = [
+ sources."ast-types-0.11.7"
sources."recast-0.16.2"
sources."source-map-0.6.1"
];
})
sources."jsesc-2.5.2"
+ sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."jsonfile-4.0.0"
sources."jsprim-1.4.1"
sources."kind-of-6.0.2"
sources."latest-version-3.1.0"
sources."launch-editor-2.2.1"
+ sources."listr-0.14.3"
+ sources."listr-silent-renderer-1.1.1"
+ (sources."listr-update-renderer-0.5.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."indent-string-3.2.0"
+ sources."log-symbols-1.0.2"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ (sources."listr-verbose-renderer-0.5.0" // {
+ dependencies = [
+ sources."figures-2.0.0"
+ ];
+ })
+ (sources."load-json-file-5.3.0" // {
+ dependencies = [
+ sources."pify-4.0.1"
+ ];
+ })
sources."locate-path-3.0.0"
sources."lodash-4.17.15"
+ sources."lodash._reinterpolate-3.0.0"
sources."lodash.clonedeep-4.5.0"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.get-4.4.2"
+ sources."lodash.identity-3.0.0"
sources."lodash.merge-4.6.2"
+ sources."lodash.pickby-4.6.0"
sources."lodash.sortby-4.7.0"
+ sources."lodash.template-4.5.0"
+ sources."lodash.templatesettings-4.2.0"
+ sources."lodash.xorby-4.7.0"
sources."log-symbols-2.2.0"
+ (sources."log-update-2.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ sources."wrap-ansi-3.0.1"
+ ];
+ })
sources."long-4.0.0"
sources."loose-envify-1.4.0"
sources."lowdb-1.0.0"
+ sources."lower-case-1.1.4"
+ sources."lower-case-first-1.0.2"
sources."lowercase-keys-1.0.1"
- sources."lru-cache-5.1.1"
+ (sources."lru-cache-5.1.1" // {
+ dependencies = [
+ sources."yallist-3.1.1"
+ ];
+ })
sources."make-dir-1.3.0"
sources."make-error-1.3.5"
sources."map-cache-0.2.2"
@@ -46099,6 +46260,7 @@ in
sources."media-typer-0.3.0"
sources."merge-1.2.1"
sources."merge-descriptors-1.0.1"
+ sources."merge-stream-2.0.0"
sources."merge2-1.3.0"
sources."methods-1.1.2"
(sources."micromatch-3.1.10" // {
@@ -46124,16 +46286,18 @@ in
sources."minimist-0.0.8"
];
})
- sources."ms-2.0.0"
+ sources."moment-2.24.0"
+ sources."ms-2.1.2"
sources."mute-stream-0.0.7"
sources."nan-2.14.0"
- sources."nanoid-2.1.1"
+ sources."nanoid-2.1.6"
(sources."nanomatch-1.2.13" // {
dependencies = [
sources."extend-shallow-3.0.2"
sources."is-extendable-1.0.1"
];
})
+ sources."natural-orderby-2.0.3"
sources."ndjson-1.5.0"
(sources."neat-csv-2.1.0" // {
dependencies = [
@@ -46143,6 +46307,7 @@ in
sources."negotiator-0.6.2"
sources."neo-async-2.6.1"
sources."nice-try-1.0.5"
+ sources."no-case-2.3.2"
sources."node-dir-0.1.17"
sources."node-fetch-2.6.0"
sources."node-ipc-9.1.1"
@@ -46152,15 +46317,10 @@ in
sources."semver-5.7.1"
];
})
- (sources."node-releases-1.1.32" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
- (sources."nodemon-1.19.2" // {
+ sources."node-releases-1.1.39"
+ (sources."nodemon-1.19.4" // {
dependencies = [
sources."debug-3.2.6"
- sources."ms-2.1.2"
sources."semver-5.7.1"
];
})
@@ -46169,6 +46329,7 @@ in
sources."npm-conf-1.1.3"
sources."npm-run-path-2.0.2"
sources."nth-check-1.0.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" // {
@@ -46201,17 +46362,28 @@ in
sources."p-finally-1.0.0"
sources."p-limit-2.2.1"
sources."p-locate-3.0.0"
+ sources."p-map-2.1.0"
sources."p-try-2.2.0"
(sources."package-json-4.0.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
+ sources."param-case-2.1.1"
sources."parse-git-config-2.0.3"
+ sources."parse-json-4.0.0"
sources."parse-passwd-1.0.0"
sources."parse5-3.0.3"
sources."parseurl-1.3.3"
+ sources."pascal-case-2.0.1"
sources."pascalcase-0.1.1"
+ (sources."password-prompt-1.1.2" // {
+ dependencies = [
+ sources."cross-spawn-6.0.5"
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."path-case-2.1.1"
sources."path-dirname-1.0.2"
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
@@ -46232,9 +46404,9 @@ in
sources."pinkie-promise-2.0.1"
sources."pirates-4.0.1"
sources."pkg-dir-3.0.0"
- (sources."portfinder-1.0.24" // {
+ (sources."portfinder-1.0.25" // {
dependencies = [
- sources."debug-2.6.9"
+ sources."debug-3.2.6"
];
})
sources."posix-character-classes-0.1.1"
@@ -46246,7 +46418,7 @@ in
sources."proto-list-1.2.4"
(sources."protobufjs-6.8.8" // {
dependencies = [
- sources."@types/node-10.14.18"
+ sources."@types/node-10.17.0"
];
})
sources."proxy-addr-2.0.5"
@@ -46267,14 +46439,16 @@ in
sources."rc-1.2.8"
sources."readable-stream-2.3.6"
sources."readdirp-2.2.1"
- (sources."recast-0.17.6" // {
+ (sources."recast-0.18.5" // {
dependencies = [
- sources."ast-types-0.12.4"
sources."source-map-0.6.1"
];
})
+ sources."rechoir-0.6.2"
+ sources."redeyed-2.1.1"
sources."regenerate-1.4.0"
sources."regenerate-unicode-properties-8.1.0"
+ sources."regenerator-runtime-0.10.5"
sources."regenerator-transform-0.14.1"
(sources."regex-not-1.0.2" // {
dependencies = [
@@ -46282,11 +46456,10 @@ in
sources."is-extendable-1.0.1"
];
})
- sources."regexp-tree-0.1.13"
sources."regexpu-core-4.6.0"
sources."registry-auth-token-3.4.0"
sources."registry-url-3.1.0"
- sources."regjsgen-0.5.0"
+ sources."regjsgen-0.5.1"
(sources."regjsparser-0.6.0" // {
dependencies = [
sources."jsesc-0.5.0"
@@ -46303,12 +46476,13 @@ in
sources."request-promise-core-1.1.2"
sources."request-promise-native-1.0.7"
sources."resolve-1.12.0"
+ sources."resolve-from-3.0.0"
sources."resolve-url-0.2.1"
sources."restore-cursor-2.0.0"
sources."ret-0.1.15"
sources."retry-0.12.0"
sources."rimraf-2.7.1"
- sources."rss-parser-3.7.2"
+ sources."rss-parser-3.7.3"
sources."run-async-2.3.0"
sources."rxjs-6.5.3"
sources."safe-buffer-5.1.2"
@@ -46338,6 +46512,7 @@ in
sources."ms-2.1.1"
];
})
+ sources."sentence-case-2.1.1"
sources."serve-static-1.14.1"
sources."set-value-2.0.1"
sources."setprototypeof-1.1.1"
@@ -46345,10 +46520,13 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."shell-quote-1.7.2"
+ sources."shelljs-0.7.7"
sources."shellwords-0.1.1"
sources."shortid-2.2.15"
sources."signal-exit-3.0.2"
- sources."slash-2.0.0"
+ sources."slash-3.0.0"
+ sources."slice-ansi-0.0.4"
+ sources."snake-case-2.1.0"
(sources."snapdragon-0.8.2" // {
dependencies = [
sources."debug-2.6.9"
@@ -46365,6 +46543,7 @@ in
})
sources."is-descriptor-0.1.6"
sources."kind-of-5.1.0"
+ sources."ms-2.0.0"
];
})
(sources."snapdragon-node-2.1.1" // {
@@ -46426,8 +46605,10 @@ in
sources."string.prototype.trimright-2.1.0"
sources."string_decoder-1.1.1"
sources."strip-ansi-5.2.0"
+ sources."strip-bom-3.0.0"
sources."strip-dirs-2.1.0"
sources."strip-eof-1.0.0"
+ sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
(sources."subscriptions-transport-ws-0.9.16" // {
@@ -46436,7 +46617,19 @@ in
];
})
sources."supports-color-5.5.0"
+ (sources."supports-hyperlinks-1.0.1" // {
+ dependencies = [
+ sources."has-flag-2.0.0"
+ ];
+ })
+ sources."swap-case-1.1.2"
sources."symbol-observable-1.2.0"
+ (sources."table-5.4.6" // {
+ dependencies = [
+ sources."slice-ansi-2.1.0"
+ sources."string-width-3.1.0"
+ ];
+ })
sources."tar-stream-1.6.2"
sources."taskkill-3.0.0"
(sources."tasklist-3.1.1" // {
@@ -46458,6 +46651,7 @@ in
sources."through2-2.0.5"
sources."timed-out-4.0.1"
sources."tiny-emitter-2.1.0"
+ sources."title-case-2.1.1"
sources."tmp-0.0.33"
sources."to-buffer-1.1.1"
sources."to-fast-properties-2.0.0"
@@ -46480,19 +46674,22 @@ in
sources."punycode-1.4.1"
];
})
+ sources."treeify-1.1.0"
sources."trim-repeated-1.0.0"
- sources."trim-right-1.0.1"
sources."ts-invariant-0.4.4"
sources."ts-node-8.4.1"
sources."tslib-1.10.0"
+ sources."tty-1.0.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
+ sources."type-fest-0.3.1"
sources."type-is-1.6.18"
- sources."typescript-3.6.3"
+ sources."typescript-3.6.4"
sources."unbzip2-stream-1.3.3"
(sources."undefsafe-2.0.2" // {
dependencies = [
sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -46515,7 +46712,13 @@ in
})
sources."unzip-response-2.0.1"
sources."upath-1.2.0"
- sources."update-notifier-2.5.0"
+ (sources."update-notifier-2.5.0" // {
+ dependencies = [
+ sources."boxen-1.3.0"
+ ];
+ })
+ sources."upper-case-1.1.3"
+ sources."upper-case-first-1.1.2"
sources."uri-js-4.2.2"
sources."urix-0.1.0"
sources."url-parse-lax-1.0.0"
@@ -46528,18 +46731,46 @@ in
sources."validate-npm-package-name-3.0.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."vue-cli-plugin-apollo-0.20.0"
- (sources."vue-jscodeshift-adapter-2.0.2" // {
+ sources."vscode-jsonrpc-4.0.0"
+ sources."vscode-languageserver-5.2.1"
+ sources."vscode-languageserver-protocol-3.14.1"
+ sources."vscode-languageserver-types-3.14.0"
+ sources."vscode-uri-1.0.6"
+ (sources."vue-cli-plugin-apollo-0.21.3" // {
dependencies = [
- sources."indent-string-4.0.0"
+ sources."cross-spawn-7.0.1"
+ sources."deepmerge-4.2.1"
+ sources."execa-3.2.0"
+ sources."fs-extra-8.1.0"
+ sources."get-stream-5.1.0"
+ sources."is-stream-2.0.0"
+ sources."mimic-fn-2.1.0"
+ sources."npm-run-path-4.0.0"
+ sources."onetime-5.1.0"
+ sources."p-finally-2.0.1"
+ sources."path-key-3.1.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."which-2.0.1"
+ ];
+ })
+ sources."vue-jscodeshift-adapter-2.0.2"
+ (sources."vue-sfc-descriptor-to-string-1.0.0" // {
+ dependencies = [
+ sources."indent-string-3.2.0"
];
})
- sources."vue-sfc-descriptor-to-string-1.0.0"
sources."vue-template-compiler-2.6.10"
sources."watch-1.0.2"
sources."wcwidth-1.0.1"
sources."which-1.3.1"
sources."widest-line-2.0.1"
+ (sources."wrap-ansi-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
sources."ws-6.2.1"
@@ -46547,12 +46778,13 @@ in
sources."xml2js-0.4.22"
sources."xmlbuilder-11.0.1"
sources."xtend-4.0.2"
- sources."yallist-3.0.3"
+ sources."yallist-2.1.2"
(sources."yaml-front-matter-3.4.1" // {
dependencies = [
sources."commander-1.0.0"
];
})
+ sources."yarn-1.19.1"
sources."yauzl-2.10.0"
sources."yn-3.1.1"
sources."zen-observable-0.8.14"
@@ -46693,11 +46925,11 @@ in
};
dependencies = [
sources."@babel/code-frame-7.5.5"
- sources."@babel/generator-7.6.0"
+ sources."@babel/generator-7.6.4"
sources."@babel/highlight-7.5.0"
- sources."@babel/parser-7.6.0"
+ sources."@babel/parser-7.6.4"
sources."@babel/template-7.6.0"
- sources."@babel/types-7.6.1"
+ sources."@babel/types-7.6.3"
sources."@webassemblyjs/ast-1.8.5"
sources."@webassemblyjs/floating-point-hex-parser-1.8.5"
sources."@webassemblyjs/helper-api-error-1.8.5"
@@ -46717,7 +46949,7 @@ in
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
sources."esutils-2.0.3"
sources."has-flag-3.0.0"
@@ -46728,7 +46960,6 @@ in
sources."source-map-0.5.7"
sources."supports-color-5.5.0"
sources."to-fast-properties-2.0.0"
- sources."trim-right-1.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -46779,12 +47010,12 @@ in
};
dependencies = [
sources."@babel/code-frame-7.5.5"
- (sources."@babel/core-7.6.0" // {
+ (sources."@babel/core-7.6.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.6.0" // {
+ (sources."@babel/generator-7.6.4" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -46792,12 +47023,12 @@ in
sources."@babel/helper-function-name-7.1.0"
sources."@babel/helper-get-function-arity-7.0.0"
sources."@babel/helper-split-export-declaration-7.4.4"
- sources."@babel/helpers-7.6.0"
+ sources."@babel/helpers-7.6.2"
sources."@babel/highlight-7.5.0"
- sources."@babel/parser-7.6.0"
+ sources."@babel/parser-7.6.4"
sources."@babel/template-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
+ sources."@babel/traverse-7.6.3"
+ sources."@babel/types-7.6.3"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
@@ -46809,7 +47040,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colors-1.4.0"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."convert-source-map-1.6.0"
sources."debug-4.1.1"
@@ -46830,7 +47061,7 @@ in
];
})
sources."globals-11.12.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-color-0.1.7"
sources."has-flag-3.0.0"
sources."homedir-polyfill-1.0.3"
@@ -46840,7 +47071,7 @@ in
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."jsonfile-4.0.0"
sources."jsonlint-1.6.2"
sources."lodash-4.17.15"
@@ -46867,7 +47098,6 @@ in
sources."strip-ansi-0.1.1"
sources."supports-color-5.5.0"
sources."to-fast-properties-2.0.0"
- sources."trim-right-1.0.1"
sources."underscore-1.6.0"
sources."universalify-0.1.2"
sources."walk-sync-0.3.4"
@@ -46896,14 +47126,14 @@ in
};
dependencies = [
sources."balanced-match-1.0.0"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."cuint-0.2.2"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."minimatch-3.0.4"
@@ -46929,13 +47159,13 @@ in
bash-language-server = nodeEnv.buildNodePackage {
name = "bash-language-server";
packageName = "bash-language-server";
- version = "1.5.6";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-1.5.6.tgz";
- sha512 = "GqW24myNihrUroXdL40AemizC3lBvr2wOiF0GzxYWqsBsJvi6CQor0Y9t10jOGn11evMhncmR2f2LoQdjsNpqw==";
+ url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-1.6.1.tgz";
+ sha512 = "i40MhENbRrfGEjhfwacQ0iBMX0WyhYou3AjPXa6C6RMvsuFu5J0LFwY4BjKOF2IFGZPaS6VgcffmfRvmD1TgRA==";
};
dependencies = [
- sources."abab-2.0.1"
+ sources."abab-2.0.2"
sources."acorn-5.7.3"
(sources."acorn-globals-4.3.4" // {
dependencies = [
@@ -46944,9 +47174,6 @@ in
})
sources."acorn-walk-6.2.0"
sources."ajv-6.10.2"
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
sources."array-equal-1.0.0"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
@@ -46956,42 +47183,28 @@ in
sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
- (sources."bl-3.0.0" // {
- dependencies = [
- sources."readable-stream-3.4.0"
- ];
- })
sources."brace-expansion-1.1.11"
sources."browser-process-hrtime-0.1.3"
sources."caseless-0.12.0"
- sources."chownr-1.1.2"
- sources."code-point-at-1.1.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
- sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
sources."cssom-0.3.8"
sources."cssstyle-1.4.0"
sources."dashdash-1.14.1"
(sources."data-urls-1.1.0" // {
dependencies = [
- sources."whatwg-url-7.0.0"
+ sources."whatwg-url-7.1.0"
];
})
- sources."decompress-response-4.2.1"
- sources."deep-extend-0.6.0"
sources."deep-is-0.1.3"
sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."detect-libc-1.0.3"
sources."domexception-1.0.1"
sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
sources."escodegen-1.12.0"
sources."esprima-3.1.3"
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
- sources."expand-template-2.0.3"
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
@@ -46999,24 +47212,17 @@ in
sources."fast-levenshtein-2.0.6"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
- sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
- sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."github-from-package-0.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
- sources."has-unicode-2.0.1"
sources."html-encoding-sniffer-1.0.2"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.5"
- sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
- sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."jsbn-0.1.1"
sources."jsdom-11.12.0"
@@ -47030,100 +47236,54 @@ in
sources."lodash.sortby-4.7.0"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
- sources."mimic-response-2.0.0"
sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."nan-2.14.0"
- sources."napi-build-utils-1.0.1"
- sources."node-abi-2.11.0"
- sources."noop-logger-0.1.1"
- sources."npmlog-4.1.2"
- sources."number-is-nan-1.0.1"
sources."nwsapi-2.1.4"
sources."oauth-sign-0.9.0"
- sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."optionator-0.8.2"
sources."parse5-4.0.0"
sources."path-is-absolute-1.0.1"
sources."performance-now-2.1.0"
sources."pn-1.1.0"
- sources."prebuild-install-5.3.2"
sources."prelude-ls-1.1.2"
- sources."process-nextick-args-2.0.1"
sources."psl-1.4.0"
- sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- sources."rc-1.2.8"
- (sources."readable-stream-2.3.6" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
sources."request-2.88.0"
sources."request-promise-core-1.1.2"
sources."request-promise-native-1.0.7"
sources."safe-buffer-5.2.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
- sources."semver-5.7.1"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."simple-concat-1.0.0"
- sources."simple-get-3.1.0"
sources."source-map-0.6.1"
sources."sshpk-1.16.1"
sources."stealthy-require-1.1.1"
- sources."string-width-1.0.2"
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
sources."symbol-tree-3.2.4"
- sources."tar-fs-2.0.0"
- (sources."tar-stream-2.1.0" // {
- dependencies = [
- sources."readable-stream-3.4.0"
- ];
- })
(sources."tough-cookie-2.4.3" // {
dependencies = [
sources."punycode-1.4.1"
];
})
sources."tr46-1.0.1"
- sources."tree-sitter-0.13.23"
- sources."tree-sitter-bash-0.13.9"
sources."tunnel-agent-0.6.0"
sources."turndown-4.0.2"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."uri-js-4.2.2"
- sources."urijs-1.19.1"
- sources."util-deprecate-1.0.2"
+ sources."urijs-1.19.2"
sources."uuid-3.3.3"
sources."verror-1.10.0"
sources."vscode-jsonrpc-4.0.0"
- sources."vscode-languageserver-4.4.2"
+ sources."vscode-languageserver-5.2.1"
sources."vscode-languageserver-protocol-3.14.1"
sources."vscode-languageserver-types-3.14.0"
sources."vscode-uri-1.0.8"
sources."w3c-hr-time-1.0.1"
+ sources."web-tree-sitter-0.15.10"
sources."webidl-conversions-4.0.2"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-6.5.0"
- sources."which-pm-runs-1.0.0"
- sources."wide-align-1.1.3"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
sources."ws-5.2.2"
@@ -47188,14 +47348,14 @@ in
sources."find-up-1.1.2"
(sources."fs-extra-0.26.7" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
sources."fs.realpath-1.0.0"
sources."get-stdin-4.0.1"
sources."glob-6.0.4"
sources."graceful-fs-3.0.12"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."indent-string-2.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -47206,24 +47366,24 @@ in
sources."is-utf8-0.2.1"
(sources."jsonfile-2.4.0" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
(sources."klaw-1.3.1" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
(sources."load-json-file-1.1.0" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
sources."lodash-4.2.1"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
sources."meow-3.7.0"
- sources."mime-db-1.41.0"
+ sources."mime-db-1.42.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
(sources."mkdirp-0.5.1" // {
@@ -47244,7 +47404,7 @@ in
sources."path-parse-1.0.6"
(sources."path-type-1.1.0" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
sources."pify-2.3.0"
@@ -47259,7 +47419,7 @@ in
sources."resolve-1.12.0"
(sources."rimraf-2.7.1" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
];
})
sources."semver-5.7.1"
@@ -47302,7 +47462,7 @@ in
};
dependencies = [
sources."JSONStream-1.3.5"
- sources."acorn-7.0.0"
+ sources."acorn-7.1.0"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.0.0"
sources."asn1.js-4.10.1"
@@ -47365,7 +47525,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-assigned-identifiers-1.2.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."has-1.0.3"
sources."hash-base-3.0.4"
sources."hash.js-1.1.7"
@@ -47493,7 +47653,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.0"
- sources."@types/node-10.14.18"
+ sources."@types/node-10.17.0"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.2.16"
sources."ajv-6.10.2"
@@ -47544,7 +47704,7 @@ in
})
sources."castv2-client-1.2.0"
sources."chalk-1.0.0"
- sources."chrome-dgram-3.0.3"
+ sources."chrome-dgram-3.0.4"
sources."chrome-dns-1.0.1"
sources."chrome-net-3.3.3"
sources."chromecast-player-0.2.3"
@@ -47554,7 +47714,7 @@ in
sources."co-3.1.0"
sources."codepage-1.4.0"
sources."combined-stream-1.0.8"
- sources."commander-3.0.1"
+ sources."commander-3.0.2"
sources."compact2string-1.4.1"
sources."concat-map-0.0.1"
(sources."concat-stream-2.0.0" // {
@@ -47587,7 +47747,7 @@ in
];
})
sources."error-ex-1.3.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."exit-on-epipe-1.0.1"
@@ -47609,7 +47769,7 @@ in
dependencies = [
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
];
})
sources."fs.realpath-1.0.0"
@@ -47617,16 +47777,16 @@ in
sources."get-browser-rtc-1.0.2"
sources."get-stdin-4.0.1"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."got-1.2.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
sources."has-ansi-1.0.3"
sources."has-symbols-1.0.0"
sources."hat-0.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-signature-1.2.0"
sources."immediate-chunk-store-1.0.8"
sources."indent-string-2.1.0"
@@ -47853,7 +48013,7 @@ in
sources."time-line-1.0.1"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.1.0" // {
+ (sources."torrent-stream-1.2.0" // {
dependencies = [
sources."end-of-stream-0.1.5"
sources."magnet-uri-4.2.3"
@@ -47972,7 +48132,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colors-1.4.0"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."debug-3.2.6"
sources."escape-string-regexp-1.0.5"
sources."follow-redirects-1.9.0"
@@ -48087,7 +48247,7 @@ in
sources."@types/events-3.0.0"
sources."@types/glob-7.1.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ajv-6.10.2"
@@ -48120,7 +48280,7 @@ in
})
sources."base64-js-1.3.1"
sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.45"
+ sources."big-integer-1.6.47"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."bytes-3.1.0"
@@ -48230,10 +48390,10 @@ in
sources."ee-first-1.1.1"
sources."elementtree-0.1.7"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."endent-1.3.0"
sources."env-paths-1.0.0"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -48297,7 +48457,7 @@ in
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -48315,7 +48475,7 @@ in
sources."get-stream-3.0.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
@@ -48327,7 +48487,7 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -48399,7 +48559,7 @@ in
sources."locate-path-2.0.0"
sources."lodash-4.17.15"
sources."lodash.debounce-4.0.8"
- sources."loud-rejection-2.1.0"
+ sources."loud-rejection-2.2.0"
sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.5"
sources."macos-release-2.3.0"
@@ -48721,7 +48881,7 @@ in
sources."@types/events-3.0.0"
sources."@types/glob-7.1.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -48823,7 +48983,7 @@ in
sources."fragment-cache-0.2.1"
sources."fs.realpath-1.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -48831,14 +48991,14 @@ in
})
sources."glob-to-regexp-0.3.0"
sources."globby-9.2.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."ignore-4.0.6"
sources."indent-string-3.2.0"
sources."inflight-1.0.6"
@@ -49049,7 +49209,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.1"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -49186,10 +49346,10 @@ in
create-react-app = nodeEnv.buildNodePackage {
name = "create-react-app";
packageName = "create-react-app";
- version = "3.1.2";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-react-app/-/create-react-app-3.1.2.tgz";
- sha512 = "y5wgEQwt6IpUP1N64uorVavhp8NPUAamVqA/paZmpvPSrW3l2c5UhXRi5m61plBBzDde2WyDr+3vCwDsfaS03w==";
+ url = "https://registry.npmjs.org/create-react-app/-/create-react-app-3.2.0.tgz";
+ sha512 = "BWbSreHNhZbSStkvLrEepjVuNp7ooKOiO7amoezEZPAac2H0MxBhzUIazto9OT7fZkcaRNubDuHKxGcxqlIwRA==";
};
dependencies = [
sources."ansi-escapes-3.2.0"
@@ -49224,8 +49384,8 @@ in
sources."fs.realpath-1.0.0"
sources."fstream-1.0.12"
sources."fstream-ignore-1.0.5"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
sources."hyperquest-2.1.3"
sources."iconv-lite-0.4.24"
@@ -49322,11 +49482,11 @@ in
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."cross-spawn-5.1.0"
sources."escape-string-regexp-1.0.5"
sources."fs-extra-4.0.3"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
sources."isexe-2.0.0"
sources."jsonfile-4.0.0"
@@ -49456,7 +49616,7 @@ in
sources."capture-stack-trace-1.0.1"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
- sources."chrome-dgram-3.0.3"
+ sources."chrome-dgram-3.0.4"
sources."chrome-dns-1.0.1"
sources."chrome-net-3.3.3"
sources."ci-info-1.6.0"
@@ -49555,8 +49715,8 @@ in
sources."duplexer3-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
- sources."es-abstract-1.14.2"
+ sources."end-of-stream-1.4.4"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."execa-0.7.0"
@@ -49617,11 +49777,11 @@ in
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."global-4.3.2"
sources."global-dirs-0.1.1"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
@@ -49957,7 +50117,7 @@ in
sources."supports-color-5.5.0"
sources."term-size-1.2.0"
sources."throttle-1.0.3"
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
sources."timed-out-4.0.1"
sources."timeout-refresh-1.0.1"
sources."to-buffer-1.1.1"
@@ -50260,10 +50420,10 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.10.6";
+ version = "6.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.10.6.tgz";
- sha512 = "Zjrmui3KS2Fem8OyVNoN1pWOCvULJP88rl1RdnBA/lkBx7u15G0B7FIlzOwX7sjBuJcqb9G5K9FuJXPU3MEqZg==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.15.4.tgz";
+ sha512 = "IN2+A+39FDlJIaMfnn4zrWIR5cObI8UdW5+YHbwwhE/LXQMBOtTXLYEUQL0UxrGuAo6ZMbtU1HZyvR206OWcFQ==";
};
dependencies = [
sources."JSONStream-1.3.5"
@@ -50272,7 +50432,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.533.0"
+ sources."aws-sdk-2.556.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
sources."base64-js-1.3.1"
@@ -50326,7 +50486,7 @@ in
sources."oauth-sign-0.9.0"
sources."optimist-0.6.1"
sources."p-finally-1.0.0"
- sources."p-queue-6.1.1"
+ sources."p-queue-6.2.0"
sources."p-timeout-3.2.0"
sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.1"
@@ -50340,7 +50500,7 @@ in
];
})
sources."request-2.88.0"
- sources."requestretry-4.0.0"
+ sources."requestretry-4.0.2"
sources."s3-stream-upload-2.0.2"
sources."s3signed-0.1.0"
(sources."s3urls-1.5.2" // {
@@ -50393,128 +50553,6 @@ in
bypassCache = true;
reconstructLock = true;
};
- elm-live = nodeEnv.buildNodePackage {
- name = "elm-live";
- packageName = "elm-live";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/elm-live/-/elm-live-4.0.0.tgz";
- sha512 = "Yf6afXvBnghRZkefxgXCf/KjCm3DlwT6lfTrjLSc5v0I0VXE2Rc5T9iqXihjg3alh9t8NwDVLL+/py8PkkdC9Q==";
- };
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."anymatch-3.1.0"
- sources."async-limiter-1.0.1"
- sources."binary-extensions-2.0.0"
- sources."braces-3.0.2"
- sources."chalk-1.1.3"
- sources."charenc-0.0.2"
- sources."chokidar-3.0.2"
- sources."commander-2.17.1"
- sources."crocks-0.12.1"
- sources."cross-spawn-5.0.1"
- sources."crypt-0.0.2"
- sources."debug-2.6.9"
- sources."default-gateway-4.2.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."ee-first-1.1.1"
- sources."elm-hot-1.1.1"
- sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
- sources."es6-promisify-6.0.2"
- sources."escape-html-1.0.3"
- sources."escape-string-regexp-1.0.5"
- sources."etag-1.8.1"
- sources."eventemitter3-3.1.2"
- (sources."execa-1.0.0" // {
- dependencies = [
- sources."cross-spawn-6.0.5"
- ];
- })
- sources."fill-range-7.0.1"
- sources."finalhandler-1.1.2"
- (sources."follow-redirects-1.9.0" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- sources."fresh-0.5.2"
- sources."fsevents-2.0.7"
- sources."get-stream-4.1.0"
- sources."glob-parent-5.1.0"
- sources."has-ansi-2.0.0"
- sources."http-errors-1.7.3"
- sources."http-proxy-1.17.0"
- sources."inherits-2.0.4"
- sources."internal-ip-4.3.0"
- sources."ip-regex-2.1.0"
- sources."ipaddr.js-1.9.1"
- sources."is-binary-path-2.1.0"
- sources."is-buffer-1.1.6"
- sources."is-extglob-2.1.1"
- sources."is-glob-4.0.1"
- sources."is-number-7.0.0"
- sources."is-stream-1.1.0"
- sources."is-wsl-1.1.0"
- sources."isexe-2.0.0"
- sources."lru-cache-4.1.5"
- sources."md5-2.2.1"
- sources."mime-2.4.3"
- sources."ms-2.0.0"
- sources."nice-try-1.0.5"
- sources."normalize-path-3.0.0"
- sources."npm-run-path-2.0.2"
- sources."on-finished-2.3.0"
- sources."once-1.4.0"
- sources."open-6.4.0"
- sources."os-tmpdir-1.0.2"
- sources."p-finally-1.0.0"
- sources."parseurl-1.3.3"
- sources."path-key-2.0.1"
- sources."pem-1.14.2"
- sources."picomatch-2.0.7"
- sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
- sources."range-parser-1.2.1"
- sources."readdirp-3.1.2"
- sources."requires-port-1.0.0"
- sources."semver-5.7.1"
- (sources."send-0.17.1" // {
- dependencies = [
- sources."mime-1.6.0"
- sources."ms-2.1.1"
- ];
- })
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."statuses-1.5.0"
- sources."strip-ansi-3.0.1"
- sources."strip-eof-1.0.0"
- sources."supports-color-2.0.0"
- sources."to-regex-range-5.0.1"
- sources."toidentifier-1.0.0"
- sources."unpipe-1.0.0"
- sources."which-1.3.1"
- sources."wrappy-1.0.2"
- sources."ws-7.1.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A flexible dev server for Elm. Live reload included!";
- homepage = "https://github.com/wking-io/elm-live#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- reconstructLock = true;
- };
elm-oracle = nodeEnv.buildNodePackage {
name = "elm-oracle";
packageName = "elm-oracle";
@@ -50590,7 +50628,7 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."cross-spawn-5.1.0"
sources."currently-unhandled-0.4.1"
sources."debug-2.6.9"
@@ -50609,13 +50647,13 @@ in
sources."get-stream-3.0.0"
sources."globals-9.18.0"
sources."got-7.1.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-ansi-3.0.0"
sources."has-flag-3.0.0"
sources."has-symbol-support-x-1.4.2"
sources."has-to-string-tag-x-1.4.1"
sources."home-or-tmp-2.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."import-jsx-1.3.2"
sources."imurmurhash-0.1.4"
sources."indent-string-3.2.0"
@@ -50702,7 +50740,7 @@ in
sources."private-0.1.8"
sources."prop-types-15.7.2"
sources."pseudomap-1.0.2"
- sources."react-is-16.9.0"
+ sources."react-is-16.11.0"
sources."read-pkg-1.1.0"
(sources."read-pkg-up-1.0.1" // {
dependencies = [
@@ -50795,19 +50833,19 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "6.4.0";
+ version = "6.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-6.4.0.tgz";
- sha512 = "WTVEzK3lSFoXUovDHEbkJqCVPEPwbhCq4trDktNI6ygs7aO41d4cDT0JFAT5MivzZeVLWlg7vHL+bgrQv/t3vA==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-6.6.0.tgz";
+ sha512 = "PpEBq7b6qY/qrOmpYQ/jTMDYfuQMELR4g4WI1M/NaSDDD/bdcMb+dj4Hgks7p41kW2caXsPsEZAEAyAgjVVC0g==";
};
dependencies = [
sources."@babel/code-frame-7.5.5"
sources."@babel/highlight-7.5.0"
- sources."acorn-7.0.0"
- sources."acorn-jsx-5.0.2"
+ sources."acorn-7.1.0"
+ sources."acorn-jsx-5.1.0"
sources."ajv-6.10.2"
- sources."ansi-escapes-3.2.0"
- sources."ansi-regex-3.0.0"
+ sources."ansi-escapes-4.2.1"
+ sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
sources."astral-regex-1.0.0"
@@ -50816,7 +50854,7 @@ in
sources."callsites-3.1.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."cli-cursor-2.1.0"
+ sources."cli-cursor-3.1.0"
sources."cli-width-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -50829,12 +50867,12 @@ in
sources."debug-4.1.1"
sources."deep-is-0.1.3"
sources."doctrine-3.0.0"
- sources."emoji-regex-7.0.3"
+ sources."emoji-regex-8.0.0"
sources."escape-string-regexp-1.0.5"
sources."eslint-scope-5.0.0"
- sources."eslint-utils-1.4.2"
+ sources."eslint-utils-1.4.3"
sources."eslint-visitor-keys-1.1.0"
- sources."espree-6.1.1"
+ sources."espree-6.1.2"
sources."esprima-4.0.1"
sources."esquery-1.0.1"
sources."esrecurse-4.2.1"
@@ -50844,13 +50882,13 @@ in
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
sources."fast-levenshtein-2.0.6"
- sources."figures-2.0.0"
+ sources."figures-3.1.0"
sources."file-entry-cache-5.0.1"
sources."flat-cache-2.0.1"
sources."flatted-2.0.1"
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-5.1.0"
sources."globals-11.12.0"
sources."has-flag-3.0.0"
@@ -50860,9 +50898,9 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-6.5.2"
+ sources."inquirer-7.0.0"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
sources."is-promise-2.1.0"
sources."isexe-2.0.0"
@@ -50872,16 +50910,16 @@ in
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.3.0"
sources."lodash-4.17.15"
- sources."mimic-fn-1.2.0"
+ sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."ms-2.1.2"
- sources."mute-stream-0.0.7"
+ sources."mute-stream-0.0.8"
sources."natural-compare-1.4.0"
sources."nice-try-1.0.5"
sources."once-1.4.0"
- sources."onetime-2.0.1"
+ sources."onetime-5.1.0"
sources."optionator-0.8.2"
sources."os-tmpdir-1.0.2"
sources."parent-module-1.0.1"
@@ -50892,7 +50930,7 @@ in
sources."punycode-2.1.1"
sources."regexpp-2.0.1"
sources."resolve-from-4.0.0"
- sources."restore-cursor-2.0.0"
+ sources."restore-cursor-3.1.0"
sources."rimraf-2.6.3"
sources."run-async-2.3.0"
sources."rxjs-6.5.3"
@@ -50901,22 +50939,20 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
- sources."slice-ansi-2.1.0"
+ (sources."slice-ansi-2.1.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
sources."sprintf-js-1.0.3"
- (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."string-width-4.1.0"
+ sources."strip-ansi-5.2.0"
sources."strip-json-comments-3.0.1"
sources."supports-color-5.5.0"
(sources."table-5.4.6" // {
dependencies = [
+ sources."emoji-regex-7.0.3"
+ sources."is-fullwidth-code-point-2.0.0"
sources."string-width-3.1.0"
];
})
@@ -50925,6 +50961,7 @@ in
sources."tmp-0.0.33"
sources."tslib-1.10.0"
sources."type-check-0.3.2"
+ sources."type-fest-0.5.2"
sources."uri-js-4.2.2"
sources."v8-compile-cache-2.1.0"
sources."which-1.3.1"
@@ -50953,11 +50990,11 @@ in
dependencies = [
sources."@babel/code-frame-7.5.5"
sources."@babel/highlight-7.5.0"
- sources."acorn-7.0.0"
- sources."acorn-jsx-5.0.2"
+ sources."acorn-7.1.0"
+ sources."acorn-jsx-5.1.0"
sources."ajv-6.10.2"
- sources."ansi-escapes-3.2.0"
- sources."ansi-regex-3.0.0"
+ sources."ansi-escapes-4.2.1"
+ sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
sources."astral-regex-1.0.0"
@@ -50966,7 +51003,7 @@ in
sources."callsites-3.1.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."cli-cursor-2.1.0"
+ sources."cli-cursor-3.1.0"
sources."cli-width-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -50980,13 +51017,13 @@ in
sources."debug-4.1.1"
sources."deep-is-0.1.3"
sources."doctrine-3.0.0"
- sources."emoji-regex-7.0.3"
+ sources."emoji-regex-8.0.0"
sources."escape-string-regexp-1.0.5"
- sources."eslint-6.4.0"
+ sources."eslint-6.6.0"
sources."eslint-scope-5.0.0"
- sources."eslint-utils-1.4.2"
+ sources."eslint-utils-1.4.3"
sources."eslint-visitor-keys-1.1.0"
- sources."espree-6.1.1"
+ sources."espree-6.1.2"
sources."esprima-4.0.1"
sources."esquery-1.0.1"
sources."esrecurse-4.2.1"
@@ -50996,13 +51033,13 @@ in
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
sources."fast-levenshtein-2.0.6"
- sources."figures-2.0.0"
+ sources."figures-3.1.0"
sources."file-entry-cache-5.0.1"
sources."flat-cache-2.0.1"
sources."flatted-2.0.1"
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-5.1.0"
sources."globals-11.12.0"
sources."has-flag-3.0.0"
@@ -51012,9 +51049,9 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-6.5.2"
+ sources."inquirer-7.0.0"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
sources."is-promise-2.1.0"
sources."isexe-2.0.0"
@@ -51024,17 +51061,17 @@ in
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.3.0"
sources."lodash-4.17.15"
- sources."mimic-fn-1.2.0"
+ sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."ms-2.1.2"
- sources."mute-stream-0.0.7"
+ sources."mute-stream-0.0.8"
sources."nanolru-1.0.0"
sources."natural-compare-1.4.0"
sources."nice-try-1.0.5"
sources."once-1.4.0"
- sources."onetime-2.0.1"
+ sources."onetime-5.1.0"
sources."optionator-0.8.2"
sources."os-tmpdir-1.0.2"
sources."parent-module-1.0.1"
@@ -51047,7 +51084,7 @@ in
sources."regexpp-2.0.1"
sources."resolve-1.12.0"
sources."resolve-from-4.0.0"
- sources."restore-cursor-2.0.0"
+ sources."restore-cursor-3.1.0"
sources."rimraf-2.6.3"
sources."run-async-2.3.0"
sources."rxjs-6.5.3"
@@ -51056,22 +51093,20 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
- sources."slice-ansi-2.1.0"
+ (sources."slice-ansi-2.1.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
sources."sprintf-js-1.0.3"
- (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."string-width-4.1.0"
+ sources."strip-ansi-5.2.0"
sources."strip-json-comments-3.0.1"
sources."supports-color-5.5.0"
(sources."table-5.4.6" // {
dependencies = [
+ sources."emoji-regex-7.0.3"
+ sources."is-fullwidth-code-point-2.0.0"
sources."string-width-3.1.0"
];
})
@@ -51080,6 +51115,7 @@ in
sources."tmp-0.0.33"
sources."tslib-1.10.0"
sources."type-check-0.3.2"
+ sources."type-fest-0.5.2"
sources."uri-js-4.2.2"
sources."v8-compile-cache-2.1.0"
sources."which-1.3.1"
@@ -51152,13 +51188,13 @@ in
sources."fs-extra-1.0.0"
sources."get-stdin-4.0.1"
sources."getpass-0.1.7"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."hasha-2.2.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-signature-1.2.0"
sources."indent-string-2.1.0"
sources."inherits-2.0.4"
@@ -51339,9 +51375,9 @@ in
sources."generate-function-1.1.0"
sources."generate-object-property-1.2.0"
sources."get-stream-3.0.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."iconv-lite-0.4.24"
sources."indent-string-3.2.0"
sources."inherits-2.0.4"
@@ -51593,10 +51629,10 @@ in
sources."fsevents-1.2.9"
sources."function-bind-1.1.1"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-base-0.3.0"
sources."glob-parent-2.0.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
(sources."has-value-1.0.0" // {
dependencies = [
@@ -51956,7 +51992,7 @@ in
sources."asyncmemo-1.0.0"
sources."chloride-2.2.14"
sources."chloride-test-1.2.4"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."debug-4.1.1"
sources."deep-extend-0.6.0"
sources."diff-3.5.0"
@@ -51985,8 +52021,8 @@ in
sources."jsonpointer-4.0.1"
sources."kvgraph-0.1.0"
sources."kvset-1.0.0"
- sources."libsodium-0.7.5"
- sources."libsodium-wrappers-0.7.5"
+ sources."libsodium-0.7.6"
+ sources."libsodium-wrappers-0.7.6"
sources."lodash.get-4.4.2"
sources."looper-4.0.0"
sources."lrucache-1.0.3"
@@ -52002,7 +52038,7 @@ in
sources."moo-0.4.3"
sources."ms-2.1.2"
sources."multicb-1.2.2"
- sources."multiserver-3.4.0"
+ sources."multiserver-3.6.0"
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
sources."muxrpc-6.4.2"
@@ -52089,7 +52125,7 @@ in
sources."ssb-caps-1.1.0"
(sources."ssb-client-4.7.8" // {
dependencies = [
- sources."ssb-config-3.3.2"
+ sources."ssb-config-3.4.2"
];
})
sources."ssb-config-2.3.9"
@@ -52177,7 +52213,7 @@ in
sources."agent-base-4.3.0"
sources."ajv-6.10.2"
sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.2.0"
+ sources."ansi-escapes-4.2.1"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
(sources."apollo-codegen-0.20.2" // {
@@ -52205,7 +52241,7 @@ in
sources."babel-runtime-6.26.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."qs-6.7.0"
@@ -52227,10 +52263,10 @@ in
sources."chalk-2.4.2"
sources."change-case-3.1.0"
sources."chardet-0.7.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."ci-info-1.6.0"
sources."cli-boxes-1.0.0"
- sources."cli-cursor-2.1.0"
+ sources."cli-cursor-3.1.0"
sources."cli-spinners-2.2.0"
sources."cli-width-2.2.0"
sources."cliui-4.1.0"
@@ -52247,7 +52283,7 @@ in
})
sources."combined-stream-1.0.8"
sources."command-exists-1.2.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."common-tags-1.8.0"
sources."concat-map-0.0.1"
sources."configstore-3.1.2"
@@ -52260,11 +52296,20 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."core-util-is-1.0.2"
sources."cosmiconfig-5.2.1"
sources."create-error-class-3.0.2"
- sources."creato-1.0.5"
+ (sources."creato-1.0.7" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ sources."inquirer-7.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."ora-4.0.2"
+ sources."string-width-4.1.0"
+ sources."strip-ansi-5.2.0"
+ ];
+ })
(sources."cross-fetch-2.2.2" // {
dependencies = [
sources."node-fetch-2.1.2"
@@ -52299,9 +52344,10 @@ in
sources."ecc-jsbn-0.1.2"
sources."ecdsa-sig-formatter-1.0.11"
sources."ee-first-1.1.1"
+ sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."errno-0.1.7"
sources."error-ex-1.3.2"
sources."es6-promise-4.2.8"
@@ -52339,7 +52385,7 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
- sources."figures-2.0.0"
+ sources."figures-3.1.0"
sources."finalhandler-1.1.2"
sources."find-0.2.9"
sources."find-up-2.1.0"
@@ -52354,12 +52400,12 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-3.0.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."global-dirs-0.1.1"
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graphcool-json-schema-1.2.1"
(sources."graphcool-yml-0.4.15" // {
dependencies = [
@@ -52372,7 +52418,7 @@ in
sources."ms-2.1.2"
];
})
- sources."graphql-14.5.7"
+ sources."graphql-14.5.8"
(sources."graphql-cli-prepare-1.4.19" // {
dependencies = [
sources."chalk-2.3.1"
@@ -52397,7 +52443,7 @@ in
sources."has-flag-3.0.0"
sources."header-case-1.0.1"
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -52409,7 +52455,7 @@ in
];
})
sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.2" // {
+ (sources."https-proxy-agent-2.2.4" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
@@ -52427,7 +52473,16 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.5"
- sources."inquirer-6.2.0"
+ (sources."inquirer-6.2.0" // {
+ dependencies = [
+ sources."ansi-escapes-3.2.0"
+ sources."cli-cursor-2.1.0"
+ sources."figures-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."onetime-2.0.1"
+ sources."restore-cursor-2.0.0"
+ ];
+ })
sources."invert-kv-1.0.0"
sources."ip-regex-1.0.3"
sources."ipaddr.js-1.9.0"
@@ -52436,6 +52491,7 @@ in
sources."is-directory-0.3.1"
sources."is-fullwidth-code-point-1.0.0"
sources."is-installed-globally-0.1.0"
+ sources."is-interactive-1.0.0"
sources."is-lower-case-1.1.3"
sources."is-npm-1.0.0"
sources."is-obj-1.0.1"
@@ -52501,7 +52557,7 @@ in
sources."lodash.isplainobject-4.0.6"
sources."lodash.isstring-4.0.1"
sources."lodash.once-4.1.1"
- sources."log-symbols-2.2.0"
+ sources."log-symbols-3.0.0"
sources."lower-case-1.1.4"
sources."lower-case-first-1.0.2"
sources."lowercase-keys-1.0.1"
@@ -52522,15 +52578,15 @@ in
sources."mimic-fn-1.2.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- (sources."minipass-2.8.1" // {
+ (sources."minipass-2.9.0" // {
dependencies = [
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
})
- sources."minizlib-1.2.2"
+ sources."minizlib-1.3.3"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
+ sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
sources."nice-try-1.0.5"
sources."no-case-2.3.2"
@@ -52551,13 +52607,21 @@ in
sources."oauth-sign-0.9.0"
sources."on-finished-2.3.0"
sources."once-1.4.0"
- sources."onetime-2.0.1"
+ (sources."onetime-5.1.0" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ ];
+ })
sources."ono-4.0.11"
sources."open-0.0.5"
sources."opn-5.5.0"
(sources."ora-3.4.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
+ sources."cli-cursor-2.1.0"
+ sources."log-symbols-2.2.0"
+ sources."onetime-2.0.1"
+ sources."restore-cursor-2.0.0"
sources."strip-ansi-5.2.0"
];
})
@@ -52635,7 +52699,7 @@ in
sources."resolve-1.12.0"
sources."resolve-dir-1.0.1"
sources."resolve-from-4.0.0"
- sources."restore-cursor-2.0.0"
+ sources."restore-cursor-3.1.0"
sources."rimraf-2.7.1"
sources."run-async-2.3.0"
sources."rxjs-6.5.3"
@@ -52690,9 +52754,9 @@ in
sources."supports-color-5.5.0"
sources."swap-case-1.1.2"
sources."sync-exec-0.6.2"
- (sources."tar-4.4.11" // {
+ (sources."tar-4.4.13" // {
dependencies = [
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
})
sources."term-size-1.2.0"
@@ -52714,6 +52778,7 @@ in
sources."tslib-1.10.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
+ sources."type-fest-0.5.2"
sources."type-is-1.6.18"
sources."unique-string-1.0.0"
sources."universalify-0.1.2"
@@ -53064,7 +53129,7 @@ in
sources."ansi-term-0.0.2"
sources."ansicolors-0.2.1"
sources."blessed-0.1.81"
- sources."blessed-contrib-4.8.17"
+ sources."blessed-contrib-4.8.18"
sources."bresenham-0.0.3"
sources."buffers-0.1.1"
sources."cardinal-1.0.0"
@@ -53076,7 +53141,7 @@ in
sources."define-properties-1.1.3"
sources."drawille-blessed-contrib-1.0.0"
sources."drawille-canvas-blessed-contrib-0.1.3"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."esprima-3.0.0"
@@ -53122,7 +53187,7 @@ in
sources."string_decoder-0.10.31"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- sources."systeminformation-4.14.8"
+ sources."systeminformation-4.14.17"
sources."term-canvas-0.0.5"
sources."util.promisify-1.0.0"
sources."wordwrap-0.0.3"
@@ -53255,7 +53320,7 @@ in
sources."detect-file-1.0.0"
sources."duplexify-3.7.1"
sources."each-props-1.3.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."es5-ext-0.10.51"
sources."es6-iterator-2.0.3"
@@ -53312,7 +53377,7 @@ in
sources."function-bind-1.1.1"
sources."get-caller-file-1.0.3"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -53323,7 +53388,7 @@ in
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
sources."glogg-1.0.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."gulp-cli-2.2.0"
sources."gulplog-1.0.0"
sources."has-symbols-1.0.0"
@@ -53334,7 +53399,7 @@ in
];
})
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.5"
@@ -53700,7 +53765,7 @@ in
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
sources."glogg-1.0.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."gulplog-1.0.0"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
@@ -53709,7 +53774,7 @@ in
];
})
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."inherits-2.0.4"
sources."ini-1.3.5"
sources."interpret-1.2.0"
@@ -53944,14 +54009,14 @@ in
dependencies = [
sources."camel-case-3.0.0"
sources."clean-css-4.2.1"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."he-1.2.0"
sources."lower-case-1.1.4"
sources."no-case-2.3.2"
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.6.0"
+ sources."uglify-js-3.6.4"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -54095,7 +54160,7 @@ in
sha512 = "6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w==";
};
dependencies = [
- sources."async-1.5.2"
+ sources."async-2.6.3"
sources."colors-1.0.3"
sources."corser-2.0.1"
sources."debug-3.2.6"
@@ -54104,6 +54169,7 @@ in
sources."follow-redirects-1.9.0"
sources."he-1.2.0"
sources."http-proxy-1.18.0"
+ sources."lodash-4.17.15"
sources."mime-1.6.0"
sources."minimist-1.2.0"
(sources."mkdirp-0.5.1" // {
@@ -54118,12 +54184,7 @@ in
sources."minimist-0.0.10"
];
})
- (sources."portfinder-1.0.24" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- })
+ sources."portfinder-1.0.25"
sources."qs-2.3.3"
sources."requires-port-1.0.0"
sources."union-0.4.6"
@@ -54165,7 +54226,7 @@ in
sources."extsprintf-1.4.0"
sources."fs.realpath-1.0.0"
sources."fuzzyset.js-0.0.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."hue-sdk-0.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -54262,21 +54323,19 @@ in
indium = nodeEnv.buildNodePackage {
name = "indium";
packageName = "indium";
- version = "3.4.1";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/indium/-/indium-3.4.1.tgz";
- sha512 = "RJ8nHsE4diosqkSpKot3unMn05ExCisUDy/URw/3M9t8MetvthBBQpcfaRPGftXRGebaMF1HnH6dLG994TpNVQ==";
+ url = "https://registry.npmjs.org/indium/-/indium-5.0.0.tgz";
+ sha512 = "NGgQYdtKoh6zXoo1Sp3cvBur7SMud1JU6ghMQTBUxmPGlRmoB0esc3qVlLbK8f0d8j7OZgUUYkfGd0+xTYGvOw==";
};
dependencies = [
sources."async-limiter-1.0.1"
- sources."chrome-remote-interface-0.26.1"
+ sources."chrome-remote-interface-0.27.2"
sources."commander-2.11.0"
sources."node-fetch-2.6.0"
- sources."safe-buffer-5.1.2"
sources."semver-5.7.1"
sources."source-map-0.7.3"
- sources."ultron-1.1.1"
- sources."ws-3.3.3"
+ sources."ws-6.2.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -54291,25 +54350,25 @@ in
ionic = nodeEnv.buildNodePackage {
name = "ionic";
packageName = "ionic";
- version = "5.4.1";
+ version = "5.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ionic/-/ionic-5.4.1.tgz";
- sha512 = "z4Zdb1lEZoqx6HsURVgdqGw0INtDeNrbahTZacrqm3cNmjq6X4SOP+dILIeZoURq/V0KcyVcVQnssWRFbVd8TQ==";
+ url = "https://registry.npmjs.org/ionic/-/ionic-5.4.4.tgz";
+ sha512 = "OebF6aBl3HRTCJcD/iWXrOl2VVEF/TGhu5Zr9Zqu+xRpFLjqJnDfxjiitLZRc/bMNyh9+b56ioV/JW9fwwUCog==";
};
dependencies = [
- sources."@ionic/cli-framework-2.1.7"
+ sources."@ionic/cli-framework-3.0.0"
+ sources."@ionic/cli-framework-prompts-1.0.1"
sources."@ionic/discover-2.0.6"
sources."@ionic/utils-array-1.2.1"
- sources."@ionic/utils-fs-2.0.7"
+ sources."@ionic/utils-fs-2.0.8"
sources."@ionic/utils-network-1.0.5"
sources."@ionic/utils-object-1.0.5"
sources."@ionic/utils-process-1.0.5"
sources."@ionic/utils-stream-2.0.4"
- sources."@ionic/utils-subprocess-1.0.8"
+ sources."@ionic/utils-subprocess-1.0.9"
sources."@ionic/utils-terminal-1.0.5"
- sources."@types/node-8.10.54"
sources."agent-base-4.3.0"
- sources."ansi-escapes-4.2.1"
+ sources."ansi-escapes-3.2.0"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
sources."ast-types-0.13.2"
@@ -54321,8 +54380,8 @@ in
sources."bytes-3.1.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."chownr-1.1.2"
- sources."cli-cursor-3.1.0"
+ sources."chownr-1.1.3"
+ sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
sources."co-4.6.0"
sources."color-convert-1.9.3"
@@ -54332,8 +54391,8 @@ in
sources."concat-map-0.0.1"
sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
- sources."cross-spawn-7.0.0"
- sources."data-uri-to-buffer-2.0.1"
+ sources."cross-spawn-7.0.1"
+ sources."data-uri-to-buffer-1.2.0"
sources."debug-4.1.1"
sources."deep-is-0.1.3"
sources."degenerator-1.0.4"
@@ -54349,7 +54408,7 @@ in
})
sources."elementtree-0.1.7"
sources."emoji-regex-7.0.3"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
sources."escape-string-regexp-1.0.5"
@@ -54362,12 +54421,15 @@ in
sources."cross-spawn-6.0.5"
sources."path-key-2.0.1"
sources."semver-5.7.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."which-1.3.1"
];
})
sources."extend-3.0.2"
sources."external-editor-3.1.0"
sources."fast-levenshtein-2.0.6"
- sources."figures-3.0.0"
+ sources."figures-3.1.0"
sources."file-uri-to-path-1.0.0"
sources."form-data-2.5.1"
sources."formidable-1.2.1"
@@ -54382,9 +54444,17 @@ in
];
})
sources."get-stream-4.1.0"
- sources."get-uri-2.0.3"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ (sources."get-uri-2.0.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
sources."http-errors-1.7.3"
(sources."http-proxy-agent-2.1.0" // {
@@ -54393,7 +54463,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."https-proxy-agent-2.2.2" // {
+ (sources."https-proxy-agent-3.0.1" // {
dependencies = [
sources."debug-3.2.6"
];
@@ -54402,7 +54472,15 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-7.0.0"
+ (sources."inquirer-7.0.0" // {
+ dependencies = [
+ sources."ansi-escapes-4.2.1"
+ sources."cli-cursor-3.1.0"
+ sources."mimic-fn-2.1.0"
+ sources."onetime-5.1.0"
+ sources."restore-cursor-3.1.0"
+ ];
+ })
sources."ip-1.1.5"
sources."is-fullwidth-code-point-2.0.0"
sources."is-promise-2.1.0"
@@ -54433,30 +54511,21 @@ in
sources."lodash.restparam-3.6.1"
(sources."log-update-3.3.0" // {
dependencies = [
- sources."ansi-escapes-3.2.0"
- sources."cli-cursor-2.1.0"
- sources."mimic-fn-1.2.0"
- sources."onetime-2.0.1"
- sources."restore-cursor-2.0.0"
sources."string-width-3.1.0"
sources."wrap-ansi-5.1.0"
];
})
- sources."lru-cache-4.1.5"
+ sources."lru-cache-5.1.1"
sources."macos-release-2.3.0"
sources."methods-1.1.2"
sources."mime-2.4.4"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
- sources."mimic-fn-2.1.0"
+ sources."mimic-fn-1.2.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- (sources."minipass-2.8.1" // {
- dependencies = [
- sources."yallist-3.0.3"
- ];
- })
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -54472,34 +54541,25 @@ in
];
})
sources."once-1.4.0"
- sources."onetime-5.1.0"
+ sources."onetime-2.0.1"
sources."open-6.4.0"
sources."optionator-0.8.2"
sources."os-name-3.1.0"
sources."os-tmpdir-1.0.2"
sources."p-finally-1.0.0"
- (sources."pac-proxy-agent-3.0.0" // {
- dependencies = [
- sources."debug-3.2.6"
- ];
- })
+ sources."pac-proxy-agent-3.0.1"
sources."pac-resolver-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.0"
sources."prelude-ls-1.1.2"
sources."process-nextick-args-2.0.1"
- (sources."proxy-agent-3.1.0" // {
- dependencies = [
- sources."debug-3.2.6"
- ];
- })
+ sources."proxy-agent-3.1.1"
sources."proxy-from-env-1.0.0"
- sources."pseudomap-1.0.2"
sources."pump-3.0.0"
sources."qs-6.9.0"
sources."raw-body-2.4.1"
sources."readable-stream-3.4.0"
- sources."restore-cursor-3.1.0"
+ sources."restore-cursor-2.0.0"
sources."rimraf-3.0.0"
sources."rsvp-3.6.2"
sources."run-async-2.3.0"
@@ -54509,8 +54569,8 @@ in
sources."sax-1.1.4"
sources."semver-6.3.0"
sources."setprototypeof-1.1.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.2"
sources."slice-ansi-2.1.0"
sources."smart-buffer-4.0.2"
@@ -54547,11 +54607,7 @@ in
];
})
sources."supports-color-5.5.0"
- (sources."tar-4.4.11" // {
- dependencies = [
- sources."yallist-3.0.3"
- ];
- })
+ sources."tar-4.4.13"
sources."through-2.3.8"
sources."through2-3.0.1"
sources."thunkify-2.1.2"
@@ -54567,10 +54623,10 @@ in
sources."untildify-4.0.0"
sources."util-deprecate-1.0.2"
sources."uuid-3.3.3"
- sources."which-1.3.1"
+ sources."which-2.0.1"
sources."windows-release-3.2.0"
sources."wordwrap-1.0.0"
- (sources."wrap-ansi-6.0.0" // {
+ (sources."wrap-ansi-6.1.0" // {
dependencies = [
sources."ansi-styles-4.1.0"
sources."color-convert-2.0.1"
@@ -54578,10 +54634,10 @@ in
];
})
sources."wrappy-1.0.2"
- sources."write-file-atomic-3.0.0"
- sources."ws-7.1.2"
+ sources."write-file-atomic-3.0.1"
+ sources."ws-7.2.0"
sources."xregexp-2.0.0"
- sources."yallist-2.1.2"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -54614,7 +54670,7 @@ in
"iosevka-build-deps-../../data/fonts/iosevka" = nodeEnv.buildNodePackage {
name = "iosevka-build-deps";
packageName = "iosevka-build-deps";
- version = "2.3.0";
+ version = "2.3.2";
src = ../../data/fonts/iosevka;
dependencies = [
sources."JSONStream-1.3.5"
@@ -54634,10 +54690,10 @@ in
sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."bezier-js-2.4.3"
+ sources."bezier-js-2.4.4"
sources."bindings-1.5.0"
sources."block-stream-0.0.9"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
sources."bufferstreams-1.1.3"
sources."camelcase-4.1.0"
@@ -54675,7 +54731,7 @@ in
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."escape-latex-1.2.0"
sources."escape-string-regexp-1.0.5"
@@ -54733,13 +54789,13 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-3.0.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -54939,7 +54995,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.3.3"
sources."validate-npm-package-license-3.0.4"
- (sources."verda-1.0.0-4" // {
+ (sources."verda-1.0.0-10" // {
dependencies = [
sources."ansi-regex-4.1.0"
sources."fs-extra-6.0.1"
@@ -54994,26 +55050,29 @@ in
jake = nodeEnv.buildNodePackage {
name = "jake";
packageName = "jake";
- version = "8.1.1";
+ version = "10.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jake/-/jake-8.1.1.tgz";
- sha512 = "RJUWDas5xu4rP6CbCPqkVP9+vglMPThhZIj08EtjSiUBpwRtVjhShPKIpETyEhy/Z1hEk97qITxbZK+WXtSyzw==";
+ url = "https://registry.npmjs.org/jake/-/jake-10.1.1.tgz";
+ sha512 = "STOuBZ3//C+8nL8MiDMW/2W6OrOHiAezMMQzAWkr9+wmPCh8wHdcNvJ33qUof4KrLZNplCnmshinXufFb+wjkg==";
};
dependencies = [
- sources."ansi-styles-1.0.0"
+ sources."ansi-styles-3.2.1"
sources."async-0.9.2"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."chalk-0.4.0"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."concat-map-0.0.1"
+ sources."escape-string-regexp-1.0.5"
(sources."filelist-0.0.6" // {
dependencies = [
sources."utilities-0.0.37"
];
})
- sources."has-color-0.1.7"
+ sources."has-flag-3.0.0"
sources."minimatch-3.0.4"
- sources."strip-ansi-0.1.1"
+ sources."supports-color-5.5.0"
sources."utilities-1.0.5"
];
buildInputs = globalBuildInputs;
@@ -55048,7 +55107,7 @@ in
sources."check-error-1.0.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."deep-eql-3.0.1"
sources."error-7.0.2"
@@ -55057,13 +55116,13 @@ in
sources."fast-json-patch-2.2.1"
sources."fs.realpath-1.0.0"
sources."get-func-name-2.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."has-flag-3.0.0"
sources."hexer-1.5.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."iterare-1.2.0"
- (sources."jaeger-client-3.16.0" // {
+ (sources."jaeger-client-3.17.1" // {
dependencies = [
sources."opentracing-0.13.0"
];
@@ -55115,14 +55174,14 @@ in
joplin = nodeEnv.buildNodePackage {
name = "joplin";
packageName = "joplin";
- version = "1.0.146";
+ version = "1.0.149";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin/-/joplin-1.0.146.tgz";
- sha512 = "Qy7lEfrvRfCL2c+NQWXjSVrwVTsflwxSozvntF8yMtPDhGvy912PjQQFjRplqusdmUEOOacupcRovcvC+T5Bbw==";
+ url = "https://registry.npmjs.org/joplin/-/joplin-1.0.149.tgz";
+ sha512 = "DDMvPmNgsp3yQtwsIvxeCrE5MByDaUojKGfFH4vYTAbboO7jB34rwknwW3efVoOjQVtLmMH6OpBajArci9q8tQ==";
};
dependencies = [
sources."@cronvel/get-pixels-3.3.1"
- sources."abab-2.0.1"
+ sources."abab-2.0.2"
sources."abbrev-1.1.1"
sources."acorn-5.7.3"
(sources."acorn-globals-4.3.4" // {
@@ -55141,7 +55200,13 @@ in
sources."ansi-styles-3.2.1"
sources."app-module-path-2.2.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ (sources."are-we-there-yet-1.1.5" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
(sources."argparse-1.0.10" // {
dependencies = [
sources."sprintf-js-1.0.3"
@@ -55153,7 +55218,7 @@ in
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."async-limiter-1.0.1"
- sources."async-mutex-0.1.3"
+ sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
@@ -55161,11 +55226,7 @@ in
sources."balanced-match-1.0.0"
sources."base-64-0.1.0"
sources."bcrypt-pbkdf-1.0.2"
- (sources."bl-3.0.0" // {
- dependencies = [
- sources."readable-stream-3.4.0"
- ];
- })
+ sources."bl-3.0.0"
sources."brace-expansion-1.1.11"
sources."browser-process-hrtime-0.1.3"
sources."camel-case-3.0.0"
@@ -55173,9 +55234,10 @@ in
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."charenc-0.0.2"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."chroma-js-2.0.6"
sources."clean-css-4.2.1"
+ sources."clean-html-1.5.0"
sources."cliss-0.0.2"
sources."code-point-at-1.1.0"
sources."color-3.1.2"
@@ -55197,7 +55259,7 @@ in
sources."dashdash-1.14.1"
(sources."data-urls-1.1.0" // {
dependencies = [
- sources."whatwg-url-7.0.0"
+ sources."whatwg-url-7.1.0"
];
})
sources."debug-3.2.6"
@@ -55213,7 +55275,16 @@ in
sources."detect-libc-1.0.3"
sources."diacritics-1.3.0"
sources."diff-match-patch-1.0.4"
+ (sources."dom-serializer-0.2.1" // {
+ dependencies = [
+ sources."domelementtype-2.0.1"
+ sources."entities-2.0.0"
+ ];
+ })
+ sources."domelementtype-1.3.1"
sources."domexception-1.0.1"
+ sources."domhandler-2.4.2"
+ sources."domutils-1.7.0"
sources."ecc-jsbn-0.1.2"
(sources."emphasize-1.5.0" // {
dependencies = [
@@ -55224,9 +55295,9 @@ in
];
})
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es6-promise-pool-2.5.0"
sources."escape-string-regexp-1.0.5"
@@ -55266,8 +55337,8 @@ in
sources."get-stdin-5.0.1"
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-1.0.3"
@@ -55280,10 +55351,11 @@ in
sources."html-encoding-sniffer-1.0.2"
sources."html-entities-1.2.1"
sources."html-minifier-3.5.21"
+ sources."htmlparser2-3.10.1"
sources."http-errors-1.7.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
(sources."image-data-uri-2.0.1" // {
dependencies = [
sources."fs-extra-0.26.7"
@@ -55341,8 +55413,8 @@ in
})
sources."isarray-1.0.0"
sources."isstream-0.1.2"
- sources."joplin-turndown-4.0.17"
- sources."joplin-turndown-plugin-gfm-1.0.9"
+ sources."joplin-turndown-4.0.18"
+ sources."joplin-turndown-plugin-gfm-1.0.11"
sources."jpeg-js-0.1.2"
sources."js-tokens-4.0.0"
sources."jsbn-0.1.1"
@@ -55377,13 +55449,21 @@ in
sources."mime-types-2.1.24"
sources."mimic-response-2.0.0"
sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
- sources."mkdirp-0.5.1"
+ sources."minimist-1.2.0"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
sources."moment-2.24.0"
sources."ms-2.1.2"
- sources."multiparty-4.2.1"
+ (sources."multiparty-4.2.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."nan-2.14.0"
sources."napi-build-utils-1.0.1"
sources."ndarray-1.0.18"
@@ -55391,7 +55471,7 @@ in
sources."needle-2.4.0"
sources."nextgen-events-1.3.0"
sources."no-case-2.3.2"
- (sources."node-abi-2.11.0" // {
+ (sources."node-abi-2.12.0" // {
dependencies = [
sources."semver-5.7.1"
];
@@ -55408,7 +55488,7 @@ in
sources."noop-logger-0.1.1"
sources."nopt-4.0.1"
sources."npm-bundled-1.0.6"
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."nwsapi-2.1.4"
@@ -55442,11 +55522,7 @@ in
sources."pipe-functions-1.3.0"
sources."pn-1.1.0"
sources."pngjs-2.3.1"
- (sources."prebuild-install-5.3.2" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
+ sources."prebuild-install-5.3.2"
sources."prelude-ls-1.1.2"
sources."process-nextick-args-2.0.1"
sources."promise-7.3.1"
@@ -55459,13 +55535,9 @@ in
sources."query-string-4.3.4"
sources."querystringify-2.1.1"
sources."random-bytes-1.0.0"
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
+ sources."rc-1.2.8"
sources."read-chunk-2.1.0"
- sources."readable-stream-2.3.6"
+ sources."readable-stream-3.4.0"
sources."reduce-flatten-1.0.1"
sources."redux-3.7.2"
sources."relateurl-0.2.7"
@@ -55482,7 +55554,7 @@ in
sources."resolve-url-0.2.1"
sources."retry-0.10.1"
sources."rimraf-2.7.1"
- sources."safe-buffer-5.1.2"
+ sources."safe-buffer-5.2.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."semver-6.3.0"
@@ -55490,7 +55562,7 @@ in
sources."set-blocking-2.0.0"
sources."setimmediate-1.0.5"
sources."setprototypeof-1.1.1"
- sources."seventh-0.7.28"
+ sources."seventh-0.7.30"
sources."sharp-0.22.1"
sources."signal-exit-3.0.2"
sources."simple-concat-1.0.0"
@@ -55511,9 +55583,15 @@ in
sources."statuses-1.5.0"
sources."stealthy-require-1.1.1"
sources."strict-uri-encode-1.1.0"
- sources."string-kit-0.9.12"
+ sources."string-kit-0.10.1"
sources."string-padding-1.0.2"
- sources."string-to-stream-1.1.1"
+ (sources."string-to-stream-1.1.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
(sources."string-width-1.0.2" // {
dependencies = [
sources."strip-ansi-3.0.1"
@@ -55521,7 +55599,7 @@ in
})
sources."string.prototype.trimleft-2.1.0"
sources."string.prototype.trimright-2.1.0"
- sources."string_decoder-1.1.1"
+ sources."string_decoder-1.3.0"
(sources."stringify-parameters-0.0.4" // {
dependencies = [
sources."magicli-0.0.5"
@@ -55538,20 +55616,16 @@ in
sources."symbol-tree-3.2.4"
sources."syswide-cas-5.3.0"
sources."table-layout-0.4.5"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."tar-fs-2.0.0"
- (sources."tar-stream-2.1.0" // {
- dependencies = [
- sources."readable-stream-3.4.0"
- ];
- })
+ sources."tar-stream-2.1.0"
(sources."tcp-port-used-0.1.2" // {
dependencies = [
sources."debug-0.7.4"
sources."q-0.9.7"
];
})
- sources."terminal-kit-1.31.3"
+ sources."terminal-kit-1.31.4"
(sources."tkwidgets-0.5.26" // {
dependencies = [
sources."is-fullwidth-code-point-2.0.0"
@@ -55608,7 +55682,7 @@ in
sources."xml-name-validator-3.0.0"
sources."xml2js-0.4.22"
sources."xmlbuilder-11.0.1"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
sources."yargs-parser-7.0.0"
];
buildInputs = globalBuildInputs;
@@ -55633,12 +55707,12 @@ in
sources."abbrev-1.1.1"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."config-chain-1.1.12"
sources."editorconfig-0.15.3"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.5"
@@ -55701,19 +55775,19 @@ in
sha512 = "Yf1ZKA3r9nvtMWHO1kEuMZTlHOF8uoQ0vyo5eH7SQy5YeIiHM+B0DgKnn+X6y6KDYZcF7G2SPkKF+JORCXWE/A==";
};
dependencies = [
- sources."@babel/parser-7.6.0"
+ sources."@babel/parser-7.6.4"
sources."argparse-1.0.10"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."catharsis-0.8.11"
sources."entities-1.1.2"
sources."escape-string-regexp-2.0.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."js2xmlparser-4.0.0"
sources."klaw-3.0.0"
sources."linkify-it-2.2.0"
sources."lodash-4.17.15"
sources."markdown-it-8.4.2"
- sources."markdown-it-anchor-5.2.4"
+ sources."markdown-it-anchor-5.2.5"
sources."marked-0.7.0"
sources."mdurl-1.0.1"
sources."minimist-0.0.8"
@@ -55764,7 +55838,7 @@ in
sources."entities-1.0.0"
sources."exit-0.1.2"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."htmlparser2-3.8.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -55961,7 +56035,7 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."errorhandler-1.5.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -55992,7 +56066,7 @@ in
sources."get-stream-4.1.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
@@ -56051,9 +56125,9 @@ in
sources."minimist-1.2.0"
sources."morgan-1.9.1"
sources."ms-2.0.0"
- sources."nanoid-2.1.1"
+ sources."nanoid-2.1.6"
sources."negotiator-0.6.2"
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
sources."npm-run-path-2.0.2"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
@@ -56160,8 +56234,8 @@ in
sources."xdg-basedir-3.0.0"
sources."y18n-4.0.0"
sources."yallist-2.1.2"
- sources."yargs-14.1.0"
- sources."yargs-parser-14.0.0"
+ sources."yargs-14.2.0"
+ sources."yargs-parser-15.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -56202,15 +56276,15 @@ in
karma = nodeEnv.buildNodePackage {
name = "karma";
packageName = "karma";
- version = "4.3.0";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/karma/-/karma-4.3.0.tgz";
- sha512 = "NSPViHOt+RW38oJklvYxQC4BSQsv737oQlr/r06pCM+slDOr4myuI1ivkRmp+3dVpJDfZt2DmaPJ2wkx+ZZuMQ==";
+ url = "https://registry.npmjs.org/karma/-/karma-4.4.1.tgz";
+ sha512 = "L5SIaXEYqzrh6b1wqYC42tNsFMx2PWuxky84pK9coK09MvmL7mxii3G3bZBh/0rvD27lqDd0le9jyhzvwif73A==";
};
dependencies = [
sources."accepts-1.3.7"
sources."after-0.8.2"
- sources."anymatch-3.1.0"
+ sources."anymatch-3.1.1"
sources."arraybuffer.slice-0.0.7"
sources."async-2.6.3"
sources."async-limiter-1.0.1"
@@ -56221,7 +56295,7 @@ in
sources."better-assert-1.0.2"
sources."binary-extensions-2.0.0"
sources."blob-0.0.5"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."body-parser-1.19.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
@@ -56230,7 +56304,7 @@ in
sources."buffer-fill-1.0.0"
sources."bytes-3.1.0"
sources."callsite-1.0.0"
- sources."chokidar-3.1.1"
+ sources."chokidar-3.2.2"
sources."colors-1.4.0"
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
@@ -56239,7 +56313,6 @@ in
sources."connect-3.7.0"
sources."content-type-1.0.4"
sources."cookie-0.3.1"
- sources."core-js-3.2.1"
sources."custom-event-1.0.1"
sources."date-format-2.1.0"
sources."debug-2.6.9"
@@ -56274,10 +56347,10 @@ in
})
sources."fs-extra-7.0.1"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.0.7"
- sources."glob-7.1.4"
+ sources."fsevents-2.1.1"
+ sources."glob-7.1.5"
sources."glob-parent-5.1.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-binary2-1.0.3"
sources."has-cors-1.1.0"
sources."http-errors-1.7.2"
@@ -56325,7 +56398,7 @@ in
sources."qs-6.7.0"
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
- sources."readdirp-3.1.2"
+ sources."readdirp-3.2.0"
sources."requires-port-1.0.0"
sources."rfdc-1.1.4"
sources."rimraf-2.7.1"
@@ -56410,16 +56483,16 @@ in
sources."core-util-is-1.0.2"
sources."define-properties-1.1.3"
sources."duplexify-3.7.1"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."extend-3.0.2"
sources."flush-write-stream-1.1.1"
sources."fs-mkdirp-stream-1.0.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-3.1.0"
sources."glob-stream-6.1.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-symbols-1.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -56485,10 +56558,10 @@ in
leetcode-cli = nodeEnv.buildNodePackage {
name = "leetcode-cli";
packageName = "leetcode-cli";
- version = "2.6.1";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.6.1.tgz";
- sha512 = "B3OXkxcsHUBnXoO2X5JOt2tDAEjMO+Mf3PxVJwgLhjdbK5XeR2GKDa6YcMuBv5fhJRzGUfQ+l6KEMQE6lRl8eg==";
+ url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.6.2.tgz";
+ sha512 = "wP2yB6yGq+dlXgi8PMNgXS24Sb7rtYRs/WYQ4+zrJ9Oa/7Qp47PbVxuS4Dl62yeEo3OSlT1hovp1SWY6jE7ToQ==";
};
dependencies = [
sources."abab-1.0.4"
@@ -56539,7 +56612,7 @@ in
sources."domhandler-2.3.0"
sources."domutils-1.5.1"
sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.12.0"
@@ -56560,7 +56633,7 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
@@ -56741,10 +56814,10 @@ in
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
- version = "3.16.4";
+ version = "3.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-3.16.4.tgz";
- sha512 = "0HfwXIkqe72lBLZcNO9NMRfylh5Ng1l8tETgYQ260ZdHRbPuaLKE3Wqnd2YYRRkWfwPyEyZO8mZweBR+slVe1A==";
+ url = "https://registry.npmjs.org/lerna/-/lerna-3.18.3.tgz";
+ sha512 = "Bnr/RjyDSVA2Vu+NArK7do4UIpyy+EShOON7tignfAekPbi7cNDnMMGgSmbCQdKITkqPACMfCMdyq0hJlg6n3g==";
};
dependencies = [
(sources."@evocateur/libnpmaccess-3.1.2" // {
@@ -56764,102 +56837,101 @@ in
sources."semver-5.7.1"
];
})
- sources."@lerna/add-3.16.2"
- sources."@lerna/batch-packages-3.16.0"
- sources."@lerna/bootstrap-3.16.2"
- sources."@lerna/changed-3.16.4"
- sources."@lerna/check-working-tree-3.14.2"
- sources."@lerna/child-process-3.14.2"
- sources."@lerna/clean-3.16.0"
- sources."@lerna/cli-3.13.0"
- sources."@lerna/collect-uncommitted-3.14.2"
- sources."@lerna/collect-updates-3.16.0"
- sources."@lerna/command-3.16.0"
+ sources."@lerna/add-3.18.0"
+ sources."@lerna/bootstrap-3.18.0"
+ sources."@lerna/changed-3.18.3"
+ sources."@lerna/check-working-tree-3.16.5"
+ sources."@lerna/child-process-3.16.5"
+ sources."@lerna/clean-3.18.0"
+ sources."@lerna/cli-3.18.0"
+ sources."@lerna/collect-uncommitted-3.16.5"
+ sources."@lerna/collect-updates-3.18.0"
+ sources."@lerna/command-3.18.0"
(sources."@lerna/conventional-commits-3.16.4" // {
dependencies = [
sources."pify-4.0.1"
];
})
- (sources."@lerna/create-3.16.0" // {
+ (sources."@lerna/create-3.18.0" // {
dependencies = [
sources."pify-4.0.1"
];
})
sources."@lerna/create-symlink-3.16.2"
- sources."@lerna/describe-ref-3.14.2"
- sources."@lerna/diff-3.16.0"
- sources."@lerna/exec-3.16.0"
- sources."@lerna/filter-options-3.16.0"
- sources."@lerna/filter-packages-3.16.0"
+ sources."@lerna/describe-ref-3.16.5"
+ sources."@lerna/diff-3.18.0"
+ sources."@lerna/exec-3.18.0"
+ sources."@lerna/filter-options-3.18.0"
+ sources."@lerna/filter-packages-3.18.0"
sources."@lerna/get-npm-exec-opts-3.13.0"
sources."@lerna/get-packed-3.16.0"
- sources."@lerna/github-client-3.16.0"
+ sources."@lerna/github-client-3.16.5"
sources."@lerna/gitlab-client-3.15.0"
sources."@lerna/global-options-3.13.0"
- sources."@lerna/has-npm-version-3.16.0"
- sources."@lerna/import-3.16.0"
- sources."@lerna/init-3.16.0"
- sources."@lerna/link-3.16.2"
- sources."@lerna/list-3.16.0"
- sources."@lerna/listable-3.16.0"
+ sources."@lerna/has-npm-version-3.16.5"
+ sources."@lerna/import-3.18.0"
+ sources."@lerna/init-3.18.0"
+ sources."@lerna/link-3.18.0"
+ sources."@lerna/list-3.18.0"
+ sources."@lerna/listable-3.18.0"
sources."@lerna/log-packed-3.16.0"
(sources."@lerna/npm-conf-3.16.0" // {
dependencies = [
sources."pify-4.0.1"
];
})
- sources."@lerna/npm-dist-tag-3.16.0"
- sources."@lerna/npm-install-3.16.0"
+ sources."@lerna/npm-dist-tag-3.18.1"
+ sources."@lerna/npm-install-3.16.5"
(sources."@lerna/npm-publish-3.16.2" // {
dependencies = [
sources."pify-4.0.1"
];
})
- sources."@lerna/npm-run-script-3.14.2"
+ sources."@lerna/npm-run-script-3.16.5"
sources."@lerna/otplease-3.16.0"
sources."@lerna/output-3.13.0"
sources."@lerna/pack-directory-3.16.4"
sources."@lerna/package-3.16.0"
- sources."@lerna/package-graph-3.16.0"
+ sources."@lerna/package-graph-3.18.0"
sources."@lerna/prerelease-id-from-version-3.16.0"
- sources."@lerna/project-3.16.0"
+ sources."@lerna/project-3.18.0"
sources."@lerna/prompt-3.13.0"
- sources."@lerna/publish-3.16.4"
+ sources."@lerna/publish-3.18.3"
sources."@lerna/pulse-till-done-3.13.0"
- sources."@lerna/query-graph-3.16.0"
+ sources."@lerna/query-graph-3.18.0"
sources."@lerna/resolve-symlink-3.16.0"
- sources."@lerna/rimraf-dir-3.14.2"
- sources."@lerna/run-3.16.0"
+ sources."@lerna/rimraf-dir-3.16.5"
+ sources."@lerna/run-3.18.0"
sources."@lerna/run-lifecycle-3.16.2"
- sources."@lerna/run-parallel-batches-3.16.0"
- sources."@lerna/run-topologically-3.16.0"
- sources."@lerna/symlink-binary-3.16.2"
- sources."@lerna/symlink-dependencies-3.16.2"
+ sources."@lerna/run-topologically-3.18.0"
+ sources."@lerna/symlink-binary-3.17.0"
+ sources."@lerna/symlink-dependencies-3.17.0"
sources."@lerna/timer-3.13.0"
sources."@lerna/validation-error-3.13.0"
- sources."@lerna/version-3.16.4"
+ sources."@lerna/version-3.18.3"
sources."@lerna/write-log-file-3.13.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
- (sources."@octokit/endpoint-5.3.5" // {
+ (sources."@octokit/endpoint-5.5.0" // {
dependencies = [
sources."is-plain-object-3.0.0"
sources."isobject-4.0.0"
];
})
sources."@octokit/plugin-enterprise-rest-3.6.2"
- (sources."@octokit/request-5.1.0" // {
+ (sources."@octokit/request-5.3.0" // {
dependencies = [
sources."is-plain-object-3.0.0"
sources."isobject-4.0.0"
];
})
sources."@octokit/request-error-1.0.4"
- sources."@octokit/rest-16.30.0"
+ sources."@octokit/rest-16.34.0"
+ sources."@octokit/types-1.1.0"
sources."@types/events-3.0.0"
sources."@types/glob-7.1.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."@zkochan/cmd-shim-3.1.0"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
@@ -56900,7 +56972,7 @@ in
})
sources."bcrypt-pbkdf-1.0.2"
sources."before-after-hook-2.1.0"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
dependencies = [
@@ -56927,7 +56999,7 @@ in
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."ci-info-2.0.0"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -56948,10 +57020,11 @@ in
})
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
- (sources."cliui-4.1.0" // {
+ (sources."cliui-5.0.0" // {
dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
+ sources."ansi-regex-4.1.0"
+ sources."string-width-3.1.0"
+ sources."strip-ansi-5.2.0"
];
})
sources."clone-1.0.4"
@@ -56961,7 +57034,7 @@ in
sources."color-name-1.1.3"
sources."columnify-1.5.4"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
(sources."compare-func-1.3.2" // {
dependencies = [
sources."dot-prop-3.0.0"
@@ -56972,20 +57045,20 @@ in
sources."concat-stream-1.6.2"
sources."config-chain-1.1.12"
sources."console-control-strings-1.1.0"
- sources."conventional-changelog-angular-5.0.3"
+ sources."conventional-changelog-angular-5.0.5"
(sources."conventional-changelog-core-3.2.3" // {
dependencies = [
sources."through2-3.0.1"
];
})
- sources."conventional-changelog-preset-loader-2.2.0"
- (sources."conventional-changelog-writer-4.0.7" // {
+ sources."conventional-changelog-preset-loader-2.3.0"
+ (sources."conventional-changelog-writer-4.0.10" // {
dependencies = [
sources."through2-3.0.1"
];
})
sources."conventional-commits-filter-2.0.2"
- (sources."conventional-commits-parser-3.0.3" // {
+ (sources."conventional-commits-parser-3.0.6" // {
dependencies = [
sources."through2-3.0.1"
];
@@ -57037,12 +57110,13 @@ in
sources."duplexer-0.1.1"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
+ sources."emoji-regex-7.0.3"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."env-paths-1.0.0"
sources."err-code-1.1.2"
sources."error-ex-1.3.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
@@ -57121,7 +57195,7 @@ in
];
})
sources."genfun-5.0.0"
- sources."get-caller-file-1.0.3"
+ sources."get-caller-file-2.0.5"
(sources."get-pkg-repo-1.4.0" // {
dependencies = [
sources."camelcase-2.1.1"
@@ -57159,7 +57233,7 @@ in
sources."git-up-4.0.1"
sources."git-url-parse-11.1.2"
sources."gitconfiglocal-1.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-5.1.0"
sources."glob-to-regexp-0.3.0"
(sources."globby-9.2.0" // {
@@ -57167,8 +57241,8 @@ in
sources."pify-4.0.1"
];
})
- sources."graceful-fs-4.2.2"
- (sources."handlebars-4.2.1" // {
+ sources."graceful-fs-4.2.3"
+ (sources."handlebars-4.4.5" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -57185,16 +57259,16 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-cache-semantics-3.8.1"
sources."http-proxy-agent-2.1.0"
sources."http-signature-1.2.0"
- sources."https-proxy-agent-2.2.2"
+ sources."https-proxy-agent-2.2.4"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."iferr-0.1.5"
sources."ignore-4.0.6"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
(sources."import-fresh-2.0.0" // {
dependencies = [
sources."resolve-from-3.0.0"
@@ -57218,7 +57292,6 @@ in
sources."strip-ansi-5.2.0"
];
})
- sources."invert-kv-2.0.0"
sources."ip-1.1.5"
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.2.1"
@@ -57247,7 +57320,7 @@ in
sources."is-ssh-1.3.1"
sources."is-stream-1.1.0"
sources."is-symbol-1.0.2"
- sources."is-text-path-2.0.0"
+ sources."is-text-path-1.0.1"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
sources."is-windows-1.0.2"
@@ -57265,7 +57338,6 @@ in
sources."jsonparse-1.3.1"
sources."jsprim-1.4.1"
sources."kind-of-6.0.2"
- sources."lcid-2.0.0"
(sources."load-json-file-5.3.0" // {
dependencies = [
sources."pify-4.0.1"
@@ -57286,16 +57358,10 @@ in
sources."lru-cache-5.1.1"
sources."macos-release-2.3.0"
sources."make-dir-1.3.0"
- sources."make-fetch-happen-5.0.0"
- sources."map-age-cleaner-0.1.3"
+ sources."make-fetch-happen-5.0.1"
sources."map-cache-0.2.2"
sources."map-obj-2.0.0"
sources."map-visit-1.0.0"
- (sources."mem-4.3.0" // {
- dependencies = [
- sources."mimic-fn-2.1.0"
- ];
- })
(sources."meow-4.0.1" // {
dependencies = [
sources."minimist-1.2.0"
@@ -57309,8 +57375,8 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."minimist-options-3.0.2"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mississippi-3.0.0"
(sources."mixin-deep-1.3.2" // {
dependencies = [
@@ -57330,7 +57396,7 @@ in
sources."nice-try-1.0.5"
sources."node-fetch-2.6.0"
sources."node-fetch-npm-2.0.2"
- (sources."node-gyp-5.0.3" // {
+ (sources."node-gyp-5.0.5" // {
dependencies = [
sources."semver-5.3.0"
];
@@ -57349,7 +57415,7 @@ in
sources."semver-5.7.1"
];
})
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
(sources."npm-pick-manifest-3.0.2" // {
dependencies = [
sources."semver-5.7.1"
@@ -57383,13 +57449,10 @@ in
sources."onetime-2.0.1"
sources."optimist-0.6.1"
sources."os-homedir-1.0.2"
- sources."os-locale-3.1.0"
sources."os-name-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.2.1"
sources."p-locate-3.0.0"
sources."p-map-2.1.0"
@@ -57470,7 +57533,7 @@ in
sources."repeating-2.0.1"
sources."request-2.88.0"
sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
+ sources."require-main-filename-2.0.0"
sources."resolve-1.12.0"
(sources."resolve-cwd-2.0.0" // {
dependencies = [
@@ -57594,10 +57657,10 @@ in
];
})
sources."supports-color-5.5.0"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."temp-dir-1.0.0"
sources."temp-write-3.4.0"
- sources."text-extensions-2.0.0"
+ sources."text-extensions-1.9.0"
sources."thenify-3.3.0"
sources."thenify-all-1.6.0"
sources."through-2.3.8"
@@ -57623,7 +57686,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-fest-0.3.1"
sources."typedarray-0.0.6"
- (sources."uglify-js-3.6.0" // {
+ (sources."uglify-js-3.6.4" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -57656,16 +57719,17 @@ in
sources."verror-1.10.0"
sources."wcwidth-1.0.1"
sources."webidl-conversions-4.0.2"
- sources."whatwg-url-7.0.0"
+ sources."whatwg-url-7.1.0"
sources."which-1.3.1"
sources."which-module-2.0.0"
sources."wide-align-1.1.3"
sources."windows-release-3.2.0"
sources."wordwrap-0.0.3"
- (sources."wrap-ansi-2.1.0" // {
+ (sources."wrap-ansi-5.1.0" // {
dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
+ sources."ansi-regex-4.1.0"
+ sources."string-width-3.1.0"
+ sources."strip-ansi-5.2.0"
];
})
sources."wrappy-1.0.2"
@@ -57684,9 +57748,15 @@ in
})
sources."xtend-4.0.2"
sources."y18n-4.0.0"
- sources."yallist-3.0.3"
- sources."yargs-12.0.5"
- sources."yargs-parser-11.1.1"
+ sources."yallist-3.1.1"
+ (sources."yargs-14.2.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ sources."string-width-3.1.0"
+ sources."strip-ansi-5.2.0"
+ ];
+ })
+ sources."yargs-parser-15.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -57730,7 +57800,7 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."getpass-0.1.7"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."http-signature-1.2.0"
@@ -57926,7 +57996,7 @@ in
sources."is-glob-3.1.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
@@ -58095,7 +58165,7 @@ in
sources."is-extendable-0.1.1"
];
})
- sources."unix-crypt-td-js-1.0.0"
+ sources."unix-crypt-td-js-1.1.4"
sources."unpipe-1.0.0"
(sources."unset-value-1.0.0" // {
dependencies = [
@@ -58272,7 +58342,7 @@ in
sources."github-slugger-1.2.1"
sources."glob-base-0.3.0"
sources."glob-parent-2.0.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
(sources."has-binary2-1.0.3" // {
@@ -58351,7 +58421,7 @@ in
sources."map-visit-1.0.0"
sources."markdown-it-8.4.2"
sources."markdown-it-emoji-1.4.0"
- sources."markdown-it-github-headings-1.1.1"
+ sources."markdown-it-github-headings-1.1.2"
sources."markdown-it-task-checkbox-1.0.6"
sources."math-random-1.0.4"
sources."mdurl-1.0.1"
@@ -58626,7 +58696,7 @@ in
sources."uuid-3.3.3"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."ws-7.1.2"
+ sources."ws-7.2.0"
sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
];
@@ -58647,8 +58717,8 @@ in
src = ../interpreters/clojurescript/lumo;
dependencies = [
sources."@babel/code-frame-7.5.5"
- sources."@babel/core-7.6.0"
- sources."@babel/generator-7.6.0"
+ sources."@babel/core-7.6.4"
+ sources."@babel/generator-7.6.4"
sources."@babel/helper-annotate-as-pure-7.0.0"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0"
sources."@babel/helper-call-delegate-7.4.4"
@@ -58669,17 +58739,17 @@ in
sources."@babel/helper-simple-access-7.1.0"
sources."@babel/helper-split-export-declaration-7.4.4"
sources."@babel/helper-wrap-function-7.2.0"
- sources."@babel/helpers-7.6.0"
+ sources."@babel/helpers-7.6.2"
sources."@babel/highlight-7.5.0"
- sources."@babel/parser-7.6.0"
+ sources."@babel/parser-7.6.4"
sources."@babel/plugin-external-helpers-7.0.0"
sources."@babel/plugin-proposal-async-generator-functions-7.2.0"
sources."@babel/plugin-proposal-class-properties-7.5.5"
sources."@babel/plugin-proposal-dynamic-import-7.5.0"
sources."@babel/plugin-proposal-json-strings-7.2.0"
- sources."@babel/plugin-proposal-object-rest-spread-7.5.5"
+ sources."@babel/plugin-proposal-object-rest-spread-7.6.2"
sources."@babel/plugin-proposal-optional-catch-binding-7.2.0"
- sources."@babel/plugin-proposal-unicode-property-regex-7.4.4"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.6.2"
sources."@babel/plugin-syntax-async-generators-7.2.0"
sources."@babel/plugin-syntax-dynamic-import-7.2.0"
sources."@babel/plugin-syntax-json-strings-7.2.0"
@@ -58688,11 +58758,11 @@ in
sources."@babel/plugin-transform-arrow-functions-7.2.0"
sources."@babel/plugin-transform-async-to-generator-7.5.0"
sources."@babel/plugin-transform-block-scoped-functions-7.2.0"
- sources."@babel/plugin-transform-block-scoping-7.6.0"
+ sources."@babel/plugin-transform-block-scoping-7.6.3"
sources."@babel/plugin-transform-classes-7.5.5"
sources."@babel/plugin-transform-computed-properties-7.2.0"
sources."@babel/plugin-transform-destructuring-7.6.0"
- sources."@babel/plugin-transform-dotall-regex-7.4.4"
+ sources."@babel/plugin-transform-dotall-regex-7.6.2"
sources."@babel/plugin-transform-duplicate-keys-7.5.0"
sources."@babel/plugin-transform-exponentiation-operator-7.2.0"
sources."@babel/plugin-transform-for-of-7.4.4"
@@ -58703,26 +58773,26 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.6.0"
sources."@babel/plugin-transform-modules-systemjs-7.5.0"
sources."@babel/plugin-transform-modules-umd-7.2.0"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.3"
sources."@babel/plugin-transform-new-target-7.4.4"
sources."@babel/plugin-transform-object-super-7.5.5"
sources."@babel/plugin-transform-parameters-7.4.4"
sources."@babel/plugin-transform-property-literals-7.2.0"
sources."@babel/plugin-transform-regenerator-7.4.5"
sources."@babel/plugin-transform-reserved-words-7.2.0"
- sources."@babel/plugin-transform-runtime-7.6.0"
+ sources."@babel/plugin-transform-runtime-7.6.2"
sources."@babel/plugin-transform-shorthand-properties-7.2.0"
- sources."@babel/plugin-transform-spread-7.2.2"
+ sources."@babel/plugin-transform-spread-7.6.2"
sources."@babel/plugin-transform-sticky-regex-7.2.0"
sources."@babel/plugin-transform-template-literals-7.4.4"
sources."@babel/plugin-transform-typeof-symbol-7.2.0"
- sources."@babel/plugin-transform-unicode-regex-7.4.4"
- sources."@babel/preset-env-7.6.0"
+ sources."@babel/plugin-transform-unicode-regex-7.6.2"
+ sources."@babel/preset-env-7.6.3"
sources."@babel/preset-stage-2-7.0.0"
- sources."@babel/runtime-7.6.0"
+ sources."@babel/runtime-7.6.3"
sources."@babel/template-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
+ sources."@babel/traverse-7.6.3"
+ sources."@babel/types-7.6.3"
sources."@calebboyd/semaphore-1.3.1"
sources."@comandeer/babel-plugin-banner-4.1.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
@@ -58733,7 +58803,7 @@ in
sources."@types/events-3.0.0"
sources."@types/glob-7.1.1"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."@webassemblyjs/ast-1.8.5"
sources."@webassemblyjs/floating-point-hex-parser-1.8.5"
sources."@webassemblyjs/helper-api-error-1.8.5"
@@ -58915,7 +58985,7 @@ in
sources."big.js-5.2.2"
sources."binary-extensions-1.13.1"
sources."bl-1.2.2"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
sources."braces-1.8.5"
@@ -58926,7 +58996,7 @@ in
sources."browserify-rsa-4.0.1"
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.7.0"
+ sources."browserslist-4.7.2"
sources."buffer-5.4.3"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -58949,7 +59019,7 @@ in
})
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30000989"
+ sources."caniuse-lite-1.0.30001004"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
dependencies = [
@@ -58976,7 +59046,7 @@ in
sources."normalize-path-3.0.0"
];
})
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."chrome-trace-event-1.0.2"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
@@ -59025,8 +59095,8 @@ in
sources."convert-source-map-1.6.0"
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.9"
- (sources."core-js-compat-3.2.1" // {
+ sources."core-js-2.6.10"
+ (sources."core-js-compat-3.3.4" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -59107,12 +59177,12 @@ in
})
sources."duplexer3-0.1.4"
sources."duplexify-3.7.1"
- sources."electron-to-chromium-1.3.264"
+ sources."electron-to-chromium-1.3.296"
sources."elliptic-6.5.1"
sources."emoji-regex-7.0.3"
sources."emojis-list-2.1.0"
- sources."end-of-stream-1.4.1"
- sources."enhanced-resolve-4.1.0"
+ sources."end-of-stream-1.4.4"
+ sources."enhanced-resolve-4.1.1"
sources."errno-0.1.7"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -59269,7 +59339,7 @@ in
sources."get-proxy-2.1.0"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-base-0.3.0"
sources."glob-parent-2.0.0"
sources."glob-to-regexp-0.3.0"
@@ -59298,11 +59368,11 @@ in
})
sources."get-stream-4.1.0"
sources."http-cache-semantics-4.0.3"
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
sources."p-cancelable-1.1.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graceful-readlink-1.0.1"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
@@ -59328,7 +59398,7 @@ in
sources."hash.js-1.1.7"
sources."hmac-drbg-1.0.1"
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-cache-semantics-3.8.1"
sources."https-browserify-1.0.0"
sources."ieee754-1.1.13"
@@ -59398,7 +59468,7 @@ in
sources."json-buffer-3.0.0"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."jszip-git://github.com/anmonteiro/jszip#patch-1"
sources."keyv-3.0.0"
sources."kind-of-3.2.2"
@@ -59416,7 +59486,7 @@ in
sources."loose-envify-1.4.0"
sources."lowercase-keys-1.0.1"
sources."lru-cache-5.1.1"
- sources."magic-string-0.25.3"
+ sources."magic-string-0.25.4"
(sources."make-dir-2.1.0" // {
dependencies = [
sources."pify-4.0.1"
@@ -59434,11 +59504,11 @@ in
sources."p-is-promise-2.1.0"
];
})
- sources."memory-fs-0.4.1"
+ sources."memory-fs-0.5.0"
sources."merge2-1.3.0"
sources."micromatch-2.3.11"
sources."miller-rabin-4.0.1"
- sources."mime-db-1.41.0"
+ sources."mime-db-1.42.0"
sources."mimic-fn-1.2.0"
sources."mimic-response-1.0.1"
sources."minimalistic-assert-1.0.1"
@@ -59481,7 +59551,11 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.32"
+ (sources."node-releases-1.1.39" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
sources."normalize-package-data-2.5.0"
sources."normalize-path-2.1.1"
(sources."normalize-url-2.0.1" // {
@@ -59662,9 +59736,8 @@ in
sources."regenerator-transform-0.14.1"
sources."regex-cache-0.4.4"
sources."regex-not-1.0.2"
- sources."regexp-tree-0.1.13"
sources."regexpu-core-4.6.0"
- sources."regjsgen-0.5.0"
+ sources."regjsgen-0.5.1"
(sources."regjsparser-0.6.0" // {
dependencies = [
sources."jsesc-0.5.0"
@@ -59818,9 +59891,9 @@ in
sources."supports-color-2.0.0"
sources."tapable-1.1.3"
sources."tar-stream-1.6.2"
- (sources."terser-4.3.1" // {
+ (sources."terser-4.3.9" // {
dependencies = [
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."source-map-0.6.1"
];
})
@@ -59893,7 +59966,7 @@ in
sources."vm-browserify-1.1.0"
sources."watchpack-1.6.0"
sources."wcwidth-1.0.1"
- (sources."webpack-4.40.2" // {
+ (sources."webpack-4.41.2" // {
dependencies = [
sources."arr-diff-4.0.0"
sources."array-unique-0.3.2"
@@ -59931,12 +60004,15 @@ in
})
sources."isobject-3.0.1"
sources."kind-of-6.0.2"
+ sources."memory-fs-0.4.1"
sources."micromatch-3.1.10"
sources."ms-2.0.0"
];
})
(sources."webpack-cli-3.3.9" // {
dependencies = [
+ sources."enhanced-resolve-4.1.0"
+ sources."memory-fs-0.4.1"
sources."supports-color-6.1.0"
];
})
@@ -59970,7 +60046,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-4.0.0"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
(sources."yargs-13.2.4" // {
dependencies = [
sources."find-up-3.0.0"
@@ -60017,17 +60093,17 @@ in
markdown-link-check = nodeEnv.buildNodePackage {
name = "markdown-link-check";
packageName = "markdown-link-check";
- version = "3.7.3";
+ version = "3.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.7.3.tgz";
- sha512 = "X/HWomzeox5HtkKLupin4affBXHq22r7RNqiSKsxlgZQMSU9n+zpGY0sbzJr1IycB6FXpKUZet1VH3Rs1/8WQg==";
+ url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.8.0.tgz";
+ sha512 = "tpBlUsnJfJ5xMHAjBC/10s8Un/WT/FmF+xXaZjeaegESmjcPlEcxZ+UuCtxArETovLS5gZ8lZXzdhgslHziLsg==";
};
dependencies = [
sources."ajv-6.10.2"
sources."ansi-styles-3.2.1"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
- sources."async-2.6.3"
+ sources."async-3.1.0"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
@@ -60037,7 +60113,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-3.0.2"
sources."core-util-is-1.0.2"
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
@@ -60054,8 +60130,8 @@ in
sources."har-validator-5.1.3"
sources."has-flag-3.0.0"
sources."http-signature-1.2.0"
- sources."is-absolute-url-2.1.0"
- sources."is-relative-url-2.0.0"
+ sources."is-absolute-url-3.0.3"
+ sources."is-relative-url-3.0.0"
sources."is-typedarray-1.0.0"
sources."isemail-3.2.0"
sources."isstream-0.1.2"
@@ -60064,10 +60140,10 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
sources."jsprim-1.4.1"
- sources."link-check-4.4.5"
+ sources."link-check-4.4.6"
sources."lodash-4.17.15"
- sources."markdown-link-extractor-1.2.1"
- sources."marked-0.6.3"
+ sources."markdown-link-extractor-1.2.2"
+ sources."marked-0.7.0"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
sources."ms-2.1.2"
@@ -60112,7 +60188,7 @@ in
sha512 = "z4uLbDHNbs/aRuR6zCcnzwFQuMixkHCcWqgVaommfK/3cA1Ahq7OXemn+m8JwTYcBApSHgcrSbPr9sm3sZFL+A==";
};
dependencies = [
- sources."commander-3.0.1"
+ sources."commander-3.0.2"
sources."esm-3.2.25"
sources."mathjax-full-git://github.com/mathjax/MathJax-src.git"
sources."mj-context-menu-0.2.0"
@@ -60170,10 +60246,10 @@ in
meguca = nodeEnv.buildNodePackage {
name = "meguca";
packageName = "meguca";
- version = "1.1.6";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/meguca/-/meguca-1.1.6.tgz";
- sha512 = "kqg6t8mUUpb4WwD+4WqgS41AejdSkIEmPCB7v2D7ioxtLFiCaQUlu+K8rT6qOe3PmMacZ2sZsmdIs5jtYtxPig==";
+ url = "https://registry.npmjs.org/meguca/-/meguca-1.1.8.tgz";
+ sha512 = "BrbjYMq6FeZYMKx9mw7aHGUtLCyGPX4kSoCqZiRBFw5ESTgJcmmr+DbLCC29k8hRpBVRqdq3OapSEbAGXZ6z/g==";
};
dependencies = [
(sources."@gulp-sourcemaps/identity-map-1.0.2" // {
@@ -60193,7 +60269,7 @@ in
})
(sources."accord-0.28.0" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."minimatch-3.0.4"
sources."semver-5.7.1"
sources."uglify-js-2.8.29"
@@ -60289,7 +60365,7 @@ in
sources."collection-visit-1.0.0"
sources."color-support-1.1.3"
sources."combined-stream-1.0.8"
- sources."commander-2.17.1"
+ sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.6.0"
@@ -60332,7 +60408,7 @@ in
})
(sources."duplexify-3.7.1" // {
dependencies = [
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."once-1.4.0"
sources."readable-stream-2.3.6"
sources."string_decoder-1.1.1"
@@ -60403,7 +60479,7 @@ in
sources."fragment-cache-0.2.1"
(sources."fs-mkdirp-stream-1.0.0" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."readable-stream-2.3.6"
sources."string_decoder-1.1.1"
sources."through2-2.0.5"
@@ -60456,9 +60532,9 @@ in
sources."through2-2.0.5"
];
})
- (sources."gulp-sourcemaps-2.6.4" // {
+ (sources."gulp-sourcemaps-2.6.5" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."readable-stream-2.3.6"
sources."source-map-0.6.1"
sources."string_decoder-1.1.1"
@@ -60473,9 +60549,9 @@ in
sources."clone-2.1.2"
sources."clone-stats-1.0.0"
sources."extend-shallow-1.1.4"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-stream-6.1.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."kind-of-1.1.0"
sources."minimatch-3.0.4"
sources."ordered-read-streams-1.0.1"
@@ -60489,9 +60565,8 @@ in
sources."vinyl-fs-3.0.3"
];
})
- (sources."gulp-uglify-3.0.1" // {
+ (sources."gulp-uglify-3.0.2" // {
dependencies = [
- sources."lodash-4.17.15"
sources."readable-stream-2.3.6"
sources."string_decoder-1.1.1"
sources."through2-2.0.5"
@@ -60577,7 +60652,7 @@ in
sources."lead-1.0.0"
(sources."less-2.7.3" // {
dependencies = [
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
];
})
sources."liftoff-2.5.0"
@@ -60680,7 +60755,7 @@ in
sources."prr-1.0.1"
(sources."pump-2.0.1" // {
dependencies = [
- (sources."end-of-stream-1.4.1" // {
+ (sources."end-of-stream-1.4.4" // {
dependencies = [
sources."once-1.4.0"
];
@@ -60821,8 +60896,8 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-1.2.0"
- sources."typescript-3.5.3"
- (sources."uglify-js-3.4.9" // {
+ sources."typescript-3.6.4"
+ (sources."uglify-js-3.6.4" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -60863,7 +60938,7 @@ in
dependencies = [
sources."clone-2.1.2"
sources."clone-stats-1.0.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."vinyl-2.2.0"
];
})
@@ -60889,10 +60964,10 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "6.2.0";
+ version = "6.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-6.2.0.tgz";
- sha512 = "qwfFgY+7EKAAUAdv7VYMZQknI7YJSGesxHyhn6qD52DV8UcSZs5XwCifcZGMVIE4a5fbmhvbotxC0DLQ0oKohQ==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-6.2.2.tgz";
+ sha512 = "FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A==";
};
dependencies = [
sources."ansi-colors-3.2.3"
@@ -60908,29 +60983,30 @@ in
sources."supports-color-5.5.0"
];
})
- sources."cliui-4.1.0"
- sources."code-point-at-1.1.0"
+ (sources."cliui-5.0.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ sources."string-width-3.1.0"
+ sources."strip-ansi-5.2.0"
+ ];
+ })
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."concat-map-0.0.1"
- sources."cross-spawn-6.0.5"
sources."debug-3.2.6"
sources."decamelize-1.2.0"
sources."define-properties-1.1.3"
sources."diff-3.5.0"
sources."emoji-regex-7.0.3"
- sources."end-of-stream-1.4.1"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
- sources."execa-1.0.0"
sources."find-up-3.0.0"
sources."flat-4.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-caller-file-2.0.5"
- sources."get-stream-4.1.0"
sources."glob-7.1.3"
sources."growl-1.10.5"
sources."has-1.0.3"
@@ -60939,91 +61015,64 @@ in
sources."he-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."invert-kv-2.0.0"
- sources."is-buffer-2.0.3"
+ sources."is-buffer-2.0.4"
sources."is-callable-1.1.4"
sources."is-date-object-1.0.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-regex-1.0.4"
- sources."is-stream-1.1.0"
sources."is-symbol-1.0.2"
sources."isexe-2.0.0"
sources."js-yaml-3.13.1"
- sources."lcid-2.0.0"
sources."locate-path-3.0.0"
sources."lodash-4.17.15"
sources."log-symbols-2.2.0"
- sources."map-age-cleaner-0.1.3"
- sources."mem-4.3.0"
- sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."ms-2.1.1"
- sources."nice-try-1.0.5"
sources."node-environment-flags-1.0.5"
- sources."npm-run-path-2.0.2"
- sources."number-is-nan-1.0.1"
sources."object-inspect-1.6.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.0"
sources."object.getownpropertydescriptors-2.0.3"
sources."once-1.4.0"
- sources."os-locale-3.1.0"
- sources."p-defer-1.0.0"
- sources."p-finally-1.0.0"
- sources."p-is-promise-2.1.0"
sources."p-limit-2.2.1"
sources."p-locate-3.0.0"
sources."p-try-2.2.0"
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-key-2.0.1"
- sources."pump-3.0.0"
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
sources."semver-5.7.1"
sources."set-blocking-2.0.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
sources."sprintf-js-1.0.3"
sources."string-width-2.1.1"
sources."string.prototype.trimleft-2.1.0"
sources."string.prototype.trimright-2.1.0"
sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-6.0.0"
sources."which-1.3.1"
sources."which-module-2.0.0"
sources."wide-align-1.1.3"
- (sources."wrap-ansi-2.1.0" // {
- 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."wrappy-1.0.2"
- sources."y18n-4.0.0"
- (sources."yargs-13.2.2" // {
+ (sources."wrap-ansi-5.1.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
sources."string-width-3.1.0"
sources."strip-ansi-5.2.0"
];
})
- sources."yargs-parser-13.0.0"
- (sources."yargs-unparser-1.5.0" // {
+ sources."wrappy-1.0.2"
+ sources."y18n-4.0.0"
+ (sources."yargs-13.3.0" // {
dependencies = [
- sources."get-caller-file-1.0.3"
- sources."require-main-filename-1.0.1"
- sources."yargs-12.0.5"
- sources."yargs-parser-11.1.1"
+ sources."ansi-regex-4.1.0"
+ sources."string-width-3.1.0"
+ sources."strip-ansi-5.2.0"
];
})
+ sources."yargs-parser-13.1.1"
+ sources."yargs-unparser-1.6.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -61047,7 +61096,7 @@ in
sources."argparse-1.0.10"
sources."asynckit-0.4.0"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
@@ -61157,10 +61206,10 @@ in
node-gyp = nodeEnv.buildNodePackage {
name = "node-gyp";
packageName = "node-gyp";
- version = "5.0.3";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz";
- sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ==";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-6.0.0.tgz";
+ sha512 = "Qz6Xda2bKzdsooXITarGf2uaCJcYh7ua+jeRMifBFmTz0peo0JW6IjpqELlX+ZiHXphsKzISgaCsZeQch5a+NA==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -61177,7 +61226,7 @@ in
sources."bcrypt-pbkdf-1.0.2"
sources."brace-expansion-1.1.11"
sources."caseless-0.12.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
@@ -61198,8 +61247,8 @@ in
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-unicode-2.0.1"
@@ -61220,8 +61269,8 @@ in
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mkdirp-0.5.1"
sources."nopt-3.0.6"
sources."npmlog-4.1.2"
@@ -61247,7 +61296,7 @@ in
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
(sources."tough-cookie-2.4.3" // {
dependencies = [
sources."punycode-1.4.1"
@@ -61262,7 +61311,7 @@ in
sources."which-1.3.1"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -61320,7 +61369,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.45"
+ sources."big-integer-1.6.47"
sources."block-stream-0.0.9"
sources."body-parser-1.19.0"
sources."boom-2.10.1"
@@ -61384,14 +61433,14 @@ in
];
})
sources."glob-5.0.15"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-1.0.5"
sources."har-validator-4.2.1"
sources."has-unicode-2.0.1"
sources."hawk-3.1.3"
sources."headless-0.1.7"
sources."hoek-2.16.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-errors-1.7.2"
sources."http-signature-1.1.1"
sources."iconv-lite-0.4.24"
@@ -61443,7 +61492,7 @@ in
sources."negotiator-0.6.2"
(sources."node-pre-gyp-0.6.39" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."rimraf-2.7.1"
sources."semver-5.7.1"
];
@@ -61532,7 +61581,7 @@ in
sources."tar-2.2.2"
(sources."tar-pack-3.4.1" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."rimraf-2.7.1"
];
})
@@ -61594,10 +61643,10 @@ in
node-pre-gyp = nodeEnv.buildNodePackage {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
- version = "0.13.0";
+ version = "0.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz";
- sha512 = "Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==";
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz";
+ sha512 = "+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -61606,7 +61655,7 @@ in
sources."are-we-there-yet-1.1.5"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."code-point-at-1.1.0"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
@@ -61618,10 +61667,10 @@ in
sources."fs-minipass-1.2.7"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."has-unicode-2.0.1"
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.5"
@@ -61629,14 +61678,14 @@ in
sources."isarray-1.0.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mkdirp-0.5.1"
sources."ms-2.1.2"
sources."needle-2.4.0"
sources."nopt-4.0.1"
sources."npm-bundled-1.0.6"
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
@@ -61663,11 +61712,11 @@ in
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."util-deprecate-1.0.2"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -61682,16 +61731,16 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "0.20.8";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-0.20.8.tgz";
- sha512 = "+i2SHPo8AQED0lyf7xoGcWAs142Nc5zvCTzmuncslgxVt/fl6XADEEY4yT/eDVNOwRrf9TZMjhSxBM9ScJJu7Q==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-1.0.2.tgz";
+ sha512 = "QSyPpAGGVFgVlKyumWFd8j2hd420+sh8DSxlvAtatDVaIG3+MaAD3eDLg49HIwRyAhiROVS1XNWkqyq/H1/cBA==";
};
dependencies = [
- sources."@babel/runtime-7.6.0"
- sources."@node-red/editor-api-0.20.8"
- sources."@node-red/editor-client-0.20.8"
- (sources."@node-red/nodes-0.20.8" // {
+ sources."@babel/runtime-7.6.3"
+ sources."@node-red/editor-api-1.0.2"
+ sources."@node-red/editor-client-1.0.2"
+ (sources."@node-red/nodes-1.0.2" // {
dependencies = [
sources."cookie-0.4.0"
sources."http-errors-1.7.3"
@@ -61705,14 +61754,13 @@ in
})
];
})
- sources."@node-red/registry-0.20.8"
- sources."@node-red/runtime-0.20.8"
- sources."@node-red/util-0.20.8"
+ sources."@node-red/registry-1.0.2"
+ sources."@node-red/runtime-1.0.2"
+ sources."@node-red/util-1.0.2"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
- sources."addressparser-1.0.1"
sources."agent-base-4.3.0"
- sources."ajv-6.10.0"
+ sources."ajv-6.10.2"
sources."ansi-regex-2.1.1"
sources."append-field-1.0.0"
sources."aproba-1.2.0"
@@ -61724,7 +61772,6 @@ in
})
sources."argparse-1.0.10"
sources."array-flatten-1.1.1"
- sources."array-indexofobject-0.0.1"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."async-0.1.22"
@@ -61763,11 +61810,11 @@ in
})
sources."caseless-0.12.0"
sources."cheerio-0.22.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."clone-2.1.2"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."commist-1.1.0"
sources."concat-map-0.0.1"
(sources."concat-stream-1.6.2" // {
@@ -61817,7 +61864,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
sources."es5-ext-0.10.51"
sources."es6-iterator-2.0.3"
@@ -61848,12 +61895,6 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-2.0.1"
sources."fast-json-stable-stringify-2.0.0"
- (sources."feedparser-2.2.9" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
sources."finalhandler-1.1.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
@@ -61865,7 +61906,7 @@ in
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-3.1.0"
(sources."glob-stream-6.1.0" // {
dependencies = [
@@ -61873,33 +61914,24 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-unicode-2.0.1"
sources."hash-sum-2.0.0"
- sources."he-1.2.0"
sources."help-me-1.1.0"
- sources."html-to-text-5.1.1"
sources."htmlparser2-3.10.1"
sources."http-errors-1.7.2"
sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.1" // {
+ (sources."https-proxy-agent-2.2.2" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
];
})
- sources."i18next-15.1.0"
+ sources."i18next-15.1.2"
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.2"
- (sources."imap-0.8.19" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
+ sources."ignore-walk-3.0.3"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
@@ -61926,34 +61958,19 @@ in
sources."jsonfile-4.0.0"
sources."jsprim-1.4.1"
sources."leven-2.1.0"
- sources."libbase64-1.0.3"
- sources."libmime-4.1.1"
- sources."libqp-1.1.0"
- sources."linkify-it-2.1.0"
- sources."lodash-4.17.15"
- sources."lodash.assign-4.2.0"
sources."lodash.assignin-4.2.0"
sources."lodash.bind-4.2.1"
sources."lodash.defaults-4.2.0"
sources."lodash.filter-4.6.0"
sources."lodash.flatten-4.4.0"
sources."lodash.foreach-4.5.0"
- sources."lodash.get-4.4.2"
- sources."lodash.has-4.5.2"
sources."lodash.map-4.6.0"
sources."lodash.merge-4.6.2"
sources."lodash.pick-4.4.0"
sources."lodash.reduce-4.6.0"
sources."lodash.reject-4.6.0"
sources."lodash.some-4.6.0"
- sources."lodash.uniq-4.5.0"
sources."lru-cache-4.1.5"
- (sources."mailparser-2.7.1" // {
- dependencies = [
- sources."nodemailer-6.1.1"
- ];
- })
- sources."mailsplit-4.4.1"
sources."media-typer-0.3.0"
(sources."memorystore-1.6.1" // {
dependencies = [
@@ -61967,19 +61984,19 @@ in
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- (sources."minipass-2.8.1" // {
+ (sources."minipass-2.9.0" // {
dependencies = [
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
})
- sources."minizlib-1.2.2"
+ sources."minizlib-1.3.3"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
];
})
sources."moment-2.24.0"
- sources."moment-timezone-0.5.26"
+ sources."moment-timezone-0.5.27"
(sources."mqtt-2.18.8" // {
dependencies = [
sources."readable-stream-2.3.6"
@@ -61987,10 +62004,9 @@ in
];
})
sources."mqtt-packet-5.6.1"
- sources."mri-1.1.4"
sources."ms-2.0.0"
- sources."multer-1.4.1"
- sources."mustache-3.0.1"
+ sources."multer-1.4.2"
+ sources."mustache-3.0.2"
sources."nan-2.13.2"
(sources."needle-2.4.0" // {
dependencies = [
@@ -62005,31 +62021,20 @@ in
sources."semver-5.7.1"
];
})
- sources."node-red-node-email-1.6.3"
- sources."node-red-node-feedparser-0.1.14"
sources."node-red-node-rbe-0.2.5"
- sources."node-red-node-sentiment-0.1.4"
- sources."node-red-node-tail-0.0.2"
- sources."node-red-node-twitter-1.1.5"
- sources."nodemailer-6.3.0"
+ sources."node-red-node-tail-0.0.3"
sources."nopt-4.0.1"
sources."npm-bundled-1.0.6"
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
sources."npmlog-4.1.2"
sources."nth-check-1.0.2"
sources."number-is-nan-1.0.1"
- sources."oauth-0.9.15"
sources."oauth-sign-0.9.0"
sources."oauth2orize-1.11.0"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
(sources."ordered-read-streams-1.0.1" // {
dependencies = [
sources."readable-stream-2.3.6"
@@ -62049,7 +62054,6 @@ in
sources."path-to-regexp-0.1.7"
sources."pause-0.0.1"
sources."performance-now-2.1.0"
- sources."poplib-0.1.7"
sources."process-nextick-args-2.0.1"
sources."proxy-addr-2.0.5"
sources."pseudomap-1.0.2"
@@ -62080,14 +62084,13 @@ in
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
- sources."semver-6.2.0"
+ sources."semver-6.3.0"
(sources."send-0.17.1" // {
dependencies = [
sources."mime-1.6.0"
sources."ms-2.1.1"
];
})
- sources."sentiment-2.1.0"
sources."serve-static-1.14.1"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
@@ -62108,9 +62111,9 @@ in
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
sources."tail-2.0.3"
- (sources."tar-4.4.11" // {
+ (sources."tar-4.4.13" // {
dependencies = [
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
})
(sources."through2-2.0.5" // {
@@ -62120,7 +62123,6 @@ in
];
})
sources."through2-filter-3.0.0"
- sources."tlds-1.203.1"
sources."to-absolute-glob-2.0.2"
sources."toidentifier-1.0.0"
(sources."tough-cookie-2.4.3" // {
@@ -62130,11 +62132,9 @@ in
})
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."twitter-ng-0.6.2"
sources."type-1.2.0"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uc.micro-1.0.6"
sources."uglify-js-3.6.0"
sources."uid-safe-2.1.5"
sources."uid2-0.0.3"
@@ -62144,11 +62144,6 @@ in
sources."universalify-0.1.2"
sources."unpipe-1.0.0"
sources."uri-js-4.2.2"
- (sources."utf7-1.0.2" // {
- dependencies = [
- sources."semver-5.3.0"
- ];
- })
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.3.3"
@@ -62163,7 +62158,6 @@ in
})
sources."when-3.7.8"
sources."wide-align-1.1.3"
- sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
sources."ws-6.2.1"
sources."xml2js-0.4.19"
@@ -62173,7 +62167,7 @@ in
];
buildInputs = globalBuildInputs;
meta = {
- description = "A visual tool for wiring the Internet of Things";
+ description = "Low-code programming for event-driven applications";
homepage = http://nodered.org/;
license = "Apache-2.0";
};
@@ -62207,7 +62201,7 @@ in
sources."buffer-from-1.1.1"
sources."builtins-1.0.3"
sources."caseless-0.12.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
@@ -62242,12 +62236,12 @@ in
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -62266,8 +62260,8 @@ in
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mkdirp-0.5.1"
sources."ncp-0.4.2"
sources."nijs-0.0.25"
@@ -62339,7 +62333,7 @@ in
];
})
sources."strip-ansi-3.0.1"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."temp-0.9.0"
(sources."tough-cookie-2.4.3" // {
dependencies = [
@@ -62359,7 +62353,7 @@ in
sources."walk-2.3.14"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -62374,10 +62368,10 @@ in
nodemon = nodeEnv.buildNodePackage {
name = "nodemon";
packageName = "nodemon";
- version = "1.19.2";
+ version = "1.19.4";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.19.2.tgz";
- sha512 = "hRLYaw5Ihyw9zK7NF+9EUzVyS6Cvgc14yh8CAYr38tPxJa6UrOxwAQ351GwrgoanHCF0FalQFn6w5eoX/LGdJw==";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.19.4.tgz";
+ sha512 = "VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -62504,7 +62498,7 @@ in
})
sources."global-dirs-0.1.1"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
@@ -62727,10 +62721,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "6.11.3";
+ version = "6.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.11.3.tgz";
- sha512 = "K2h+MPzZiY39Xf6eHEdECe/LKoJXam4UCflz5kIxoskN3LQFeYs5fqBGT5i4TtM/aBk+86Mcf+jgXs/WuWAutQ==";
+ url = "https://registry.npmjs.org/npm/-/npm-6.12.0.tgz";
+ sha512 = "juj5VkB3/k+PWbJUnXD7A/8oc8zLusDnK/sV9PybSalsbOVOTIp5vSE0rz5rQ7BsmUgQS47f/L2GYQnWXaKgnQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -62745,10 +62739,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "3.1.23";
+ version = "3.1.25";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-3.1.23.tgz";
- sha512 = "Z2dkMdNgue6OPkQDPcAK62Qrwv+G1PaEmKrDrrSAiSP7pRD3u30xOVy1nLukS1XrJ2/zF8XTVxFe9/ubcvlcPQ==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-3.1.25.tgz";
+ sha512 = "B2tAgclEby1VyoN4cZp5Zm+iam72jQV1c2uZIcoNwB0cBbJQZaI1Xj+uxkYkoDs2w4DuaM1hQUavIZgfGKkCgg==";
};
dependencies = [
sources."@sindresorhus/is-0.14.0"
@@ -62762,7 +62756,7 @@ in
sources."aproba-1.2.0"
sources."argparse-1.0.10"
sources."balanced-match-1.0.0"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."boxen-3.2.0"
sources."brace-expansion-1.1.11"
sources."buffer-from-1.1.1"
@@ -62777,7 +62771,7 @@ in
})
sources."camelcase-5.3.1"
sources."chalk-2.4.2"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."ci-info-2.0.0"
sources."cint-8.2.1"
sources."cli-boxes-2.2.0"
@@ -62786,7 +62780,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colors-1.0.3"
- sources."commander-3.0.1"
+ sources."commander-3.0.2"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
sources."configstore-4.0.0"
@@ -62813,7 +62807,7 @@ in
sources."duplexify-3.7.1"
sources."emoji-regex-7.0.3"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."err-code-1.1.2"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
@@ -62835,21 +62829,21 @@ in
sources."genfun-5.0.0"
sources."get-stdin-7.0.0"
sources."get-stream-4.1.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."global-dirs-0.1.1"
sources."got-9.6.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."has-yarn-2.1.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-cache-semantics-3.8.1"
sources."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.2"
+ sources."https-proxy-agent-2.2.4"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."iferr-0.1.5"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."infer-owner-1.0.4"
@@ -62872,7 +62866,7 @@ in
sources."json-buffer-3.0.0"
sources."json-parse-better-errors-1.0.2"
sources."json-parse-helpfulerror-1.0.3"
- (sources."json5-2.1.0" // {
+ (sources."json5-2.1.1" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -62894,12 +62888,12 @@ in
sources."lowercase-keys-1.0.1"
sources."lru-cache-5.1.1"
sources."make-dir-1.3.0"
- sources."make-fetch-happen-5.0.0"
+ sources."make-fetch-happen-5.0.1"
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mississippi-3.0.0"
sources."mkdirp-0.5.1"
sources."move-concurrently-1.0.1"
@@ -62918,20 +62912,20 @@ in
sources."semver-5.7.1"
];
})
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
sources."npm-bundled-1.0.6"
(sources."npm-package-arg-6.1.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
(sources."npm-pick-manifest-3.0.2" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."npm-registry-fetch-4.0.1"
+ sources."npm-registry-fetch-4.0.2"
sources."npm-run-path-2.0.2"
sources."object-assign-4.1.1"
sources."object-keys-1.1.1"
@@ -63044,7 +63038,7 @@ in
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-5.5.0"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."term-size-1.2.0"
sources."through-2.3.8"
sources."through2-2.0.5"
@@ -63072,7 +63066,7 @@ in
sources."xdg-basedir-3.0.0"
sources."xtend-4.0.2"
sources."y18n-4.0.0"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -63150,7 +63144,7 @@ in
})
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."graceful-fs-2.0.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
@@ -63306,20 +63300,20 @@ in
parcel-bundler = nodeEnv.buildNodePackage {
name = "parcel-bundler";
packageName = "parcel-bundler";
- version = "1.12.3";
+ version = "1.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.12.3.tgz";
- sha512 = "8bq6lj0hhQeGxD9f9xEkFMXQ3d8TIlf2+isKxoi9bciB0KVEILRGllaPkUgp++5t0anToBh9+tG6ZyInXOC1/A==";
+ url = "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.12.4.tgz";
+ sha512 = "G+iZGGiPEXcRzw0fiRxWYCKxdt/F7l9a0xkiU4XbcVRJCSlBnioWEwJMutOCCpoQmaQtjB4RBHDGIHN85AIhLQ==";
};
dependencies = [
- sources."@babel/code-frame-7.0.0"
- (sources."@babel/core-7.3.4" // {
+ sources."@babel/code-frame-7.5.5"
+ (sources."@babel/core-7.6.4" // {
dependencies = [
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.3.4" // {
+ (sources."@babel/generator-7.6.4" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -63327,82 +63321,34 @@ in
sources."@babel/helper-annotate-as-pure-7.0.0"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0"
sources."@babel/helper-builder-react-jsx-7.3.0"
- (sources."@babel/helper-call-delegate-7.4.4" // {
- dependencies = [
- sources."@babel/code-frame-7.5.5"
- sources."@babel/generator-7.6.0"
- sources."@babel/parser-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
- sources."source-map-0.5.7"
- ];
- })
- (sources."@babel/helper-define-map-7.5.5" // {
- dependencies = [
- sources."@babel/types-7.6.1"
- ];
- })
+ sources."@babel/helper-call-delegate-7.4.4"
+ sources."@babel/helper-define-map-7.5.5"
sources."@babel/helper-explode-assignable-expression-7.1.0"
sources."@babel/helper-function-name-7.1.0"
sources."@babel/helper-get-function-arity-7.0.0"
- (sources."@babel/helper-hoist-variables-7.4.4" // {
- dependencies = [
- sources."@babel/types-7.6.1"
- ];
- })
- (sources."@babel/helper-member-expression-to-functions-7.5.5" // {
- dependencies = [
- sources."@babel/types-7.6.1"
- ];
- })
+ sources."@babel/helper-hoist-variables-7.4.4"
+ sources."@babel/helper-member-expression-to-functions-7.5.5"
sources."@babel/helper-module-imports-7.0.0"
- (sources."@babel/helper-module-transforms-7.5.5" // {
- dependencies = [
- sources."@babel/parser-7.6.0"
- sources."@babel/template-7.6.0"
- sources."@babel/types-7.6.1"
- ];
- })
+ sources."@babel/helper-module-transforms-7.5.5"
sources."@babel/helper-optimise-call-expression-7.0.0"
sources."@babel/helper-plugin-utils-7.0.0"
sources."@babel/helper-regex-7.5.5"
sources."@babel/helper-remap-async-to-generator-7.1.0"
- (sources."@babel/helper-replace-supers-7.5.5" // {
- dependencies = [
- sources."@babel/code-frame-7.5.5"
- sources."@babel/generator-7.6.0"
- sources."@babel/parser-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
- sources."source-map-0.5.7"
- ];
- })
+ sources."@babel/helper-replace-supers-7.5.5"
sources."@babel/helper-simple-access-7.1.0"
- (sources."@babel/helper-split-export-declaration-7.4.4" // {
- dependencies = [
- sources."@babel/types-7.6.1"
- ];
- })
+ sources."@babel/helper-split-export-declaration-7.4.4"
sources."@babel/helper-wrap-function-7.2.0"
- (sources."@babel/helpers-7.6.0" // {
- dependencies = [
- sources."@babel/code-frame-7.5.5"
- sources."@babel/generator-7.6.0"
- sources."@babel/parser-7.6.0"
- sources."@babel/template-7.6.0"
- sources."@babel/traverse-7.6.0"
- sources."@babel/types-7.6.1"
- sources."source-map-0.5.7"
- ];
- })
+ sources."@babel/helpers-7.6.2"
sources."@babel/highlight-7.5.0"
- sources."@babel/parser-7.3.4"
+ sources."@babel/parser-7.6.4"
sources."@babel/plugin-proposal-async-generator-functions-7.2.0"
+ sources."@babel/plugin-proposal-dynamic-import-7.5.0"
sources."@babel/plugin-proposal-json-strings-7.2.0"
- sources."@babel/plugin-proposal-object-rest-spread-7.5.5"
+ sources."@babel/plugin-proposal-object-rest-spread-7.6.2"
sources."@babel/plugin-proposal-optional-catch-binding-7.2.0"
- sources."@babel/plugin-proposal-unicode-property-regex-7.4.4"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.6.2"
sources."@babel/plugin-syntax-async-generators-7.2.0"
+ sources."@babel/plugin-syntax-dynamic-import-7.2.0"
sources."@babel/plugin-syntax-flow-7.2.0"
sources."@babel/plugin-syntax-json-strings-7.2.0"
sources."@babel/plugin-syntax-jsx-7.2.0"
@@ -63411,49 +63357,51 @@ in
sources."@babel/plugin-transform-arrow-functions-7.2.0"
sources."@babel/plugin-transform-async-to-generator-7.5.0"
sources."@babel/plugin-transform-block-scoped-functions-7.2.0"
- sources."@babel/plugin-transform-block-scoping-7.6.0"
+ sources."@babel/plugin-transform-block-scoping-7.6.3"
sources."@babel/plugin-transform-classes-7.5.5"
sources."@babel/plugin-transform-computed-properties-7.2.0"
sources."@babel/plugin-transform-destructuring-7.6.0"
- sources."@babel/plugin-transform-dotall-regex-7.4.4"
+ sources."@babel/plugin-transform-dotall-regex-7.6.2"
sources."@babel/plugin-transform-duplicate-keys-7.5.0"
sources."@babel/plugin-transform-exponentiation-operator-7.2.0"
- sources."@babel/plugin-transform-flow-strip-types-7.3.4"
+ sources."@babel/plugin-transform-flow-strip-types-7.6.3"
sources."@babel/plugin-transform-for-of-7.4.4"
sources."@babel/plugin-transform-function-name-7.4.4"
sources."@babel/plugin-transform-literals-7.2.0"
+ sources."@babel/plugin-transform-member-expression-literals-7.2.0"
sources."@babel/plugin-transform-modules-amd-7.5.0"
- sources."@babel/plugin-transform-modules-commonjs-7.2.0"
+ sources."@babel/plugin-transform-modules-commonjs-7.6.0"
sources."@babel/plugin-transform-modules-systemjs-7.5.0"
sources."@babel/plugin-transform-modules-umd-7.2.0"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.6.3"
sources."@babel/plugin-transform-new-target-7.4.4"
sources."@babel/plugin-transform-object-super-7.5.5"
sources."@babel/plugin-transform-parameters-7.4.4"
+ sources."@babel/plugin-transform-property-literals-7.2.0"
sources."@babel/plugin-transform-react-jsx-7.3.0"
sources."@babel/plugin-transform-regenerator-7.4.5"
+ sources."@babel/plugin-transform-reserved-words-7.2.0"
sources."@babel/plugin-transform-shorthand-properties-7.2.0"
- sources."@babel/plugin-transform-spread-7.2.2"
+ sources."@babel/plugin-transform-spread-7.6.2"
sources."@babel/plugin-transform-sticky-regex-7.2.0"
sources."@babel/plugin-transform-template-literals-7.4.4"
sources."@babel/plugin-transform-typeof-symbol-7.2.0"
- sources."@babel/plugin-transform-unicode-regex-7.4.4"
- sources."@babel/preset-env-7.3.4"
- sources."@babel/runtime-7.3.4"
- sources."@babel/template-7.2.2"
- sources."@babel/traverse-7.3.4"
- sources."@babel/types-7.3.4"
+ sources."@babel/plugin-transform-unicode-regex-7.6.2"
+ sources."@babel/preset-env-7.6.3"
+ sources."@babel/runtime-7.6.3"
+ sources."@babel/template-7.6.0"
+ sources."@babel/traverse-7.6.3"
+ sources."@babel/types-7.6.3"
sources."@iarna/toml-2.2.3"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@parcel/fs-1.11.0"
- sources."@parcel/logger-1.11.0"
+ sources."@parcel/logger-1.11.1"
sources."@parcel/utils-1.11.0"
- sources."@parcel/watcher-1.12.0"
+ sources."@parcel/watcher-1.12.1"
sources."@parcel/workers-1.11.0"
sources."@types/q-1.5.2"
- sources."abab-2.0.1"
- sources."abbrev-1.1.1"
+ sources."abab-2.0.2"
sources."acorn-5.7.3"
(sources."acorn-globals-4.3.4" // {
dependencies = [
@@ -63465,7 +63413,7 @@ in
sources."alphanum-sort-1.0.2"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."ansi-to-html-0.6.11"
+ sources."ansi-to-html-0.6.12"
(sources."anymatch-2.0.0" // {
dependencies = [
sources."normalize-path-2.1.1"
@@ -63532,7 +63480,7 @@ in
sources."pako-1.0.10"
];
})
- sources."browserslist-4.7.0"
+ sources."browserslist-4.7.2"
(sources."buffer-4.9.1" // {
dependencies = [
sources."isarray-1.0.0"
@@ -63548,7 +63496,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30000989"
+ sources."caniuse-lite-1.0.30001004"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -63557,7 +63505,6 @@ in
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
sources."clone-2.1.2"
- sources."clones-1.2.0"
sources."coa-2.0.2"
sources."collection-visit-1.0.0"
sources."color-3.1.2"
@@ -63566,16 +63513,20 @@ in
sources."color-string-1.5.3"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
- sources."config-chain-1.1.12"
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.6.0"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
+ (sources."core-js-compat-3.3.4" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
sources."core-util-is-1.0.2"
sources."cosmiconfig-5.2.1"
sources."create-ecdh-4.0.3"
@@ -63681,17 +63632,17 @@ in
sources."domutils-1.7.0"
sources."dot-prop-4.2.0"
sources."dotenv-5.0.1"
- sources."dotenv-expand-4.2.0"
+ sources."dotenv-expand-5.1.0"
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
- sources."editorconfig-0.15.3"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.264"
+ sources."electron-to-chromium-1.3.296"
sources."elliptic-6.5.1"
sources."encodeurl-1.0.2"
sources."entities-1.1.2"
+ sources."envinfo-7.4.0"
sources."error-ex-1.3.2"
- (sources."es-abstract-1.14.2" // {
+ (sources."es-abstract-1.16.0" // {
dependencies = [
sources."object-inspect-1.6.0"
];
@@ -63740,7 +63691,7 @@ in
sources."get-port-3.2.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -63748,7 +63699,7 @@ in
})
sources."glob-to-regexp-0.3.0"
sources."globals-11.12.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."grapheme-breaker-0.3.2"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
@@ -63777,7 +63728,7 @@ in
sources."html-tags-1.2.0"
(sources."htmlnano-0.2.4" // {
dependencies = [
- sources."terser-4.3.1"
+ sources."terser-4.3.9"
];
})
(sources."htmlparser2-3.10.1" // {
@@ -63795,7 +63746,6 @@ in
sources."indexes-of-1.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.5"
sources."invariant-2.2.4"
sources."is-absolute-url-2.1.0"
(sources."is-accessor-descriptor-1.0.0" // {
@@ -63839,7 +63789,6 @@ in
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isstream-0.1.2"
- sources."js-beautify-1.10.2"
sources."js-levenshtein-1.1.6"
sources."js-tokens-4.0.0"
(sources."js-yaml-3.13.1" // {
@@ -63871,7 +63820,6 @@ in
sources."lodash.uniq-4.5.0"
sources."log-symbols-2.2.0"
sources."loose-envify-1.4.0"
- sources."lru-cache-4.1.5"
sources."magic-string-0.22.5"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
@@ -63928,8 +63876,11 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.32"
- sources."nopt-4.0.1"
+ (sources."node-releases-1.1.39" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
sources."normalize-html-whitespace-1.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
@@ -63952,9 +63903,6 @@ in
sources."optionator-0.8.2"
sources."ora-2.1.0"
sources."os-browserify-0.3.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
sources."pako-0.2.9"
sources."parse-asn1-5.1.5"
sources."parse-json-4.0.0"
@@ -63971,7 +63919,7 @@ in
sources."physical-cpu-count-2.0.0"
sources."pn-1.1.0"
sources."posix-character-classes-0.1.1"
- (sources."postcss-7.0.18" // {
+ (sources."postcss-7.0.21" // {
dependencies = [
sources."supports-color-6.1.0"
];
@@ -64044,8 +63992,6 @@ in
sources."private-0.1.8"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
- sources."proto-list-1.2.4"
- sources."pseudomap-1.0.2"
sources."psl-1.4.0"
sources."public-encrypt-4.0.3"
sources."punycode-2.1.1"
@@ -64065,7 +64011,7 @@ in
sources."readdirp-2.2.1"
sources."regenerate-1.4.0"
sources."regenerate-unicode-properties-8.1.0"
- sources."regenerator-runtime-0.12.1"
+ sources."regenerator-runtime-0.13.3"
sources."regenerator-transform-0.14.1"
(sources."regex-not-1.0.2" // {
dependencies = [
@@ -64073,9 +64019,8 @@ in
sources."is-extendable-1.0.1"
];
})
- sources."regexp-tree-0.1.13"
sources."regexpu-core-4.6.0"
- sources."regjsgen-0.5.0"
+ sources."regjsgen-0.5.1"
(sources."regjsparser-0.6.0" // {
dependencies = [
sources."jsesc-0.5.0"
@@ -64104,7 +64049,6 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- sources."safer-eval-1.3.5"
sources."sax-1.2.4"
sources."saxes-3.1.11"
sources."semver-5.7.1"
@@ -64118,7 +64062,7 @@ in
sources."ms-2.1.1"
];
})
- sources."serialize-to-js-1.2.2"
+ sources."serialize-to-js-3.0.0"
sources."serve-static-1.14.1"
sources."set-value-2.0.1"
sources."setimmediate-1.0.5"
@@ -64127,7 +64071,6 @@ in
sources."shallow-copy-0.0.1"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
- sources."sigmund-1.0.1"
sources."signal-exit-3.0.2"
(sources."simple-swizzle-0.2.2" // {
dependencies = [
@@ -64198,7 +64141,6 @@ in
sources."toidentifier-1.0.0"
sources."tough-cookie-2.5.0"
sources."tr46-1.0.1"
- sources."trim-right-1.0.1"
sources."tty-browserify-0.0.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -64207,7 +64149,7 @@ in
(sources."uncss-0.17.2" // {
dependencies = [
sources."cssesc-3.0.0"
- sources."is-absolute-url-3.0.2"
+ sources."is-absolute-url-3.0.3"
sources."postcss-selector-parser-6.0.2"
];
})
@@ -64259,7 +64201,7 @@ in
sources."webidl-conversions-4.0.2"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-7.0.0"
+ sources."whatwg-url-7.1.0"
sources."which-1.3.1"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
@@ -64267,7 +64209,6 @@ in
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."xtend-4.0.2"
- sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -64304,7 +64245,7 @@ in
sources."balanced-match-1.0.0"
sources."base64-js-0.0.8"
sources."bencode-2.0.1"
- sources."big-integer-1.6.45"
+ sources."big-integer-1.6.47"
sources."bitfield-0.1.0"
(sources."bittorrent-dht-6.4.2" // {
dependencies = [
@@ -64334,7 +64275,7 @@ in
sources."camelcase-keys-2.1.0"
sources."chalk-1.1.3"
sources."chardet-0.4.2"
- sources."chrome-dgram-3.0.3"
+ sources."chrome-dgram-3.0.4"
sources."chrome-dns-1.0.1"
sources."chrome-net-3.3.3"
sources."cli-cursor-2.1.0"
@@ -64360,7 +64301,7 @@ in
sources."dns-equal-1.0.0"
sources."dns-packet-1.3.1"
sources."dns-txt-2.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
sources."external-editor-2.2.0"
@@ -64378,13 +64319,13 @@ in
sources."function-bind-1.1.1"
sources."get-browser-rtc-1.0.2"
sources."get-stdin-4.0.1"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."hat-0.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-headers-3.0.2"
sources."iconv-lite-0.4.24"
sources."immediate-chunk-store-1.0.8"
@@ -64550,11 +64491,11 @@ in
sources."symbol-observable-1.0.1"
sources."thirty-two-1.0.2"
sources."through-2.3.8"
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
sources."tmp-0.0.33"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.1.0" // {
+ (sources."torrent-stream-1.2.0" // {
dependencies = [
sources."end-of-stream-0.1.5"
sources."magnet-uri-4.2.3"
@@ -64595,10 +64536,10 @@ in
peerflix-server = nodeEnv.buildNodePackage {
name = "peerflix-server";
packageName = "peerflix-server";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.5.0.tgz";
- sha512 = "TmtYwbayKLfzTj4rMIQ5nfGcXqkp8VwsCXkfZz95JdJcfk0+HYhflLDwviq+qOUxgKMYpoggqb129c3KST7zmQ==";
+ url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.5.1.tgz";
+ sha512 = "sXl2KCt8LCUrL6ezEPD4W5D5b+I0/VVOYlfI0K3GfdVUXkNHcb0q7cogPNjAXmoSMhvb57x2nhZN1xwxgGjzuw==";
};
dependencies = [
sources."accepts-1.3.7"
@@ -64656,7 +64597,7 @@ in
sources."bytes-3.1.0"
sources."callsite-1.0.0"
sources."caseless-0.12.0"
- sources."chrome-dgram-3.0.3"
+ sources."chrome-dgram-3.0.4"
sources."chrome-dns-1.0.1"
sources."chrome-net-3.3.3"
sources."combined-stream-1.0.8"
@@ -64692,7 +64633,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
(sources."engine.io-3.4.0" // {
dependencies = [
sources."cookie-0.3.1"
@@ -64729,8 +64670,8 @@ in
sources."fs.realpath-1.0.0"
sources."get-browser-rtc-1.0.2"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
(sources."has-binary2-1.0.3" // {
@@ -64914,12 +64855,12 @@ in
sources."string_decoder-1.1.1"
sources."tar-stream-2.1.0"
sources."thirty-two-0.0.2"
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
sources."to-array-0.1.4"
sources."toidentifier-1.0.0"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.1.0" // {
+ (sources."torrent-stream-1.2.0" // {
dependencies = [
sources."end-of-stream-0.1.5"
sources."mkdirp-0.3.5"
@@ -64947,7 +64888,7 @@ in
sources."verror-1.10.0"
sources."which-1.3.1"
sources."wrappy-1.0.2"
- sources."ws-7.1.2"
+ sources."ws-7.2.0"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
sources."yeast-0.1.2"
@@ -64966,10 +64907,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "3.8.1";
+ version = "4.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-3.8.1.tgz";
- sha512 = "uINy/U+TNvUHInG1l0/NrgDosUtafn9BrHjP5+v+ojpw+zb/lgXjkQmMHB4461LKezlNoBb7+0JOrNnm5JhZFg==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-4.1.6.tgz";
+ sha512 = "pTeynpUShgdh1fyP1hbqL+Q0ozaCHqDoG46KzkPfdSyUXxhLO/MSxxc7Wcx1Rl2uvu69CeENL85QFgUa/NOp0Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -65009,7 +64950,7 @@ in
};
dependencies = [
sources."JSONStream-1.3.5"
- sources."acorn-7.0.0"
+ sources."acorn-7.1.0"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.0.0"
sources."asn1.js-4.10.1"
@@ -65093,9 +65034,9 @@ in
sources."function-bind-1.1.1"
sources."gaze-1.1.3"
sources."get-assigned-identifiers-1.2.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."globule-1.2.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
sources."hash-base-3.0.4"
sources."hash.js-1.1.7"
@@ -65267,7 +65208,7 @@ in
sources."eyes-0.1.8"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."i-0.3.6"
@@ -65333,7 +65274,7 @@ in
sources."balanced-match-1.0.0"
sources."base62-0.1.1"
sources."brace-expansion-1.1.11"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."commoner-0.10.8"
sources."concat-map-0.0.1"
sources."defined-1.0.0"
@@ -65341,7 +65282,7 @@ in
sources."esprima-3.1.3"
sources."esprima-fb-13001.1001.0-dev-harmony-fb"
sources."glob-5.0.15"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."iconv-lite-0.4.24"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -65547,10 +65488,10 @@ in
serve = nodeEnv.buildNodePackage {
name = "serve";
packageName = "serve";
- version = "11.1.0";
+ version = "11.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serve/-/serve-11.1.0.tgz";
- sha512 = "+4wpDtOSS+4ZLyDWMxThutA3iOTawX2+yDovOI8cjOUOmemyvNlHyFAsezBlSgbZKTYChI3tzA1Mh0z6XZ62qA==";
+ url = "https://registry.npmjs.org/serve/-/serve-11.2.0.tgz";
+ sha512 = "THZcLzDGk3vJqjhAbLkLag43tiE3V0B7wVe98Xtl+1KyAsr+4iShg+9hke4pLZmrCJu0pUg0TrbhJmdqn/MKoA==";
};
dependencies = [
sources."@zeit/schemas-2.6.0"
@@ -65618,7 +65559,7 @@ in
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
sources."safe-buffer-5.1.2"
- (sources."serve-handler-6.1.0" // {
+ (sources."serve-handler-6.1.2" // {
dependencies = [
sources."mime-db-1.33.0"
sources."mime-types-2.1.18"
@@ -65653,25 +65594,25 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "1.52.2";
+ version = "1.55.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-1.52.2.tgz";
- sha512 = "JLRh52heei1kiTg/mdXdVeJXlB26nXI6uK3/jQvG2a16WwrXD+h033azkD9qqk7WgISLgDKPJbvlnsCAXLcX5Q==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-1.55.1.tgz";
+ sha512 = "eLHRFKe5norcgw2ZJEwh66hd/khgR9unocAOSzCOyi9fgB3/F4RTAeIaJVtDHZSGpwCI2APmDYzye11NZ86EfA==";
};
dependencies = [
- sources."@serverless/cli-1.2.3"
+ sources."@serverless/cli-1.4.0"
(sources."@serverless/component-metrics-1.0.8" // {
dependencies = [
sources."node-fetch-2.6.0"
];
})
- (sources."@serverless/core-1.0.0" // {
+ (sources."@serverless/core-1.1.2" // {
dependencies = [
sources."fs-extra-7.0.1"
sources."semver-6.3.0"
];
})
- (sources."@serverless/enterprise-plugin-3.0.0" // {
+ (sources."@serverless/enterprise-plugin-3.2.0" // {
dependencies = [
sources."fs-extra-7.0.1"
sources."node-fetch-2.6.0"
@@ -65679,24 +65620,23 @@ in
];
})
sources."@serverless/event-mocks-1.1.1"
- (sources."@serverless/platform-sdk-2.1.1" // {
+ (sources."@serverless/platform-sdk-2.1.2" // {
dependencies = [
sources."ramda-0.25.0"
sources."uuid-3.3.3"
];
})
- sources."@serverless/template-1.1.0"
+ sources."@serverless/template-1.1.3"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/lodash-4.14.138"
+ sources."@types/lodash-4.14.144"
sources."accepts-1.3.7"
sources."agent-base-4.3.0"
- sources."ansi-0.3.1"
sources."ansi-align-2.0.0"
sources."ansi-escapes-4.2.1"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.0"
+ sources."anymatch-3.1.1"
(sources."archiver-1.3.0" // {
dependencies = [
sources."async-2.6.3"
@@ -65707,7 +65647,6 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."are-we-there-yet-1.1.5"
sources."argparse-1.0.10"
sources."arr-diff-4.0.0"
sources."arr-union-3.1.0"
@@ -65719,7 +65658,7 @@ in
sources."async-1.5.2"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.533.0" // {
+ (sources."aws-sdk-2.556.0" // {
dependencies = [
sources."buffer-4.9.1"
sources."uuid-3.3.2"
@@ -65734,7 +65673,7 @@ in
sources."base64-js-1.3.1"
sources."binary-extensions-2.0.0"
sources."bl-1.2.2"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."body-parser-1.19.0"
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
@@ -65760,7 +65699,7 @@ in
sources."caw-2.0.1"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
- sources."chokidar-3.1.1"
+ sources."chokidar-3.2.2"
sources."ci-info-1.6.0"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -65784,7 +65723,6 @@ in
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
sources."clone-response-1.0.2"
- 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"
@@ -65798,7 +65736,6 @@ in
];
})
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
sources."config-chain-1.1.12"
sources."configstore-3.1.2"
(sources."content-disposition-0.5.3" // {
@@ -65817,7 +65754,11 @@ in
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
sources."crypto-random-string-1.0.0"
- sources."d-1.0.1"
+ (sources."d-1.0.1" // {
+ dependencies = [
+ sources."type-1.2.0"
+ ];
+ })
sources."debug-2.6.9"
sources."decode-uri-component-0.2.0"
sources."decompress-4.2.0"
@@ -65840,11 +65781,10 @@ in
sources."deferred-0.7.11"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."dot-prop-4.2.0"
- sources."dotenv-8.1.0"
+ sources."dotenv-8.2.0"
(sources."download-5.0.3" // {
dependencies = [
sources."get-stream-3.0.0"
@@ -65857,7 +65797,7 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."es5-ext-0.10.51"
sources."es6-iterator-2.0.3"
sources."es6-promise-4.2.8"
@@ -65881,7 +65821,6 @@ in
sources."get-stream-3.0.0"
];
})
- sources."exit-hook-1.1.1"
(sources."express-4.17.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -65892,7 +65831,7 @@ in
sources."external-editor-3.1.0"
sources."fast-levenshtein-2.0.6"
sources."fd-slicer-1.1.0"
- sources."figures-3.0.0"
+ sources."figures-3.1.0"
sources."file-type-5.2.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-2.1.0"
@@ -65914,14 +65853,17 @@ in
];
})
sources."fs.realpath-1.0.0"
- sources."fs2-0.3.5"
- sources."fsevents-2.0.7"
- sources."gauge-1.2.7"
+ (sources."fs2-0.3.6" // {
+ dependencies = [
+ sources."type-1.2.0"
+ ];
+ })
+ sources."fsevents-2.1.1"
sources."get-proxy-2.1.0"
sources."get-stdin-5.0.1"
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."glob-parent-5.1.0"
sources."global-dirs-0.1.1"
sources."globby-6.1.0"
@@ -65929,15 +65871,9 @@ in
sources."graceful-fs-4.2.1"
sources."graceful-readlink-1.0.1"
sources."graphlib-2.1.7"
- (sources."has-ansi-2.0.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
sources."has-flag-3.0.0"
sources."has-symbol-support-x-1.4.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 = [
@@ -65952,7 +65888,7 @@ in
})
sources."http-cache-semantics-4.0.3"
sources."http-errors-1.7.2"
- (sources."https-proxy-agent-2.2.2" // {
+ (sources."https-proxy-agent-3.0.1" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
@@ -65976,7 +65912,7 @@ in
sources."ipaddr.js-1.9.0"
sources."is-accessor-descriptor-1.0.0"
sources."is-binary-path-2.1.0"
- sources."is-buffer-2.0.3"
+ sources."is-buffer-2.0.4"
sources."is-ci-1.2.1"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
@@ -66011,7 +65947,7 @@ in
sources."json-cycle-1.3.0"
sources."json-refs-2.1.7"
sources."json-stringify-safe-5.0.1"
- sources."jsonata-1.6.5"
+ sources."jsonata-1.7.0"
sources."jsonfile-4.0.0"
sources."jszip-3.2.2"
sources."jwt-decode-2.2.0"
@@ -66032,11 +65968,6 @@ in
sources."lazystream-1.0.0"
sources."lie-3.3.0"
sources."lodash-4.17.15"
- sources."lodash.difference-4.5.0"
- sources."lodash.pad-4.5.1"
- sources."lodash.padend-4.6.1"
- sources."lodash.padstart-4.6.1"
- sources."lodash.uniq-4.5.0"
sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.5"
sources."lru-queue-0.1.0"
@@ -66068,24 +65999,22 @@ in
sources."moment-2.24.0"
sources."ms-2.0.0"
sources."mute-stream-0.0.7"
- sources."nanoid-2.1.1"
+ sources."nanoid-2.1.6"
sources."nanomatch-1.2.13"
sources."native-promise-only-0.8.1"
- sources."ncjsm-3.0.0"
+ sources."ncjsm-4.0.1"
sources."negotiator-0.6.2"
sources."next-tick-1.0.0"
sources."node-dir-0.1.17"
sources."node-fetch-1.7.3"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
(sources."npm-conf-1.1.3" // {
dependencies = [
sources."pify-3.0.0"
];
})
sources."npm-run-path-2.0.2"
- sources."npmlog-2.0.4"
- sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
(sources."object-copy-0.1.0" // {
dependencies = [
@@ -66112,10 +66041,11 @@ in
sources."is-wsl-1.1.0"
];
})
- sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
sources."p-finally-1.0.0"
+ sources."p-limit-2.2.1"
+ sources."p-try-2.2.0"
(sources."package-json-6.5.0" // {
dependencies = [
sources."semver-6.3.0"
@@ -66160,7 +66090,7 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."readdirp-3.1.2"
+ sources."readdirp-3.2.0"
sources."regenerator-runtime-0.13.3"
sources."regex-not-1.0.2"
sources."registry-auth-token-4.0.0"
@@ -66173,7 +66103,6 @@ in
sources."ret-0.1.15"
sources."rimraf-2.7.1"
sources."run-async-2.3.0"
- sources."rx-4.1.0"
sources."rxjs-6.5.3"
sources."safe-buffer-5.2.0"
sources."safe-regex-1.1.0"
@@ -66237,7 +66166,6 @@ in
sources."source-map-resolve-0.5.2"
sources."source-map-support-0.5.13"
sources."source-map-url-0.4.0"
- sources."spawn-sync-1.0.15"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
sources."stack-trace-0.0.9"
@@ -66283,24 +66211,11 @@ in
];
})
sources."supports-color-5.5.0"
- (sources."tabtab-2.2.2" // {
+ (sources."tabtab-3.0.2" // {
dependencies = [
- sources."ansi-escapes-1.4.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."chalk-1.1.3"
- sources."cli-cursor-1.0.2"
- sources."external-editor-1.1.1"
- sources."figures-1.7.0"
- sources."inquirer-1.2.3"
- sources."is-fullwidth-code-point-1.0.0"
- sources."mute-stream-0.0.6"
- sources."onetime-1.1.0"
- sources."restore-cursor-1.0.1"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."tmp-0.0.29"
+ sources."debug-4.1.1"
+ sources."es6-promisify-6.0.2"
+ sources."ms-2.1.2"
];
})
sources."tar-stream-1.6.2"
@@ -66324,10 +66239,9 @@ in
sources."trim-repeated-1.0.0"
sources."tslib-1.10.0"
sources."tunnel-agent-0.6.0"
- sources."type-1.2.0"
+ sources."type-2.0.0"
sources."type-fest-0.5.2"
sources."type-is-1.6.18"
- sources."typedarray-0.0.6"
sources."unbzip2-stream-1.3.3"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -66383,7 +66297,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more";
- homepage = "https://github.com/serverless/serverless#readme";
+ homepage = https://serverless.com/framework/docs/;
license = "MIT";
};
production = true;
@@ -66423,7 +66337,7 @@ in
sources."caseless-0.12.0"
sources."cheerio-0.17.0"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."component-bind-1.0.0"
sources."component-emitter-1.1.2"
sources."component-inherit-0.0.3"
@@ -66717,7 +66631,7 @@ in
sources."for-in-1.0.2"
sources."fragment-cache-0.2.1"
sources."get-value-2.0.6"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graceful-readlink-1.0.1"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
@@ -67012,21 +66926,30 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.228.3";
+ version = "1.239.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.228.3.tgz";
- sha512 = "TwyJcMXBvic1xJ+rVLdIYS1xDYuzcogIXdmyvGvXBZgwIQdjOVMnZBVxUo5igkOIntBL2sCynZiydQtGbe08JA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.239.0.tgz";
+ sha512 = "f6wGzYA/dZx4VfIJXz/W9taIVx9U3w1lVSDlBDq3TcoaBk9iLR3EMpAILHgNsroLCBk8ymDfzHisO00N7vB+UQ==";
};
dependencies = [
- sources."@snyk/cli-interface-2.1.0"
+ sources."@snyk/cli-interface-2.2.0"
+ sources."@snyk/cocoapods-lockfile-parser-2.0.4"
sources."@snyk/composer-lockfile-parser-1.0.3"
sources."@snyk/dep-graph-1.12.0"
sources."@snyk/gemfile-1.2.0"
+ sources."@snyk/ruby-semver-2.0.4"
+ (sources."@snyk/snyk-cocoapods-plugin-1.0.3" // {
+ dependencies = [
+ sources."@snyk/cli-interface-1.5.0"
+ sources."@snyk/dep-graph-1.13.0"
+ ];
+ })
sources."@types/agent-base-4.2.0"
sources."@types/bunyan-1.8.6"
sources."@types/debug-4.1.5"
sources."@types/events-3.0.0"
- sources."@types/node-12.7.5"
+ sources."@types/js-yaml-3.12.1"
+ sources."@types/node-12.11.7"
sources."@types/restify-4.3.6"
sources."@types/semver-5.5.0"
sources."@types/xml2js-0.4.3"
@@ -67044,6 +66967,13 @@ in
sources."ast-types-0.13.2"
sources."async-1.5.2"
sources."balanced-match-1.0.0"
+ (sources."bl-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.4.0"
+ sources."safe-buffer-5.2.0"
+ sources."string_decoder-1.3.0"
+ ];
+ })
(sources."boxen-1.3.0" // {
dependencies = [
sources."camelcase-4.1.0"
@@ -67059,6 +66989,7 @@ in
sources."ci-info-1.6.0"
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
+ sources."cli-spinner-0.2.10"
sources."cli-width-2.2.0"
(sources."cliui-3.2.0" // {
dependencies = [
@@ -67076,6 +67007,7 @@ in
sources."color-name-1.1.3"
sources."concat-map-0.0.1"
sources."configstore-3.1.2"
+ sources."core-js-3.3.4"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
(sources."cross-spawn-6.0.5" // {
@@ -67084,22 +67016,22 @@ in
];
})
sources."crypto-random-string-1.0.0"
- (sources."data-uri-to-buffer-2.0.1" // {
- dependencies = [
- sources."@types/node-8.10.54"
- ];
- })
+ sources."data-uri-to-buffer-1.2.0"
sources."debug-3.2.6"
sources."decamelize-1.2.0"
sources."deep-extend-0.6.0"
sources."deep-is-0.1.3"
sources."define-properties-1.1.3"
- sources."degenerator-1.0.4"
+ (sources."degenerator-1.0.4" // {
+ dependencies = [
+ sources."esprima-3.1.3"
+ ];
+ })
sources."depd-1.1.2"
sources."diff-4.0.1"
sources."dockerfile-ast-0.0.16"
sources."dot-prop-4.2.0"
- (sources."dotnet-deps-parser-4.5.0" // {
+ (sources."dotnet-deps-parser-4.5.2" // {
dependencies = [
sources."xml2js-0.4.19"
];
@@ -67107,14 +67039,18 @@ in
sources."duplexer3-0.1.4"
sources."email-validator-2.0.4"
sources."emoji-regex-7.0.3"
- sources."end-of-stream-1.4.1"
- sources."es-abstract-1.14.2"
+ sources."end-of-stream-1.4.4"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
sources."escape-string-regexp-1.0.5"
- sources."escodegen-1.12.0"
- sources."esprima-3.1.3"
+ (sources."escodegen-1.12.0" // {
+ dependencies = [
+ sources."esprima-3.1.3"
+ ];
+ })
+ sources."esprima-4.0.1"
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
sources."execa-1.0.0"
@@ -67125,6 +67061,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."for-in-1.0.2"
sources."for-own-1.0.0"
+ sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
(sources."ftp-0.3.10" // {
dependencies = [
@@ -67133,26 +67070,27 @@ in
})
sources."function-bind-1.1.1"
sources."get-stream-4.1.0"
- (sources."get-uri-2.0.3" // {
+ (sources."get-uri-2.0.4" // {
dependencies = [
- sources."debug-4.1.1"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
sources."git-up-4.0.1"
sources."git-url-parse-11.1.2"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."global-dirs-0.1.1"
(sources."got-6.7.1" // {
dependencies = [
sources."get-stream-3.0.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graphlib-2.1.7"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-errors-1.7.3"
(sources."http-proxy-agent-2.1.0" // {
dependencies = [
@@ -67160,7 +67098,7 @@ in
sources."ms-2.0.0"
];
})
- sources."https-proxy-agent-2.2.2"
+ sources."https-proxy-agent-3.0.1"
sources."iconv-lite-0.4.24"
sources."immediate-3.0.6"
sources."import-lazy-2.1.0"
@@ -67193,19 +67131,8 @@ in
sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- (sources."js-yaml-3.13.1" // {
- dependencies = [
- sources."esprima-4.0.1"
- ];
- })
- (sources."jszip-3.2.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
+ sources."js-yaml-3.13.1"
+ sources."jszip-3.2.2"
sources."kind-of-3.2.2"
sources."latest-version-3.1.0"
sources."lazy-cache-0.2.7"
@@ -67221,7 +67148,7 @@ in
sources."lodash.get-4.4.2"
sources."lodash.set-4.3.2"
sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.5"
+ sources."lru-cache-5.1.1"
sources."macos-release-2.3.0"
sources."make-dir-1.3.0"
sources."mimic-fn-1.2.0"
@@ -67253,7 +67180,11 @@ in
sources."os-name-3.1.0"
sources."os-tmpdir-1.0.2"
sources."p-finally-1.0.0"
- sources."pac-proxy-agent-3.0.0"
+ (sources."pac-proxy-agent-3.0.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
sources."pac-resolver-3.0.0"
(sources."package-json-4.0.1" // {
dependencies = [
@@ -67272,15 +67203,20 @@ in
sources."process-nextick-args-2.0.1"
sources."promise-7.3.1"
sources."protocols-1.4.7"
- sources."proxy-agent-3.1.0"
+ (sources."proxy-agent-3.1.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
sources."proxy-from-env-1.0.0"
sources."pseudomap-1.0.2"
sources."pump-3.0.0"
sources."raw-body-2.4.1"
sources."rc-1.2.8"
- (sources."readable-stream-3.4.0" // {
+ (sources."readable-stream-2.3.6" // {
dependencies = [
- sources."string_decoder-1.3.0"
+ sources."isarray-1.0.0"
+ sources."string_decoder-1.1.1"
];
})
sources."registry-auth-token-3.4.0"
@@ -67289,7 +67225,7 @@ in
sources."rimraf-2.7.1"
sources."run-async-2.3.0"
sources."rxjs-6.5.3"
- sources."safe-buffer-5.2.0"
+ sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."secure-keys-1.0.0"
@@ -67311,13 +67247,13 @@ in
sources."signal-exit-3.0.2"
sources."smart-buffer-4.0.2"
sources."snyk-config-2.2.3"
- (sources."snyk-docker-plugin-1.29.1" // {
+ (sources."snyk-docker-plugin-1.33.1" // {
dependencies = [
sources."debug-4.1.1"
];
})
sources."snyk-go-parser-1.3.1"
- (sources."snyk-go-plugin-1.11.0" // {
+ (sources."snyk-go-plugin-1.11.1" // {
dependencies = [
sources."debug-4.1.1"
];
@@ -67334,7 +67270,7 @@ in
];
})
sources."snyk-nodejs-lockfile-parser-1.16.0"
- sources."snyk-nuget-plugin-1.12.1"
+ sources."snyk-nuget-plugin-1.13.0"
sources."snyk-paket-parser-1.5.0"
(sources."snyk-php-plugin-1.6.4" // {
dependencies = [
@@ -67342,12 +67278,14 @@ in
];
})
sources."snyk-policy-1.13.5"
- sources."snyk-python-plugin-1.13.2"
+ sources."snyk-python-plugin-1.13.3"
sources."snyk-resolve-1.0.1"
(sources."snyk-resolve-deps-4.4.0" // {
dependencies = [
- sources."@types/node-6.14.7"
+ sources."@types/node-6.14.8"
+ sources."lru-cache-4.1.5"
sources."semver-5.7.1"
+ sources."yallist-2.1.2"
];
})
(sources."snyk-sbt-plugin-2.8.0" // {
@@ -67356,7 +67294,12 @@ in
];
})
sources."snyk-tree-1.0.0"
- sources."snyk-try-require-1.3.1"
+ (sources."snyk-try-require-1.3.1" // {
+ dependencies = [
+ sources."lru-cache-4.1.5"
+ sources."yallist-2.1.2"
+ ];
+ })
sources."socks-2.3.2"
(sources."socks-proxy-agent-4.0.2" // {
dependencies = [
@@ -67383,6 +67326,13 @@ in
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-5.5.0"
+ (sources."tar-stream-2.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.4.0"
+ sources."safe-buffer-5.2.0"
+ sources."string_decoder-1.3.0"
+ ];
+ })
sources."temp-dir-1.0.0"
sources."tempfile-2.0.0"
(sources."term-size-1.2.0" // {
@@ -67390,6 +67340,8 @@ in
sources."cross-spawn-5.1.0"
sources."execa-0.7.0"
sources."get-stream-3.0.0"
+ sources."lru-cache-4.1.5"
+ sources."yallist-2.1.2"
];
})
sources."then-fs-2.0.0"
@@ -67432,7 +67384,7 @@ in
sources."xmlbuilder-9.0.7"
sources."xregexp-2.0.0"
sources."y18n-3.2.1"
- sources."yallist-2.1.2"
+ sources."yallist-3.1.1"
(sources."yargs-3.32.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -67507,7 +67459,7 @@ in
})
sources."socket.io-parser-3.4.0"
sources."to-array-0.1.4"
- sources."ws-7.1.2"
+ sources."ws-7.2.0"
sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
];
@@ -67568,7 +67520,7 @@ in
sources."draftlog-1.0.12"
sources."duplexer3-0.1.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
@@ -67579,13 +67531,13 @@ in
sources."get-stream-3.0.0"
sources."global-dirs-0.1.1"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.2"
+ sources."https-proxy-agent-3.0.1"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-3.2.0"
@@ -67669,7 +67621,7 @@ in
sources."spdx-exceptions-2.2.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.5"
- sources."speedtest-net-1.5.1"
+ sources."speedtest-net-1.6.0"
sources."string-width-2.1.1"
sources."string.prototype.trimleft-2.1.0"
sources."string.prototype.trimright-2.1.0"
@@ -67712,10 +67664,10 @@ in
ssb-server = nodeEnv.buildNodePackage {
name = "ssb-server";
packageName = "ssb-server";
- version = "15.1.1";
+ version = "15.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-server/-/ssb-server-15.1.1.tgz";
- sha512 = "MaQl721UDrU/YM1U2bu6bdLqSg8qPYjkGg/6TevWoohqSLLOfo3CXyE8OARCqX37y9fhKOKXAhhmqj8nPgQ2yw==";
+ url = "https://registry.npmjs.org/ssb-server/-/ssb-server-15.1.2.tgz";
+ sha512 = "lCzCYwQUXQq19kCM59nlF6UY634WCpMqL01gOBp5SuQgawr8DSuuk+RBUZswSTEjwDsL16ltGR8/rtaYvyiZ8A==";
};
dependencies = [
sources."abstract-leveldown-6.0.3"
@@ -67804,7 +67756,7 @@ in
sources."code-point-at-1.1.0"
sources."collapse-white-space-1.0.5"
sources."collection-visit-1.0.0"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."compare-at-paths-1.0.0"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
@@ -67830,9 +67782,9 @@ in
sources."decode-uri-component-0.2.0"
sources."deep-equal-1.1.0"
sources."deep-extend-0.6.0"
- (sources."deferred-leveldown-5.2.1" // {
+ (sources."deferred-leveldown-5.3.0" // {
dependencies = [
- sources."abstract-leveldown-6.1.1"
+ sources."abstract-leveldown-6.2.2"
];
})
sources."define-properties-1.1.3"
@@ -67849,14 +67801,14 @@ in
sources."elegant-spinner-1.0.1"
sources."emoji-named-characters-1.0.2"
sources."emoji-server-1.0.0"
- (sources."encoding-down-6.2.0" // {
+ (sources."encoding-down-6.3.0" // {
dependencies = [
- sources."abstract-leveldown-6.1.1"
+ sources."abstract-leveldown-6.2.2"
];
})
sources."epidemic-broadcast-trees-7.0.0"
sources."errno-0.1.7"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."exit-hook-1.1.1"
@@ -67910,7 +67862,7 @@ in
sources."glob-parent-2.0.0"
sources."globby-4.1.0"
sources."gossip-query-2.0.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-network-0.0.1"
@@ -67998,13 +67950,13 @@ in
sources."level-codec-9.0.1"
sources."level-concat-iterator-2.0.1"
sources."level-errors-2.0.1"
- (sources."level-iterator-stream-4.0.1" // {
+ (sources."level-iterator-stream-4.0.2" // {
dependencies = [
sources."readable-stream-3.4.0"
];
})
sources."level-js-4.0.1"
- sources."level-packager-5.0.3"
+ sources."level-packager-5.1.0"
sources."level-post-1.0.7"
(sources."level-sublevel-6.6.5" // {
dependencies = [
@@ -68027,15 +67979,16 @@ in
sources."string_decoder-0.10.31"
];
})
- (sources."leveldown-5.2.1" // {
+ sources."level-supports-1.0.1"
+ (sources."leveldown-5.4.1" // {
dependencies = [
- sources."abstract-leveldown-6.1.1"
+ sources."abstract-leveldown-6.2.2"
];
})
- sources."levelup-4.2.0"
+ sources."levelup-4.3.2"
sources."libnested-1.4.1"
- sources."libsodium-0.7.5"
- sources."libsodium-wrappers-0.7.5"
+ sources."libsodium-0.7.6"
+ sources."libsodium-wrappers-0.7.6"
sources."lodash.get-4.4.2"
sources."log-symbols-1.0.2"
sources."log-update-1.0.2"
@@ -68069,7 +68022,7 @@ in
sources."multiblob-1.13.4"
sources."multiblob-http-1.0.0"
sources."multicb-1.2.2"
- sources."multiserver-3.4.0"
+ sources."multiserver-3.6.0"
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
sources."muxrpc-6.4.2"
@@ -68297,7 +68250,7 @@ in
sources."right-pad-1.0.1"
(sources."rimraf-2.7.1" // {
dependencies = [
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
];
})
sources."rng-0.2.2"
@@ -68360,15 +68313,15 @@ in
sources."source-map-url-0.4.0"
sources."split-buffer-1.0.0"
sources."split-string-3.1.0"
- sources."ssb-blobs-1.2.1"
+ sources."ssb-blobs-1.2.2"
sources."ssb-caps-1.1.0"
sources."ssb-client-4.7.8"
- sources."ssb-config-3.3.2"
+ sources."ssb-config-3.4.2"
sources."ssb-db-19.2.0"
sources."ssb-ebt-5.6.7"
sources."ssb-friends-4.1.4"
- sources."ssb-gossip-1.1.0"
- sources."ssb-invite-2.1.3"
+ sources."ssb-gossip-1.1.1"
+ sources."ssb-invite-2.1.4"
sources."ssb-keys-7.2.0"
sources."ssb-links-3.0.8"
sources."ssb-local-1.0.0"
@@ -68431,7 +68384,7 @@ in
(sources."tape-4.11.0" // {
dependencies = [
sources."deep-equal-1.0.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
];
})
sources."text-table-0.2.0"
@@ -68535,7 +68488,7 @@ in
sources."@sailshq/lodash-3.10.4"
(sources."@slack/client-3.16.0" // {
dependencies = [
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."request-2.76.0"
sources."url-join-0.0.1"
sources."ws-1.1.5"
@@ -68558,7 +68511,7 @@ in
})
(sources."adbkit-apkreader-3.1.2" // {
dependencies = [
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."debug-0.7.4"
];
})
@@ -68591,7 +68544,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.533.0" // {
+ (sources."aws-sdk-2.556.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -68649,7 +68602,7 @@ in
sources."colors-1.0.3"
sources."colour-0.7.1"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
@@ -68681,7 +68634,7 @@ in
sources."cookie-signature-1.0.6"
sources."cookiejar-2.1.2"
sources."cookies-0.7.1"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."cross-spawn-4.0.2"
@@ -68714,12 +68667,12 @@ in
sources."ee-first-1.1.1"
sources."ejs-0.8.8"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
(sources."engine.io-3.4.0" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.2"
- sources."ws-7.1.2"
+ sources."ws-7.2.0"
];
})
(sources."engine.io-client-3.4.0" // {
@@ -68793,7 +68746,7 @@ in
sources."ms-2.1.2"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graphlib-2.1.7"
sources."har-schema-2.0.0"
sources."har-validator-2.0.6"
@@ -68813,7 +68766,7 @@ in
];
})
sources."hoek-2.16.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -69395,7 +69348,7 @@ in
sources."domelementtype-1.3.1"
sources."domutils-1.7.0"
sources."entities-2.0.0"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
@@ -69535,13 +69488,13 @@ in
sources."cli-boxes-1.0.0"
sources."cli-cursor-1.0.2"
sources."cli-width-1.1.1"
- sources."clone-2.0.0"
+ sources."clone-2.1.2"
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."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
@@ -69550,7 +69503,7 @@ in
sources."content-type-1.0.4"
sources."cookiejar-2.1.2"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
(sources."cross-spawn-5.1.0" // {
@@ -69632,7 +69585,7 @@ in
sources."fsevents-1.2.9"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -69640,14 +69593,14 @@ in
})
sources."global-dirs-0.1.1"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
(sources."graphlib-2.1.7" // {
dependencies = [
sources."lodash-4.17.15"
];
})
sources."growl-1.9.2"
- (sources."handlebars-4.2.1" // {
+ (sources."handlebars-4.4.5" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -69712,7 +69665,7 @@ in
sources."js-string-escape-1.0.1"
sources."js-yaml-3.13.1"
sources."json-refs-2.1.7"
- (sources."json-schema-deref-sync-0.3.4" // {
+ (sources."json-schema-deref-sync-0.6.0" // {
dependencies = [
sources."lodash-4.17.15"
];
@@ -69758,7 +69711,7 @@ in
sources."map-visit-1.0.0"
sources."md5-2.2.1"
sources."media-typer-0.3.0"
- sources."memory-cache-0.1.6"
+ sources."memory-cache-0.2.0"
sources."methods-1.1.2"
sources."micromatch-3.1.10"
sources."mime-1.6.0"
@@ -69779,7 +69732,7 @@ in
sources."supports-color-1.2.0"
];
})
- sources."mpath-0.2.1"
+ sources."mpath-0.5.2"
sources."ms-2.0.0"
sources."multer-1.4.2"
sources."mute-stream-0.0.5"
@@ -69787,7 +69740,7 @@ in
sources."nanomatch-1.2.13"
sources."native-promise-only-0.8.1"
sources."neo-async-2.6.1"
- (sources."nodemon-1.19.2" // {
+ (sources."nodemon-1.19.4" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
@@ -69980,7 +69933,11 @@ in
sources."supports-color-2.0.0"
sources."swagger-converter-0.2.0"
sources."swagger-editor-2.10.5"
- sources."swagger-test-templates-1.5.1"
+ (sources."swagger-test-templates-1.6.0" // {
+ dependencies = [
+ sources."lodash-4.17.15"
+ ];
+ })
(sources."swagger-tools-0.9.16" // {
dependencies = [
sources."swagger-converter-0.1.7"
@@ -70003,7 +69960,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- (sources."uglify-js-3.6.0" // {
+ (sources."uglify-js-3.6.4" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -70074,7 +70031,7 @@ in
sha256 = "886069ecc5eedf0371b948e8ff66e7f2943c85fe7cfdaa7183e1a3572d55852b";
};
dependencies = [
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."ajv-6.10.2"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
@@ -70162,7 +70119,7 @@ in
})
sources."string-width-3.1.0"
sources."strip-ansi-5.2.0"
- sources."telegraf-3.32.0"
+ sources."telegraf-3.33.0"
sources."telegram-typings-3.6.1"
(sources."tough-cookie-2.4.3" // {
dependencies = [
@@ -70193,10 +70150,10 @@ in
tern = nodeEnv.buildNodePackage {
name = "tern";
packageName = "tern";
- version = "0.24.1";
+ version = "0.24.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tern/-/tern-0.24.1.tgz";
- sha512 = "6jK0DcgziZ0NAitZNncg+do/fKGh8hQJShcVU7dHoAljdckr7qr2oozd4l4kTIA7M+0FoKXy6gvRBLO8oWpTEw==";
+ url = "https://registry.npmjs.org/tern/-/tern-0.24.2.tgz";
+ sha512 = "pVJhZp1vvv2ewgPv6YwNsyCU+ComJdHBtTajDo/EdfGHY2CLCQ53ucgCzvWfFx+KXls0H6sRwnDMY8Qo+aQviw==";
};
dependencies = [
sources."acorn-6.3.0"
@@ -70209,8 +70166,8 @@ in
sources."enhanced-resolve-2.3.0"
sources."errno-0.1.7"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."isarray-1.0.0"
@@ -70242,28 +70199,28 @@ in
textlint = nodeEnv.buildNodePackage {
name = "textlint";
packageName = "textlint";
- version = "11.3.1";
+ version = "11.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint/-/textlint-11.3.1.tgz";
- sha512 = "svbO/fhj7dLTJcdKgrW5fJtNRHoFFVL+sutsKBmNUcSJgvgWteLOUZAKT/dp/4S0QfkwkpNOts7Bzn9T+0h0Cw==";
+ url = "https://registry.npmjs.org/textlint/-/textlint-11.4.0.tgz";
+ sha512 = "RWzN5JdIiBO8BzCxu1uUYhVTxM2Q7ex4y7eBWEpMdkMvFc4sH2RZ5OI5lDK34Gf8M0C76hmMu3IszcsFJgKfug==";
};
dependencies = [
sources."@azu/format-text-1.0.1"
sources."@azu/style-format-1.0.0"
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/ast-traverse-2.1.5"
- sources."@textlint/feature-flag-3.1.3"
- sources."@textlint/fixer-formatter-3.1.8"
- sources."@textlint/kernel-3.1.8"
- sources."@textlint/linter-formatter-3.1.7"
- sources."@textlint/markdown-to-ast-6.1.5"
- sources."@textlint/module-interop-1.0.1"
- sources."@textlint/text-to-ast-3.1.5"
- sources."@textlint/textlint-plugin-markdown-5.1.8"
- sources."@textlint/textlint-plugin-text-4.1.8"
- sources."@textlint/types-1.2.1"
- sources."@textlint/utils-1.0.2"
- sources."@types/bluebird-3.5.27"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/ast-traverse-2.1.6"
+ sources."@textlint/feature-flag-3.1.4"
+ sources."@textlint/fixer-formatter-3.1.9"
+ sources."@textlint/kernel-3.1.9"
+ sources."@textlint/linter-formatter-3.1.8"
+ sources."@textlint/markdown-to-ast-6.1.6"
+ sources."@textlint/module-interop-1.0.2"
+ sources."@textlint/text-to-ast-3.1.6"
+ sources."@textlint/textlint-plugin-markdown-5.1.9"
+ sources."@textlint/textlint-plugin-text-4.1.9"
+ sources."@textlint/types-1.2.2"
+ sources."@textlint/utils-1.0.3"
+ sources."@types/bluebird-3.5.28"
sources."ajv-4.11.8"
sources."ajv-keywords-1.5.1"
sources."ansi-regex-2.1.1"
@@ -70271,7 +70228,7 @@ in
sources."argparse-1.0.10"
sources."bail-1.0.4"
sources."balanced-match-1.0.0"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."boundary-1.0.1"
sources."brace-expansion-1.1.11"
sources."buffer-from-1.1.1"
@@ -70293,7 +70250,7 @@ in
sources."define-properties-1.1.3"
sources."diff-4.0.1"
sources."error-ex-1.3.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
@@ -70308,12 +70265,12 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-stdin-5.0.1"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-symbols-1.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-alphabetical-1.0.3"
@@ -70337,7 +70294,7 @@ in
sources."js-yaml-3.13.1"
sources."json-parse-better-errors-1.0.2"
sources."json-stable-stringify-1.0.1"
- (sources."json5-2.1.0" // {
+ (sources."json5-2.1.1" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -70473,7 +70430,7 @@ in
sha1 = "9139c65b8da891c983b368a50a286338cd76777a";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
+ sources."@textlint/ast-node-types-4.2.5"
sources."txt-to-ast-3.0.3"
];
buildInputs = globalBuildInputs;
@@ -70519,8 +70476,8 @@ in
sha512 = "TP+dtJcCe0+ZR7Gp1E3iJdf3XtOImrEIcUdaQnok4QJJEutZ1dTiP4rCfnyOxz70NZ+2RdBJgZeZZWGhuJzSwA==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/types-1.2.1"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/types-1.2.2"
sources."alex-5.1.0"
sources."ansi-align-2.0.0"
sources."ansi-regex-3.0.0"
@@ -70566,14 +70523,14 @@ in
sources."cross-spawn-5.1.0"
sources."crypto-random-string-1.0.0"
sources."currently-unhandled-0.4.1"
- sources."cuss-1.16.0"
+ sources."cuss-1.17.0"
sources."debug-0.8.1"
sources."decamelize-1.2.0"
sources."deep-extend-0.6.0"
sources."dot-prop-4.2.0"
sources."duplexer-0.1.1"
sources."duplexer3-0.1.4"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
@@ -70590,12 +70547,12 @@ in
sources."get-stream-3.0.0"
sources."git-diff-tree-1.0.0"
sources."git-spawned-stream-0.1.1"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."global-dirs-0.1.1"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."ignore-3.3.10"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
@@ -70953,14 +70910,14 @@ in
sha512 = "HydBbkWjnMn4KrnlpnusY1BGjIG+64UySxRCvRphUAIiuJL2nbkdrIIiOjwfQhllKUa7Sf33bs6RAcbEWjZVfg==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/types-1.2.1"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/types-1.2.2"
sources."boundary-1.0.1"
sources."buffer-from-1.1.1"
sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
sources."define-properties-1.1.3"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."function-bind-1.1.1"
sources."has-1.0.3"
@@ -70978,7 +70935,7 @@ in
sources."process-nextick-args-2.0.1"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
- sources."sentence-splitter-3.0.11"
+ sources."sentence-splitter-3.1.0"
sources."string.prototype.trimleft-2.1.0"
sources."string.prototype.trimright-2.1.0"
sources."string_decoder-1.1.1"
@@ -71014,7 +70971,7 @@ in
sources."define-properties-1.1.3"
sources."emoji-regex-6.5.1"
sources."end-with-1.0.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."function-bind-1.1.1"
sources."has-1.0.3"
@@ -71047,8 +71004,8 @@ in
sha512 = "7m1k3xMwsOw7WyGNINJQ5EX2+mnqAeg6VBfXY7BVUr/y6NOYhPbEj3A3MBJ9Jt9dfC1twL0aI6mKPo+5xLUsVA==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/types-1.2.1"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/types-1.2.2"
sources."boundary-1.0.1"
sources."lodash-4.17.15"
sources."split-lines-2.0.0"
@@ -71071,17 +71028,17 @@ in
textlint-rule-terminology = nodeEnv.buildNodePackage {
name = "textlint-rule-terminology";
packageName = "textlint-rule-terminology";
- version = "1.1.30";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-1.1.30.tgz";
- sha512 = "PsLiridAdaLyho236adWnTEAbAcxxUsxVqaXWaJce+aRsjCOeyYPBLNRisFGz90KZ0S1NDYT/v5CvzBrgsiuzQ==";
+ url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-2.0.1.tgz";
+ sha512 = "UhZjs/I+y93lOeZflPu+yfWB+z3U6LdSBV9K4AEHQb3IkDMEZLk1QW/q+Ct3vQuiMZl2HfoqdQGakPhHmc/YkQ==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/types-1.2.1"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/types-1.2.2"
sources."boundary-1.0.1"
sources."lodash-4.17.15"
- sources."strip-json-comments-2.0.1"
+ sources."strip-json-comments-3.0.1"
sources."structured-source-3.0.2"
sources."textlint-rule-helper-2.1.1"
sources."unist-util-is-3.0.0"
@@ -71109,7 +71066,7 @@ in
dependencies = [
sources."array-includes-3.0.3"
sources."define-properties-1.1.3"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."function-bind-1.1.1"
sources."has-1.0.3"
@@ -71143,8 +71100,8 @@ in
sha1 = "3c79b04091319d4e8be5fb442c596bf500e8493e";
};
dependencies = [
- sources."@textlint/ast-node-types-4.2.4"
- sources."@textlint/types-1.2.1"
+ sources."@textlint/ast-node-types-4.2.5"
+ sources."@textlint/types-1.2.2"
sources."adverb-where-0.0.9"
sources."boundary-1.0.1"
sources."define-properties-1.1.3"
@@ -71237,7 +71194,7 @@ in
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."cheerio-0.22.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."clone-response-1.0.2"
sources."code-point-at-1.1.0"
sources."color-convert-1.9.3"
@@ -71257,7 +71214,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.2.1"
+ sources."core-js-3.3.4"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -71281,7 +71238,7 @@ in
sources."ecdsa-sig-formatter-1.0.11"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
(sources."engine.io-3.3.2" // {
dependencies = [
sources."cookie-0.3.1"
@@ -71325,9 +71282,9 @@ in
sources."gauge-2.7.4"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."got-9.6.0"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."grapheme-splitter-1.0.4"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
@@ -71344,14 +71301,14 @@ in
})
sources."http-signature-1.2.0"
sources."http_ece-1.1.0"
- (sources."https-proxy-agent-2.2.2" // {
+ (sources."https-proxy-agent-2.2.4" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
];
})
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.2"
+ sources."ignore-walk-3.0.3"
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -71409,8 +71366,8 @@ in
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -71432,9 +71389,9 @@ in
];
})
sources."nopt-4.0.1"
- sources."normalize-url-4.4.1"
+ sources."normalize-url-4.5.0"
sources."npm-bundled-1.0.6"
- sources."npm-packlist-1.4.4"
+ sources."npm-packlist-1.4.6"
sources."npmlog-4.1.2"
sources."nth-check-1.0.2"
sources."number-is-nan-1.0.1"
@@ -71526,7 +71483,7 @@ in
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
sources."supports-color-5.5.0"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."thelounge-ldapjs-non-maintained-fork-1.0.4"
sources."tlds-1.203.1"
sources."to-array-0.1.4"
@@ -71564,7 +71521,7 @@ in
sources."wrappy-1.0.2"
sources."ws-6.1.4"
sources."xmlhttprequest-ssl-1.5.5"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
sources."yarn-1.17.3"
sources."yeast-0.1.2"
];
@@ -71581,10 +71538,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.108.0";
+ version = "0.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.108.0.tgz";
- sha512 = "d1ysIXwi8qTlbmMwrTxi5pYiiYIflEr0e48krP0LAY8ndS8c6fkLHn6NvRT+o76/Fs9PBLxFViuI62iGVWwwlg==";
+ url = "https://registry.npmjs.org/three/-/three-0.109.0.tgz";
+ sha512 = "XT99T3Hvgh2CEvwPdHYEunNE+clLK6KiT1U8En7YOgIqTUw4MrLeIc8zxQAJ6wbP8hhJaY5+Cff3jwBPpBa0gA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71617,24 +71574,23 @@ in
titanium = nodeEnv.buildNodePackage {
name = "titanium";
packageName = "titanium";
- version = "5.2.1";
+ version = "5.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.2.1.tgz";
- sha512 = "tltnQ41NBjItM+ELsGL2jpaEnsMMeziZe0sGKtUxhwM1tndh7GFMfu2lpDqAFdMLwj+ZplRmlK0kKP4++68rrA==";
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.2.2.tgz";
+ sha512 = "PvlmqvMRwgPReA3tPfExeS1mweQY/KpCIY5+zLP/lp0UEi93wLvSMzqp/5vV5pjK7cwkzhPtc68TszBNM+zv9Q==";
};
dependencies = [
sources."adm-zip-0.4.13"
sources."ajv-6.10.2"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
- sources."async-2.6.1"
+ sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
sources."caseless-0.12.0"
sources."colors-1.3.3"
sources."combined-stream-1.0.8"
@@ -71661,8 +71617,8 @@ in
sources."fs-extra-7.0.1"
sources."fs.realpath-1.0.0"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."http-signature-1.2.0"
@@ -71679,15 +71635,13 @@ in
sources."jsprim-1.4.1"
sources."keypress-0.2.1"
sources."lodash-4.17.15"
- sources."longjohn-0.2.12"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-0.0.10"
- sources."moment-2.22.2"
+ sources."moment-2.24.0"
(sources."node-appc-0.2.49" // {
dependencies = [
- sources."semver-5.5.1"
sources."temp-0.8.3"
];
})
@@ -71705,9 +71659,8 @@ in
sources."rimraf-2.2.8"
sources."safe-buffer-5.2.0"
sources."safer-buffer-2.1.2"
- sources."semver-5.6.0"
+ sources."semver-5.5.1"
sources."source-map-0.6.1"
- sources."source-map-support-0.5.13"
sources."sprintf-0.1.5"
sources."sshpk-1.16.1"
sources."stack-trace-0.0.10"
@@ -71949,7 +71902,7 @@ in
sha512 = "N8E1X543CWEjg0/A70ZnA/kfAfAY/uogILsIuWBhHGxzv9kaJaj7/JCSwDiBH86CPEy37chSgW86KxVeYKsswQ==";
};
dependencies = [
- sources."@types/node-6.14.7"
+ sources."@types/node-6.14.8"
sources."ansi-0.3.1"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -72005,10 +71958,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "3.6.3";
+ version = "3.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz";
- sha512 = "N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-3.6.4.tgz";
+ sha512 = "unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -72030,20 +71983,20 @@ in
};
dependencies = [
sources."command-exists-1.2.6"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."crypto-random-string-1.0.0"
sources."fs-extra-7.0.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."jsonfile-4.0.0"
sources."p-debounce-1.0.0"
sources."temp-dir-1.0.0"
sources."tempy-0.2.1"
sources."unique-string-1.0.0"
sources."universalify-0.1.2"
- sources."vscode-jsonrpc-4.1.0-next.3"
+ sources."vscode-jsonrpc-5.0.0-next.2"
sources."vscode-languageserver-5.3.0-next.10"
- sources."vscode-languageserver-protocol-3.15.0-next.8"
- sources."vscode-languageserver-types-3.15.0-next.4"
+ sources."vscode-languageserver-protocol-3.15.0-next.9"
+ sources."vscode-languageserver-types-3.15.0-next.5"
sources."vscode-textbuffer-1.0.0"
sources."vscode-uri-1.0.8"
];
@@ -72059,13 +72012,13 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.6.0";
+ version = "3.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz";
- sha512 = "W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.4.tgz";
+ sha512 = "9Yc2i881pF4BPGhjteCXQNaXx1DCwm3dtOyBaG2hitHjLWOczw/ki8vD1bqyT3u6K0Ms/FpCShkmfg+FtlOfYA==";
};
dependencies = [
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."source-map-0.6.1"
];
buildInputs = globalBuildInputs;
@@ -72081,10 +72034,10 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.4.47";
+ version = "1.4.48";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.4.47.tgz";
- sha512 = "aTkH2jg6vCcobdSeElJ2xqRI6zHL8Y+TPLEgE+86BmdSLPyRgvYbqTzvieTXF+4U9y693NtfyALcvKxqHhcmJA==";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.4.48.tgz";
+ sha512 = "OnChT88XpseexbxagMAL5wqM9dIZxb5oHCwUXaEZ8ERy77GDzhFKko1DZLWZg6uljrOx1yryBGe7ft8eJ5/O9g==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -72183,7 +72136,7 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
(sources."engine.io-3.3.2" // {
dependencies = [
sources."debug-3.1.0"
@@ -72245,8 +72198,8 @@ in
sources."get-stream-4.1.0"
sources."getmac-1.4.6"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
(sources."has-binary2-1.0.3" // {
@@ -72262,7 +72215,7 @@ in
sources."mkdirp-0.3.0"
];
})
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-errors-1.7.2"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
@@ -72617,7 +72570,7 @@ in
sources."base64-js-1.3.1"
sources."bcrypt-pbkdf-1.0.2"
sources."bl-1.2.2"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."brace-expansion-1.1.11"
sources."buffer-5.4.3"
sources."buffer-alloc-1.2.0"
@@ -72642,7 +72595,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."config-chain-1.1.12"
sources."consolidate-0.14.5"
@@ -72669,7 +72622,7 @@ in
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."enable-1.3.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
sources."extend-3.0.2"
@@ -72692,12 +72645,12 @@ in
sources."get-stream-3.0.0"
sources."getpass-0.1.7"
sources."git-clone-0.1.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."graceful-readlink-1.0.1"
sources."gray-matter-2.1.1"
- sources."handlebars-4.2.1"
+ sources."handlebars-4.4.5"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
(sources."has-ansi-2.0.0" // {
@@ -72850,7 +72803,7 @@ in
sources."tslib-1.10.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.6.0"
+ sources."uglify-js-3.6.4"
sources."uid-0.0.2"
sources."unbzip2-stream-1.3.3"
sources."unyield-0.0.1"
@@ -72885,10 +72838,10 @@ in
vue-language-server = nodeEnv.buildNodePackage {
name = "vue-language-server";
packageName = "vue-language-server";
- version = "0.0.61";
+ version = "0.0.65";
src = fetchurl {
- url = "https://registry.npmjs.org/vue-language-server/-/vue-language-server-0.0.61.tgz";
- sha512 = "/fBg8FrW2H4CRO/dsr3VuGVYs5RS6zQIT+eG9SEQdo3VRDF8bNmJro1QpszJ0KVC7UxW9+fwf98i+xDBtne2Xw==";
+ url = "https://registry.npmjs.org/vue-language-server/-/vue-language-server-0.0.65.tgz";
+ sha512 = "2yHZGU+KMv7xdEFhh88ZZBlj0i9wAByDxcd1orfNfrRLUDaabjyHNnkhvw4tdne9fOeAj6w43OKxo/YqMXQXiw==";
};
dependencies = [
sources."@babel/code-frame-7.5.5"
@@ -72906,13 +72859,13 @@ in
sources."@starptech/rehype-minify-whitespace-0.9.0"
sources."@starptech/rehype-webparser-0.9.0"
sources."@starptech/webparser-0.9.0"
- sources."@types/node-12.7.5"
+ sources."@types/node-12.11.7"
sources."@types/unist-2.0.3"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-1.0.1"
sources."abbrev-1.1.1"
sources."acorn-6.3.0"
- sources."acorn-jsx-5.0.2"
+ sources."acorn-jsx-5.1.0"
sources."ajv-6.10.2"
sources."ajv-keywords-2.1.1"
sources."ansi-align-2.0.0"
@@ -73041,7 +72994,7 @@ in
];
})
sources."comma-separated-tokens-1.0.7"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."common-tags-1.8.0"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
@@ -73049,7 +73002,7 @@ in
sources."config-chain-1.1.12"
sources."configstore-3.1.2"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
@@ -73082,6 +73035,7 @@ in
sources."editorconfig-0.15.3"
sources."element-helper-json-2.0.6"
sources."emoji-regex-7.0.3"
+ sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
(sources."eslint-5.16.0" // {
@@ -73099,7 +73053,7 @@ in
];
})
sources."eslint-scope-4.0.3"
- sources."eslint-utils-1.4.2"
+ sources."eslint-utils-1.4.3"
sources."eslint-visitor-keys-1.1.0"
sources."espree-5.0.1"
sources."esprima-4.0.1"
@@ -73179,7 +73133,7 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-base-0.3.0" // {
dependencies = [
sources."glob-parent-2.0.0"
@@ -73197,7 +73151,7 @@ in
sources."globals-11.12.0"
sources."globby-8.0.2"
sources."got-6.7.1"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."gridsome-helper-json-1.0.3"
sources."has-1.0.3"
(sources."has-ansi-2.0.0" // {
@@ -73220,7 +73174,7 @@ in
sources."hast-util-parse-selector-2.2.2"
sources."hast-util-to-string-1.0.2"
sources."hast-util-whitespace-1.0.3"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."html-void-elements-1.0.4"
sources."html-whitespace-sensitive-tag-names-1.0.1"
sources."iconv-lite-0.4.24"
@@ -73242,13 +73196,13 @@ in
sources."strip-ansi-5.2.0"
];
})
- sources."invert-kv-1.0.0"
+ sources."invert-kv-2.0.0"
sources."is-accessor-descriptor-1.0.0"
sources."is-alphabetical-1.0.3"
sources."is-alphanumerical-1.0.3"
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
- sources."is-buffer-2.0.3"
+ sources."is-buffer-2.0.4"
sources."is-ci-1.2.1"
sources."is-data-descriptor-1.0.0"
sources."is-decimal-1.0.3"
@@ -73293,11 +73247,11 @@ in
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."json5-2.1.0"
+ sources."json5-2.1.1"
sources."jsonc-parser-1.0.3"
sources."kind-of-6.0.2"
sources."latest-version-3.1.0"
- sources."lcid-1.0.0"
+ sources."lcid-2.0.0"
sources."levn-0.3.0"
sources."load-json-file-4.0.0"
sources."load-plugin-2.3.1"
@@ -73325,12 +73279,17 @@ in
sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.5"
sources."make-dir-1.3.0"
+ sources."map-age-cleaner-0.1.3"
sources."map-cache-0.2.2"
sources."map-obj-2.0.0"
sources."map-visit-1.0.0"
sources."markdown-table-0.4.0"
sources."math-random-1.0.4"
- sources."mem-1.1.0"
+ (sources."mem-4.3.0" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ ];
+ })
(sources."meow-5.0.0" // {
dependencies = [
sources."read-pkg-up-3.0.0"
@@ -73388,10 +73347,18 @@ in
sources."onetime-2.0.1"
sources."optionator-0.8.2"
sources."os-homedir-1.0.2"
- sources."os-locale-2.1.0"
+ (sources."os-locale-3.1.0" // {
+ dependencies = [
+ sources."cross-spawn-6.0.5"
+ sources."execa-1.0.0"
+ sources."get-stream-4.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-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
@@ -73465,9 +73432,10 @@ in
sources."pretty-format-23.6.0"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
- sources."property-information-5.2.2"
+ sources."property-information-5.3.0"
sources."proto-list-1.2.4"
sources."pseudomap-1.0.2"
+ sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."quick-lru-1.1.0"
(sources."randomatic-3.1.1" // {
@@ -73627,7 +73595,9 @@ in
sources."cliui-3.2.0"
sources."find-up-1.1.2"
sources."glob-7.0.4"
+ sources."invert-kv-1.0.0"
sources."is-fullwidth-code-point-1.0.0"
+ sources."lcid-1.0.0"
sources."load-json-file-1.1.0"
sources."os-locale-1.4.0"
sources."parse-json-2.2.0"
@@ -73654,7 +73624,7 @@ in
sources."source-map-0.7.3"
];
})
- sources."stylus-supremacy-2.12.7"
+ sources."stylus-supremacy-2.14.0"
sources."supports-color-5.5.0"
sources."symbol-0.2.3"
(sources."table-5.4.6" // {
@@ -73691,7 +73661,7 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.3.2"
sources."typedarray-0.0.6"
- sources."typescript-3.6.3"
+ sources."typescript-3.6.4"
(sources."typescript-eslint-parser-16.0.1" // {
dependencies = [
sources."semver-5.5.0"
@@ -73759,15 +73729,15 @@ in
sources."vfile-sort-2.2.1"
sources."vfile-statistics-1.1.3"
sources."vscode-css-languageservice-4.0.2"
- (sources."vscode-emmet-helper-1.2.15" // {
+ (sources."vscode-emmet-helper-1.2.16" // {
dependencies = [
sources."vscode-languageserver-types-3.14.0"
];
})
- sources."vscode-jsonrpc-4.1.0-next.3"
+ sources."vscode-jsonrpc-5.0.0-next.2"
sources."vscode-languageserver-5.3.0-next.10"
- sources."vscode-languageserver-protocol-3.15.0-next.8"
- sources."vscode-languageserver-types-3.15.0-next.4"
+ sources."vscode-languageserver-protocol-3.15.0-next.9"
+ sources."vscode-languageserver-types-3.15.0-next.5"
sources."vscode-nls-4.1.1"
sources."vscode-textbuffer-1.0.0"
sources."vscode-uri-1.0.8"
@@ -73800,7 +73770,7 @@ in
sources."xtend-4.0.2"
sources."y18n-3.2.1"
sources."yallist-2.1.2"
- (sources."yargs-11.1.0" // {
+ (sources."yargs-11.1.1" // {
dependencies = [
sources."yargs-parser-9.0.2"
];
@@ -73820,72 +73790,48 @@ in
web-ext = nodeEnv.buildNodePackage {
name = "web-ext";
packageName = "web-ext";
- version = "3.1.1";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-3.1.1.tgz";
- sha512 = "snTfhuxoplm8QAlv+CwOaF0XSaycDUmxsrLfi4NtZRvZ6J79+ijOu9HyTXP0rd1zT3uagWYOBc3ol/ZOsf1LQQ==";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-3.2.0.tgz";
+ sha512 = "UM2ucXzEKs6tD+YT6FjmfIeQtLy4t9CwdwyQl8Nthn2BbGgDLht+wBWsU8VYnNXtrObxX24Co8oaF7Id06JbgA==";
};
dependencies = [
sources."@babel/code-frame-7.5.5"
sources."@babel/highlight-7.5.0"
- sources."@babel/polyfill-7.4.4"
- sources."@babel/runtime-7.4.5"
- sources."@babel/runtime-corejs2-7.6.0"
+ sources."@babel/polyfill-7.6.0"
+ sources."@babel/runtime-7.6.2"
+ sources."@babel/runtime-corejs2-7.6.3"
sources."@cliqz-oss/firefox-client-0.3.1"
sources."@cliqz-oss/node-firefox-connect-1.2.1"
sources."@sindresorhus/is-0.14.0"
- sources."@snyk/cli-interface-2.1.0"
- sources."@snyk/composer-lockfile-parser-1.0.3"
- sources."@snyk/dep-graph-1.12.0"
- sources."@snyk/gemfile-1.2.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/agent-base-4.2.0"
- sources."@types/bunyan-1.8.6"
- sources."@types/debug-4.1.5"
- sources."@types/events-3.0.0"
sources."@types/minimatch-3.0.3"
- sources."@types/node-12.7.5"
- sources."@types/restify-4.3.6"
- sources."@types/semver-5.5.0"
- sources."@types/xml2js-0.4.3"
- sources."@yarnpkg/lockfile-1.1.0"
+ sources."@types/node-12.11.7"
sources."JSONSelect-0.2.1"
- sources."abbrev-1.1.1"
- sources."acorn-5.7.3"
- (sources."acorn-jsx-3.0.1" // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- })
+ sources."acorn-6.3.0"
+ sources."acorn-jsx-5.1.0"
sources."adbkit-2.11.1"
sources."adbkit-logcat-1.1.0"
sources."adbkit-monkey-1.0.1"
- (sources."addons-linter-1.10.0" // {
+ (sources."addons-linter-1.14.0" // {
dependencies = [
- sources."regenerator-runtime-0.13.2"
+ sources."decamelize-1.2.0"
+ sources."yargs-14.0.0"
];
})
sources."adm-zip-0.4.13"
- (sources."agent-base-4.3.0" // {
- dependencies = [
- sources."es6-promise-4.2.8"
- sources."es6-promisify-5.0.0"
- ];
- })
- sources."ajv-6.10.0"
+ sources."ajv-6.10.2"
sources."ajv-keywords-1.5.1"
sources."ajv-merge-patch-4.1.0"
- sources."ansi-align-2.0.0"
+ sources."ansi-align-3.0.0"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
- sources."ansicolors-0.3.2"
sources."any-promise-1.3.0"
sources."anymatch-2.0.0"
(sources."archiver-2.1.1" // {
dependencies = [
sources."async-2.6.3"
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -73893,33 +73839,29 @@ in
})
(sources."archiver-utils-1.3.0" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
];
})
- sources."archy-1.0.0"
sources."argparse-1.0.10"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
sources."array-differ-3.0.0"
sources."array-filter-0.0.1"
- sources."array-from-2.1.1"
sources."array-map-0.0.0"
sources."array-reduce-0.0.0"
sources."array-union-2.1.0"
sources."array-unique-0.3.2"
sources."arrify-2.0.1"
- sources."asap-2.0.6"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."ast-types-0.13.2"
sources."astral-regex-1.0.0"
sources."async-0.2.10"
sources."async-each-1.0.3"
+ sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
@@ -73953,7 +73895,6 @@ in
sources."binary-extensions-1.13.1"
(sources."bl-1.2.2" // {
dependencies = [
- sources."isarray-1.0.0"
(sources."readable-stream-2.3.6" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -73968,15 +73909,12 @@ in
})
sources."bluebird-2.9.34"
sources."boolbase-1.0.0"
- (sources."boxen-1.3.0" // {
- dependencies = [
- sources."camelcase-4.1.0"
- ];
- })
+ sources."boxen-3.2.0"
sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
dependencies = [
sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
];
})
sources."buffer-5.4.3"
@@ -73987,23 +73925,16 @@ in
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.1"
sources."bunyan-1.8.12"
- sources."bytes-3.1.0"
sources."cache-base-1.0.1"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.1.0"
sources."lowercase-keys-2.0.0"
- sources."normalize-url-4.4.1"
];
})
- (sources."caller-path-0.1.0" // {
- dependencies = [
- sources."callsites-0.2.0"
- ];
- })
- sources."callsites-3.1.0"
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
sources."camelcase-5.3.1"
- sources."capture-stack-trace-1.0.1"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-0.7.0"
@@ -74014,7 +73945,8 @@ in
sources."normalize-path-3.0.0"
];
})
- sources."ci-info-1.6.0"
+ sources."chrome-launcher-0.11.2"
+ sources."ci-info-2.0.0"
sources."circular-json-0.3.3"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -74033,18 +73965,16 @@ in
sources."kind-of-5.1.0"
];
})
- sources."cli-boxes-1.0.0"
+ sources."cli-boxes-2.2.0"
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
- (sources."cliui-3.2.0" // {
+ (sources."cliui-5.0.0" // {
dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- sources."wrap-ansi-2.1.0"
+ sources."ansi-regex-4.1.0"
+ sources."strip-ansi-5.2.0"
];
})
sources."clone-1.0.4"
- sources."clone-deep-0.3.0"
sources."clone-response-1.0.2"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
@@ -74054,12 +73984,11 @@ in
sources."colors-0.5.1"
sources."columnify-1.5.4"
sources."combined-stream-1.0.8"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."common-tags-1.8.0"
sources."component-emitter-1.3.0"
(sources."compress-commons-1.2.2" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -74068,103 +73997,78 @@ in
sources."concat-map-0.0.1"
(sources."concat-stream-1.6.2" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
];
})
- sources."configstore-3.1.2"
+ sources."configstore-4.0.0"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.9"
+ sources."core-js-2.6.10"
sources."core-util-is-1.0.2"
sources."crc-3.8.0"
(sources."crc32-stream-2.0.0" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
];
})
- sources."create-error-class-3.0.2"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."crx-parser-0.1.2"
sources."crypto-random-string-1.0.0"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
sources."d-1.0.1"
sources."dashdash-1.14.1"
- (sources."data-uri-to-buffer-2.0.1" // {
- dependencies = [
- sources."@types/node-8.10.54"
- ];
- })
sources."debounce-1.2.0"
sources."debug-2.6.9"
- (sources."decamelize-3.2.0" // {
- dependencies = [
- sources."xregexp-4.2.4"
- ];
- })
+ sources."decamelize-3.2.0"
sources."decode-uri-component-0.2.0"
sources."decompress-response-3.3.0"
sources."deep-equal-1.1.0"
sources."deep-extend-0.6.0"
sources."deep-is-0.1.3"
sources."deepcopy-0.6.3"
- sources."deepmerge-3.2.0"
+ sources."deepmerge-4.0.0"
sources."defaults-1.0.3"
sources."defer-to-connect-1.0.2"
sources."define-properties-1.1.3"
sources."define-property-2.0.2"
- (sources."degenerator-1.0.4" // {
- dependencies = [
- sources."esprima-3.1.3"
- ];
- })
sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."diff-4.0.1"
- (sources."dispensary-0.37.0" // {
+ (sources."dispensary-0.40.0" // {
dependencies = [
- sources."async-3.0.1"
+ sources."async-3.1.0"
+ sources."decamelize-1.2.0"
+ sources."yargs-14.0.0"
];
})
- sources."dockerfile-ast-0.0.16"
sources."doctrine-3.0.0"
sources."dom-serializer-0.1.1"
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.5.1"
sources."dot-prop-4.2.0"
- (sources."dotnet-deps-parser-4.5.0" // {
- dependencies = [
- sources."xml2js-0.4.19"
- ];
- })
sources."dtrace-provider-0.8.8"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ecdsa-sig-formatter-1.0.11"
- sources."email-validator-2.0.4"
sources."emoji-regex-7.0.3"
sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
- sources."es-abstract-1.14.2"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."es5-ext-0.10.51"
sources."es6-error-4.1.1"
sources."es6-iterator-2.0.3"
sources."es6-map-0.1.5"
sources."es6-promise-2.3.0"
- sources."es6-promisify-6.0.1"
+ sources."es6-promisify-6.0.2"
(sources."es6-set-0.1.5" // {
dependencies = [
sources."es6-symbol-3.1.1"
@@ -74173,16 +74077,12 @@ in
sources."es6-symbol-3.1.2"
sources."es6-weak-map-2.0.3"
sources."escape-string-regexp-1.0.5"
- (sources."escodegen-1.12.0" // {
- dependencies = [
- sources."esprima-3.1.3"
- ];
- })
sources."escope-3.6.0"
(sources."eslint-5.16.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."debug-4.1.1"
+ sources."espree-5.0.1"
sources."ms-2.1.2"
sources."semver-5.7.1"
sources."strip-ansi-4.0.0"
@@ -74191,6 +74091,12 @@ in
})
(sources."eslint-plugin-no-unsafe-innerhtml-1.0.16" // {
dependencies = [
+ sources."acorn-5.7.3"
+ (sources."acorn-jsx-3.0.1" // {
+ dependencies = [
+ sources."acorn-3.3.0"
+ ];
+ })
sources."ajv-4.11.8"
sources."ansi-escapes-1.4.0"
sources."ansi-regex-3.0.0"
@@ -74209,13 +74115,12 @@ in
sources."is-fullwidth-code-point-1.0.0"
sources."onetime-1.1.0"
sources."progress-1.1.8"
- sources."require-uncached-1.0.3"
- sources."resolve-from-1.0.1"
sources."restore-cursor-1.0.1"
sources."run-async-0.1.0"
sources."slice-ansi-0.0.4"
sources."string-width-1.0.2"
sources."strip-ansi-4.0.0"
+ sources."strip-bom-3.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-2.0.0"
(sources."table-3.8.3" // {
@@ -74228,12 +74133,11 @@ in
];
})
sources."eslint-scope-4.0.3"
- sources."eslint-utils-1.4.2"
- sources."eslint-visitor-keys-1.0.0"
- (sources."espree-5.0.1" // {
+ sources."eslint-utils-1.4.3"
+ sources."eslint-visitor-keys-1.1.0"
+ (sources."espree-6.1.1" // {
dependencies = [
- sources."acorn-6.3.0"
- sources."acorn-jsx-5.0.2"
+ sources."acorn-7.1.0"
];
})
sources."esprima-4.0.1"
@@ -74260,15 +74164,12 @@ in
];
})
sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
sources."kind-of-5.1.0"
];
})
sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
+ sources."extend-shallow-3.0.2"
(sources."external-editor-3.1.0" // {
dependencies = [
sources."tmp-0.0.33"
@@ -74278,6 +74179,7 @@ in
dependencies = [
sources."define-property-1.0.0"
sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
];
})
sources."extsprintf-1.3.0"
@@ -74290,10 +74192,10 @@ in
sources."fd-slicer-1.1.0"
sources."figures-2.0.0"
sources."file-entry-cache-5.0.1"
- sources."file-uri-to-path-1.0.0"
(sources."fill-range-4.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
];
})
sources."find-up-3.0.0"
@@ -74308,7 +74210,6 @@ in
sources."flatted-2.0.1"
sources."fluent-syntax-0.13.0"
sources."for-in-1.0.2"
- sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fragment-cache-0.2.1"
@@ -74316,12 +74217,6 @@ in
sources."fs-extra-4.0.3"
sources."fs.realpath-1.0.0"
sources."fsevents-2.0.7"
- (sources."ftp-0.3.10" // {
- dependencies = [
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
(sources."fx-runner-1.0.11" // {
@@ -74335,12 +74230,6 @@ in
sources."generate-object-property-1.2.0"
sources."get-caller-file-2.0.5"
sources."get-stream-4.1.0"
- (sources."get-uri-2.0.3" // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.2"
- ];
- })
sources."get-value-2.0.6"
sources."getpass-0.1.7"
sources."gettext-parser-1.1.0"
@@ -74350,8 +74239,6 @@ in
sources."shelljs-0.7.7"
];
})
- sources."git-up-4.0.1"
- sources."git-url-parse-11.1.2"
sources."glob-7.1.4"
(sources."glob-parent-3.1.0" // {
dependencies = [
@@ -74360,14 +74247,9 @@ in
})
sources."global-dirs-0.1.1"
sources."globals-11.12.0"
- (sources."got-6.7.1" // {
- dependencies = [
- sources."get-stream-3.0.0"
- ];
- })
- sources."graceful-fs-4.2.2"
+ sources."got-9.6.0"
+ sources."graceful-fs-4.2.3"
sources."graceful-readlink-1.0.1"
- sources."graphlib-2.1.7"
sources."growly-1.3.0"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
@@ -74383,27 +74265,17 @@ in
];
})
sources."has-yarn-2.1.0"
- sources."hosted-git-info-2.8.4"
sources."htmlparser2-3.10.1"
sources."http-cache-semantics-4.0.3"
- sources."http-errors-1.7.3"
- (sources."http-proxy-agent-2.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.2" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
sources."iconv-lite-0.4.24"
sources."ieee754-1.1.13"
sources."ignore-4.0.6"
- sources."immediate-3.0.6"
- sources."import-fresh-3.1.0"
+ (sources."import-fresh-3.1.0" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
@@ -74411,65 +74283,62 @@ in
sources."ini-1.3.5"
(sources."inquirer-6.5.2" // {
dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
+ sources."ansi-regex-3.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.2.0"
- sources."invert-kv-1.0.0"
- sources."ip-1.1.5"
+ sources."invert-kv-3.0.0"
sources."is-absolute-0.1.7"
- (sources."is-accessor-descriptor-1.0.0" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
+ sources."is-accessor-descriptor-1.0.0"
sources."is-arguments-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.1.4"
- sources."is-ci-1.2.1"
- (sources."is-data-descriptor-1.0.0" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
+ sources."is-ci-2.0.0"
+ sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.1"
- (sources."is-descriptor-1.0.2" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."is-extendable-0.1.1"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-1.0.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
sources."is-installed-globally-0.1.0"
- sources."is-mergeable-object-1.1.0"
+ sources."is-mergeable-object-1.1.1"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.0"
- sources."is-npm-1.0.0"
- sources."is-number-3.0.0"
+ sources."is-npm-3.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
sources."is-obj-1.0.1"
sources."is-path-inside-1.0.1"
sources."is-plain-object-2.0.4"
sources."is-promise-2.1.0"
sources."is-property-1.0.2"
- sources."is-redirect-1.0.0"
sources."is-regex-1.0.4"
sources."is-relative-0.1.3"
sources."is-resolvable-1.1.0"
- sources."is-retry-allowed-1.2.0"
- sources."is-ssh-1.3.1"
sources."is-stream-1.1.0"
sources."is-symbol-1.0.2"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
+ sources."is-wsl-2.1.1"
sources."is-yarn-global-0.3.0"
- sources."isarray-0.0.1"
+ sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isstream-0.1.2"
@@ -74496,39 +74365,25 @@ in
];
})
sources."jsprim-1.4.1"
- (sources."jszip-3.2.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
+ sources."jszip-2.6.1"
sources."jwa-1.4.1"
sources."jws-3.2.2"
sources."keyv-3.1.0"
- sources."kind-of-3.2.2"
- sources."latest-version-3.1.0"
- sources."lazy-cache-0.2.7"
+ sources."kind-of-6.0.2"
+ sources."latest-version-5.1.0"
(sources."lazystream-1.0.0" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
];
})
- sources."lcid-1.0.0"
+ sources."lcid-3.1.1"
sources."levn-0.3.0"
- sources."lie-3.3.0"
+ sources."lighthouse-logger-1.2.0"
+ sources."lines-and-columns-1.1.6"
sources."locate-path-3.0.0"
sources."lodash-4.17.15"
- sources."lodash.assign-4.2.0"
- sources."lodash.assignin-4.2.0"
- sources."lodash.clone-4.5.0"
- sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
- sources."lodash.get-4.4.2"
sources."lodash.includes-4.3.0"
sources."lodash.isboolean-3.0.3"
sources."lodash.isinteger-4.0.4"
@@ -74536,42 +74391,28 @@ in
sources."lodash.isplainobject-4.0.6"
sources."lodash.isstring-4.0.1"
sources."lodash.once-4.1.1"
- sources."lodash.set-4.3.2"
sources."lodash.sortby-4.7.0"
sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.5"
- sources."macos-release-2.3.0"
sources."make-dir-1.3.0"
sources."map-age-cleaner-0.1.3"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
- sources."mdn-browser-compat-data-0.0.82"
- (sources."mem-4.3.0" // {
+ sources."marky-1.2.1"
+ sources."mdn-browser-compat-data-0.0.94"
+ (sources."mem-5.1.1" // {
dependencies = [
sources."mimic-fn-2.1.0"
];
})
- (sources."micromatch-3.1.10" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
+ sources."micromatch-3.1.10"
sources."mime-db-1.40.0"
sources."mime-types-2.1.24"
sources."mimic-fn-1.2.0"
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- (sources."mixin-deep-1.3.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."mixin-object-2.0.1" // {
- dependencies = [
- sources."for-in-0.1.8"
- ];
- })
+ sources."mixin-deep-1.3.2"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -74589,41 +74430,15 @@ in
})
sources."mz-2.7.0"
sources."nan-2.14.0"
- (sources."nanomatch-1.2.13" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
+ sources."nanomatch-1.2.13"
sources."natural-compare-1.4.0"
sources."natural-compare-lite-1.4.0"
- (sources."nconf-0.10.0" // {
- dependencies = [
- sources."async-1.5.2"
- sources."camelcase-2.1.1"
- sources."decamelize-1.2.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."os-locale-1.4.0"
- sources."string-width-1.0.2"
- sources."yargs-3.32.0"
- ];
- })
sources."ncp-2.0.0"
- (sources."needle-2.4.0" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
sources."neo-async-2.6.1"
- sources."netmask-1.0.6"
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-forge-0.7.6"
- (sources."node-notifier-5.4.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
+ sources."node-notifier-6.0.0"
(sources."nomnom-1.8.1" // {
dependencies = [
sources."ansi-styles-1.0.0"
@@ -74632,7 +74447,7 @@ in
];
})
sources."normalize-path-2.1.1"
- sources."normalize-url-3.3.0"
+ sources."normalize-url-4.5.0"
sources."npm-run-path-2.0.2"
sources."nth-check-1.0.2"
sources."number-is-nan-1.0.1"
@@ -74648,9 +74463,9 @@ in
sources."kind-of-5.1.0"
];
})
+ sources."kind-of-3.2.2"
];
})
- sources."object-hash-1.3.1"
sources."object-inspect-1.6.0"
sources."object-is-1.0.1"
sources."object-keys-1.1.1"
@@ -74659,16 +74474,14 @@ in
sources."object.pick-1.3.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
- sources."opn-5.5.0"
- sources."optionator-0.8.2"
- sources."os-homedir-1.0.2"
- (sources."os-locale-3.1.0" // {
+ (sources."open-6.4.0" // {
dependencies = [
- sources."invert-kv-2.0.0"
- sources."lcid-2.0.0"
+ sources."is-wsl-1.1.0"
];
})
- sources."os-name-3.1.0"
+ sources."optionator-0.8.2"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-4.0.0"
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
@@ -74678,23 +74491,14 @@ in
sources."p-limit-2.2.1"
sources."p-locate-3.0.0"
sources."p-try-2.2.0"
- (sources."pac-proxy-agent-3.0.0" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- sources."pac-resolver-3.0.0"
- (sources."package-json-4.0.1" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
+ sources."package-json-6.5.0"
sources."pako-1.0.10"
- sources."parent-module-1.0.1"
- sources."parse-json-4.0.0"
- sources."parse-path-4.0.1"
- sources."parse-url-5.0.1"
+ (sources."parent-module-1.0.1" // {
+ dependencies = [
+ sources."callsites-3.1.0"
+ ];
+ })
+ sources."parse-json-5.0.0"
sources."parse5-3.0.3"
sources."pascalcase-0.1.1"
sources."path-dirname-1.0.2"
@@ -74706,41 +74510,27 @@ in
sources."pend-1.2.0"
sources."performance-now-2.1.0"
sources."pify-3.0.0"
- sources."pino-5.12.6"
+ sources."pino-5.13.3"
sources."pino-std-serializers-2.4.2"
sources."pluralize-1.2.1"
sources."po2json-0.4.5"
sources."posix-character-classes-0.1.1"
- (sources."postcss-7.0.16" // {
+ (sources."postcss-7.0.18" // {
dependencies = [
sources."supports-color-6.1.0"
];
})
sources."prelude-ls-1.1.2"
- sources."prepend-http-1.0.4"
- (sources."probe-image-size-4.0.0" // {
- dependencies = [
- sources."deepmerge-2.2.1"
- ];
- })
+ sources."prepend-http-2.0.0"
+ sources."probe-image-size-5.0.0"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
- sources."promise-7.3.1"
- sources."protocols-1.4.7"
- (sources."proxy-agent-3.1.0" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- sources."proxy-from-env-1.0.0"
sources."pseudomap-1.0.2"
sources."psl-1.4.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- sources."quick-format-unescaped-3.0.2"
- sources."raw-body-2.4.1"
+ sources."quick-format-unescaped-3.0.3"
(sources."rc-1.2.8" // {
dependencies = [
sources."strip-json-comments-2.0.1"
@@ -74749,7 +74539,6 @@ in
sources."readable-stream-3.4.0"
(sources."readdirp-2.2.1" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -74766,8 +74555,8 @@ in
sources."regex-not-1.0.2"
sources."regexp.prototype.flags-1.2.0"
sources."regexpp-2.0.1"
- sources."registry-auth-token-3.4.0"
- sources."registry-url-3.1.0"
+ sources."registry-auth-token-4.0.0"
+ sources."registry-url-5.1.0"
sources."relaxed-json-1.0.3"
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.3"
@@ -74775,13 +74564,9 @@ in
sources."request-2.88.0"
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
- (sources."require-uncached-2.0.0" // {
- dependencies = [
- sources."resolve-from-1.0.1"
- ];
- })
+ sources."require-uncached-1.0.3"
sources."resolve-1.12.0"
- sources."resolve-from-4.0.0"
+ sources."resolve-from-1.0.1"
sources."resolve-url-0.2.1"
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
@@ -74795,27 +74580,20 @@ in
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
- sources."secure-keys-1.0.0"
- sources."semver-6.1.1"
+ sources."semver-6.3.0"
(sources."semver-diff-2.1.0" // {
dependencies = [
sources."semver-5.7.1"
];
})
sources."set-blocking-2.0.0"
- sources."set-immediate-shim-1.0.1"
(sources."set-value-2.0.1" // {
dependencies = [
sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
];
})
- sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- (sources."shallow-clone-0.1.2" // {
- dependencies = [
- sources."kind-of-2.0.1"
- ];
- })
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."shell-quote-1.6.1"
@@ -74841,7 +74619,6 @@ in
})
sources."signal-exit-3.0.2"
sources."slice-ansi-2.1.0"
- sources."smart-buffer-4.0.2"
(sources."snapdragon-0.8.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -74857,6 +74634,7 @@ in
];
})
sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
sources."kind-of-5.1.0"
sources."source-map-0.5.7"
];
@@ -74866,116 +74644,15 @@ in
sources."define-property-1.0.0"
];
})
- sources."snapdragon-util-3.0.1"
- (sources."snyk-1.228.3" // {
+ (sources."snapdragon-util-3.0.1" // {
dependencies = [
- sources."ansi-regex-4.1.0"
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- sources."strip-ansi-5.2.0"
- sources."update-notifier-2.5.0"
- ];
- })
- (sources."snyk-config-2.2.3" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- (sources."snyk-docker-plugin-1.29.1" // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.2"
- ];
- })
- sources."snyk-go-parser-1.3.1"
- (sources."snyk-go-plugin-1.11.0" // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.2"
- sources."tmp-0.0.33"
- ];
- })
- (sources."snyk-gradle-plugin-3.1.0" // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.2"
- sources."tmp-0.0.33"
- ];
- })
- (sources."snyk-module-1.9.1" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- (sources."snyk-mvn-plugin-2.4.0" // {
- dependencies = [
- sources."tslib-1.9.3"
- ];
- })
- sources."snyk-nodejs-lockfile-parser-1.16.0"
- (sources."snyk-nuget-plugin-1.12.1" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- sources."snyk-paket-parser-1.5.0"
- (sources."snyk-php-plugin-1.6.4" // {
- dependencies = [
- sources."tslib-1.9.3"
- ];
- })
- (sources."snyk-policy-1.13.5" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- (sources."snyk-python-plugin-1.13.2" // {
- dependencies = [
- sources."tmp-0.0.33"
- ];
- })
- (sources."snyk-resolve-1.0.1" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- (sources."snyk-resolve-deps-4.4.0" // {
- dependencies = [
- sources."@types/node-6.14.7"
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- sources."semver-5.7.1"
- ];
- })
- (sources."snyk-sbt-plugin-2.8.0" // {
- dependencies = [
- sources."semver-6.3.0"
- ];
- })
- sources."snyk-tree-1.0.0"
- (sources."snyk-try-require-1.3.1" // {
- dependencies = [
- sources."debug-3.2.6"
- sources."ms-2.1.2"
- ];
- })
- sources."socks-2.3.2"
- (sources."socks-proxy-agent-4.0.2" // {
- dependencies = [
- sources."agent-base-4.2.1"
- sources."es6-promise-4.2.8"
- sources."es6-promisify-5.0.0"
+ sources."kind-of-3.2.2"
];
})
sources."sonic-boom-0.7.6"
sources."source-map-0.6.1"
sources."source-map-resolve-0.5.2"
- sources."source-map-support-0.5.12"
+ sources."source-map-support-0.5.13"
sources."source-map-url-0.4.0"
sources."spawn-sync-1.0.15"
sources."split-0.3.3"
@@ -74999,7 +74676,6 @@ in
sources."kind-of-5.1.0"
];
})
- sources."statuses-1.5.0"
sources."stream-parser-0.3.1"
sources."stream-to-array-2.3.0"
(sources."stream-to-promise-2.2.0" // {
@@ -75008,40 +74684,30 @@ in
sources."once-1.3.3"
];
})
- (sources."string-width-2.1.1" // {
+ (sources."string-width-3.1.0" // {
dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
+ sources."ansi-regex-4.1.0"
+ sources."strip-ansi-5.2.0"
];
})
sources."string.prototype.trimleft-2.1.0"
sources."string.prototype.trimright-2.1.0"
sources."string_decoder-1.3.0"
sources."strip-ansi-3.0.1"
- sources."strip-bom-3.0.0"
+ sources."strip-bom-4.0.0"
sources."strip-bom-buf-2.0.0"
sources."strip-bom-stream-4.0.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-3.0.1"
sources."supports-color-5.5.0"
- (sources."table-5.4.6" // {
- dependencies = [
- sources."ajv-6.10.2"
- sources."ansi-regex-4.1.0"
- sources."string-width-3.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
+ sources."table-5.4.6"
(sources."tar-stream-1.6.2" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
];
})
- sources."temp-dir-1.0.0"
- sources."tempfile-2.0.0"
(sources."term-size-1.2.0" // {
dependencies = [
sources."cross-spawn-5.1.0"
@@ -75050,20 +74716,19 @@ in
];
})
sources."text-table-0.2.0"
- sources."then-fs-2.0.0"
sources."thenify-3.3.0"
sources."thenify-all-1.6.0"
sources."through-2.3.8"
- sources."thunkify-2.1.2"
- sources."timed-out-4.0.1"
sources."tmp-0.1.0"
sources."to-buffer-1.1.1"
- sources."to-object-path-0.3.0"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
sources."to-readable-stream-1.0.0"
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
- sources."toidentifier-1.0.0"
- sources."toml-3.0.0"
sources."tosource-1.0.0"
(sources."tough-cookie-2.4.3" // {
dependencies = [
@@ -75072,7 +74737,6 @@ in
})
sources."tr46-1.0.1"
sources."traverse-0.4.6"
- sources."tree-kill-1.2.1"
sources."tslib-1.10.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -75081,10 +74745,13 @@ in
sources."type-fest-0.3.1"
sources."typedarray-0.0.6"
sources."underscore-1.6.0"
- sources."union-value-1.0.1"
+ (sources."union-value-1.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."unique-string-1.0.0"
sources."universalify-0.1.2"
- sources."unpipe-1.0.0"
(sources."unset-value-1.0.0" // {
dependencies = [
(sources."has-value-0.3.1" // {
@@ -75093,43 +74760,19 @@ in
];
})
sources."has-values-0.1.4"
- sources."isarray-1.0.0"
- ];
- })
- sources."unzip-response-2.0.1"
- sources."upath-1.1.2"
- (sources."update-notifier-3.0.1" // {
- dependencies = [
- sources."ansi-align-3.0.0"
- sources."ansi-regex-4.1.0"
- sources."boxen-3.2.0"
- sources."ci-info-2.0.0"
- sources."cli-boxes-2.2.0"
- sources."configstore-4.0.0"
- sources."got-9.6.0"
- sources."is-ci-2.0.0"
- sources."is-npm-3.0.0"
- sources."latest-version-5.1.0"
- sources."package-json-6.5.0"
- sources."prepend-http-2.0.0"
- sources."registry-auth-token-4.0.0"
- sources."registry-url-5.1.0"
- sources."semver-6.3.0"
- sources."string-width-3.1.0"
- sources."strip-ansi-5.2.0"
- sources."url-parse-lax-3.0.0"
];
})
+ sources."upath-1.2.0"
+ sources."update-notifier-3.0.1"
sources."uri-js-4.2.2"
sources."urix-0.1.0"
- sources."url-parse-lax-1.0.0"
+ sources."url-parse-lax-3.0.0"
sources."use-3.1.1"
sources."user-home-2.0.0"
sources."util-deprecate-1.0.2"
sources."util.promisify-1.0.0"
sources."uuid-3.3.3"
sources."verror-1.10.0"
- sources."vscode-languageserver-types-3.14.0"
sources."watchpack-1.6.0"
sources."wcwidth-1.0.1"
sources."webidl-conversions-4.0.2"
@@ -75137,41 +74780,33 @@ in
sources."when-3.7.7"
sources."which-1.3.1"
sources."which-module-2.0.0"
- sources."widest-line-2.0.1"
- sources."window-size-0.1.4"
- sources."windows-release-3.2.0"
+ (sources."widest-line-2.0.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
sources."winreg-0.0.12"
sources."wordwrap-1.0.0"
(sources."wrap-ansi-5.1.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
- sources."string-width-3.1.0"
sources."strip-ansi-5.2.0"
];
})
sources."wrappy-1.0.2"
sources."write-1.0.3"
sources."write-file-atomic-2.4.3"
+ sources."ws-7.1.2"
sources."xdg-basedir-3.0.0"
- (sources."xml2js-0.4.22" // {
- dependencies = [
- sources."xmlbuilder-11.0.1"
- ];
- })
- sources."xmlbuilder-9.0.7"
- sources."xregexp-2.0.0"
+ sources."xml2js-0.4.22"
+ sources."xmlbuilder-11.0.1"
+ sources."xregexp-4.2.4"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-4.0.0"
sources."yallist-2.1.2"
- (sources."yargs-13.2.4" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."cliui-5.0.0"
- sources."string-width-3.1.0"
- sources."strip-ansi-5.2.0"
- sources."y18n-4.0.0"
- ];
- })
+ sources."yargs-13.3.0"
(sources."yargs-parser-13.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
@@ -75181,12 +74816,10 @@ in
(sources."zip-dir-1.0.2" // {
dependencies = [
sources."async-1.5.2"
- sources."jszip-2.6.1"
];
})
(sources."zip-stream-1.2.0" // {
dependencies = [
- sources."isarray-1.0.0"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -75206,10 +74839,10 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "4.40.2";
+ version = "4.41.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-4.40.2.tgz";
- sha512 = "5nIvteTDCUws2DVvP9Qe+JPla7kWPPIDFZv55To7IycHWZ+Z5qBdaBYPyuXWdhggTufZkQwfIK+5rKQTVovm2A==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-4.41.2.tgz";
+ sha512 = "Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==";
};
dependencies = [
sources."@webassemblyjs/ast-1.8.5"
@@ -75265,7 +74898,7 @@ in
sources."base64-js-1.3.1"
sources."big.js-5.2.2"
sources."binary-extensions-1.13.1"
- sources."bluebird-3.5.5"
+ sources."bluebird-3.7.1"
sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
@@ -75287,7 +74920,7 @@ in
sources."cacache-12.0.3"
sources."cache-base-1.0.1"
sources."chokidar-2.1.8"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."chrome-trace-event-1.0.2"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
@@ -75308,7 +74941,7 @@ in
];
})
sources."collection-visit-1.0.0"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."commondir-1.0.1"
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
@@ -75333,8 +74966,12 @@ in
sources."duplexify-3.7.1"
sources."elliptic-6.5.1"
sources."emojis-list-2.1.0"
- sources."end-of-stream-1.4.1"
- sources."enhanced-resolve-4.1.0"
+ sources."end-of-stream-1.4.4"
+ (sources."enhanced-resolve-4.1.1" // {
+ dependencies = [
+ sources."memory-fs-0.5.0"
+ ];
+ })
sources."errno-0.1.7"
sources."eslint-scope-4.0.3"
sources."esrecurse-4.2.1"
@@ -75388,13 +75025,13 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-1.2.9"
sources."get-value-2.0.6"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
];
})
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
@@ -75605,7 +75242,7 @@ in
sources."stream-shift-1.0.0"
sources."string_decoder-1.1.1"
sources."tapable-1.1.3"
- (sources."terser-4.3.1" // {
+ (sources."terser-4.3.9" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -75667,7 +75304,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-4.0.0"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -75746,7 +75383,7 @@ in
sources."detect-file-1.0.0"
sources."emoji-regex-7.0.3"
sources."emojis-list-2.1.0"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."enhanced-resolve-4.1.0"
sources."errno-0.1.7"
sources."escape-string-regexp-1.0.5"
@@ -75799,7 +75436,7 @@ in
];
})
sources."global-prefix-1.0.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."has-flag-3.0.0"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
@@ -76011,10 +75648,10 @@ in
webtorrent-cli = nodeEnv.buildNodePackage {
name = "webtorrent-cli";
packageName = "webtorrent-cli";
- version = "3.0.4";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.0.4.tgz";
- sha512 = "aIxXrSAtLmENSEfQlg5xs+wV/nRp+wtckilxxpFp22k428L0DHn6jGRBWEDJ99D1lzmm9UD5NvGe2MpbsDOLOg==";
+ url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.0.5.tgz";
+ sha512 = "+CZvxl0xfjAtWXvJhhcX0W/do/j97KnJCbUwvKPJHQDqfHYAsJE6PZGGLqOlumFvSes+Q7ptVOoA1205lVJfTw==";
};
dependencies = [
sources."@protobufjs/aspromise-1.1.2"
@@ -76028,7 +75665,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.0"
- sources."@types/node-10.14.18"
+ sources."@types/node-10.17.0"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.3.0"
sources."async-limiter-1.0.1"
@@ -76077,7 +75714,7 @@ in
})
sources."castv2-client-1.2.0"
sources."charset-1.0.1"
- sources."chrome-dgram-3.0.3"
+ sources."chrome-dgram-3.0.4"
sources."chrome-dns-1.0.1"
sources."chrome-net-3.3.3"
(sources."chromecasts-1.9.1" // {
@@ -76112,8 +75749,8 @@ in
sources."ecstatic-4.1.2"
sources."ee-first-1.1.1"
sources."elementtree-0.1.7"
- sources."end-of-stream-1.4.1"
- sources."es-abstract-1.14.2"
+ sources."end-of-stream-1.4.4"
+ sources."es-abstract-1.16.0"
sources."es-to-primitive-1.2.0"
sources."escape-html-1.0.3"
sources."executable-4.1.1"
@@ -76121,14 +75758,14 @@ in
sources."freelist-1.0.3"
(sources."fs-chunk-store-2.0.1" // {
dependencies = [
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
];
})
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-browser-rtc-1.0.2"
sources."get-stdin-7.0.0"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
sources."has-1.0.3"
sources."has-symbols-1.0.0"
sources."he-1.2.0"
@@ -76147,7 +75784,7 @@ in
sources."is-regex-1.0.4"
sources."is-symbol-1.0.2"
sources."is-typedarray-1.0.0"
- sources."is-wsl-1.1.0"
+ sources."is-wsl-2.1.1"
sources."isarray-1.0.0"
sources."junk-3.1.0"
sources."k-bucket-5.0.0"
@@ -76183,7 +75820,7 @@ in
sources."ms-2.0.0"
(sources."multicast-dns-6.2.3" // {
dependencies = [
- sources."thunky-1.0.3"
+ sources."thunky-1.1.0"
];
})
sources."multistream-4.0.0"
@@ -76198,7 +75835,7 @@ in
sources."object.getownpropertydescriptors-2.0.3"
sources."on-finished-2.3.0"
sources."once-1.4.0"
- sources."open-6.4.0"
+ sources."open-7.0.0"
sources."package-json-versionify-1.0.4"
sources."parse-numeric-range-0.0.2"
(sources."parse-torrent-7.0.1" // {
@@ -76310,7 +75947,7 @@ in
})
sources."winreg-1.2.4"
sources."wrappy-1.0.2"
- sources."ws-7.1.2"
+ sources."ws-7.2.0"
sources."xml2js-0.4.22"
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.27"
@@ -76353,7 +75990,7 @@ in
};
dependencies = [
sources."adverb-where-0.2.1"
- sources."commander-2.20.0"
+ sources."commander-2.20.3"
sources."e-prime-0.10.2"
sources."no-cliches-0.2.2"
sources."passive-voice-0.1.0"
@@ -76373,10 +76010,10 @@ in
yarn = nodeEnv.buildNodePackage {
name = "yarn";
packageName = "yarn";
- version = "1.17.3";
+ version = "1.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yarn/-/yarn-1.17.3.tgz";
- sha512 = "CgA8o7nRZaQvmeF/WBx2FC7f9W/0X59T2IaLYqgMo6637wfp5mMEsM3YXoJtKUspnpmDJKl/gGFhnqS+sON7hA==";
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.19.1.tgz";
+ sha512 = "gBnfbL9rYY05Gt0cjJhs/siqQXHYlZalTjK3nXn2QO20xbkIFPob+LlH44ML47GcR4VU9/2dYck1BWFM0Javxw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -76438,7 +76075,7 @@ in
];
})
sources."bin-version-check-3.0.0"
- sources."boolean-1.0.0"
+ sources."boolean-2.0.2"
(sources."boxen-1.3.0" // {
dependencies = [
sources."camelcase-4.1.0"
@@ -76503,7 +76140,7 @@ in
sources."config-chain-1.1.12"
sources."configstore-3.1.2"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.2.1"
+ sources."core-js-3.3.4"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -76533,7 +76170,7 @@ in
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
+ sources."end-of-stream-1.4.4"
sources."env-paths-1.0.0"
sources."error-ex-1.3.2"
sources."es6-error-4.1.1"
@@ -76605,14 +76242,14 @@ in
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
+ sources."glob-7.1.5"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
];
})
sources."glob-to-regexp-0.3.0"
- (sources."global-agent-2.1.1" // {
+ (sources."global-agent-2.1.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -76622,7 +76259,7 @@ in
sources."globalthis-1.0.0"
sources."globby-8.0.2"
sources."got-8.3.2"
- sources."graceful-fs-4.2.2"
+ sources."graceful-fs-4.2.3"
sources."grouped-queue-0.3.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
@@ -76641,7 +76278,7 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-cache-semantics-3.8.1"
sources."http-signature-1.2.0"
sources."humanize-string-1.0.2"
@@ -76904,7 +76541,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
sources."ret-0.1.15"
- sources."roarr-2.14.1"
+ sources."roarr-2.14.2"
sources."root-check-1.0.0"
sources."run-async-2.3.0"
sources."rx-4.1.0"
@@ -76918,7 +76555,7 @@ in
sources."semver-diff-2.1.0"
sources."semver-regex-1.0.0"
sources."semver-truncate-1.1.2"
- sources."serialize-error-4.1.0"
+ sources."serialize-error-5.0.0"
(sources."set-value-2.0.1" // {
dependencies = [
sources."extend-shallow-2.0.1"
@@ -77069,7 +76706,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."twig-1.13.3"
- sources."type-fest-0.3.1"
+ sources."type-fest-0.8.1"
sources."typedarray-0.0.6"
sources."union-value-1.0.1"
sources."unique-string-1.0.0"
@@ -77131,7 +76768,7 @@ in
];
})
sources."yeoman-doctor-4.0.0"
- (sources."yeoman-environment-2.4.0" // {
+ (sources."yeoman-environment-2.5.0" // {
dependencies = [
sources."debug-3.2.6"
sources."ms-2.1.2"
@@ -77161,4 +76798,4 @@ in
bypassCache = true;
reconstructLock = true;
};
-}
+}
\ No newline at end of file
diff --git a/pkgs/development/node-packages/node-packages-v12.nix b/pkgs/development/node-packages/node-packages-v12.nix
index dcc1c73c0fcd..885535aab23f 100644
--- a/pkgs/development/node-packages/node-packages-v12.nix
+++ b/pkgs/development/node-packages/node-packages-v12.nix
@@ -256,13 +256,13 @@ let
sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
- "chownr-1.1.2" = {
+ "chownr-1.1.3" = {
name = "chownr";
packageName = "chownr";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz";
- sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==";
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz";
+ sha512 = "i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==";
};
};
"class-utils-0.3.6" = {
@@ -697,13 +697,13 @@ let
sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
- "glob-7.1.4" = {
+ "glob-7.1.5" = {
name = "glob";
packageName = "glob";
- version = "7.1.4";
+ version = "7.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz";
- sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==";
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz";
+ sha512 = "J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==";
};
};
"global-modules-1.0.0" = {
@@ -724,13 +724,13 @@ let
sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
};
};
- "graceful-fs-4.2.2" = {
+ "graceful-fs-4.2.3" = {
name = "graceful-fs";
packageName = "graceful-fs";
- version = "4.2.2";
+ version = "4.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz";
- sha512 = "IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==";
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz";
+ sha512 = "a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==";
};
};
"grunt-known-options-1.1.1" = {
@@ -814,13 +814,13 @@ let
sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==";
};
};
- "hosted-git-info-2.8.4" = {
+ "hosted-git-info-2.8.5" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "2.8.4";
+ version = "2.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.4.tgz";
- sha512 = "pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ==";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz";
+ sha512 = "kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==";
};
};
"http-signature-1.2.0" = {
@@ -1255,22 +1255,22 @@ let
sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
};
};
- "minipass-2.8.1" = {
+ "minipass-2.9.0" = {
name = "minipass";
packageName = "minipass";
- version = "2.8.1";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.8.1.tgz";
- sha512 = "QCG523ParRcE2+9A6wYh9UI3uy2FFLw4DQaVYQrY5HPfszc5M6VDD+j0QCwHm19LI2imes4RB+NBD8cOJccyCg==";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz";
+ sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==";
};
};
- "minizlib-1.2.2" = {
+ "minizlib-1.3.3" = {
name = "minizlib";
packageName = "minizlib";
- version = "1.2.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/minizlib/-/minizlib-1.2.2.tgz";
- sha512 = "hR3At21uSrsjjDTWrbu0IMLTpnkpv8IIMFDFaoz43Tmu4LkmAXfH44vNNzpTnf+OAQQCHrb91y/wc2J4x5XgSQ==";
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz";
+ sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==";
};
};
"mixin-deep-1.3.2" = {
@@ -2038,13 +2038,13 @@ let
sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
};
};
- "tar-4.4.11" = {
+ "tar-4.4.13" = {
name = "tar";
packageName = "tar";
- version = "4.4.11";
+ version = "4.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.11.tgz";
- sha512 = "iI4zh3ktLJKaDNZKZc+fUONiQrSn9HkCFzamtb7k8FFmVilHVob7QsLX/VySAW8lAviMzMbFw4QtFb4errwgYA==";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz";
+ sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==";
};
};
"temp-0.9.0" = {
@@ -2272,13 +2272,13 @@ let
sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
};
};
- "yallist-3.0.3" = {
+ "yallist-3.1.1" = {
name = "yallist";
packageName = "yallist";
- version = "3.0.3";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz";
- sha512 = "S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==";
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz";
+ sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==";
};
};
};
@@ -2616,7 +2616,7 @@ in
sources."buffer-from-1.1.1"
sources."builtins-1.0.3"
sources."caseless-0.12.0"
- sources."chownr-1.1.2"
+ sources."chownr-1.1.3"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
@@ -2651,12 +2651,12 @@ in
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.4"
- sources."graceful-fs-4.2.2"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-2.8.4"
+ sources."hosted-git-info-2.8.5"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -2675,8 +2675,8 @@ in
sources."mime-types-2.1.24"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.8.1"
- sources."minizlib-1.2.2"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
sources."mkdirp-0.5.1"
sources."ncp-0.4.2"
sources."nijs-0.0.25"
@@ -2748,7 +2748,7 @@ in
];
})
sources."strip-ansi-3.0.1"
- sources."tar-4.4.11"
+ sources."tar-4.4.13"
sources."temp-0.9.0"
(sources."tough-cookie-2.4.3" // {
dependencies = [
@@ -2768,7 +2768,7 @@ in
sources."walk-2.3.14"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
- sources."yallist-3.0.3"
+ sources."yallist-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/development/node-packages/node-packages-v13.json b/pkgs/development/node-packages/node-packages-v13.json
new file mode 100644
index 000000000000..1c7b22c3c7e5
--- /dev/null
+++ b/pkgs/development/node-packages/node-packages-v13.json
@@ -0,0 +1,3 @@
+[
+ "node2nix"
+]
diff --git a/pkgs/development/node-packages/node-packages-v13.nix b/pkgs/development/node-packages/node-packages-v13.nix
new file mode 100644
index 000000000000..1850bb2f0826
--- /dev/null
+++ b/pkgs/development/node-packages/node-packages-v13.nix
@@ -0,0 +1,1451 @@
+# This file has been generated by node2nix 1.7.0. Do not edit!
+
+{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
+
+let
+ sources = {
+ "abbrev-1.1.1" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
+ sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
+ };
+ };
+ "ajv-6.10.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "6.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz";
+ sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==";
+ };
+ };
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ };
+ };
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
+ };
+ };
+ "are-we-there-yet-1.1.5" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
+ sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
+ };
+ };
+ "asn1-0.2.4" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
+ sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ };
+ };
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ };
+ };
+ "aws-sign2-0.7.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
+ sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
+ };
+ };
+ "aws4-1.8.0" = {
+ name = "aws4";
+ packageName = "aws4";
+ version = "1.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
+ sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
+ };
+ };
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
+ };
+ };
+ "base64-js-1.3.1" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz";
+ sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==";
+ };
+ };
+ "bcrypt-pbkdf-1.0.2" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
+ sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
+ };
+ };
+ "brace-expansion-1.1.11" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
+ sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
+ };
+ };
+ "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==";
+ };
+ };
+ "builtins-1.0.3" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
+ };
+ };
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
+ };
+ };
+ "chownr-1.1.3" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz";
+ sha512 = "i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==";
+ };
+ };
+ "code-point-at-1.1.0" = {
+ name = "code-point-at";
+ packageName = "code-point-at";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ };
+ };
+ "combined-stream-1.0.8" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz";
+ sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==";
+ };
+ };
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ };
+ };
+ "concat-stream-1.6.2" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
+ sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
+ };
+ };
+ "config-chain-1.1.12" = {
+ name = "config-chain";
+ packageName = "config-chain";
+ version = "1.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz";
+ sha512 = "a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==";
+ };
+ };
+ "console-control-strings-1.1.0" = {
+ name = "console-control-strings";
+ packageName = "console-control-strings";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ };
+ };
+ "core-util-is-1.0.2" = {
+ name = "core-util-is";
+ packageName = "core-util-is";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
+ };
+ };
+ "dashdash-1.14.1" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
+ sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
+ };
+ };
+ "delayed-stream-1.0.0" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
+ sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ };
+ };
+ "delegates-1.0.0" = {
+ name = "delegates";
+ packageName = "delegates";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
+ sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ };
+ };
+ "ecc-jsbn-0.1.2" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
+ sha1 = "3a83a904e54353287874c564b7549386849a98c9";
+ };
+ };
+ "extend-3.0.2" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
+ sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
+ };
+ };
+ "extsprintf-1.3.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
+ sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
+ };
+ };
+ "fast-deep-equal-2.0.1" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
+ sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
+ };
+ };
+ "fast-json-stable-stringify-2.0.0" = {
+ name = "fast-json-stable-stringify";
+ packageName = "fast-json-stable-stringify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
+ sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
+ };
+ };
+ "findit-2.0.0" = {
+ name = "findit";
+ packageName = "findit";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findit/-/findit-2.0.0.tgz";
+ sha1 = "6509f0126af4c178551cfa99394e032e13a4d56e";
+ };
+ };
+ "foreachasync-3.0.0" = {
+ name = "foreachasync";
+ packageName = "foreachasync";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz";
+ sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
+ };
+ };
+ "forever-agent-0.6.1" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
+ sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
+ };
+ };
+ "form-data-2.3.3" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz";
+ sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==";
+ };
+ };
+ "fs-extra-0.6.4" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz";
+ sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15";
+ };
+ };
+ "fs-minipass-1.2.7" = {
+ name = "fs-minipass";
+ packageName = "fs-minipass";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz";
+ sha512 = "GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==";
+ };
+ };
+ "fs.extra-1.3.2" = {
+ name = "fs.extra";
+ packageName = "fs.extra";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz";
+ sha1 = "dd023f93013bee24531f1b33514c37b20fd93349";
+ };
+ };
+ "fs.realpath-1.0.0" = {
+ name = "fs.realpath";
+ packageName = "fs.realpath";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
+ sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ };
+ };
+ "gauge-2.7.4" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
+ sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ };
+ };
+ "getpass-0.1.7" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
+ sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
+ };
+ };
+ "glob-7.1.5" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz";
+ sha512 = "J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==";
+ };
+ };
+ "graceful-fs-4.2.2" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz";
+ sha512 = "IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==";
+ };
+ };
+ "har-schema-2.0.0" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
+ sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
+ };
+ };
+ "har-validator-5.1.3" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz";
+ sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==";
+ };
+ };
+ "has-unicode-2.0.1" = {
+ name = "has-unicode";
+ packageName = "has-unicode";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
+ sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
+ };
+ };
+ "hosted-git-info-2.8.5" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz";
+ sha512 = "kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==";
+ };
+ };
+ "http-signature-1.2.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
+ sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
+ };
+ };
+ "inflight-1.0.6" = {
+ name = "inflight";
+ packageName = "inflight";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
+ sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ };
+ };
+ "inherits-2.0.4" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz";
+ sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==";
+ };
+ };
+ "ini-1.3.5" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
+ sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
+ };
+ };
+ "is-fullwidth-code-point-1.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
+ sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
+ };
+ };
+ "is-typedarray-1.0.0" = {
+ name = "is-typedarray";
+ packageName = "is-typedarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
+ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
+ };
+ };
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
+ };
+ };
+ "isstream-0.1.2" = {
+ name = "isstream";
+ packageName = "isstream";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
+ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
+ };
+ };
+ "jsbn-0.1.1" = {
+ name = "jsbn";
+ packageName = "jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
+ };
+ };
+ "json-schema-0.2.3" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
+ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
+ };
+ };
+ "json-schema-traverse-0.4.1" = {
+ name = "json-schema-traverse";
+ packageName = "json-schema-traverse";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
+ sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
+ };
+ };
+ "json-stringify-safe-5.0.1" = {
+ name = "json-stringify-safe";
+ packageName = "json-stringify-safe";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
+ sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
+ };
+ };
+ "jsonfile-1.0.1" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz";
+ sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd";
+ };
+ };
+ "jsprim-1.4.1" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
+ sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
+ };
+ };
+ "mime-db-1.40.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz";
+ sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==";
+ };
+ };
+ "mime-types-2.1.24" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz";
+ sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==";
+ };
+ };
+ "minimatch-3.0.4" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
+ sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
+ };
+ };
+ "minimist-0.0.8" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
+ sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
+ };
+ };
+ "minipass-2.9.0" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz";
+ sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==";
+ };
+ };
+ "minizlib-1.3.3" = {
+ name = "minizlib";
+ packageName = "minizlib";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz";
+ sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==";
+ };
+ };
+ "mkdirp-0.3.5" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz";
+ sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7";
+ };
+ };
+ "mkdirp-0.5.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
+ sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
+ };
+ };
+ "ncp-0.4.2" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz";
+ sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574";
+ };
+ };
+ "nijs-0.0.25" = {
+ name = "nijs";
+ packageName = "nijs";
+ version = "0.0.25";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
+ sha1 = "04b035cb530d46859d1018839a518c029133f676";
+ };
+ };
+ "nopt-3.0.6" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
+ sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
+ };
+ };
+ "normalize-package-data-2.5.0" = {
+ name = "normalize-package-data";
+ packageName = "normalize-package-data";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
+ sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==";
+ };
+ };
+ "npm-package-arg-6.1.1" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.1.tgz";
+ sha512 = "qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==";
+ };
+ };
+ "npm-registry-client-8.6.0" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "8.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.6.0.tgz";
+ sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
+ };
+ };
+ "npmconf-2.1.3" = {
+ name = "npmconf";
+ packageName = "npmconf";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.3.tgz";
+ sha512 = "iTK+HI68GceCoGOHAQiJ/ik1iDfI7S+cgyG8A+PP18IU3X83kRhQIRhAUNj4Bp2JMx6Zrt5kCiozYa9uGWTjhA==";
+ };
+ };
+ "npmlog-4.1.2" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "4.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
+ sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
+ };
+ };
+ "number-is-nan-1.0.1" = {
+ name = "number-is-nan";
+ packageName = "number-is-nan";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
+ sha1 = "097b602b53422a522c1afb8790318336941a011d";
+ };
+ };
+ "oauth-sign-0.9.0" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz";
+ sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==";
+ };
+ };
+ "object-assign-4.1.1" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
+ sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
+ };
+ };
+ "once-1.3.3" = {
+ name = "once";
+ packageName = "once";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
+ sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
+ };
+ };
+ "once-1.4.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
+ sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
+ };
+ };
+ "optparse-1.0.5" = {
+ name = "optparse";
+ packageName = "optparse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
+ sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ };
+ };
+ "os-homedir-1.0.2" = {
+ name = "os-homedir";
+ packageName = "os-homedir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
+ sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
+ };
+ };
+ "os-tmpdir-1.0.2" = {
+ name = "os-tmpdir";
+ packageName = "os-tmpdir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
+ sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ };
+ };
+ "osenv-0.1.5" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
+ sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
+ };
+ };
+ "path-is-absolute-1.0.1" = {
+ name = "path-is-absolute";
+ packageName = "path-is-absolute";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
+ sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ };
+ };
+ "path-parse-1.0.6" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
+ sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
+ };
+ };
+ "performance-now-2.1.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
+ sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
+ };
+ };
+ "process-nextick-args-2.0.1" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz";
+ sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
+ };
+ };
+ "proto-list-1.2.4" = {
+ name = "proto-list";
+ packageName = "proto-list";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
+ sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
+ };
+ };
+ "psl-1.4.0" = {
+ name = "psl";
+ packageName = "psl";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz";
+ sha512 = "HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==";
+ };
+ };
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
+ };
+ };
+ "punycode-2.1.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
+ sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
+ };
+ };
+ "qs-6.5.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
+ sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
+ };
+ };
+ "readable-stream-2.3.6" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
+ sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
+ };
+ };
+ "request-2.88.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.88.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz";
+ sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==";
+ };
+ };
+ "resolve-1.12.0" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz";
+ sha512 = "B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==";
+ };
+ };
+ "retry-0.10.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz";
+ sha1 = "e76388d217992c252750241d3d3956fed98d8ff4";
+ };
+ };
+ "rimraf-2.2.8" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
+ sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
+ };
+ };
+ "rimraf-2.6.3" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz";
+ sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==";
+ };
+ };
+ "safe-buffer-5.1.2" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
+ sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
+ };
+ };
+ "safe-buffer-5.2.0" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz";
+ sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==";
+ };
+ };
+ "safer-buffer-2.1.2" = {
+ name = "safer-buffer";
+ packageName = "safer-buffer";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
+ sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
+ };
+ };
+ "semver-4.3.6" = {
+ name = "semver";
+ packageName = "semver";
+ version = "4.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz";
+ sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
+ };
+ };
+ "semver-5.7.1" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz";
+ sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==";
+ };
+ };
+ "semver-6.1.3" = {
+ name = "semver";
+ packageName = "semver";
+ version = "6.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-6.1.3.tgz";
+ sha512 = "aymF+56WJJMyXQHcd4hlK4N75rwj5RQpfW8ePlQnJsTYOBLlLbcIErR/G1s9SkIvKBqOudR3KAx4wEqP+F1hNQ==";
+ };
+ };
+ "set-blocking-2.0.0" = {
+ name = "set-blocking";
+ packageName = "set-blocking";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
+ sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
+ };
+ };
+ "signal-exit-3.0.2" = {
+ name = "signal-exit";
+ packageName = "signal-exit";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
+ sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ };
+ };
+ "slasp-0.0.4" = {
+ name = "slasp";
+ packageName = "slasp";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
+ sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ };
+ };
+ "slide-1.1.6" = {
+ name = "slide";
+ packageName = "slide";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz";
+ sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707";
+ };
+ };
+ "spdx-correct-3.1.0" = {
+ name = "spdx-correct";
+ packageName = "spdx-correct";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz";
+ sha512 = "lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==";
+ };
+ };
+ "spdx-exceptions-2.2.0" = {
+ name = "spdx-exceptions";
+ packageName = "spdx-exceptions";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz";
+ sha512 = "2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==";
+ };
+ };
+ "spdx-expression-parse-3.0.0" = {
+ name = "spdx-expression-parse";
+ packageName = "spdx-expression-parse";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz";
+ sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==";
+ };
+ };
+ "spdx-license-ids-3.0.5" = {
+ name = "spdx-license-ids";
+ packageName = "spdx-license-ids";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz";
+ sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==";
+ };
+ };
+ "sshpk-1.16.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.16.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz";
+ sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==";
+ };
+ };
+ "ssri-5.3.0" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
+ sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
+ };
+ };
+ "string-width-1.0.2" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
+ sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ };
+ };
+ "string_decoder-1.1.1" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
+ sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
+ };
+ };
+ "strip-ansi-3.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
+ sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ };
+ };
+ "tar-4.4.13" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.4.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz";
+ sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==";
+ };
+ };
+ "temp-0.9.0" = {
+ name = "temp";
+ packageName = "temp";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/temp/-/temp-0.9.0.tgz";
+ sha512 = "YfUhPQCJoNQE5N+FJQcdPz63O3x3sdT4Xju69Gj4iZe0lBKOtnAMi0SLj9xKhGkcGhsxThvTJ/usxtFPo438zQ==";
+ };
+ };
+ "tough-cookie-2.4.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz";
+ sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==";
+ };
+ };
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
+ };
+ };
+ "tweetnacl-0.14.5" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
+ sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
+ };
+ };
+ "typedarray-0.0.6" = {
+ name = "typedarray";
+ packageName = "typedarray";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
+ sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
+ };
+ };
+ "uid-number-0.0.5" = {
+ name = "uid-number";
+ packageName = "uid-number";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.5.tgz";
+ sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e";
+ };
+ };
+ "uri-js-4.2.2" = {
+ name = "uri-js";
+ packageName = "uri-js";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
+ sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
+ };
+ };
+ "util-deprecate-1.0.2" = {
+ name = "util-deprecate";
+ packageName = "util-deprecate";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
+ sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ };
+ };
+ "uuid-3.3.3" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz";
+ sha512 = "pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==";
+ };
+ };
+ "validate-npm-package-license-3.0.4" = {
+ name = "validate-npm-package-license";
+ packageName = "validate-npm-package-license";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
+ sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
+ };
+ };
+ "validate-npm-package-name-3.0.0" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ };
+ };
+ "verror-1.10.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
+ sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ };
+ };
+ "walk-2.3.14" = {
+ name = "walk";
+ packageName = "walk";
+ version = "2.3.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz";
+ sha512 = "5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==";
+ };
+ };
+ "wide-align-1.1.3" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
+ sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
+ };
+ };
+ "wrappy-1.0.2" = {
+ name = "wrappy";
+ packageName = "wrappy";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
+ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
+ };
+ };
+ "yallist-3.1.1" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz";
+ sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==";
+ };
+ };
+ };
+in
+{
+ node2nix = nodeEnv.buildNodePackage {
+ name = "node2nix";
+ packageName = "node2nix";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node2nix/-/node2nix-1.7.0.tgz";
+ sha512 = "p9lcFtr02Ryoo0FqNNGJ7lklDzVCT1vHHQ0Qg81SdbSQ+Ib4DwzAItJSy8EMwUvDdim1o9K3wMQljURxApvItg==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."ajv-6.10.2"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.3.1"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.1.1"
+ sources."builtins-1.0.3"
+ sources."caseless-0.12.0"
+ sources."chownr-1.1.3"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.8"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."config-chain-1.1.12"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."findit-2.0.0"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ (sources."fs-extra-0.6.4" // {
+ dependencies = [
+ sources."mkdirp-0.3.5"
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."fs-minipass-1.2.7"
+ (sources."fs.extra-1.3.2" // {
+ dependencies = [
+ sources."mkdirp-0.3.5"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.5"
+ sources."graceful-fs-4.2.2"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.3"
+ sources."has-unicode-2.0.1"
+ sources."hosted-git-info-2.8.5"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.5"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-1.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-db-1.40.0"
+ sources."mime-types-2.1.24"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
+ sources."mkdirp-0.5.1"
+ sources."ncp-0.4.2"
+ sources."nijs-0.0.25"
+ sources."nopt-3.0.6"
+ (sources."normalize-package-data-2.5.0" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ (sources."npm-package-arg-6.1.1" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ (sources."npm-registry-client-8.6.0" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ (sources."npmconf-2.1.3" // {
+ dependencies = [
+ sources."once-1.3.3"
+ sources."semver-4.3.6"
+ ];
+ })
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."optparse-1.0.5"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.6"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.1"
+ sources."proto-list-1.2.4"
+ sources."psl-1.4.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ (sources."readable-stream-2.3.6" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."request-2.88.0"
+ sources."resolve-1.12.0"
+ sources."retry-0.10.1"
+ sources."rimraf-2.6.3"
+ sources."safe-buffer-5.2.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-6.1.3"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slasp-0.0.4"
+ sources."slide-1.1.6"
+ sources."spdx-correct-3.1.0"
+ sources."spdx-exceptions-2.2.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.5"
+ sources."sshpk-1.16.1"
+ sources."ssri-5.3.0"
+ sources."string-width-1.0.2"
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."strip-ansi-3.0.1"
+ sources."tar-4.4.13"
+ sources."temp-0.9.0"
+ (sources."tough-cookie-2.4.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."uid-number-0.0.5"
+ sources."uri-js-4.2.2"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.3"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."walk-2.3.14"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ sources."yallist-3.1.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Generate Nix expressions to build NPM packages";
+ homepage = https://github.com/svanderburg/node2nix;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/ocaml-modules/sawja/default.nix b/pkgs/development/ocaml-modules/sawja/default.nix
index 01bc71928469..d0dba6c2ceec 100644
--- a/pkgs/development/ocaml-modules/sawja/default.nix
+++ b/pkgs/development/ocaml-modules/sawja/default.nix
@@ -1,10 +1,10 @@
-{stdenv, fetchurl, which, perl, ocaml, findlib, javalib, camlp4 }:
+{stdenv, fetchurl, which, perl, ocaml, findlib, javalib }:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
let
pname = "sawja";
- version = "1.5.6";
+ version = "1.5.7";
webpage = "http://sawja.inria.fr/";
in
stdenv.mkDerivation {
@@ -12,11 +12,11 @@ stdenv.mkDerivation {
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchurl {
- url = https://gforge.inria.fr/frs/download.php/file/37819/sawja-1.5.6.tar.bz2;
- sha256 = "0dkfdc8h94r7kj4p8q57fz7fssypgmjrix8xff0va7x1nya5sdp3";
+ url = https://gforge.inria.fr/frs/download.php/file/38117/sawja-1.5.7.tar.bz2;
+ sha256 = "08xv1bq4pragc1g93w4dnbn0mighcjwfp3ixj9jzmhka2vzqm4cc";
};
- buildInputs = [ which perl ocaml findlib camlp4 ];
+ buildInputs = [ which perl ocaml findlib ];
patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];
diff --git a/pkgs/development/python-modules/blivet/default.nix b/pkgs/development/python-modules/blivet/default.nix
index 1c86c02f7a88..9bf93fe8c380 100644
--- a/pkgs/development/python-modules/blivet/default.nix
+++ b/pkgs/development/python-modules/blivet/default.nix
@@ -4,7 +4,6 @@
let
pyenable = { enablePython = true; };
- selinuxWithPython = libselinux.override pyenable;
cryptsetupWithPython = cryptsetup.override pyenable;
in buildPythonPackage rec {
pname = "blivet";
@@ -31,7 +30,7 @@ in buildPythonPackage rec {
'';
propagatedBuildInputs = [
- pykickstart pyparted pyblock pyudev selinuxWithPython.py cryptsetupWithPython
+ pykickstart pyparted pyblock pyudev libselinux cryptsetupWithPython
six
];
diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix
index a828b00822cb..a91be0e13ddb 100644
--- a/pkgs/development/python-modules/bpython/default.nix
+++ b/pkgs/development/python-modules/bpython/default.nix
@@ -12,7 +12,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ];
postInstall = ''
- substituteInPlace "$out/share/applications/bpython.desktop" \
+ substituteInPlace "$out/share/applications/org.bpython-interpreter.bpython.desktop" \
--replace "Exec=/usr/bin/bpython" "Exec=$out/bin/bpython"
'';
diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix
index 6941e1117bdc..17531f1406d1 100644
--- a/pkgs/development/python-modules/cherrypy/default.nix
+++ b/pkgs/development/python-modules/cherrypy/default.nix
@@ -7,29 +7,24 @@
buildPythonPackage rec {
pname = "cherrypy";
- version = "18.1.2";
+ version = "18.3.0";
disabled = !isPy3k;
src = fetchPypi {
pname = "CherryPy";
inherit version;
- sha256 = "1w3hpsg7q8shdmscmbqk00w90lcw3brary7wl1a56k5h7nx33pj8";
+ sha256 = "0q6cs4vrv0rwim4byxfizrlp4h6hmwg3n4baz0ga66vvgiz6hgk8";
};
- # Remove patches once 96b34df and 14c12d2
+ # Remove patches once 88d2163 and 713f672
# become part of a release - they're currently only present in master.
- # ref: https://github.com/cherrypy/cherrypy/pull/1791
+ # ref: https://github.com/cherrypy/cherrypy/pull/1820
patches = [
(fetchpatch {
- name = "pytest5-1.patch";
- url = "https://github.com/cherrypy/cherrypy/commit/96b34dfea7853b0189bc0a3878b6ddff0d4e505c.patch";
- sha256 = "0zy53mahffgkpd844118b42lsk5lkjmig70d60x1i46w6gnr61mi";
- })
- (fetchpatch {
- name = "pytest5-2.patch";
- url = "https://github.com/cherrypy/cherrypy/commit/14c12d2420a4b3765bb241250bd186e93b2f25eb.patch";
- sha256 = "0ihcz7b5myn923rq5665b98pz52hnf6fcys2y2inf23r3i07scyz";
+ name = "test_HTTP11_Timeout.patch";
+ url = "https://github.com/cherrypy/cherrypy/commit/88d21630f68090c56d07000cabb6df4f1b612a71.patch";
+ sha256 = "1i6a3qs3ijyd9rgsxb8axigkzdlmr5sl3ljif9rvn0d90211bzwh";
})
];
diff --git a/pkgs/development/python-modules/labelbox/default.nix b/pkgs/development/python-modules/labelbox/default.nix
new file mode 100644
index 000000000000..18578da764ef
--- /dev/null
+++ b/pkgs/development/python-modules/labelbox/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, requests
+, jinja2
+, pillow
+, rasterio
+, shapely
+}:
+
+buildPythonPackage rec {
+ pname = "labelbox";
+ version = "2.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "f97f01bf030b115d8b7f7b12a10ec5efe54750ad66b6b3567550b517a543ad11";
+ };
+
+ propagatedBuildInputs = [ jinja2 requests pillow rasterio shapely ];
+
+ # Test cases are not running on pypi or GitHub
+ doCheck = false;
+
+ meta = with lib; {
+ homepage = https://github.com/Labelbox/Labelbox;
+ description = "Platform API for LabelBox";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ rakesh4g ];
+ };
+}
diff --git a/pkgs/development/python-modules/minio/default.nix b/pkgs/development/python-modules/minio/default.nix
index 966255dade26..623a191bbb8e 100644
--- a/pkgs/development/python-modules/minio/default.nix
+++ b/pkgs/development/python-modules/minio/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi
-, urllib3, python-dateutil , pytz, faker, mock, nose }:
+, urllib3, future, python-dateutil , pytz, faker, mock, nose }:
buildPythonPackage rec {
pname = "minio";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
disabled = !isPy3k;
checkInputs = [ faker mock nose ];
- propagatedBuildInputs = [ urllib3 python-dateutil pytz ];
+ propagatedBuildInputs = [ urllib3 python-dateutil pytz future ];
meta = with lib; {
description = "Simple APIs to access any Amazon S3 compatible object storage server";
diff --git a/pkgs/development/python-modules/nbdime/default.nix b/pkgs/development/python-modules/nbdime/default.nix
new file mode 100644
index 000000000000..25605a217274
--- /dev/null
+++ b/pkgs/development/python-modules/nbdime/default.nix
@@ -0,0 +1,69 @@
+{ lib, buildPythonPackage, fetchPypi, callPackage, isPy3k
+, hypothesis
+, setuptools_scm
+, six
+, attrs
+, py
+, setuptools
+, pytestcov
+, pytest-timeout
+, pytest-tornado
+, mock
+, tabulate
+, nbformat
+, jsonschema
+, pytest
+, colorama
+, pygments
+, tornado
+, requests
+, GitPython
+, notebook
+, jinja2
+}:
+
+buildPythonPackage rec {
+ pname = "nbdime";
+ version = "1.0.6";
+ disabled = !isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "00nywb69kp9i0wl5mczgwqc5db8v70ihr9cjbwqppd2jkx4vf34j";
+ };
+
+ checkInputs = [
+ hypothesis
+ pytestcov
+ pytest-timeout
+ pytest-tornado
+ jsonschema
+ mock
+ tabulate
+ pytest
+ ];
+
+ nativeBuildInputs = [ setuptools_scm ];
+
+ propagatedBuildInputs = [
+ attrs
+ py
+ setuptools
+ six
+ nbformat
+ colorama
+ pygments
+ tornado
+ requests
+ GitPython
+ notebook
+ jinja2
+ ];
+
+ meta = with lib; {
+ homepage = https://github.com/jupyter/nbdime;
+ description = "Tools for diffing and merging of Jupyter notebooks.";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ tbenst ];
+ };
+}
diff --git a/pkgs/development/python-modules/nix-prefetch-github/default.nix b/pkgs/development/python-modules/nix-prefetch-github/default.nix
new file mode 100644
index 000000000000..71a7701c0194
--- /dev/null
+++ b/pkgs/development/python-modules/nix-prefetch-github/default.nix
@@ -0,0 +1,32 @@
+{ fetchPypi
+, lib
+, buildPythonPackage
+, attrs
+, click
+, effect
+, jinja2
+}:
+
+buildPythonPackage rec {
+ pname = "nix-prefetch-github";
+ version = "2.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1jkvmj33xinff0sb47yg33n131yi93pyq86skqc78xd38j6c8q9s";
+ };
+
+ propagatedBuildInputs = [
+ attrs
+ click
+ effect
+ jinja2
+ ];
+
+ meta = with lib; {
+ description = "Prefetch sources from github";
+ homepage = https://github.com/seppeljordan/nix-prefetch-github;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ seppeljordan ];
+ };
+}
diff --git a/pkgs/development/python-modules/opentracing/default.nix b/pkgs/development/python-modules/opentracing/default.nix
new file mode 100644
index 000000000000..8e771f2d46a8
--- /dev/null
+++ b/pkgs/development/python-modules/opentracing/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy27
+, futures
+, gevent
+, mock
+, pytest
+, tornado }:
+
+buildPythonPackage rec {
+ pname = "opentracing";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "cfd231ba5c58f90bc277787e62861eb0c6e4af76e42957bec240bbdf71fb7e0e";
+ };
+
+ propagatedBuildInputs = lib.optional isPy27 futures;
+
+ checkInputs = [ gevent mock pytest tornado ];
+
+ checkPhase = ''
+ pytest
+ '';
+
+ meta = with lib; {
+ homepage = https://github.com/opentracing/opentracing-python;
+ description = "Platform API for OpenTracing";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ rakesh4g ];
+ };
+}
diff --git a/pkgs/development/python-modules/parsley/default.nix b/pkgs/development/python-modules/parsley/default.nix
new file mode 100644
index 000000000000..17e05b6027f2
--- /dev/null
+++ b/pkgs/development/python-modules/parsley/default.nix
@@ -0,0 +1,22 @@
+{ buildPythonPackage
+, fetchPypi
+, lib
+}:
+
+buildPythonPackage rec {
+ pname = "Parsley";
+ version = "1.3";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
+ };
+ # Tests fail although the package works just fine. Unfortunately
+ # the tests as run by the upstream CI server travis.org are broken.
+ doCheck = false;
+ meta = with lib; {
+ license = licenses.mit;
+ homepage = "https://launchpad.net/parsley";
+ description = "A parser generator library based on OMeta, and other useful parsing tools.";
+ maintainers = with maintainers; [ seppeljordan ];
+ };
+}
diff --git a/pkgs/development/python-modules/py3status/default.nix b/pkgs/development/python-modules/py3status/default.nix
index 142c7cc22570..79b80fb11f0c 100644
--- a/pkgs/development/python-modules/py3status/default.nix
+++ b/pkgs/development/python-modules/py3status/default.nix
@@ -9,6 +9,7 @@
, pygobject3
, pyserial
, setuptools
+, dbus-python
, file
, acpi
@@ -32,7 +33,7 @@ buildPythonPackage rec {
doCheck = false;
propagatedBuildInputs = [
- pytz requests tzlocal i3ipc pydbus pygobject3 pyserial setuptools
+ pytz requests tzlocal i3ipc pydbus pygobject3 pyserial setuptools dbus-python
];
buildInputs = [ file ];
prePatch = ''
diff --git a/pkgs/development/python-modules/pycryptopp/default.nix b/pkgs/development/python-modules/pycryptopp/default.nix
index 8bb472d8fde7..25ac99082c0a 100644
--- a/pkgs/development/python-modules/pycryptopp/default.nix
+++ b/pkgs/development/python-modules/pycryptopp/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, fetchpatch
, isPy3k
, setuptoolsDarcs
, darcsver
@@ -14,9 +15,19 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "08ad57a1a39b7ed23c173692281da0b8d49d98ad3dcc09f8cca6d901e142699f";
+ sha256 = "17v98bhh3nd6rkw0kk1xmnc9vm5ql0fji4in2wyd4zlvlfhmgb88";
};
+ patches = [
+ (fetchpatch {
+ name = "pycryptopp-cryptopp_6.patch";
+ url = "https://aur.archlinux.org/cgit/aur.git/plain/api_change.patch?h=pycryptopp&id=55f2973d6ca5e9e70438f2eadb7fb575b1a5048d";
+ sha256 = "0lvl2d32d2vkb0v6d39p9whda5bdrmlsjd41zy0x0znqm53a9i99";
+ stripLen = 1;
+ extraPrefix = "src/";
+ })
+ ];
+
# Prefer crypto++ library from the Nix store over the one that's included
# in the pycryptopp distribution.
preConfigure = "export PYCRYPTOPP_DISABLE_EMBEDDED_CRYPTOPP=1";
@@ -24,7 +35,7 @@ buildPythonPackage rec {
buildInputs = [ setuptoolsDarcs darcsver pkgs.cryptopp ];
meta = with stdenv.lib; {
- homepage = http://allmydata.org/trac/pycryptopp;
+ homepage = "https://tahoe-lafs.org/trac/pycryptopp";
description = "Python wrappers for the Crypto++ library";
license = licenses.gpl2Plus;
platforms = platforms.linux;
diff --git a/pkgs/development/python-modules/python-efl/default.nix b/pkgs/development/python-modules/python-efl/default.nix
index beb57ac491af..5cf1efc49b7e 100644
--- a/pkgs/development/python-modules/python-efl/default.nix
+++ b/pkgs/development/python-modules/python-efl/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "python-efl";
- version = "1.22.0";
+ version = "1.23.0";
src = fetchurl {
url = "http://download.enlightenment.org/rel/bindings/python/${pname}-${version}.tar.xz";
- sha256 = "1qhy63c3fs2bxkx2np5z14hyxbr12ii030crsjnhpbyw3mic0s63";
+ sha256 = "16yn6a1b9167nfmryyi44ma40m20ansfpwgrvqzfvwix7qaz9pib";
};
nativeBuildInputs = [ pkgconfig ];
@@ -32,6 +32,6 @@ buildPythonPackage rec {
homepage = https://phab.enlightenment.org/w/projects/python_bindings_for_efl/;
platforms = platforms.linux;
license = with licenses; [ gpl3 lgpl3 ];
- maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx ];
+ maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
};
}
diff --git a/pkgs/development/python-modules/python-vlc/default.nix b/pkgs/development/python-modules/python-vlc/default.nix
new file mode 100644
index 000000000000..2bf59a633411
--- /dev/null
+++ b/pkgs/development/python-modules/python-vlc/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools
+, vlc
+, substituteAll
+}:
+
+buildPythonPackage rec {
+ pname = "python-vlc";
+ version = "3.0.7110";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ydnqwwgpwq1kz1pjrc7629ljzdd30izymjylsbzzyq8pq6wl6w2";
+ };
+
+ propagatedBuildInputs = [
+ setuptools
+ ];
+
+ patches = [
+ (substituteAll {
+ src = ./vlc-paths.patch;
+ libvlcPath="${vlc}/lib/libvlc.so.5";
+ })
+ ];
+
+ doCheck = false; # no tests
+
+ meta = with lib; {
+ homepage = "https://wiki.videolan.org/PythonBinding";
+ maintainers = with maintainers; [ tbenst ];
+ description = "Python bindings for VLC, the cross-platform multimedia player and framework";
+ license = licenses.lgpl21Plus;
+ };
+}
diff --git a/pkgs/development/python-modules/python-vlc/vlc-paths.patch b/pkgs/development/python-modules/python-vlc/vlc-paths.patch
new file mode 100644
index 000000000000..0b1cf732711a
--- /dev/null
+++ b/pkgs/development/python-modules/python-vlc/vlc-paths.patch
@@ -0,0 +1,13 @@
+diff --git a/vlc.py b/vlc.py
+index e3245a5..cebec09 100644
+--- a/vlc.py
++++ b/vlc.py
+@@ -190,7 +190,7 @@ def find_lib():
+
+ else:
+ # All other OSes (linux, freebsd...)
+- p = find_library('vlc')
++ p = "@libvlcPath@"
+ try:
+ dll = ctypes.CDLL(p)
+ except OSError: # may fail
diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix
index 078727ddc9ac..cdf29cb565d3 100644
--- a/pkgs/development/python-modules/trezor/default.nix
+++ b/pkgs/development/python-modules/trezor/default.nix
@@ -11,6 +11,7 @@
, libusb1
, rlp
, shamir-mnemonic
+, trezor-udev-rules
}:
buildPythonPackage rec {
@@ -24,7 +25,7 @@ buildPythonPackage rec {
sha256 = "cd8aafd70a281daa644c4a3fb021ffac20b7a88e86226ecc8bb3e78e1734a184";
};
- propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic ];
+ propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic trezor-udev-rules ];
checkInputs = [
pytest
diff --git a/pkgs/development/python-modules/worldengine/default.nix b/pkgs/development/python-modules/worldengine/default.nix
index 103e2fc8defd..81c09bf74253 100644
--- a/pkgs/development/python-modules/worldengine/default.nix
+++ b/pkgs/development/python-modules/worldengine/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, pythonOlder
+, isPy27
, fetchFromGitHub
, nose
, noise
@@ -48,6 +49,7 @@ buildPythonPackage rec {
# with python<3.5, unittest fails to discover tests because of their filenames
# so nose is used instead.
+ doCheck = !isPy27; # google namespace clash
checkInputs = stdenv.lib.optional (pythonOlder "3.5") [ nose ];
postCheck = stdenv.lib.optionalString (pythonOlder "3.5") ''
nosetests tests
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index 990a8fb85de0..afb23ed54383 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -277,6 +277,7 @@ let
KFKSDS = [ pkgs.gsl_1 ];
kza = [ pkgs.fftw.dev ];
magick = [ pkgs.imagemagick.dev ];
+ ModelMetrics = lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp;
mvabund = [ pkgs.gsl_1 ];
mwaved = [ pkgs.fftw.dev ];
ncdf4 = [ pkgs.netcdf ];
@@ -735,6 +736,11 @@ let
+ lib.optionalString stdenv.isDarwin " -fopenmp";
});
+ ModelMetrics = old.ModelMetrics.overrideDerivation (attrs: {
+ NIX_CFLAGS_COMPILE = attrs.NIX_CFLAGS_COMPILE
+ + lib.optionalString stdenv.isDarwin " -fopenmp";
+ });
+
rpf = old.rpf.overrideDerivation (attrs: {
patchPhase = "patchShebangs configure";
});
diff --git a/pkgs/development/tools/analysis/brakeman/default.nix b/pkgs/development/tools/analysis/brakeman/default.nix
index 9c3efd02de03..121e1597eb77 100644
--- a/pkgs/development/tools/analysis/brakeman/default.nix
+++ b/pkgs/development/tools/analysis/brakeman/default.nix
@@ -4,8 +4,8 @@ buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "brakeman";
- version = "4.6.1";
- source.sha256 = "04chxflc5n6q0kz93c9dc6jwqrz0mrrlpm4iqncb39yyvg4ghcbf";
+ version = "4.7.1";
+ source.sha256 = "149ny2n82hzxw4g8xnimjavs2niq14wl9kwq8zlvadavdg4g9ind";
meta = with lib; {
description = "Static analysis security scanner for Ruby on Rails";
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index f3dd54ac1217..b309f559f366 100644
--- a/pkgs/development/tools/analysis/flow/default.nix
+++ b/pkgs/development/tools/analysis/flow/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "flow";
- version = "0.110.0";
+ version = "0.111.0";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "refs/tags/v${version}";
- sha256 = "0w0z4pgwwvi12kvfg5xdjc83qw030a0c58cgr5rz3xzw2pgbdfm2";
+ sha256 = "17w26b17n81kc1igmr6dgm6y2aa1ng0cbhbhwwz3iwsf0dm6db1l";
};
installPhase = ''
diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix
index cc6930fce137..667f689b8e73 100644
--- a/pkgs/development/tools/analysis/radare2/default.nix
+++ b/pkgs/development/tools/analysis/radare2/default.nix
@@ -110,12 +110,12 @@ in {
#
# DO NOT EDIT! Automatically generated by ./update.py
radare2 = generic {
- version_commit = "22775";
- gittap = "3.9.0";
- gittip = "2afe613741d07f35a5d80bc4e2dade2113ae6a74";
- rev = "3.9.0";
- version = "3.9.0";
- sha256 = "0jzz3fzcr9xm8q6n86mhrf30h6cbh147ss9h993cm34fd4d5z7ah";
+ version_commit = "23159";
+ gittap = "4.0.0";
+ gittip = "e97047299af43e9b4e658c246816a2b48bdc087e";
+ rev = "4.0.0";
+ version = "4.0.0";
+ sha256 = "15b79hska3skrlbrig7fl405kmbvy4410m93lfsfmkwxs0wr9jis";
cs_ver = "4.0.1";
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
};
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index 829636e06d29..8bac62b07c19 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
{ lib, buildGoPackage, fetchFromGitLab, fetchurl }:
let
- version = "12.4.0";
+ version = "12.4.1";
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
docker_x86_64 = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz";
- sha256 = "0x0i60l8w3iwf7kn1wi8hh87cc3rvxixi2bizd5807aw22g9z5pd";
+ sha256 = "0y68x5hl2gip7bpcgjychf5qd1535ry4qkjb3fybm2pb81qy2gy7";
};
docker_arm = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
- sha256 = "1a2z2m4c2cixibjgh6xv9yi760n10v374nb9jl2pf62rlpqkwz83";
+ sha256 = "1nb0cspjqasyg7bppyrf3m3rg1c26iaw6h9dpnq2m7f60dciyiq2";
};
in
buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
- sha256 = "0sdf3w5iq08dyhn2b9rz0sssxq4yfbki2z834z5l02wzjl8h2nk6";
+ sha256 = "1smn7b1dvqvaka23a7zhnlnpbqw40hpdn8vvj1r3ivx20khpsnhn";
};
patches = [ ./fix-shell-path.patch ];
diff --git a/pkgs/development/tools/misc/terracognita/default.nix b/pkgs/development/tools/misc/terracognita/default.nix
index 832a2285569d..e18f32fb07cd 100644
--- a/pkgs/development/tools/misc/terracognita/default.nix
+++ b/pkgs/development/tools/misc/terracognita/default.nix
@@ -2,16 +2,18 @@
buildGoModule rec {
pname = "terracognita";
- version = "0.1.6";
+ version = "0.2.0";
src = fetchFromGitHub {
owner = "cycloidio";
repo = pname;
rev = "v${version}";
- sha256 = "0ljh9dyn919k5f0yaca5an2vczj8cd5cb6qb4i5bdgmlh3wijiag";
+ sha256 = "06qw3mycgqkj2f5n6lm9xb2c21xjim2qlwizxsdc5hjrwbasl2q0";
};
- modSha256 = "1ssz6rhdqma79x75qsxpa9is5zw1nlc0rv1h23dfsk8vla3p84ml";
+ modSha256 = "0sjs1dd8z8brxj5wwfrwimnlscy7i6flc4kq4576zwrcjg6pjvkr";
+
+ buildFlagsArray = [ "-ldflags=-s -w -X github.com/cycloidio/terracognita/cmd.Version=${version}" ];
meta = with lib; {
description = "Reads from existing Cloud Providers (reverse Terraform) and generates your infrastructure as code on Terraform configuration";
diff --git a/pkgs/development/tools/pypi2nix/default.nix b/pkgs/development/tools/pypi2nix/default.nix
index 7475abc64573..3faaa48458e9 100644
--- a/pkgs/development/tools/pypi2nix/default.nix
+++ b/pkgs/development/tools/pypi2nix/default.nix
@@ -1,107 +1,24 @@
-{ stdenv, fetchFromGitHub, fetchurl, pythonPackages, zip, makeWrapper, nix, nix-prefetch-git
-, nix-prefetch-hg
+{ python3
}:
+with python3;
-let
-
- version = "1.8.1";
-
- src = fetchFromGitHub {
- owner = "garbas";
- repo = "pypi2nix";
- rev = "v${version}";
- sha256 = "039a2ys7ijzi2sa2haa6a8lbhncvd1wfsi6gcy9vm02gi31ghzyb";
- };
-
- click = fetchurl {
- url = "https://pypi.python.org/packages/95/d9/c3336b6b5711c3ab9d1d3a80f1a3e2afeb9d8c02a7166462f6cc96570897/click-6.7.tar.gz";
- sha256 = "02qkfpykbq35id8glfgwc38yc430427yd05z1wc5cnld8zgicmgi";
- };
-
- requests = fetchurl {
- url = "https://pypi.python.org/packages/16/09/37b69de7c924d318e51ece1c4ceb679bf93be9d05973bb30c35babd596e2/requests-2.13.0.tar.gz";
- sha256 = "1s0wg4any4dsv5l3hqjxqk2zgb7pdbqhy9rhc8kh3aigfq4ws8jp";
- };
-
-in stdenv.mkDerivation rec {
+pkgs.buildPythonApplication rec {
pname = "pypi2nix";
- inherit version;
- srcs = [
- src
- click
- requests
- ];
- buildInputs = [
- pythonPackages.python pythonPackages.flake8 pythonPackages.setuptools
- zip makeWrapper nix.out nix-prefetch-git nix-prefetch-hg
- ];
-
- sourceRoot = ".";
-
- postUnpack = ''
- mkdir -p $out/pkgs
-
- mv click-*/click $out/pkgs/click
- mv requests-*/requests $out/pkgs/
-
- if [ -z "$IN_NIX_SHELL" ]; then
- if [ -e git-export ]; then
- mv git-export/src/pypi2nix $out/pkgs/pypi2nix
- else
- mv source/src/pypi2nix $out/pkgs/pypi2nix
- fi
- fi
- '';
-
- patchPhase = ''
- sed -i -e "s|default='nix-shell',|default='${nix.out}/bin/nix-shell',|" $out/pkgs/pypi2nix/cli.py
- sed -i -e "s|nix-prefetch-git|${nix-prefetch-git}/bin/nix-prefetch-git|" $out/pkgs/pypi2nix/stage2.py
- sed -i -e "s|nix-prefetch-hg|${nix-prefetch-hg}/bin/nix-prefetch-hg|" $out/pkgs/pypi2nix/stage2.py
- '';
-
- commonPhase = ''
- mkdir -p $out/bin
-
- echo "#!${pythonPackages.python.interpreter}" > $out/bin/pypi2nix
- echo "import pypi2nix.cli" >> $out/bin/pypi2nix
- echo "pypi2nix.cli.main()" >> $out/bin/pypi2nix
-
- chmod +x $out/bin/pypi2nix
-
- export PYTHONPATH=$out/pkgs:$PYTHONPATH
- '';
-
- # flake8 doesn't run on python3
- doCheck = false;
- checkPhase = ''
- flake8 ${src}/src
- '';
-
- installPhase = commonPhase + ''
- wrapProgram $out/bin/pypi2nix \
- --prefix PYTHONPATH : "$PYTHONPATH" \
- --prefix PATH : "${nix-prefetch-git}/bin:${nix-prefetch-hg}/bin"
- '';
-
- shellHook = ''
- export home=`pwd`
- export out=/tmp/`pwd | md5sum | cut -f 1 -d " "`-$name
-
- rm -rf $out
- mkdir -p $out
-
- cd $out
- runHook unpackPhase
- runHook commonPhase
- cd $home
-
- export PATH=$out/bin:$PATH
- export PYTHONPATH=`pwd`/src:$PYTHONPATH
- '';
-
- meta = {
- homepage = https://github.com/garbas/pypi2nix;
- description = "A tool that generates nix expressions for your python packages, so you don't have to.";
- maintainers = with stdenv.lib.maintainers; [ ];
+ version = "2.0.0";
+ src = pkgs.fetchPypi {
+ inherit pname version;
+ sha256 = "0w9z07kdnfs96230jag8xgz4wx337bb3q3bvqxn3r31x8fsmz6rr";
};
+ checkInputs = with pkgs; [ pytest ];
+ propagatedBuildInputs = with pkgs; [
+ attrs
+ click
+ jinja2
+ nix-prefetch-github
+ packaging
+ parsley
+ setuptools
+ toml
+ ];
+ checkPhase = "${python3.interpreter} -m pytest unittests -m 'not nix'";
}
diff --git a/pkgs/development/tools/rubocop/Gemfile.lock b/pkgs/development/tools/rubocop/Gemfile.lock
index df2f0aae8ead..7c523c3ea15c 100644
--- a/pkgs/development/tools/rubocop/Gemfile.lock
+++ b/pkgs/development/tools/rubocop/Gemfile.lock
@@ -3,11 +3,11 @@ GEM
specs:
ast (2.4.0)
jaro_winkler (1.5.3)
- parallel (1.17.0)
- parser (2.6.4.1)
+ parallel (1.18.0)
+ parser (2.6.5.0)
ast (~> 2.4.0)
rainbow (3.0.0)
- rubocop (0.75.0)
+ rubocop (0.76.0)
jaro_winkler (~> 1.5.1)
parallel (~> 1.10)
parser (>= 2.6)
@@ -24,4 +24,4 @@ DEPENDENCIES
rubocop
BUNDLED WITH
- 1.17.2
+ 1.17.3
diff --git a/pkgs/development/tools/rubocop/gemset.nix b/pkgs/development/tools/rubocop/gemset.nix
index d113120e3d62..5defb56109ff 100644
--- a/pkgs/development/tools/rubocop/gemset.nix
+++ b/pkgs/development/tools/rubocop/gemset.nix
@@ -24,10 +24,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r";
+ sha256 = "091p5zrzzyg3fg48jhdz9lzjf2r9r3akra2cd46yd4nza3xgxshz";
type = "gem";
};
- version = "1.17.0";
+ version = "1.18.0";
};
parser = {
dependencies = ["ast"];
@@ -35,10 +35,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1axig0czm40ydbnay9b9qzzavszx2p7knidbwim8lgcpfm4ynxdw";
+ sha256 = "09davv4ld6caqlczw64vhwf8hr41apys3cj8v2h96yxs4qg1m2iw";
type = "gem";
};
- version = "2.6.4.1";
+ version = "2.6.5.0";
};
rainbow = {
groups = ["default"];
@@ -56,10 +56,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1x0hc3b9admal4684cfa1rh778khsydkv1dwf18cxyvb3v2h9rab";
+ sha256 = "07x51ixlx76y194xsszh5lbkaqakz44ykbrjxg3qaggbs18790q0";
type = "gem";
};
- version = "0.75.0";
+ version = "0.76.0";
};
ruby-progressbar = {
groups = ["default"];
diff --git a/pkgs/development/tools/rust/cargo-watch/default.nix b/pkgs/development/tools/rust/cargo-watch/default.nix
index 5ea935babd19..9f8577dc19de 100644
--- a/pkgs/development/tools/rust/cargo-watch/default.nix
+++ b/pkgs/development/tools/rust/cargo-watch/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-watch";
- version = "7.2.1";
+ version = "7.2.2";
src = fetchFromGitHub {
owner = "passcod";
repo = pname;
rev = "v${version}";
- sha256 = "13zjsypj0ay9xb5j5fhl3yfn57kp2yngl138vmnyfk1h7gjdxpk3";
+ sha256 = "1ld45xqmmi13x1wgwm9fa7sck2jiw34pr9xzdwrx5ygl81hf3plv";
};
- cargoSha256 = "1c3h9il3y0swvcdrrqgh5r7di522i1cc8zk1kfmx97chy8bhsqvg";
+ cargoSha256 = "1g8qg7nicdan0w39rfzin573lgx3sbfr3b9hn8k3vgyq0jg6ywh7";
buildInputs = lib.optional stdenv.isDarwin CoreServices;
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index b0ede63fb6c1..f88a6ceaeb34 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec{
pname = "cypress";
- version = "3.4.1";
+ version = "3.5.0";
src = fetchzip {
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
- sha256 = "1gyl5c86gr5sv6z5rkg0afdxqrmsxmyrimm1p5q6jlrlyzki1bfs";
+ sha256 = "1w1nqa0j3bzjr000d4jlr34d1asdc1fv81pq831s3wl55hyqbij6";
};
# don't remove runtime deps
@@ -26,7 +26,11 @@ stdenv.mkDerivation rec{
mkdir -p $out/bin $out/opt/cypress
cp -vr * $out/opt/cypress/
# Let's create the file binary_state ourselves to make the npm package happy on initial verification.
- echo '{"verified": true}' > $out/opt/cypress/binary_state.json
+ # Cypress now verifies version by reading bin/resources/app/package.json
+ mkdir -p $out/bin/resources/app
+ printf '{"version":"%b"}' $version > $out/bin/resources/app/package.json
+ # Cypress now looks for binary_state.json in bin
+ echo '{"verified": true}' > $out/bin/binary_state.json
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
'';
diff --git a/pkgs/development/web/nodejs/disable-libatomic-darwin.patch b/pkgs/development/web/nodejs/disable-libatomic-darwin-12_x.patch
similarity index 100%
rename from pkgs/development/web/nodejs/disable-libatomic-darwin.patch
rename to pkgs/development/web/nodejs/disable-libatomic-darwin-12_x.patch
diff --git a/pkgs/development/web/nodejs/disable-libatomic-darwin-13_x.patch b/pkgs/development/web/nodejs/disable-libatomic-darwin-13_x.patch
new file mode 100644
index 000000000000..b3b2c8b0fb65
--- /dev/null
+++ b/pkgs/development/web/nodejs/disable-libatomic-darwin-13_x.patch
@@ -0,0 +1,11 @@
+--- a/node.gyp
++++ b/node.gyp
+@@ -289,7 +289,7 @@
+ '-Wl,-bnoerrmsg',
+ ],
+ }],
+- ['OS in ("linux", "mac") and llvm_version != "0.0"', {
++ ['OS=="linux" and llvm_version!=0', {
+ 'libraries': ['-latomic'],
+ }],
+ ],
diff --git a/pkgs/development/web/nodejs/v12.nix b/pkgs/development/web/nodejs/v12.nix
index 37a69eb4ddd7..bed3127ee4bf 100644
--- a/pkgs/development/web/nodejs/v12.nix
+++ b/pkgs/development/web/nodejs/v12.nix
@@ -8,5 +8,5 @@ in
version = "12.13.0";
sha256 = "1xmy73q3qjmy68glqxmfrk6baqk655py0cic22h1h0v7rx0iaax8";
- patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin.patch ];
+ patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin-12_x.patch ];
}
diff --git a/pkgs/development/web/nodejs/v13.nix b/pkgs/development/web/nodejs/v13.nix
new file mode 100644
index 000000000000..37d42e0ee771
--- /dev/null
+++ b/pkgs/development/web/nodejs/v13.nix
@@ -0,0 +1,12 @@
+{ stdenv, callPackage, openssl, icu, enableNpm ? true }:
+
+let
+ buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
+in
+ buildNodejs {
+ inherit enableNpm;
+ version = "13.0.1";
+ sha256 = "1n9w1kvdzdg2j0a41wdkqcl893209lc018sd49xpy1cnr169h6vr";
+
+ patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin-13_x.patch ];
+ }
diff --git a/pkgs/games/openarena/default.nix b/pkgs/games/openarena/default.nix
index 63abc5d609c0..1e839c46f0fe 100644
--- a/pkgs/games/openarena/default.nix
+++ b/pkgs/games/openarena/default.nix
@@ -16,33 +16,28 @@ stdenv.mkDerivation {
gameDir = "$out/openarena-$version";
interpreter = "$(< \"$NIX_CC/nix-support/dynamic-linker\")";
libPath = stdenv.lib.makeLibraryPath [ SDL libglvnd libogg libvorbis curl openal ];
+ arch = {
+ "x86_64-linux" = "x86_64";
+ "i386-linux" = "i386";
+ }.${stdenv.hostPlatform.system};
in ''
mkdir -pv $out/bin
cd $out
unzip $src
- ${if stdenv.hostPlatform.system == "x86_64-linux" then ''
- patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.x86_64"
- makeWrapper "${gameDir}/openarena.x86_64" "$out/bin/openarena" \
- --prefix LD_LIBRARY_PATH : "${libPath}"
- patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.x86_64"
- makeWrapper "${gameDir}/oa_ded.x86_64" "$out/bin/openarena-server" \
- --prefix LD_LIBRARY_PATH : "${libPath}"
- '' else ''
- patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.i386"
- makeWrapper "${gameDir}/openarena.i386" "$out/bin/openarena" \
- --prefix LD_LIBRARY_PATH : "${libPath}"
- patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.i386"
- makeWrapper "${gameDir}/oa_ded.i386" "$out/bin/openarena-server" \
- --prefix LD_LIBRARY_PATH : "${libPath}"
- ''}
+ patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.${arch}"
+ patchelf --set-interpreter "${interpreter}" "${gameDir}/oa_ded.${arch}"
+
+ makeWrapper "${gameDir}/openarena.${arch}" "$out/bin/openarena" \
+ --prefix LD_LIBRARY_PATH : "${libPath}"
+ makeWrapper "${gameDir}/oa_ded.${arch}" "$out/bin/oa_ded"
'';
meta = {
description = "Crossplatform openarena client";
homepage = http://openarena.ws/;
maintainers = [ stdenv.lib.maintainers.wyvie ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = [ "i386-linux" "x86_64-linux" ];
license = stdenv.lib.licenses.gpl2;
};
}
diff --git a/pkgs/games/openrw/default.nix b/pkgs/games/openrw/default.nix
index f35077c084aa..368fba1499f6 100644
--- a/pkgs/games/openrw/default.nix
+++ b/pkgs/games/openrw/default.nix
@@ -1,20 +1,22 @@
{ stdenv, fetchgit, cmake, sfml, libGLU_combined, bullet, glm, libmad, xlibsWrapper, openal
-, SDL2, boost, ffmpeg }:
+, SDL2, boost, ffmpeg, Cocoa, OpenAL }:
stdenv.mkDerivation {
- version = "2017-09-17";
+ version = "2019-10-26";
pname = "openrw";
src = fetchgit {
url = "https://github.com/rwengine/openrw";
- rev = "11e90c61e56b60240251cd080f175ddff7d7a101";
- sha256 = "16qklk9yc4ssxxkicxvww4gmg1c7cm6vhyilyv287vhz1fq9sz49";
+ rev = "51b7264744d1aaa20de3b86a7a4e92a9930881ba";
+ sha256 = "04s088wfxkfmb4dxdvad611yxj8smxlnxdm5xy81zldfzybvx8dg";
fetchSubmodules = true;
};
+ nativeBuildInputs = [ cmake ];
+
buildInputs = [
- cmake sfml libGLU_combined bullet glm libmad xlibsWrapper openal SDL2 boost ffmpeg
- ];
+ sfml libGLU_combined bullet glm libmad xlibsWrapper openal SDL2 boost ffmpeg
+ ] ++ stdenv.lib.optionals stdenv.isDarwin [ OpenAL Cocoa ];
meta = with stdenv.lib; {
description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable";
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index 0fa80322d7ba..5aeec7cf13b1 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -123,6 +123,16 @@ in rec {
};
};
+ gruvbox = mkDerivation {
+ pluginName = "gruvbox";
+ rtpFilePath = "gruvbox-tpm.tmux";
+ src = fetchgit {
+ url = "https://github.com/egel/tmux-gruvbox";
+ rev = "6149fd8b5d6924925b4d5aa6935039780e94f3d6";
+ sha256 = "1ykr4yardavd0x7yfrnshd4b0gi8p31pji7i79ib0nss134zncpb";
+ };
+ };
+
logging = mkDerivation {
pluginName = "logging";
src = fetchgit {
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index f4baef73b4ea..e8e9702f9640 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -61,12 +61,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2019-10-21";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "w0rp";
repo = "ale";
- rev = "67d0ccc398ca7650bb2c774a94d098bee3049169";
- sha256 = "0n61iv8lv4kq2dzz36s2hv9srkn0qvxvyslyqgccz84cbcndmh9z";
+ rev = "2d9380d75c5c27a3241925d24ab3be8977a43207";
+ sha256 = "1xn9c8j3z7344a1cczpccig1hg1kzq286ch60n22jrm6fq732znc";
};
};
@@ -92,6 +92,17 @@ let
};
};
+ antonys-macro-repeater = buildVimPluginFrom2Nix {
+ pname = "antonys-macro-repeater";
+ version = "2017-09-10";
+ src = fetchFromGitHub {
+ owner = "ckarnell";
+ repo = "antonys-macro-repeater";
+ rev = "61784d86b2654f3e261b9cc33360c5197704e266";
+ sha256 = "1cq5r091qbxjs9s12f7bb2fdm43gxwpnnh2l8nhj0n69jfk7gblw";
+ };
+ };
+
argtextobj-vim = buildVimPluginFrom2Nix {
pname = "argtextobj-vim";
version = "2010-10-18";
@@ -314,23 +325,23 @@ let
coc-git = buildVimPluginFrom2Nix {
pname = "coc-git";
- version = "2019-10-22";
+ version = "2019-10-30";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-git";
- rev = "702c366bafd6d172427b7216936f209d58d818fc";
- sha256 = "0qc5gzyjg2pc328vf6jqycbgvq8qdczyd8g9dkigy6i81j4xd8za";
+ rev = "56d45aaef20356e750530f9f80c99cd2f9184ac1";
+ sha256 = "17rbrjp35jd6rw66js88qaki2hk0cm1bvylfzjngdbzbgjc1qz1h";
};
};
coc-go = buildVimPluginFrom2Nix {
pname = "coc-go";
- version = "2019-09-24";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "josa42";
repo = "coc-go";
- rev = "a03314978c6b94701ddfd614f70e52d63bfd4540";
- sha256 = "1awshnwsvrdxmh0xd1yqp3vnsva93i89frss0gym1szv15697j2q";
+ rev = "0f395b22aee6f99ba3cfc07d3faaf13edcb1ca96";
+ sha256 = "118nqx3k7frxvx0cz8w6k6sx905200aym2lqh0qajkg5m288vl75";
};
};
@@ -369,12 +380,12 @@ let
coc-java = buildVimPluginFrom2Nix {
pname = "coc-java";
- version = "2019-09-17";
+ version = "2019-10-30";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-java";
- rev = "7e3bdee15b28f5d7f3b1654429c89cb0d93436e5";
- sha256 = "0r17w00mbs1gshshm8c56cqi37z5i5vdk2sifs2clazlyn9rl6zm";
+ rev = "3195dd594389247e4bdb19d129e48846d9215f54";
+ sha256 = "1k354jh521fjm2xz05x1653g31bgmx3s0bpsraj516172k605qfr";
};
};
@@ -468,12 +479,12 @@ let
coc-rls = buildVimPluginFrom2Nix {
pname = "coc-rls";
- version = "2019-10-26";
+ version = "2019-10-28";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-rls";
- rev = "077d20acc8dc2d8cee3d58907b3837d41c215303";
- sha256 = "0vwx6bmc5qjxmn594w6sn0fzplv7dw6i2al4bq7cnw1b6h2k6lhz";
+ rev = "1e8610b2642232185b7e020651423d11001b7546";
+ sha256 = "18d2pxmifyacg7gki99bja7gjs7ycprsm3p6p7snf3dx3g5r4pqq";
};
};
@@ -611,12 +622,12 @@ let
coc-yank = buildVimPluginFrom2Nix {
pname = "coc-yank";
- version = "2019-07-29";
+ version = "2019-10-28";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-yank";
- rev = "3e89571841997d4f6a2814b3693e21d8848ee084";
- sha256 = "1pw1p3h2aqlldwl9qbiin7a1yzjl04i3dm6s86bpjhl1ixwkj3by";
+ rev = "636c8a3ff0fb4a950b72c626bf2075c20f7c0086";
+ sha256 = "1wz8vp558v3l1c4d3igz55iv673ypapjapyy9q3fcxya8b3qs09y";
};
};
@@ -788,12 +799,12 @@ let
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx-nvim";
- version = "2019-10-04";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "442fda4ab39a340052c173e414e03e10eb0c8244";
- sha256 = "1h8h97hvj5bjdwh5ixj6cpdc1xjnvnrwnykfpz460vqzn2wkcfj9";
+ rev = "0a42be58745b2b0a19f6d59ca6238d1dfc96a07b";
+ sha256 = "0hm3i66fni89khv8ik8xs36x5485yc2i0mn5fkhjl61ip417b13y";
};
};
@@ -832,12 +843,12 @@ let
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2019-10-16";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "15ee41069c8f5978e47d7aa845f4e21c7708b998";
- sha256 = "1yxf336db3y10wngngwx7z8r8y0fvdhp3xkza5xjbfbq0mh600c6";
+ rev = "18ab1648891e360345e1d9f3b004fb2eabf69ee7";
+ sha256 = "03pxdw9g2j0szvpncvxhwd2wx3v1fffx5il7ld3mkqm8ymi0b88l";
};
};
@@ -967,12 +978,12 @@ let
deoplete-nvim = buildVimPluginFrom2Nix {
pname = "deoplete-nvim";
- version = "2019-10-19";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deoplete.nvim";
- rev = "2a6236d9d73f2cbbde4b802787d37cb8cbca2b33";
- sha256 = "196kka23cidgbig86kvapzv58wqp5qgql8c0m1wkgig1v8gldssv";
+ rev = "ff09a7ab58e5271053c59825895d607316657023";
+ sha256 = "183wx20p3mmbxwbdyd5z9gxzhfrgjjl2swymmdw00bw5ys7j5w0r";
};
};
@@ -2577,12 +2588,12 @@ let
targets-vim = buildVimPluginFrom2Nix {
pname = "targets-vim";
- version = "2019-05-21";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "wellle";
repo = "targets.vim";
- rev = "a79447f261e4b8b4327557aa03726f3849334b84";
- sha256 = "0x6a9rmv220kncjgak6aw3gbf3sidnj6nijphnsm5360lvi3ck4w";
+ rev = "be309773998ca729213206950109a758be15b556";
+ sha256 = "0ravnykqlhw09cz5yyjm6k4kbikx39jagmmpj87q31pgf1rzycmx";
};
};
@@ -2776,12 +2787,12 @@ let
verilog_systemverilog-vim = buildVimPluginFrom2Nix {
pname = "verilog_systemverilog-vim";
- version = "2019-08-25";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "vhda";
repo = "verilog_systemverilog.vim";
- rev = "217b4cfcfbe8633693c9751cf3eeafe8c48e2846";
- sha256 = "11g2ybrxndssf6g1dxhx68gycfnkv2wmara6h7kwgy0sjn4r413x";
+ rev = "22b3d81f9b7146ddf1bd05c1b2f9407af14d3ed7";
+ sha256 = "12z5a4zkrajzdyf31a5l7hlyif5ywj8pab25x98hwqjs38x8lklf";
};
};
@@ -3447,12 +3458,12 @@ let
vim-eunuch = buildVimPluginFrom2Nix {
pname = "vim-eunuch";
- version = "2019-04-13";
+ version = "2019-10-26";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-eunuch";
- rev = "e066a0999e442d9d96f24ad9d203b1bd030ef72e";
- sha256 = "12n7fzgppiwqhqnxlbxmky1m1flb82kr4zlyggysgzz1lqb122zf";
+ rev = "a35d8ffe59e1ff7408bce67ce3301d3b04c7f7b6";
+ sha256 = "03if3ckai0ppgv1f5mxpbfvc7ns13k0m4f923k98hinnm04qbr9v";
};
};
@@ -3590,12 +3601,12 @@ let
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2019-10-26";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "0356edf6b8a82d6654e94d1669c9d9dd6c5507ab";
- sha256 = "1j9zfskkqdrligznn6wbncyqy2inaxg2ylw5w1whm2w5546gk3lr";
+ rev = "f6acae50ea4d8ec1bb1497cb886d80298b54831b";
+ sha256 = "04k9bmqzlrx9pvkjs51znbbrqxy416k6jl7ffdp892hacgvr8cnj";
};
};
@@ -3667,12 +3678,12 @@ let
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2019-10-22";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "2f7a00e9f2ac4ec3c49bfe6234ccd290bfb782ac";
- sha256 = "0b1j44gphfmpi13h9rxd0fn2z5wiwvg2mfihj8i0ij7265l1wq3q";
+ rev = "bbbf77153a319a52798a3c8f4a0235470cf35196";
+ sha256 = "1271079cipiida8kmh1d33x4z0lzs85izkr0pdxfhm0y51g2h55k";
};
};
@@ -3715,8 +3726,8 @@ let
src = fetchFromGitHub {
owner = "ludovicchabant";
repo = "vim-gutentags";
- rev = "aa67e48f6c071ef4179dc30ac24ddf93e5eb6338";
- sha256 = "1fasld18g0f397369axfw39n106gdyb02dm05v6qsd7cg8j7vxyv";
+ rev = "eb9e57f579d2ef747be25a7a4ec5add6fe5ca3d9";
+ sha256 = "0v46yxv6rv6x9zqsvahkjjwp8khzsz4il1rk34r6zlsy3w8d988d";
};
};
@@ -4097,12 +4108,12 @@ let
vim-ledger = buildVimPluginFrom2Nix {
pname = "vim-ledger";
- version = "2019-10-26";
+ version = "2019-10-30";
src = fetchFromGitHub {
owner = "ledger";
repo = "vim-ledger";
- rev = "e113a30ccca416fb8ae3f307e5f0d43a55e03597";
- sha256 = "1sqgna0qnrqkll33x1waaaazqn2rwklccksm91zsd9k6p3q2hcgv";
+ rev = "66718caab97f13d25813f91b8352c9ac75b3771e";
+ sha256 = "0ia9r212019d8jqrbs3nrn36mpc09gc81gf4dnv3hksn6knpdr8b";
};
};
@@ -4152,12 +4163,12 @@ let
vim-lsc = buildVimPluginFrom2Nix {
pname = "vim-lsc";
- version = "2019-10-25";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "natebosch";
repo = "vim-lsc";
- rev = "730d901164497f17b15a42d531b346752cc10765";
- sha256 = "1cq6rm46ak3z5jqja5w59x6387rvm5ksw04jgaln3fjp2k9zmllw";
+ rev = "d6bb42bf75bd5dfd28b1f3216749475f940abc5b";
+ sha256 = "0d68cajna2q92ikpyzbhbia6wq6v5n4pnz7zcw8bp4zayj5rv48c";
};
};
@@ -4383,12 +4394,12 @@ let
vim-pandoc = buildVimPluginFrom2Nix {
pname = "vim-pandoc";
- version = "2019-10-24";
+ version = "2019-10-28";
src = fetchFromGitHub {
owner = "vim-pandoc";
repo = "vim-pandoc";
- rev = "a17811fa598c04fa3bac5e72c5267d068b684953";
- sha256 = "0clvy08pw69d3h7n9jz9is8lr583a6f53672a2wic12krdrjjihb";
+ rev = "4f1d28c7c10376b8f03ea89e31be71419549fbb9";
+ sha256 = "1wc7fcamblpjym4vs38spdlpj58r0lm33c1fxzbrl107yj4902w3";
};
};
@@ -4416,12 +4427,12 @@ let
vim-parinfer = buildVimPluginFrom2Nix {
pname = "vim-parinfer";
- version = "2019-10-06";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "bhurlow";
repo = "vim-parinfer";
- rev = "ceb429049458d168a56ca9c6e30a3f3f305dee75";
- sha256 = "0a667ph1xlf7fblk2c54ff2pvsc3zfxzz85g778jrq0569zvm3fd";
+ rev = "fbe48d65ba98f062312b4af08d4d623725f36def";
+ sha256 = "0zzgrx2kc4j3nn81l07my9v4izy9hks96483qyxr4vhsznz1a1wn";
};
};
@@ -4570,12 +4581,12 @@ let
vim-quickrun = buildVimPluginFrom2Nix {
pname = "vim-quickrun";
- version = "2019-07-29";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "thinca";
repo = "vim-quickrun";
- rev = "008dd08aad2a544938acbbcf7cee6d3735ebd2fb";
- sha256 = "0azcw8p4z6kn6yprl0lbj186cg6kwkwfhfc2hgf6bia2ym33m25f";
+ rev = "4967eafcaf5bd09e4e008d4ce46f75d38fdfb8e4";
+ sha256 = "1il851k3j6cggh73mb3lbfnl1097q2laxywi7ym279axpp0ds7qi";
};
};
@@ -4834,12 +4845,12 @@ let
vim-startify = buildVimPluginFrom2Nix {
pname = "vim-startify";
- version = "2019-10-06";
+ version = "2019-10-27";
src = fetchFromGitHub {
owner = "mhinz";
repo = "vim-startify";
- rev = "520f27769573582db9b40ae14ae86ac1f6a60c97";
- sha256 = "11w28f038cw937wp5p3cykvab4xyhksvf158r2hgqd1i11qvq8ks";
+ rev = "bba214f6b39d782c15f2d97fbc98fd0d18ace909";
+ sha256 = "0cmqklc553wqxs72qnwqsp1nchsxi46kfyz01zr5bdxzjg4afyis";
};
};
@@ -5439,12 +5450,12 @@ let
xptemplate = buildVimPluginFrom2Nix {
pname = "xptemplate";
- version = "2019-07-31";
+ version = "2019-10-29";
src = fetchFromGitHub {
owner = "drmingdrmer";
repo = "xptemplate";
- rev = "e8c0d74b1308415dfebadaf58ba94b2d34aecec2";
- sha256 = "0x3c9f3vpkwnmshbmwg4lddivssx6s4f3b3px6nf4cxd0lbm4j9l";
+ rev = "4dabcf320f18e33923dbcf793d3c04330dcb79a1";
+ sha256 = "07sr3ixlgfv0sql48fxvyimwdb8xr3iklmzfxb5wxfxgvhr4xbs8";
};
};
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 14f8a31e57f9..350ed619be65 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -45,6 +45,7 @@ chrisgeo/sparkup
chriskempson/base16-vim
christoomey/vim-sort-motion
christoomey/vim-tmux-navigator
+ckarnell/antonys-macro-repeater
cloudhead/neovim-fuzzy
CoatiSoftware/vim-sourcetrail
cocopon/iceberg.vim
diff --git a/pkgs/os-specific/darwin/osxsnarf/default.nix b/pkgs/os-specific/darwin/osxsnarf/default.nix
new file mode 100644
index 000000000000..e391be1807c1
--- /dev/null
+++ b/pkgs/os-specific/darwin/osxsnarf/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, lib, fetchFromGitHub, plan9port, darwin, ... }:
+
+stdenv.mkDerivation rec {
+ pname = "osxsnarf";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "eraserhd";
+ repo = "osxsnarf";
+ rev = "v${version}";
+ sha256 = "1vpg39mpc5avnv1j0yfx0x2ncvv38slmm83zv6nmm7alfwfjr2ss";
+ };
+
+ buildInputs = [ plan9port darwin.apple_sdk.frameworks.Carbon ];
+ makeFlags = [ "prefix=${placeholder "out"}" ];
+
+ meta = with lib; {
+ description = "A Plan 9-inspired way to share your OS X clipboard.";
+ homepage = https://github.com/eraserhd/osxsnarf;
+ license = licenses.unlicense;
+ platforms = platforms.darwin;
+ maintainers = [ maintainers.eraserhd ];
+ };
+}
diff --git a/pkgs/os-specific/linux/dropwatch/default.nix b/pkgs/os-specific/linux/dropwatch/default.nix
index f5b7e44a3fbc..061dce048607 100644
--- a/pkgs/os-specific/linux/dropwatch/default.nix
+++ b/pkgs/os-specific/linux/dropwatch/default.nix
@@ -3,17 +3,16 @@
stdenv.mkDerivation rec {
pname = "dropwatch";
- version = "1.5";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "nhorman";
repo = pname;
- rev = version;
- sha256 = "085hyyl28v0vpxfnmzchl97fjfnzj46ynhkg6y4i6h194y0d99m7";
+ rev = "v${version}";
+ sha256 = "1qmax0l7z1qik42c949fnvjh5r6awk4gpgzdsny8iwnmwzjyp8b8";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
-
buildInputs = [ libbfd libnl ncurses readline zlib ];
# To avoid running into https://sourceware.org/bugzilla/show_bug.cgi?id=14243 we need to define:
@@ -25,8 +24,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
- description = "Kernel dropped packet monitor";
- homepage = https://github.com/nhorman/dropwatch;
+ description = "Linux kernel dropped packet monitor";
+ homepage = "https://github.com/nhorman/dropwatch";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.c0bw3b ];
diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix
index 10a000217543..9c91c91eeb44 100644
--- a/pkgs/os-specific/linux/kernel/linux-testing.nix
+++ b/pkgs/os-specific/linux/kernel/linux-testing.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "5.4-rc4";
+ version = "5.4-rc5";
extraMeta.branch = "5.4";
# modDirVersion needs to be x.y.z, will always add .0
@@ -11,7 +11,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
- sha256 = "0f0qnk9x1drd0vgawfr1nyr77pm8j00fqjij8qs45b69c1l8bx5i";
+ sha256 = "0047f1vq93cq9qa0550dnilci0qxy4ygc6brhcr6xbwqakglwr18";
};
# Should the testing kernels ever be built on Hydra?
diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix
index 567dcd1068c5..47adcf938c5b 100644
--- a/pkgs/os-specific/linux/trace-cmd/default.nix
+++ b/pkgs/os-specific/linux/trace-cmd/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchgit, asciidoc, docbook_xsl, libxslt }:
stdenv.mkDerivation {
pname = "trace-cmd";
- version = "2.8.3";
+ version = "2.9-dev";
src = fetchgit (import ./src.nix);
@@ -17,19 +17,15 @@ stdenv.mkDerivation {
buildPhase = "make trace-cmd libs doc";
- installTargets = [ "install_cmd" "install_libs" "install_man" ];
+ installTargets = [ "install_cmd" "install_libs" "install_doc" ];
installFlags = [
"bindir=${placeholder "out"}/bin"
"man_dir=${placeholder "man"}/share/man"
"libdir=${placeholder "lib"}/lib"
- "includedir=${placeholder "dev"}/include/trace-cmd"
+ "includedir=${placeholder "dev"}/include"
"BASH_COMPLETE_DIR=${placeholder "out"}/etc/bash_completion.d"
];
- postInstall = ''
- mv $dev/include/trace-cmd/traceevent $dev/include/traceevent
- '';
-
meta = with stdenv.lib; {
description = "User-space tools for the Linux kernel ftrace subsystem";
homepage = http://kernelshark.org/;
diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch
index 0d6f5c5d8bfe..db194e16fdb6 100644
--- a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch
+++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch
@@ -1,52 +1,35 @@
-diff --git a/Documentation/Makefile b/Documentation/Makefile
-index 21e42fd..826361d 100644
---- a/Documentation/Makefile
-+++ b/Documentation/Makefile
-@@ -108,7 +108,11 @@ $(IMGS_INSTALL): %.png.install : %.png force
-
- GUI_INSTALL = $(HTML_INSTALL) $(IMGS_INSTALL)
-
--install: $(MAN1_INSTALL) $(MAN5_INSTALL) $(GUI_INSTALL)
-+install_man: $(MAN1_INSTALL) $(MAN5_INSTALL)
-+
-+install_gui: $(GUI_INSTALL)
-+
-+install: install_man install_gui
-
- clean:
- (cd $(obj); \
diff --git a/Makefile b/Makefile
-index 2bcc383..107ead0 100644
+index bbdf15e..deb8ef7 100644
--- a/Makefile
+++ b/Makefile
-@@ -289,7 +289,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC)
+@@ -288,7 +288,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC)
libtracecmd.a: $(LIBTRACECMD_STATIC)
libtracecmd.so: $(LIBTRACECMD_SHARED)
-libs: $(LIBTRACECMD_SHARED) $(LIBTRACEEVENT_SHARED)
+libs: $(LIBTRACECMD_SHARED) $(LIBTRACEEVENT_SHARED) $(LIBTRACECMD_STATIC) $(LIBTRACEEVENT_STATIC)
- plugins: force $(obj)/plugins/trace_plugin_dir $(obj)/plugins/trace_python_dir
- $(Q)$(MAKE) -C $(src)/plugins
-@@ -345,6 +345,8 @@ install_gui: install_cmd gui
+ plugins: force $(obj)/lib/traceevent/plugins/traceevent_plugin_dir $(obj)/lib/traceevent/plugins/trace_python_dir
+ $(Q)$(MAKE) -C $(src)/lib/traceevent/plugins
+@@ -344,6 +344,8 @@ install_gui: install_cmd gui
install_libs: libs
- $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ))
- $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ))
-+ $(Q)$(call do_install,$(LIBTRACECMD_STATIC),$(libdir_SQ))
-+ $(Q)$(call do_install,$(LIBTRACEEVENT_STATIC),$(libdir_SQ))
+ $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)/trace-cmd)
+ $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)/traceevent)
++ $(Q)$(call do_install,$(LIBTRACECMD_STATIC),$(libdir_SQ)/trace-cmd)
++ $(Q)$(call do_install,$(LIBTRACEEVENT_STATIC),$(libdir_SQ)/traceevent)
$(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent)
$(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent)
- $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ))
-@@ -356,6 +358,12 @@ doc:
- doc_clean:
- $(MAKE) -C $(src)/Documentation clean
+ $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)/trace-cmd)
+diff --git a/kernel-shark/src/CMakeLists.txt b/kernel-shark/src/CMakeLists.txt
+index e20a030..7fce165 100644
+--- a/kernel-shark/src/CMakeLists.txt
++++ b/kernel-shark/src/CMakeLists.txt
+@@ -93,7 +93,7 @@ if (Qt5Widgets_FOUND AND Qt5Network_FOUND)
+ DESTINATION ${_INSTALL_PREFIX}/share/icons/${KS_APP_NAME})
-+install_man:
-+ $(MAKE) -C $(src)/Documentation install_man
-+
-+install_gui_docs:
-+ $(MAKE) -C $(src)/Documentation install_gui
-+
- install_doc:
- $(MAKE) -C $(src)/Documentation install
+ install(FILES "${KS_DIR}/org.freedesktop.kshark-record.policy"
+- DESTINATION /usr/share/polkit-1/actions/)
++ DESTINATION ${_INSTALL_PREFIX}/share/polkit-1/actions/)
+ install(PROGRAMS "${KS_DIR}/bin/kshark-su-record"
+ DESTINATION ${_INSTALL_PREFIX}/bin/)
diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
index b73de3193d22..2156177f6415 100644
--- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
+++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
@@ -1,7 +1,7 @@
-{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }:
+{ stdenv, mkDerivation, fetchgit, qtbase, cmake, asciidoc, docbook_xsl, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }:
mkDerivation {
pname = "kernelshark";
- version = "0.9.8";
+ version = "1.1.0";
src = fetchgit (import ./src.nix);
@@ -11,21 +11,22 @@ mkDerivation {
preConfigure = "pushd kernel-shark";
- nativeBuildInputs = [ cmake ];
+ nativeBuildInputs = [ pkg-config cmake asciidoc ];
- buildInputs = [ qtbase json_c mesa_glu freeglut pkg-config ];
+ buildInputs = [ qtbase json_c mesa_glu freeglut ];
cmakeFlags = [
"-D_INSTALL_PREFIX=${placeholder "out"}"
"-DTRACECMD_BIN_DIR=${trace-cmd}/bin"
"-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include"
- "-DTRACECMD_LIBRARY=${trace-cmd.lib}/lib/libtracecmd.a"
- "-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/libtraceevent.a"
+ "-DTRACECMD_LIBRARY=${trace-cmd.lib}/lib/trace-cmd/libtracecmd.a"
+ "-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/traceevent/libtraceevent.a"
];
preInstall = ''
popd
- make install_gui_docs prefix=$doc
+ make install_doc_gui prefix=$doc \
+ FIND_MANPAGE_DOCBOOK_XSL=${docbook_xsl}/share/xml/docbook-xsl-nons/manpages/docbook.xsl
pushd kernel-shark/build
'';
diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix
index 836e71b1851e..47c1b82fdd46 100644
--- a/pkgs/os-specific/linux/trace-cmd/src.nix
+++ b/pkgs/os-specific/linux/trace-cmd/src.nix
@@ -1,5 +1,5 @@
{
url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
- rev = "138c70106835ee0f05879e7f2f46bca8dae7ca99"; # branch: trace-cmd-stable-v2.8
- sha256 = "1grpip7lywf98nsm7ql1d6bgc0ky0672savr8jz3a8hf9ny265nx";
+ rev = "ab370b78b9278fe16657742d46cb95c0a65b47d5"; # branch: kernelshark-v1.1
+ sha256 = "0qngwc4qgadrkwlwpz73f12prdkx94kl0bg7g9hib95ipvsdmk1c";
}
diff --git a/pkgs/os-specific/linux/trezor-udev-rules/default.nix b/pkgs/os-specific/linux/trezor-udev-rules/default.nix
new file mode 100644
index 000000000000..c2be81373768
--- /dev/null
+++ b/pkgs/os-specific/linux/trezor-udev-rules/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ pname = "trezor-udev-rules";
+ version = "unstable-2019-07-17";
+
+ udevRules = fetchurl {
+ # let's pin the latest commit in the repo which touched the udev rules file
+ url = "https://raw.githubusercontent.com/trezor/trezor-firmware/68a3094b0a8e36b588b1bcb58c34a2c9eafc0dca/common/udev/51-trezor.rules";
+ sha256 = "0vlxif89nsqpbnbz1vwfgpl1zayzmq87gw1snskn0qns6x2rpczk";
+ };
+
+ dontUnpack = true;
+
+ installPhase = ''
+ cp ${udevRules} 51-trezor.rules
+ mkdir -p $out/lib/udev/rules.d
+ # we use trezord group, not plugdev
+ # we don't need the udev-acl tag
+ substituteInPlace 51-trezor.rules \
+ --replace 'GROUP="plugdev"' 'GROUP="trezord"' \
+ --replace ', TAG+="udev-acl"' ""
+ cp 51-trezor.rules $out/lib/udev/rules.d/51-trezor.rules
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Udev rules for Trezor";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ prusnak ];
+ platforms = platforms.linux;
+ homepage = "https://github.com/trezor/trezor-firmware/tree/master/common/udev";
+ };
+}
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index 2e01f715cdc8..0c0a2c1908bb 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -23,11 +23,11 @@ let
in buildPythonApplication rec {
pname = "matrix-synapse";
- version = "1.4.1";
+ version = "1.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "10vfjf5f4micqwpxnw2dliq4y0j0mqj0087p6kgnfi5w9syz8g75";
+ sha256 = "0skhzbwzq2985frnd86fn2hxhsmy0q1l5p9aich8l2gyg1dd3wb8";
};
patches = [
@@ -71,6 +71,7 @@ in buildPythonApplication rec {
treq
twisted
unpaddedbase64
+ typing-extensions
] ++ lib.optional enableSystemd systemd;
checkInputs = [ mock parameterized openssl ];
diff --git a/pkgs/servers/monitoring/plugins/labs_consol_de.nix b/pkgs/servers/monitoring/plugins/labs_consol_de.nix
index b09990e31209..a703c80b61a4 100644
--- a/pkgs/servers/monitoring/plugins/labs_consol_de.nix
+++ b/pkgs/servers/monitoring/plugins/labs_consol_de.nix
@@ -14,7 +14,7 @@ let
inherit pname version;
src = fetchurl {
- url = "https://labs.consol.de/assets/downloads/nagios/${pname}-${version}.tar.bz";
+ url = "https://labs.consol.de/assets/downloads/nagios/${pname}-${version}.tar.gz";
inherit sha256;
};
diff --git a/pkgs/servers/monitoring/prometheus/postgres-exporter.nix b/pkgs/servers/monitoring/prometheus/postgres-exporter.nix
index abc7db8086bb..54a0dc58e8a8 100644
--- a/pkgs/servers/monitoring/prometheus/postgres-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/postgres-exporter.nix
@@ -1,10 +1,8 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
-
-with stdenv.lib;
+{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "postgres_exporter";
- version = "0.5.1";
+ version = "0.6.0";
goPackagePath = "github.com/wrouesnel/postgres_exporter";
@@ -12,13 +10,13 @@ buildGoPackage rec {
owner = "wrouesnel";
repo = "postgres_exporter";
rev = "v${version}";
- sha256 = "1awcqhiak56nrsaa49lkw6mcbrlm86ls14sp9v69h3a0brc1q7bn";
+ sha256 = "0a903mklp3aardlbz5fkslisav9khd1w3akcf9xkc5nfinr6xnqb";
};
- meta = {
+ meta = with lib; {
inherit (src.meta) homepage;
description = "A Prometheus exporter for PostgreSQL";
license = licenses.asl20;
- maintainers = with maintainers; [ fpletz globin ];
+ maintainers = with maintainers; [ fpletz globin willibutz ];
};
}
diff --git a/pkgs/servers/monitoring/sensu-go/default.nix b/pkgs/servers/monitoring/sensu-go/default.nix
index 4bb46693b469..a4e2b1eb313c 100644
--- a/pkgs/servers/monitoring/sensu-go/default.nix
+++ b/pkgs/servers/monitoring/sensu-go/default.nix
@@ -1,23 +1,25 @@
-{ buildGoPackage, fetchFromGitHub, lib }:
+{ buildGoModule, fetchFromGitHub, lib }:
let
generic = { subPackages, pname, postInstall ? "" }:
- buildGoPackage rec {
+ buildGoModule rec {
inherit pname;
- version = "5.11.0";
- shortRev = "dd8f160"; # for internal version info
+ version = "5.14.1";
+ shortRev = "1f6d16b"; # for internal version info
goPackagePath = "github.com/sensu/sensu-go";
src = fetchFromGitHub {
owner = "sensu";
repo = "sensu-go";
- rev = version;
- sha256 = "05dx0nxcjl6fy68br2a37j52iz71kvqnqp29swcif2nwvq7w8mxx";
+ rev = "v${version}";
+ sha256 = "1fhvw2hrn2zqpz3ypsx6i1zrn83pdifvsyzpbhzxmff6l9a290bq";
};
inherit subPackages postInstall;
+ modSha256 = "0c0cj0ylhifyb7l9kjmgdlfzcz8528fzw8kr3c5y7j5h6pih06sy";
+
buildFlagsArray = let
versionPkg = "github.com/sensu/sensu-go/version";
in ''
diff --git a/pkgs/servers/sql/mariadb/connector-c/default.nix b/pkgs/servers/sql/mariadb/connector-c/default.nix
index 1e1e2db0f605..01cf015c825c 100644
--- a/pkgs/servers/sql/mariadb/connector-c/default.nix
+++ b/pkgs/servers/sql/mariadb/connector-c/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
inherit sha256;
};
- patches = [
+ patches = stdenv.lib.optionals stdenv.isDarwin [
(fetchpatch {
url = "https://github.com/MariaDB/mariadb-connector-c/commit/ee91b2c98a63acb787114dee4f2694e154630928.patch";
sha256 = "05mlyv20kzn9bax4byv2ph1cf42541fcl1zcqzbfwqmynnisvdah";
diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix
index c6742b37247d..135844b5e68e 100644
--- a/pkgs/servers/sql/postgresql/default.nix
+++ b/pkgs/servers/sql/postgresql/default.nix
@@ -110,6 +110,17 @@ let
# autodetection doesn't seem to able to find this, but it's there.
checkTarget = "check";
+ preCheck =
+ # On musl, comment skip the following tests, because they break due to
+ # ! ERROR: could not load library "/build/postgresql-11.5/tmp_install/nix/store/...-postgresql-11.5-lib/lib/libpqwalreceiver.so": Error loading shared library libpq.so.5: No such file or directory (needed by /build/postgresql-11.5/tmp_install/nix/store/...-postgresql-11.5-lib/lib/libpqwalreceiver.so)
+ # See also here:
+ # https://git.alpinelinux.org/aports/tree/main/postgresql/disable-broken-tests.patch?id=6d7d32c12e073a57a9e5946e55f4c1fbb68bd442
+ if stdenv.hostPlatform.isMusl then ''
+ substituteInPlace src/test/regress/parallel_schedule \
+ --replace "subscription" "" \
+ --replace "object_address" ""
+ '' else null;
+
doInstallCheck = false; # needs a running daemon?
disallowedReferences = [ stdenv.cc ];
diff --git a/pkgs/servers/trezord/default.nix b/pkgs/servers/trezord/default.nix
index 38fefd041bdd..134d36258a56 100644
--- a/pkgs/servers/trezord/default.nix
+++ b/pkgs/servers/trezord/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoPackage, fetchFromGitHub, trezor-udev-rules }:
buildGoPackage rec {
pname = "trezord-go";
@@ -13,6 +13,8 @@ buildGoPackage rec {
sha256 = "00d90qmmk1pays78a2jm8gb7dncvlsjjn4033q1yd1ii3fxc6nh8";
};
+ propagatedBuildInputs = [ trezor-udev-rules ];
+
meta = with stdenv.lib; {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
homepage = "https://trezor.io";
diff --git a/pkgs/servers/web-apps/matomo/default.nix b/pkgs/servers/web-apps/matomo/default.nix
index e848cb83c529..e990a16c0384 100644
--- a/pkgs/servers/web-apps/matomo/default.nix
+++ b/pkgs/servers/web-apps/matomo/default.nix
@@ -1,12 +1,30 @@
{ stdenv, fetchurl, makeWrapper, php }:
+let
+ versions = {
+ matomo = {
+ version = "3.11.0";
+ sha256 = "1fbnmmzzsi3dfm9qm30wypxjcazl37mryaik9mlrb19hnp2md40q";
+ };
+
+ matomo-beta = {
+ version = "3.12.0";
+ beta = 3;
+ sha256 = "1n7b8cag7rpi6y4145cll2irz3in4668jkiicy06wm5nq6lb4bdf";
+ };
+ };
+ common = pname: {version, sha256, beta ? null}:
+ let fullVersion = version + stdenv.lib.optionalString (beta != null) "-b${toString beta}";
+ name = "${pname}-${fullVersion}";
+in
+
stdenv.mkDerivation rec {
- pname = "matomo";
- version = "3.11.0";
+ inherit name;
+ version = fullVersion;
src = fetchurl {
url = "https://builds.matomo.org/matomo-${version}.tar.gz";
- sha256 = "1fbnmmzzsi3dfm9qm30wypxjcazl37mryaik9mlrb19hnp2md40q";
+ inherit sha256;
};
nativeBuildInputs = [ makeWrapper ];
@@ -53,6 +71,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
homepage = https://matomo.org/;
platforms = platforms.all;
- maintainers = [ maintainers.florianjacob ];
+ maintainers = with maintainers; [ florianjacob kiwi ];
};
-}
+};
+in stdenv.lib.mapAttrs common versions
diff --git a/pkgs/shells/zsh/fzf-zsh/default.nix b/pkgs/shells/zsh/fzf-zsh/default.nix
new file mode 100644
index 000000000000..e97ef1074f12
--- /dev/null
+++ b/pkgs/shells/zsh/fzf-zsh/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, fzf }:
+
+stdenv.mkDerivation rec {
+ pname = "fzf-zsh-unstable";
+ version = "2019-09-09";
+
+ src = fetchFromGitHub {
+ owner = "Wyntau";
+ repo = "fzf-zsh";
+ rev = "829d7e40cc437dce8a6e234e259bbd4065e87124";
+ sha256 = "1irjmxhcg1fm4g8p3psjqk7sz5qhj5kw73pyhv91njvpdhn9l26z";
+ };
+
+ postPatch = ''
+ substituteInPlace fzf-zsh.plugin.zsh \
+ --replace \
+ 'fzf_path="$( cd "$fzf_zsh_path/../fzf/" && pwd )"' \
+ "fzf_path=${fzf}" \
+ --replace \
+ '$fzf_path/shell' \
+ '${fzf}/share/fzf'
+ '';
+
+ dontBuild = true;
+
+ installPhase = ''
+ install -Dm0644 fzf-zsh.plugin.zsh $out/share/zsh/plugins/fzf-zsh/fzf-zsh.plugin.zsh
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/wyntau/fzf-zsh;
+ description = "wrap fzf to use in oh-my-zsh";
+ license = licenses.mit;
+ maintainers = with maintainers; [ ma27 ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix
index af22a1e1be24..647f4cc1a6ec 100644
--- a/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -4,13 +4,13 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
- version = "2019-10-27";
+ version = "2019-10-30";
pname = "oh-my-zsh";
- rev = "e363109a6d3367d8be1dd66f05a38eb38b4257d7";
+ rev = "687c50bdf999f8efd45f3c8f578a62329b0633da";
src = fetchgit { inherit rev;
url = "https://github.com/robbyrussell/oh-my-zsh";
- sha256 = "05ald17kr9bqx106a4cc5i48w8sf67vlghd96k2lciiwjy9dcdki";
+ sha256 = "13vflcqshvr323sdh4yrs4wlvbxhhc7ldhcyawcwassk44g2kx8w";
};
pathsToLink = [ "/share/oh-my-zsh" ];
diff --git a/pkgs/tools/admin/berglas/default.nix b/pkgs/tools/admin/berglas/default.nix
index 239fc9691f7e..d75c317187bd 100644
--- a/pkgs/tools/admin/berglas/default.nix
+++ b/pkgs/tools/admin/berglas/default.nix
@@ -3,16 +3,16 @@
buildGoModule rec {
name = "berglas-${version}";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "berglas";
- rev = "v0.2.0";
- sha256 = "1d75x0n1d1ry2xmy6h64qqc0dlnivipycv3p0aihyp3l810gpdbk";
+ rev = "v0.2.1";
+ sha256 = "1m34rxiynmgsris1avjn7am50b8sds77515zlnna9qvsrywbzljc";
};
- modSha256 = "0fvgvrvdpdwjx51wmbf0rdwnr9l1l212qbvznvif3xsi5nnlkx6r";
+ modSha256 = "0lfcrsb4r5hxxd652cxff23fnbrphp3lgwp5anpaddzcjcd2qyj8";
meta = with stdenv.lib; {
description = "A tool for managing secrets on Google Cloud";
diff --git a/pkgs/tools/admin/procs/default.nix b/pkgs/tools/admin/procs/default.nix
index b2d173d5aab8..24f8036b4288 100644
--- a/pkgs/tools/admin/procs/default.nix
+++ b/pkgs/tools/admin/procs/default.nix
@@ -4,16 +4,16 @@
rustPlatform.buildRustPackage rec {
pname = "procs";
- version = "0.8.11";
+ version = "0.8.13";
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
- sha256 = "1bds84r5qw1chqd92rlijn4arqaywc5x4yjss3523ka55w3mphmf";
+ sha256 = "0yy41v2crds9500fa4r0kqiddciqkilr2h13nrjqy44ckvw2mi5y";
};
- cargoSha256 = "11djms4rj3a1fs6f091gli32w6kww77n0072p0hwvqmc9yy1x57w";
+ cargoSha256 = "1gnl97h0l9k8xnrwl6807qlbx13vd45kmla02mk9p1h52sr0din5";
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
diff --git a/pkgs/tools/admin/pulumi/default.nix b/pkgs/tools/admin/pulumi/default.nix
index 3d92bfd36825..bba5c7e09cf4 100644
--- a/pkgs/tools/admin/pulumi/default.nix
+++ b/pkgs/tools/admin/pulumi/default.nix
@@ -4,17 +4,17 @@ with lib;
let
- version = "1.3.4";
+ version = "1.4.0";
# switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script
pulumiArchPackage = {
x86_64-linux = {
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz";
- sha256 = "1scs2msmg6ba91ri9al3299xnq8gq63clbqq1n03karf6ys2jnvi";
+ sha256 = "00ywy2ba4xha6gwd42i3fdrk1myivkd1r6ijdr2vkianmg524k6f";
};
x86_64-darwin = {
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz";
- sha256 = "0k3hfrcwa5sgg8mgmxp2xfykrshyp4bv77d3y8758zm7xqmmjg69";
+ sha256 = "02vqw9gn17dy3rfh0j00k9f827l42g3nl3rhlcbc8jbgx3n9c9qy";
};
};
diff --git a/pkgs/tools/filesystems/orangefs/default.nix b/pkgs/tools/filesystems/orangefs/default.nix
new file mode 100644
index 000000000000..37f4026799b6
--- /dev/null
+++ b/pkgs/tools/filesystems/orangefs/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, fetchurl, bison, flex, autoreconfHook
+, openssl, db, attr, perl, tcsh
+} :
+
+stdenv.mkDerivation rec {
+ pname = "orangefs";
+ version = "2.9.7";
+
+ src = fetchurl {
+ url = "http://download.orangefs.org/current/source/orangefs-${version}.tar.gz";
+ sha256 = "15669f5rcvn44wkas0mld0qmyclrmhbrw4bbbp66sw3a12vgn4sm";
+ };
+
+ nativeBuildInputs = [ bison flex perl autoreconfHook ];
+ buildInputs = [ openssl db attr tcsh ];
+
+ postPatch = ''
+ # Issue introduced by attr-2.4.48
+ substituteInPlace src/apps/user/ofs_setdirhint.c --replace attr/xattr.h sys/xattr.h
+
+ # Do not try to install empty sysconfdir
+ substituteInPlace Makefile.in --replace 'install -d $(sysconfdir)' ""
+
+ # perl interpreter needs to be fixed or build fails
+ patchShebangs ./src/apps/admin/pvfs2-genconfig
+
+ # symlink points to a location in /usr
+ rm ./src/client/webpack/ltmain.sh
+ '';
+
+ configureFlags = [
+ "--sysconfdir=/etc/orangefs"
+ "--enable-shared"
+ "--enable-fast"
+ "--with-ssl=${stdenv.lib.getDev openssl}"
+ ];
+
+
+ enableParallelBuilding = true;
+
+ postInstall = ''
+ # install useful helper scripts
+ install examples/keys/pvfs2-gen-keys.sh $out/bin
+ '';
+
+ postFixup = ''
+ for f in pvfs2-getmattr pvfs2-setmattr; do
+ substituteInPlace $out/bin/$f --replace '#!/bin/csh' '#!${tcsh}/bin/tcsh'
+ done
+
+ sed -i 's:openssl:${openssl}/bin/openssl:' $out/bin/pvfs2-gen-keys.sh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Scale-out network file system for use on high-end computing systems";
+ homepage = "http://www.orangefs.org/";
+ license = with licenses; [ asl20 bsd3 gpl2 lgpl21 lgpl21Plus openldap ];
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ markuskowa ];
+ };
+}
diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix
index a2592d5522b9..13df4ede8ecf 100644
--- a/pkgs/tools/graphics/jhead/default.nix
+++ b/pkgs/tools/graphics/jhead/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libjpeg }:
+{ stdenv, fetchurl, fetchpatch, libjpeg }:
stdenv.mkDerivation rec {
pname = "jhead";
@@ -9,6 +9,19 @@ stdenv.mkDerivation rec {
sha256 = "1hn0yqcicq3qa20h1g313l1a671r8mccpb9gz0w1056r500lw6c2";
};
+ patches = [
+ (fetchpatch {
+ name = "CVE-2019-1010301.patch";
+ url = "https://sources.debian.org/data/main/j/jhead/1:3.03-3/debian/patches/36_CVE-2019-1010301";
+ sha256 = "1vvrg50z5y7sjhfi973wh1q1v79sqp7hk5d4z0dlnx3fqgkjrx7q";
+ })
+ (fetchpatch {
+ name = "CVE-2019-1010302.patch";
+ url = "https://sources.debian.org/data/main/j/jhead/1:3.03-3/debian/patches/37_CVE-2019-1010302";
+ sha256 = "1h11mpsi7hpwbi8kpnkjwn6zpqf88f132h0rsg8sggcs3vva2x8y";
+ })
+ ];
+
buildInputs = [ libjpeg ];
patchPhase = ''
diff --git a/pkgs/tools/graphics/wdisplays/default.nix b/pkgs/tools/graphics/wdisplays/default.nix
new file mode 100644
index 000000000000..9b003868bd00
--- /dev/null
+++ b/pkgs/tools/graphics/wdisplays/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, gtk3, epoxy, wayland }:
+stdenv.mkDerivation {
+ pname = "wdisplays";
+ version = "2019-10-26-unstable";
+
+ nativeBuildInputs = [ meson ninja pkgconfig ];
+
+ buildInputs = [ gtk3 epoxy wayland ];
+
+ src = fetchFromGitHub {
+ owner = "cyclopsian";
+ repo = "wdisplays";
+ rev = "22669edadb8ff3478bdb51ddc140ef6e61e3d9ef";
+ sha256 = "127k5i98km6mh8yw4vf8n44b29kc3n0169xpkdh7yr0rhv6n9cdl";
+ };
+
+ meta = let inherit (stdenv) lib; in {
+ description = "A graphical application for configuring displays in Wayland compositors";
+ homepage = "https://github.com/cyclopsian/wdisplays";
+ maintainers = [ lib.maintainers.lheckemann ];
+ license = lib.licenses.mit;
+ platforms = lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix
index c9ec994cadcc..739137dab481 100644
--- a/pkgs/tools/misc/diffoscope/default.nix
+++ b/pkgs/tools/misc/diffoscope/default.nix
@@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
#
# Still missing these tools: abootimg docx2txt dumpxsb enjarify js-beautify lipo oggDump otool procyon-decompiler Rscript wasm2wat zipnode
# Also these libraries: python3-guestfs
- pythonPath = with python3Packages; [ debian libarchive-c python_magic tlsh rpm ] ++ [
+ pythonPath = with python3Packages; [ debian libarchive-c python_magic tlsh rpm pyxattr ] ++ [
acl binutils-unwrapped bzip2 cdrkit colordiff coreutils cpio db diffutils
dtc e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip
libarchive libcaca lz4 pgpdump progressbar33 sng sqlite squashfsTools unzip xxd xz
diff --git a/pkgs/tools/misc/ffsend/default.nix b/pkgs/tools/misc/ffsend/default.nix
index 2d84314f6b54..aa0af61c61cd 100644
--- a/pkgs/tools/misc/ffsend/default.nix
+++ b/pkgs/tools/misc/ffsend/default.nix
@@ -16,16 +16,16 @@ with rustPlatform;
buildRustPackage rec {
pname = "ffsend";
- version = "0.2.54";
+ version = "0.2.55";
src = fetchFromGitLab {
owner = "timvisee";
repo = "ffsend";
rev = "v${version}";
- sha256 = "11g4gv6p37xpay8v0q6kv5fblsxixcm8l0wkdvzmbv7933318qz8";
+ sha256 = "0z0wa12vnzj07q54nr1zr81vjr1kac60nys26bbi8s6nh46n93wv";
};
- cargoSha256 = "0wri2shj5xxgjv8gl0fq776s20897zwsgglh8ghgd2z3zjwjachw";
+ cargoSha256 = "14brb11nb17dykh37y099bhmk85a7z8fld2pivmywfgvz1x3i141";
nativeBuildInputs = [ cmake pkgconfig installShellFiles ];
buildInputs = [ openssl ]
diff --git a/pkgs/tools/misc/fluent-bit/default.nix b/pkgs/tools/misc/fluent-bit/default.nix
index 08d091cb3002..fe68613b5427 100644
--- a/pkgs/tools/misc/fluent-bit/default.nix
+++ b/pkgs/tools/misc/fluent-bit/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, fetchFromGitHub, cmake }:
+{ stdenv, fetchFromGitHub, cmake, flex, bison }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "fluent-bit";
- version = "1.0.6";
+ version = "1.3.2";
src = fetchFromGitHub {
owner = "fluent";
repo = "fluent-bit";
- rev = "8cc3a1887c3fcd6dd95a4a475fb213a0e399c222";
- sha256 = "0rmdbrhhrim80d0hwbz56d5f8rypm6h62ks3xnr0b4w987w10653";
+ rev = "v${version}";
+ sha256 = "155szha6mx7cvq0bzqb528zg4q1m9gip7f0m1zv9yrz1sr9p1nzv";
};
- nativeBuildInputs = [ cmake ];
+ nativeBuildInputs = [ cmake flex bison ];
postPatch = ''
substituteInPlace src/CMakeLists.txt \
diff --git a/pkgs/tools/misc/scfbuild/default.nix b/pkgs/tools/misc/scfbuild/default.nix
index f66567798ffb..7fbe13fd44e3 100644
--- a/pkgs/tools/misc/scfbuild/default.nix
+++ b/pkgs/tools/misc/scfbuild/default.nix
@@ -4,26 +4,36 @@ buildPythonApplication {
pname = "scfbuild";
version = "1.0.3";
+ format = "other";
+
src = fetchFromGitHub {
- owner = "eosrei";
+ owner = "13rac1";
repo = "scfbuild";
rev = "9acc7fc5fedbf48683d8932dd5bd7583bf922bae";
sha256 = "1zlqsxkpg7zvmhdjgbqwwc9qgac2b8amzq8c5kwyh5cv95zcp6qn";
};
- phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+ patches = [
+ # Convert to Python 3
+ # https://github.com/13rac1/scfbuild/pull/19
+ ./python-3.patch
+ ];
propagatedBuildInputs = [ pyyaml fonttools fontforge ];
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/${python.sitePackages}
cp -r scfbuild $out/${python.sitePackages}
cp -r bin $out
+
+ runHook postInstall
'';
meta = with lib; {
description = "SVGinOT color font builder";
- homepage = https://github.com/eosrei/scfbuild;
+ homepage = https://github.com/13rac1/scfbuild;
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
};
diff --git a/pkgs/tools/misc/scfbuild/python-3.patch b/pkgs/tools/misc/scfbuild/python-3.patch
new file mode 100644
index 000000000000..5a0178ad8c8e
--- /dev/null
+++ b/pkgs/tools/misc/scfbuild/python-3.patch
@@ -0,0 +1,46 @@
+--- a/bin/scfbuild
++++ b/bin/scfbuild
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python2
++#!/usr/bin/env python3
+ # -*- coding: utf-8 -*-
+
+ from __future__ import (absolute_import, division, print_function,
+--- a/scfbuild/builder.py
++++ b/scfbuild/builder.py
+@@ -287,8 +287,8 @@ def _add_name_record(self, text, name_id, platform_id, plat_enc_id, lang_id):
+ # TODO: The installed version of fontTools doesn't have
+ # table__n_a_m_e.setName().
+ record = NameRecord()
+- # PyYAML creates strings, force to Unicode
+- record.string = unicode(text)
++ # PyYAML creates strings, which are unicode as of Python3
++ record.string = text
+ record.nameID = name_id
+ record.platformID = platform_id
+ record.platEncID = plat_enc_id
+--- a/scfbuild/fforge.py
++++ b/scfbuild/fforge.py
+@@ -84,7 +84,7 @@ def add_glyphs(font, svg_filepaths, conf):
+ u_ids = [int(u_id, 16) for u_id in filename.split("-")]
+ # Example: (0x1f441, 0x1f5e8)
+
+- u_str = ''.join(map(unichr, u_ids))
++ u_str = ''.join(map(chr, u_ids))
+ # Example: "U\0001f441U\0001f5e8"
+
+ # Replace sequences with correct ZWJ/VS16 versions as needed
+--- a/scfbuild/main.py
++++ b/scfbuild/main.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python2
++#!/usr/bin/env python3
+ # -*- coding: utf-8 -*-
+
+ # SCFBuild is released under the GNU General Public License v3.
+index 0000000..99418b5
+--- /dev/null
++++ b/scfbuild/requirements.txt
+@@ -0,0 +1,2 @@
++fonttools>=3.41.2
++PyYAML>=5.1
diff --git a/pkgs/tools/networking/dhcpcd/default.nix b/pkgs/tools/networking/dhcpcd/default.nix
index 7952c2b91e2f..0827f2eac7ba 100644
--- a/pkgs/tools/networking/dhcpcd/default.nix
+++ b/pkgs/tools/networking/dhcpcd/default.nix
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
# when updating this to >=7, check, see previous reverts:
# nix-build -A nixos.tests.networking.scripted.macvlan.x86_64-linux nixos/release-combined.nix
pname = "dhcpcd";
- version = "8.1.1";
+ version = "8.0.6";
src = fetchurl {
url = "mirror://roy/${pname}/${pname}-${version}.tar.xz";
- sha256 = "10pasmx3gi09amx9y2phwi3a2d5bwih44vlkdxmx7sqgw67k0pa8";
+ sha256 = "0kxxpb79j564m6bjvjb9gsn0yzs13c0arfgsycm51gw3xnch3db6";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/networking/go-shadowsocks2/default.nix b/pkgs/tools/networking/go-shadowsocks2/default.nix
new file mode 100644
index 000000000000..1591b6acf5be
--- /dev/null
+++ b/pkgs/tools/networking/go-shadowsocks2/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ pname = "go-shadowsocks2";
+ version = "0.0.11";
+
+ goPackagePath = "github.com/shadowsocks/go-shadowsocks2";
+
+ src = fetchFromGitHub {
+ owner = "shadowsocks";
+ repo = "go-shadowsocks2";
+ rev = "v${version}";
+ sha256 = "1dprz84gmcp6xcsk873lhj32wm8b55vnqn0s984ggvwf1rjqw00c";
+ };
+
+ goDeps = ./deps.nix;
+
+ meta = with stdenv.lib; {
+ description = "Fresh implementation of Shadowsocks in Go";
+ homepage = "https://github.com/shadowsocks/go-shadowsocks2/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ geistesk ];
+ };
+}
diff --git a/pkgs/tools/networking/go-shadowsocks2/deps.nix b/pkgs/tools/networking/go-shadowsocks2/deps.nix
new file mode 100644
index 000000000000..7fe0c2b6985b
--- /dev/null
+++ b/pkgs/tools/networking/go-shadowsocks2/deps.nix
@@ -0,0 +1,30 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
+[
+ {
+ goPackagePath = "github.com/aead/chacha20";
+ fetch = {
+ type = "git";
+ url = "https://github.com/aead/chacha20";
+ rev = "8b13a72661dae6e9e5dea04f344f0dc95ea29547";
+ sha256 = "0gbmgq5kbqmbyrsav57ql4jzbvqvp1q7yvcd5fl3wf5g94iyv56r";
+ };
+ }
+ {
+ goPackagePath = "golang.org/x/crypto";
+ fetch = {
+ type = "git";
+ url = "https://go.googlesource.com/crypto";
+ rev = "60c769a6c58655dab1b9adac0d58967dd517cfba";
+ sha256 = "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8";
+ };
+ }
+ {
+ goPackagePath = "golang.org/x/sys";
+ fetch = {
+ type = "git";
+ url = "https://go.googlesource.com/sys";
+ rev = "fb81701db80f1745f51259b1f286de3fe2ec80c8";
+ sha256 = "1cgvyzkmsbvgyp75nxp10fpnpy08scz6ak60s9w0mkgibw7irhz3";
+ };
+ }
+]
diff --git a/pkgs/tools/networking/ngrok-2/default.nix b/pkgs/tools/networking/ngrok-2/default.nix
index e5650d5427cb..cc5620a1f4db 100644
--- a/pkgs/tools/networking/ngrok-2/default.nix
+++ b/pkgs/tools/networking/ngrok-2/default.nix
@@ -32,9 +32,6 @@ stdenv.mkDerivation {
installPhase = ''
install -D ngrok $out/bin/ngrok
- '' + optionalString stdenv.isLinux ''
- patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- $out/bin/ngrok
'';
passthru.updateScript = ./update.sh;
diff --git a/pkgs/tools/networking/ngrok-2/versions.json b/pkgs/tools/networking/ngrok-2/versions.json
index 591e54a6f815..656e6a640e53 100644
--- a/pkgs/tools/networking/ngrok-2/versions.json
+++ b/pkgs/tools/networking/ngrok-2/versions.json
@@ -1,32 +1,32 @@
{
"linux-386": {
"sys": "linux-386",
- "url": "https://bin.equinox.io/a/6i2VnqLBZqg/ngrok-2.3.29-linux-386",
- "sha256": "c0859f783e66a661dc1490e0cec95dfcce0ae77deaf0aa1838613afcbd8f9451",
- "version": "2.3.29"
+ "url": "https://bin.equinox.io/a/bjFaKy3TSAg/ngrok-2.3.35-linux-386",
+ "sha256": "1fdd1c057c3c31044400ef6ade20ad3f10bce415ad33ccfb4bc2fd83bb36f62f",
+ "version": "2.3.35"
},
"linux-amd64": {
"sys": "linux-amd64",
- "url": "https://bin.equinox.io/a/6ws4BqFTLXR/ngrok-2.3.29-linux-amd64",
- "sha256": "625e85af6d366be4cc54ba296a6e66d3311b99db36e6ea5fe7f88941874daabb",
- "version": "2.3.29"
+ "url": "https://bin.equinox.io/a/52fZaxjGg9n/ngrok-2.3.35-linux-amd64",
+ "sha256": "b456608239cdf4b5119916c62a87640667d1cb1900c53faed89e3dacc1fe4679",
+ "version": "2.3.35"
},
"linux-arm": {
"sys": "linux-arm",
- "url": "https://bin.equinox.io/a/3Qx4EX7AtXt/ngrok-2.3.29-linux-arm",
- "sha256": "8a2ec453b407bb0983d22819f3b76044100870888cc976fbf76ced18e6f66fa7",
- "version": "2.3.29"
+ "url": "https://bin.equinox.io/a/2cUd5mRRjoF/ngrok-2.3.35-linux-arm",
+ "sha256": "94d88311e9b2baea615d9fe7c6921ac0167040ec66aa0d0cbb856c027d617f1f",
+ "version": "2.3.35"
},
"linux-arm64": {
"sys": "linux-arm64",
- "url": "https://bin.equinox.io/a/7qbe9PkG69E/ngrok-2.3.29-linux-arm64",
- "sha256": "c49a9c95dc0128e8129f9b7291b5049a45d13f27bb309ca8af59e498f98b97d0",
- "version": "2.3.29"
+ "url": "https://bin.equinox.io/a/k2qx6ipHqpb/ngrok-2.3.35-linux-arm64",
+ "sha256": "fd07f5c449f1c1444606bbc9d06fa6b649325ddf0b3e6dac6f32d785a886f170",
+ "version": "2.3.35"
},
"darwin-amd64": {
"sys": "darwin-amd64",
- "url": "https://bin.equinox.io/a/eqL9fYWPxoV/ngrok-2.3.29-darwin-amd64",
- "sha256": "916ad7b4706e4c770eb58667c5beabf227daa1ad35bbbee41883eb2bce3f254b",
- "version": "2.3.29"
+ "url": "https://bin.equinox.io/a/jKkD2Wcds2L/ngrok-2.3.35-darwin-amd64",
+ "sha256": "dd74a6be1a155c41ff06aadad910196cae13e06ab997bc0b144288b2da568f2a",
+ "version": "2.3.35"
}
}
diff --git a/pkgs/tools/networking/p2p/amule/default.nix b/pkgs/tools/networking/p2p/amule/default.nix
index 7f6aeace7b8c..2330a97d77dd 100644
--- a/pkgs/tools/networking/p2p/amule/default.nix
+++ b/pkgs/tools/networking/p2p/amule/default.nix
@@ -25,6 +25,11 @@ stdenv.mkDerivation rec {
sha256 = "1n24r1j28083b8ipbnh1nf6i4j6vx59pdkfl1c0g6bb4psx9wvvi";
name = "libupnp_18.patch";
})
+ (fetchpatch {
+ name = "amule-cryptopp_6.patch";
+ url = "https://github.com/amule-project/amule/commit/27c13f3e622b8a3eaaa05bb62b0149604bdcc9e8.patch";
+ sha256 = "0kq095gi3xl665wr864zlhp5f3blk75pr725yany8ilzcwrzdrnm";
+ })
];
postPatch = ''
diff --git a/pkgs/tools/package-management/cargo-audit/default.nix b/pkgs/tools/package-management/cargo-audit/default.nix
index 8935519f835d..1a60675080d8 100644
--- a/pkgs/tools/package-management/cargo-audit/default.nix
+++ b/pkgs/tools/package-management/cargo-audit/default.nix
@@ -1,16 +1,16 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, openssl, pkg-config, Security, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "cargo-audit";
- version = "0.9.3";
+ version = "0.10.0";
src = fetchFromGitHub {
owner = "RustSec";
repo = "cargo-audit";
rev = "v${version}";
- sha256 = "0yd3qj475hh394f1ya0hwki3pbzkfyz5cssy28cq9bimibxhyfd8";
+ sha256 = "1977ykablfi4mc6j2iil0bxc6diy07vi5hm56xmqj3n37ziavf1m";
};
- cargoSha256 = "0ba4xrjrh8cbi4pksax3gs7jaiw5mrb9hdrdwaghkikmiza1c08g";
+ cargoSha256 = "0zbnsq0cif0yppn8ygxhcsrshkbf1c801f8waqqb2d1rjsrhb93y";
buildInputs = [ openssl libiconv ] ++ lib.optionals stdenv.isDarwin [ Security ];
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index 7f7ce425fa77..b15c8623fa59 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -1,25 +1,32 @@
{ stdenv, fetchurl
-, attr, keyutils, libaio, libapparmor, libbsd, libcap, libgcrypt, lksctp-tools, zlib
+, attr, judy, keyutils, libaio, libapparmor, libbsd, libcap, libgcrypt, lksctp-tools, zlib
}:
stdenv.mkDerivation rec {
pname = "stress-ng";
- version = "0.10.05";
+ version = "0.10.08";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz";
- sha256 = "0hkghs99fl8kzg3lkkd4w6cj5133zr9a415py0ng60kzrfffmgdy";
+ sha256 = "1kkmznn0y5wxi7x9nlhzyfy933bv66113in4rf0raw6brymympaa";
};
+ postPatch = ''
+ sed -i '/\#include /i #undef HAVE_STRLCAT\n#undef HAVE_STRLCPY' stress-ng.h
+ ''; # needed because of Darwin patch on libbsd
+
# All platforms inputs then Linux-only ones
- buildInputs = [ libbsd libgcrypt zlib ]
+ buildInputs = [ judy libbsd libgcrypt zlib ]
++ stdenv.lib.optionals stdenv.hostPlatform.isLinux [
attr keyutils libaio libapparmor libcap lksctp-tools
];
- postPatch = ''
- substituteInPlace Makefile --replace "/usr" ""
- '';
+ makeFlags = [
+ "BINDIR=${placeholder "out"}/bin"
+ "MANDIR=${placeholder "out"}/share/man/man1"
+ "JOBDIR=${placeholder "out"}/share/stress-ng/example-jobs"
+ "BASHDIR=${placeholder "out"}/share/bash-completion/completions"
+ ];
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.hostPlatform.isMusl "-D_LINUX_SYSINFO_H=1";
@@ -29,8 +36,6 @@ stdenv.mkDerivation rec {
# mystery, though. :-(
enableParallelBuilding = (!stdenv.isi686);
- installFlags = [ "DESTDIR=${placeholder "out"}" ];
-
meta = with stdenv.lib; {
description = "Stress test a computer system";
longDescription = ''
diff --git a/pkgs/tools/wayland/ydotool/default.nix b/pkgs/tools/wayland/ydotool/default.nix
new file mode 100644
index 000000000000..d8b6ad4ff87c
--- /dev/null
+++ b/pkgs/tools/wayland/ydotool/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, pkgconfig, cmake, boost, libevdevplus, libuinputplus }:
+
+stdenv.mkDerivation rec {
+ pname = "ydotool";
+ version = "0.1.8";
+
+ src = fetchFromGitHub {
+ owner = "ReimuNotMoe";
+ repo = "ydotool";
+ rev = "v${version}";
+ sha256 = "0mx3636p0f8pznmwm4rlbwq7wrmjb2ygkf8b3a6ps96a7j1fw39l";
+ };
+
+ # disable static linking
+ postPatch = ''
+ substituteInPlace CMakeLists.txt --replace \
+ "-static" \
+ ""
+ '';
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+ buildInputs = [
+ boost libevdevplus libuinputplus
+ ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "Generic Linux command-line automation tool";
+ license = licenses.mit;
+ maintainers = with maintainers; [ willibutz ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 58f114d1b1ae..3c4af7fab598 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -217,6 +217,8 @@ in
dumb-init = callPackage ../applications/virtualization/dumb-init {};
+ umoci = callPackage ../applications/virtualization/umoci {};
+
dispad = callPackage ../tools/X11/dispad { };
dump1090 = callPackage ../applications/radio/dump1090 { };
@@ -1425,6 +1427,8 @@ in
clipster = callPackage ../tools/misc/clipster { };
+ contrast = callPackage ../applications/accessibility/contrast { };
+
coprthr = callPackage ../development/libraries/coprthr { };
cplex = callPackage ../applications/science/math/cplex (config.cplex or {});
@@ -1608,6 +1612,8 @@ in
elm-github-install = callPackage ../tools/package-management/elm-github-install { };
+ elogind = callPackage ../applications/misc/elogind { };
+
enca = callPackage ../tools/text/enca { };
ent = callPackage ../tools/misc/ent { };
@@ -1686,6 +1692,8 @@ in
fzf = callPackage ../tools/misc/fzf { };
+ fzf-zsh = callPackage ../shells/zsh/fzf-zsh { };
+
fzy = callPackage ../tools/misc/fzy { };
g2o = callPackage ../development/libraries/g2o { };
@@ -4537,10 +4545,18 @@ in
nodejs-slim-12_x = callPackage ../development/web/nodejs/v12.nix {
enableNpm = false;
};
+ nodejs-13_x = callPackage ../development/web/nodejs/v13.nix { };
+ nodejs-slim-13_x = callPackage ../development/web/nodejs/v13.nix {
+ enableNpm = false;
+ };
# Update this when adding the newest nodejs major version!
- nodejs_latest = nodejs-12_x;
- nodejs-slim_latest = nodejs-slim-12_x;
+ nodejs_latest = nodejs-13_x;
+ nodejs-slim_latest = nodejs-slim-13_x;
+
+ nodePackages_13_x = dontRecurseIntoAttrs (callPackage ../development/node-packages/default-v13.nix {
+ nodejs = pkgs.nodejs-13_x;
+ });
nodePackages_12_x = dontRecurseIntoAttrs (callPackage ../development/node-packages/default-v12.nix {
nodejs = pkgs.nodejs-12_x;
@@ -4586,6 +4602,8 @@ in
lftp = callPackage ../tools/networking/lftp { };
+ libck = callPackage ../development/libraries/libck { };
+
libconfig = callPackage ../development/libraries/libconfig { };
libcmis = callPackage ../development/libraries/libcmis { };
@@ -4598,6 +4616,8 @@ in
libevdev = callPackage ../development/libraries/libevdev { };
+ libevdevplus = callPackage ../development/libraries/libevdevplus { };
+
libfann = callPackage ../development/libraries/libfann { };
libfsm = callPackage ../development/libraries/libfsm { };
@@ -5375,6 +5395,8 @@ in
opn2bankeditor = callPackage ../tools/audio/opl3bankeditor/opn2bankeditor.nix { };
+ orangefs = callPackage ../tools/filesystems/orangefs { };
+
os-prober = callPackage ../tools/misc/os-prober {};
osl = callPackage ../development/compilers/osl { };
@@ -5746,6 +5768,8 @@ in
pygmentex = callPackage ../tools/typesetting/pygmentex { };
+ pympress = callPackage ../applications/office/pympress { };
+
pythonIRClib = pythonPackages.pythonIRClib;
pythonSexy = pythonPackages.libsexy;
@@ -6097,7 +6121,7 @@ in
qtbase = qt4;
};
- scfbuild = python2.pkgs.callPackage ../tools/misc/scfbuild { };
+ scfbuild = python3.pkgs.callPackage ../tools/misc/scfbuild { };
scriptaculous = callPackage ../development/libraries/scriptaculous { };
@@ -6147,6 +6171,8 @@ in
shadowsocks-libev = callPackage ../tools/networking/shadowsocks-libev { };
+ go-shadowsocks2 = callPackage ../tools/networking/go-shadowsocks2 { };
+
shabnam-fonts = callPackage ../data/fonts/shabnam-fonts { };
shadowsocks-rust = callPackage ../tools/networking/shadowsocks-rust {
@@ -6643,6 +6669,8 @@ in
tpm2-tools = callPackage ../tools/security/tpm2-tools { };
+ trezor-udev-rules = callPackage ../os-specific/linux/trezor-udev-rules {};
+
trezord = callPackage ../servers/trezord { };
tthsum = callPackage ../applications/misc/tthsum { };
@@ -7123,6 +7151,8 @@ in
wdiff = callPackage ../tools/text/wdiff { };
+ wdisplays = callPackage ../tools/graphics/wdisplays { };
+
webalizer = callPackage ../tools/networking/webalizer { };
weighttp = callPackage ../tools/networking/weighttp { };
@@ -7968,7 +7998,9 @@ in
graphviz = graphviz-nox;
});
- inherit (ocaml-ng.ocamlPackages_4_05.haxe) haxe_3_2 haxe_3_4;
+ inherit (callPackage ../development/compilers/haxe {
+ ocamlPackages = ocaml-ng.ocamlPackages_4_05;
+ }) haxe_3_2 haxe_3_4;
haxe = haxe_3_4;
haxePackages = recurseIntoAttrs (callPackage ./haxe-packages.nix { });
inherit (haxePackages) hxcpp;
@@ -9012,9 +9044,7 @@ in
pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/cpython/docs {});
- pypi2nix = callPackage ../development/tools/pypi2nix {
- pythonPackages = python3Packages;
- };
+ pypi2nix = callPackage ../development/tools/pypi2nix {};
setupcfg2nix = python3Packages.callPackage ../development/tools/setupcfg2nix {};
@@ -10879,6 +10909,8 @@ in
blas = if stdenv.isDarwin then blas else openblas;
};
+ forge = callPackage ../development/libraries/forge { };
+
linbox = callPackage ../development/libraries/linbox {
# We need to use blas instead of openblas on darwin, see
# https://github.com/NixOS/nixpkgs/pull/45013 and
@@ -11720,6 +11752,8 @@ in
libaal = callPackage ../development/libraries/libaal { };
+ libabigail = callPackage ../development/libraries/libabigail { };
+
libaccounts-glib = callPackage ../development/libraries/libaccounts-glib { };
libacr38u = callPackage ../tools/security/libacr38u { };
@@ -12611,6 +12645,8 @@ in
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
+ libuinputplus = callPackage ../development/libraries/libuinputplus { };
+
libunistring = callPackage ../development/libraries/libunistring { };
libupnp = callPackage ../development/libraries/pupnp { };
@@ -14372,6 +14408,8 @@ in
yder = callPackage ../development/libraries/yder { };
+ ydotool = callPackage ../tools/wayland/ydotool { };
+
yojimbo = callPackage ../development/libraries/yojimbo { };
yubioath-desktop = libsForQt5.callPackage ../applications/misc/yubioath-desktop { };
@@ -15470,7 +15508,9 @@ in
shiori = callPackage ../servers/web-apps/shiori { };
- matomo = callPackage ../servers/web-apps/matomo { };
+ inherit (callPackages ../servers/web-apps/matomo {})
+ matomo
+ matomo-beta;
axis2 = callPackage ../servers/http/tomcat/axis2 { };
@@ -15895,6 +15935,8 @@ in
osxfuse = callPackage ../os-specific/darwin/osxfuse { };
+ osxsnarf = callPackage ../os-specific/darwin/osxsnarf { };
+
power-calibrate = callPackage ../os-specific/linux/power-calibrate { };
powerstat = callPackage ../os-specific/linux/powerstat { };
@@ -17813,6 +17855,12 @@ in
bs1770gain = callPackage ../applications/audio/bs1770gain { };
+ bsequencer = callPackage ../applications/audio/bsequencer { };
+
+ bslizr = callPackage ../applications/audio/bslizr { };
+
+ bshapr = callPackage ../applications/audio/bshapr { };
+
bspwm = callPackage ../applications/window-managers/bspwm { };
btops = callPackage ../applications/window-managers/btops { };
@@ -19732,7 +19780,9 @@ in
lua = lua5;
};
- inherit (ocaml-ng.ocamlPackages_4_01_0) monotoneViz;
+ monotoneViz = callPackage ../applications/version-management/monotone-viz {
+ ocamlPackages = ocaml-ng.ocamlPackages_4_01_0;
+ };
moolticute = libsForQt5.callPackage ../applications/misc/moolticute { };
@@ -21577,6 +21627,8 @@ in
wmii_hg = callPackage ../applications/window-managers/wmii-hg { };
+ wofi = callPackage ../applications/misc/wofi { };
+
wordnet = callPackage ../applications/misc/wordnet { };
wordgrinder = callPackage ../applications/office/wordgrinder { };
@@ -22566,7 +22618,9 @@ in
openra = openraPackages.engines.release;
- openrw = callPackage ../games/openrw { };
+ openrw = callPackage ../games/openrw {
+ inherit (darwin.apple_sdk.frameworks) Cocoa OpenAL;
+ };
openspades = callPackage ../games/openspades {
inherit (darwin.apple_sdk.frameworks) Cocoa;
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index ed33c2b6415f..36aa85d570c9 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -1107,8 +1107,6 @@ let
# Apps / from all-packages
- haxe = callPackage ../development/compilers/haxe { };
-
ocamlnat = callPackage ../development/ocaml-modules/ocamlnat { };
trv = callPackage ../development/tools/misc/trv { };
@@ -1117,11 +1115,6 @@ let
google-drive-ocamlfuse = callPackage ../applications/networking/google-drive-ocamlfuse { };
-
- monotoneViz = callPackage ../applications/version-management/monotone-viz {
- inherit (pkgs.gnome2) libgnomecanvas glib;
- };
-
unison = callPackage ../applications/networking/sync/unison {
enableX11 = config.unison.enableX11 or true;
};
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d723bdb2b634..6b3e434074ac 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -715,6 +715,8 @@ in {
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
kconfiglib = callPackage ../development/python-modules/kconfiglib { };
+
+ labelbox = callPackage ../development/python-modules/labelbox { };
lammps-cython = callPackage ../development/python-modules/lammps-cython {
mpi = pkgs.openmpi;
@@ -797,6 +799,8 @@ in {
inherit python;
};
+ nix-prefetch-github = callPackage ../development/python-modules/nix-prefetch-github { };
+
nixpart = callPackage ../tools/filesystems/nixpart { };
# This is used for NixOps to make sure we won't break it with the next major
@@ -832,6 +836,8 @@ in {
palettable = callPackage ../development/python-modules/palettable { };
+ parsley = callPackage ../development/python-modules/parsley { };
+
pastel = callPackage ../development/python-modules/pastel { };
pathlib = callPackage ../development/python-modules/pathlib { };
@@ -1978,6 +1984,8 @@ in {
pythonPackages = self;
});
+ opentracing = callPackage ../development/python-modules/opentracing { };
+
openidc-client = callPackage ../development/python-modules/openidc-client {};
optuna = callPackage ../development/python-modules/optuna { };
@@ -2565,6 +2573,23 @@ in {
inherit (pkgs) libsexy pkgconfig;
};
+ libselinux = pipe pkgs.libselinux [
+ toPythonModule
+
+ (p: p.overrideAttrs (super: {
+ meta = super.meta // {
+ outputsToInstall = [ "py" ];
+ };
+ }))
+
+ (p: p.override {
+ enablePython = true;
+ inherit python;
+ })
+
+ (p: p.py)
+ ];
+
libsoundtouch = callPackage ../development/python-modules/libsoundtouch { };
libthumbor = callPackage ../development/python-modules/libthumbor { };
@@ -3964,6 +3989,8 @@ in {
nbmerge = callPackage ../development/python-modules/nbmerge { };
+ nbdime = callPackage ../development/python-modules/nbdime { };
+
nbxmpp = callPackage ../development/python-modules/nbxmpp { };
sleekxmpp = callPackage ../development/python-modules/sleekxmpp { };
@@ -5167,6 +5194,8 @@ in {
vsts = callPackage ../development/python-modules/vsts { };
+ python-vlc = callPackage ../development/python-modules/python-vlc { };
+
weasyprint = callPackage ../development/python-modules/weasyprint { };
webassets = callPackage ../development/python-modules/webassets { };