Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
a13bf182 ce79b669

+2715 -2188
+1 -1
.github/CODEOWNERS
··· 110 110 111 111 # Rust 112 112 /pkgs/development/compilers/rust @Mic92 @LnL7 @zowoq 113 - /pkgs/build-support/rust @andir @danieldk @zowoq 113 + /pkgs/build-support/rust @andir @zowoq 114 114 115 115 # Darwin-related 116 116 /pkgs/stdenv/darwin @NixOS/darwin-maintainers
+7
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 1182 1182 other and share data. 1183 1183 </para> 1184 1184 </listitem> 1185 + <listitem> 1186 + <para> 1187 + <literal>lua</literal> and <literal>luajit</literal> 1188 + interpreters have been patched to avoid looking into /usr/lib 1189 + directories, thus increasing the purity of the build. 1190 + </para> 1191 + </listitem> 1185 1192 </itemizedlist> 1186 1193 </section> 1187 1194 </section>
+3
nixos/doc/manual/release-notes/rl-2111.section.md
··· 335 335 - `rofi` has been updated from '1.6.1' to '1.7.0', one important thing is the removal of the old xresources based configuration setup. Read more [in rofi's changelog](https://github.com/davatorium/rofi/blob/cb12e6fc058f4a0f4f/Changelog#L1). 336 336 337 337 - ipfs now defaults to not listening on you local network. This setting was change as server providers won't accept port scanning on their private network. If you have several ipfs instances running on a network you own, feel free to change the setting `ipfs.localDiscovery = true;`. localDiscovery enables different instances to discover each other and share data. 338 + 339 + - `lua` and `luajit` interpreters have been patched to avoid looking into /usr/lib 340 + directories, thus increasing the purity of the build.
+8 -19
nixos/modules/services/amqp/rabbitmq.nix
··· 135 135 description = "The list of directories containing external plugins"; 136 136 }; 137 137 138 - managementPlugin = mkOption { 139 - description = "The options to run the management plugin"; 140 - type = types.submodule { 141 - options = { 142 - enable = mkOption { 143 - default = false; 144 - type = types.bool; 145 - description = '' 146 - Whether to enable the management plugin 147 - ''; 148 - }; 149 - port = mkOption { 150 - default = 15672; 151 - type = types.port; 152 - description = '' 153 - On which port to run the management plugin 154 - ''; 155 - }; 156 - }; 138 + managementPlugin = { 139 + enable = mkEnableOption "the management plugin"; 140 + port = mkOption { 141 + default = 15672; 142 + type = types.port; 143 + description = '' 144 + On which port to run the management plugin 145 + ''; 157 146 }; 158 147 }; 159 148 };
+4
nixos/modules/services/logging/promtail.nix
··· 7 7 ''; 8 8 9 9 allowSystemdJournal = cfg.configuration ? scrape_configs && lib.any (v: v ? journal) cfg.configuration.scrape_configs; 10 + 11 + allowPositionsFile = !lib.hasPrefix "/var/cache/promtail" positionsFile; 12 + positionsFile = cfg.configuration.positions.filename; 10 13 in { 11 14 options.services.promtail = with types; { 12 15 enable = mkEnableOption "the Promtail ingresser"; ··· 53 56 RestrictSUIDSGID = true; 54 57 PrivateMounts = true; 55 58 CacheDirectory = "promtail"; 59 + ReadWritePaths = lib.optional allowPositionsFile (builtins.dirOf positionsFile); 56 60 57 61 User = "promtail"; 58 62 Group = "promtail";
+1 -1
nixos/tests/handbrake.nix
··· 9 9 name = "handbrake"; 10 10 11 11 meta = { 12 - maintainers = with pkgs.lib.maintainers; [ danieldk ]; 12 + maintainers = with pkgs.lib.maintainers; [ ]; 13 13 }; 14 14 15 15 machine = { pkgs, ... }: {
+9 -1
pkgs/applications/editors/neovim/tests.nix
··· 84 84 viAlias = true; 85 85 }; 86 86 87 + nvim_with_plug = neovim.override { 88 + extraName = "-with-plug"; 89 + configure.plug.plugins = with pkgs.vimPlugins; [ 90 + vim-go 91 + ]; 92 + }; 93 + 87 94 # nixpkgs should detect that no wrapping is necessary 88 95 nvimShouldntWrap = wrapNeovim2 "-should-not-wrap" nvimAutoDisableWrap; 89 96 ··· 133 140 configure.pathogen.pluginNames = [ "vim-nix" ]; 134 141 }; 135 142 136 - nvimWithLuaPackages = wrapNeovim2 "with-lua-packages" (makeNeovimConfig { 143 + nvimWithLuaPackages = wrapNeovim2 "-with-lua-packages" (makeNeovimConfig { 137 144 extraLuaPackages = ps: [ps.mpack]; 138 145 customRC = '' 139 146 lua require("mpack") ··· 141 148 }); 142 149 143 150 nvim_with_lua_packages = runTest nvimWithLuaPackages '' 151 + export HOME=$TMPDIR 144 152 ${nvimWithLuaPackages}/bin/nvim -i NONE --noplugin -es 145 153 ''; 146 154 })
+3 -4
pkgs/applications/editors/neovim/utils.nix
··· 78 78 ++ (extraPython3Packages ps) 79 79 ++ (lib.concatMap (f: f ps) pluginPython3Packages)); 80 80 81 - lua = neovim-unwrapped.lua; 82 - luaEnv = lua.withPackages(ps: extraLuaPackages ps); 81 + luaEnv = neovim-unwrapped.lua.withPackages(extraLuaPackages); 83 82 84 83 # Mapping a boolean argument to a key that tells us whether to add or not to 85 84 # add to nvim's 'embedded rc' this: ··· 115 114 ] ++ lib.optionals (binPath != "") [ 116 115 "--suffix" "PATH" ":" binPath 117 116 ] ++ lib.optionals (luaEnv != null) [ 118 - "--prefix" "LUA_PATH" ";" "${luaEnv}/share/lua/${lua.luaversion}/?.lua" 119 - "--prefix" "LUA_CPATH" ";" "${luaEnv}/lib/lua/${lua.luaversion}/?.so" 117 + "--prefix" "LUA_PATH" ";" (neovim-unwrapped.lua.pkgs.lib.genLuaPathAbsStr luaEnv) 118 + "--prefix" "LUA_CPATH" ";" (neovim-unwrapped.lua.pkgs.lib.genLuaCPathAbsStr luaEnv) 120 119 ]; 121 120 122 121
+1 -1
pkgs/applications/editors/vim/vimacs.nix
··· 11 11 12 12 buildCommand = '' 13 13 mkdir -p "$out"/bin 14 - cp "${vimPlugins.vimacs}"/share/vim-plugins/vimacs/bin/vim $out/bin/vimacs 14 + cp "${vimPlugins.vimacs}"/bin/vim $out/bin/vimacs 15 15 substituteInPlace "$out"/bin/vimacs \ 16 16 --replace '-vim}' '-@bin@/bin/vim}' \ 17 17 --replace '-gvim}' '-@bin@/bin/vim -g}' \
+7 -8
pkgs/applications/editors/vis/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, makeDesktopItem 2 - , ncurses, libtermkey, lpeg, lua 2 + , ncurses, libtermkey, lua 3 3 , acl ? null, libselinux ? null 4 4 }: 5 5 6 + let 7 + luaEnv = lua.withPackages(ps: [ ps.lpeg ]); 8 + in 6 9 stdenv.mkDerivation rec { 7 10 pname = "vis"; 8 11 version = "0.7"; ··· 19 22 buildInputs = [ 20 23 ncurses 21 24 libtermkey 22 - lua 23 - lpeg 25 + luaEnv 24 26 ] ++ lib.optionals stdenv.isLinux [ 25 27 acl 26 28 libselinux ··· 30 32 patchShebangs ./configure 31 33 ''; 32 34 33 - LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;"; 34 - LUA_PATH="${lpeg}/share/lua/${lua.luaversion}/?.lua"; 35 - 36 35 postInstall = '' 37 36 mkdir -p "$out/share/applications" 38 37 cp $desktopItem/share/applications/* $out/share/applications 39 38 echo wrapping $out/bin/vis with runtime environment 40 39 wrapProgram $out/bin/vis \ 41 - --prefix LUA_CPATH ';' "${lpeg}/lib/lua/${lua.luaversion}/?.so" \ 42 - --prefix LUA_PATH ';' "${lpeg}/share/lua/${lua.luaversion}/?.lua" \ 40 + --prefix LUA_CPATH ';' "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \ 41 + --prefix LUA_PATH ';' "${luaEnv}/share/lua/${lua.luaversion}/?.lua" \ 43 42 --prefix VIS_PATH : "\$HOME/.config:$out/share/vis" 44 43 ''; 45 44
+2 -2
pkgs/applications/misc/notejot/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "notejot"; 21 - version = "3.1.2"; 21 + version = "3.1.5"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "lainsce"; 25 25 repo = pname; 26 26 rev = version; 27 - hash = "sha256-Exg9HxV3cxySuT8ifVyZgoATQ/FAC8umj3smJ7W/5/Y="; 27 + hash = "sha256-wsHQvN+sqAMs1QldiRoc9JlF4d54JFqNkqC+lyuHC7M="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 31 31 32 32 in stdenv.mkDerivation rec { 33 33 pname = "obsidian"; 34 - version = "0.12.12"; 34 + version = "0.12.15"; 35 35 36 36 src = fetchurl { 37 37 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/obsidian-${version}.tar.gz"; 38 - sha256 = "sha256-zvWJvMmb0TlFYXrT2QUgMG6uleT42+y+F4bSZQ2ftnE="; 38 + sha256 = "sha256-0pAwTkx89B6S0GPes2XXSRNdByIc+DwiI5HXoUqs/QE="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ makeWrapper graphicsmagick ];
+18 -11
pkgs/applications/misc/taskopen/default.nix
··· 1 - { fetchurl, lib, stdenv, makeWrapper, which, perl, perlPackages }: 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, which, perl, perlPackages }: 2 2 3 - stdenv.mkDerivation { 4 - name = "taskopen-1.1.5"; 5 - src = fetchurl { 6 - url = "https://github.com/ValiValpas/taskopen/archive/v1.1.5.tar.gz"; 7 - sha256 = "sha256-7fncdt1wCJ4zNLrCf93yRFD8Q4XQ3DCJ1+zJg9Gcl3w="; 3 + stdenv.mkDerivation rec { 4 + pname = "taskopen"; 5 + version = "1.1.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ValiValpas"; 9 + repo = "taskopen"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-/xf7Ph2KKiZ5lgLKk95nCgw/z9wIBmuWf3QGaNebgHg="; 8 12 }; 9 13 10 - nativeBuildInputs = [ makeWrapper ]; 11 - buildInputs = [ which perl ] ++ (with perlPackages; [ JSON ]); 12 - 13 - installPhase = '' 14 + postPatch = '' 14 15 # We don't need a DESTDIR and an empty string results in an absolute path 15 16 # (due to the trailing slash) which breaks the build. 16 17 sed 's|$(DESTDIR)/||' -i Makefile 18 + ''; 17 19 20 + nativeBuildInputs = [ makeWrapper ]; 21 + buildInputs = [ which ] 22 + ++ (with perlPackages; [ JSON perl ]); 23 + 24 + installPhase = '' 18 25 make PREFIX=$out 19 26 make PREFIX=$out install 20 27 ''; ··· 28 35 description = "Script for taking notes and open urls with taskwarrior"; 29 36 homepage = "https://github.com/ValiValpas/taskopen"; 30 37 platforms = platforms.linux; 31 - license = lib.licenses.free ; 38 + license = licenses.free; 32 39 maintainers = [ maintainers.winpat ]; 33 40 }; 34 41 }
+2 -2
pkgs/applications/networking/cloudflared/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloudflared"; 5 - version = "2021.8.6"; 5 + version = "2021.8.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "cloudflared"; 10 10 rev = version; 11 - sha256 = "sha256-dMZu4IRdchPeoYylz1XDZeJsAW+V8HZApNndpeu+RbA="; 11 + sha256 = "sha256-Q8Xjo60lR1x7Y9/jcxXX32IxVVlHmkr4ekIwWTgdwps="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+22
pkgs/applications/networking/cluster/hubble/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "hubble"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "cilium"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1n1930hlaflx7kzqbz7vvnxw9hrps84kqibaf2ixnjp998kqkl6d"; 12 + }; 13 + 14 + vendorSha256 = null; 15 + 16 + meta = with lib; { 17 + description = "Network, Service & Security Observability for Kubernetes using eBPF"; 18 + license = licenses.asl20; 19 + homepage = "https://github.com/cilium/hubble/"; 20 + maintainers = with maintainers; [ humancalico ]; 21 + }; 22 + }
+2 -2
pkgs/applications/networking/cluster/kubeconform/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubeconform"; 5 - version = "0.4.8"; 5 + version = "0.4.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "yannh"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-XD8xGqtE7eaBxPL4Z0Kw4BEqM2fdgww7wl8wJ1U3u0U="; 11 + sha256 = "sha256-D1/ljIOc5vK6HcYmk0WNnIRGBt1vJk9dGxl5GjhKhuA="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/applications/networking/cluster/kubedb-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubedb-cli"; 5 - version = "0.19.0"; 5 + version = "0.20.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kubedb"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CwAa2YqJ0R+L+VwxqruQmZJUctP4GgKszY49ZVyyNBE="; 11 + sha256 = "sha256-E8oI0qBDS6CcA5ZDGs1YVt/BPEfUzCrt5aaqfHAXukI="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+5 -5
pkgs/applications/networking/cluster/octant/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "octant"; 5 - version = "0.23.0"; 5 + version = "0.24.0"; 6 6 7 7 src = 8 8 let ··· 19 19 }; 20 20 in 21 21 fetchsrc version { 22 - x86_64-linux = "sha256-wnm4Zprlao+zbWVJNY4BsAT1fFMft7luyDaW2HfNotg="; 23 - aarch64-linux = "sha256-eYvfLUelSrmdY9dbgAlPm7en88hsdCnejJGq2Gz4DN0="; 24 - x86_64-darwin = "sha256-NXMQ4mbYfIK+arGWZVhQk5iAw6AZM9PAGJ9CEC/rmgA="; 25 - aarch64-darwin = "sha256-WqlbiDV2CuBYr6IXQ8vaESxKNZGp9vBj683igazcmwM="; 22 + x86_64-linux = "sha256-fvGVcp6SpHY0UuWurRuypDXbWEs565bK1Peg0Q4Y0m8="; 23 + aarch64-linux = "sha256-7h8l4Pm34UCZ5NhD1scM1c5sM4ePGLDRGAQBfI5vSHI="; 24 + x86_64-darwin = "sha256-2S+D5Gg98GEL5L6bC8ZUSEJXFs74ZaZlNkYHYJYZvqw="; 25 + aarch64-darwin = "sha256-rEhMX+v2sjsmc1p22uscjIyhcnpv2fWjgEnU+lUq9RE="; 26 26 }; 27 27 28 28 dontConfigure = true;
+2 -2
pkgs/applications/networking/cluster/tanka/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tanka"; 5 - version = "0.17.0"; 5 + version = "0.17.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "grafana"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9UfSKMyapmDyikRqs7UiA4YYcvj/Tin9pRqC9iFLPWE="; 11 + sha256 = "sha256-a7utYYuCgFabKILUKnKF0fcrorlV1DYMOFMRkm5QMuU="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw=";
+3 -3
pkgs/applications/networking/gmailctl/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "gmailctl"; 8 - version = "0.8.0"; 8 + version = "0.9.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mbrt"; 12 12 repo = "gmailctl"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-UZzpecW4vW1JYUDCcwDIJXCGjw80fgZC4wvCh0DdE98="; 14 + sha256 = "sha256-1gOixuOvPHEjnnDNNda9sktnhffovOfeG4XDrLRRMlE="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-5oVr1qazTzsSNVLvcAsAN8UyrJOeqLjSVinImLOyJlk="; 17 + vendorSha256 = "sha256-Yv3OGHFOmenst/ujUgvCaSEjwwBf3W9n+55ztVhuWjo="; 18 18 19 19 doCheck = false; 20 20
+2 -2
pkgs/applications/office/semantik/default.nix
··· 24 24 25 25 mkDerivation rec { 26 26 pname = "semantik"; 27 - version = "1.2.5"; 27 + version = "1.2.7"; 28 28 29 29 src = fetchFromGitLab { 30 30 owner = "ita1024"; 31 31 repo = "semantik"; 32 32 rev = "semantik-${version}"; 33 - sha256 = "0dkg6mbnsbvbis17iz8v59wlhld93nc51abnkbyqvvkyyiqb006c"; 33 + sha256 = "sha256-aXOokji6fYTpaeI/IIV+5RnTE2Cm8X3WfADf4Uftkss="; 34 34 }; 35 35 36 36 patches = [ ./qt5.patch ];
+2 -5
pkgs/applications/science/electronics/openems/default.nix
··· 15 15 , withQcsxcad ? true 16 16 , withMPI ? false 17 17 , withHyp2mat ? true 18 - , qcsxcad ? null 19 - , hyp2mat ? null 18 + , qcsxcad 19 + , hyp2mat 20 20 }: 21 - 22 - assert withQcsxcad -> qcsxcad != null; 23 - assert withHyp2mat -> hyp2mat != null; 24 21 25 22 stdenv.mkDerivation { 26 23 pname = "openems";
+17 -9
pkgs/applications/science/electronics/xoscope/default.nix
··· 1 - {lib, stdenv, fetchurl, gtk2, pkg-config}: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , gtk3 5 + , gtkdatabox 6 + , fftw 7 + , gnum4 8 + , comedilib 9 + , alsa-lib 10 + , pkg-config 11 + }: 2 12 3 13 stdenv.mkDerivation rec { 4 - name = "xoscope-2.0"; 14 + pname = "xoscope"; 15 + version = "2.3"; 5 16 6 17 src = fetchurl { 7 - url = "mirror://sourceforge/xoscope/${name}.tgz"; 8 - sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8"; 18 + url = "mirror://sourceforge/xoscope/${pname}-${version}.tar.gz"; 19 + sha256 = "0a5ycfc1qdmibvagc82r2mhv2i99m6pndy5i6ixas3j2297g6pgq"; 9 20 }; 10 21 11 - nativeBuildInputs = [ pkg-config ]; 12 - buildInputs = [ gtk2 ]; 13 - 14 - # from: https://aur.archlinux.org/packages.php?ID=12140&detail=1 15 - patches = [ ./gtkdepre.diff ]; 22 + nativeBuildInputs = [ pkg-config gnum4 ]; 23 + buildInputs = [ gtk3 gtkdatabox fftw comedilib alsa-lib ]; 16 24 17 25 meta = { 18 26 description = "Oscilloscope through the sound card";
-58
pkgs/applications/science/electronics/xoscope/gtkdepre.diff
··· 1 - diff -ru xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/gtkdatabox.c xoscope-2.0/gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2 - --- xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2010-06-07 10:42:24.000000000 +0200 3 - +++ xoscope-2.0/gtkdatabox-0.6.0.0/gtk/gtkdatabox.c 2010-06-07 10:45:40.000000000 +0200 4 - @@ -661,7 +661,7 @@ 5 - static void 6 - gtk_databox_calculate_hcanvas (GtkDatabox *box) 7 - { 8 - - if (!GTK_WIDGET_VISIBLE (box)) 9 - + if (!gtk_widget_get_visible (box)) 10 - return; 11 - 12 - if (box->priv->adjX->page_size == 1.0) 13 - @@ -698,7 +698,7 @@ 14 - static void 15 - gtk_databox_calculate_vcanvas (GtkDatabox *box) 16 - { 17 - - if (!GTK_WIDGET_VISIBLE (box)) 18 - + if (!gtk_widget_get_visible (box)) 19 - return; 20 - 21 - if (box->priv->adjY->page_size == 1.0) 22 - @@ -780,7 +780,7 @@ 23 - gtk_databox_draw (box, event); 24 - 25 - gdk_draw_drawable (widget->window, 26 - - widget->style->fg_gc[GTK_WIDGET_STATE (widget)], 27 - + widget->style->fg_gc[gtk_widget_get_state (widget)], 28 - box->priv->canvas.pixmap, event->area.x, event->area.y, 29 - event->area.x, event->area.y, event->area.width, 30 - event->area.height); 31 - @@ -940,7 +940,7 @@ 32 - GtkWidget *widget = GTK_WIDGET (box); 33 - 34 - g_return_if_fail (GTK_IS_DATABOX (box)); 35 - - g_return_if_fail (GTK_WIDGET_VISIBLE (widget)); 36 - + g_return_if_fail (gtk_widget_get_visible (widget)); 37 - 38 - gdk_draw_rectangle (box->priv->canvas.pixmap, widget->style->bg_gc[0], 39 - TRUE, 0, 0, 40 - @@ -1150,7 +1150,7 @@ 41 - /* Copy a part of the pixmap to the screen */ 42 - if (pixmapCopyRect) 43 - gdk_draw_drawable (widget->window, 44 - - widget->style->fg_gc[GTK_WIDGET_STATE (box)], 45 - + widget->style->fg_gc[gtk_widget_get_state (box)], 46 - box->priv->canvas.pixmap, 47 - pixmapCopyRect->x, 48 - pixmapCopyRect->y, 49 - --- xoscope-2.0-old//gtkdatabox-0.6.0.0/gtk/Makefile.in 2011-09-02 16:43:43.000000000 +0200 50 - +++ xoscope-2.0/gtkdatabox-0.6.0.0/gtk/Makefile.in 2011-09-02 16:43:57.000000000 +0200 51 - @@ -196,7 +196,6 @@ 52 - -DG_DISABLE_DEPRECATED\ 53 - -DGDK_DISABLE_DEPRECATED\ 54 - -DGDK_PIXBUF_DISABLE_DEPRECATED\ 55 - - -DGTK_DISABLE_DEPRECATED\ 56 - `pkg-config gtk+-2.0 --cflags` 57 - 58 - all: all-am
+1 -1
pkgs/applications/science/machine-learning/fasttext/default.nix
··· 18 18 homepage = "https://fasttext.cc/"; 19 19 license = licenses.mit; 20 20 platforms = platforms.unix; 21 - maintainers = [ maintainers.danieldk ]; 21 + maintainers = [ ]; 22 22 }; 23 23 }
+1 -1
pkgs/applications/science/machine-learning/finalfrontier/default.nix
··· 46 46 description = "Utility for training word and subword embeddings"; 47 47 homepage = "https://github.com/finalfusion/finalfrontier/"; 48 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ danieldk ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/applications/science/machine-learning/finalfusion-utils/default.nix
··· 50 50 description = "Utility for converting, quantizing, and querying word embeddings"; 51 51 homepage = "https://github.com/finalfusion/finalfusion-utils/"; 52 52 license = licenses.asl20; 53 - maintainers = with maintainers; [ danieldk ]; 53 + maintainers = with maintainers; [ ]; 54 54 }; 55 55 }
+2 -2
pkgs/applications/version-management/git-and-tools/gitstatus/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gitstatus"; 5 - version = "1.5.2"; 5 + version = "1.5.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "romkatv"; 9 9 repo = "gitstatus"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-MQG4thW73gDqY68bKP2FO8z5uc2R/tED+/X9qas/GOA="; 11 + sha256 = "sha256-ZTpnT4kuntHdMWK7c/pHS6mJrAHF9T51DydXnWXj8Z0="; 12 12 }; 13 13 14 14 buildInputs = [ (callPackage ./romkatv_libgit2.nix { }) ];
+1
pkgs/applications/virtualization/bochs/default.nix
··· 100 100 "--enable-sb16" 101 101 "--enable-show-ips" 102 102 "--enable-smp" 103 + "--enable-vmx=2" 103 104 "--enable-svm" 104 105 "--enable-trace-linking" 105 106 "--enable-usb"
+2 -2
pkgs/applications/virtualization/docker/buildx.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "docker-buildx"; 5 - version = "0.6.2"; 5 + version = "0.6.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "docker"; 9 9 repo = "buildx"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-X/oTL/CfMunGcS3HDoH/g1gZcJWnVU93OkcGC36KuA4="; 11 + sha256 = "sha256-UKIT3PfybuQjKxxFbRQSCA8G3R2xIySWEDUKg27u5Rk="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+11 -11
pkgs/applications/window-managers/awesome/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, luaPackages, cairo, librsvg, cmake, imagemagick, pkg-config, gdk-pixbuf 1 + { lib, stdenv, fetchFromGitHub, lua, cairo, librsvg, cmake, imagemagick, pkg-config, gdk-pixbuf 2 2 , xorg, libstartup_notification, libxdg_basedir, libpthreadstubs 3 3 , xcb-util-cursor, makeWrapper, pango, gobject-introspection 4 4 , which, dbus, nettools, git, doxygen ··· 11 11 12 12 # needed for beautiful.gtk to work 13 13 assert gtk3Support -> gtk3 != null; 14 + 15 + let 16 + luaEnv = lua.withPackages(ps: [ ps.lgi ps.ldoc ]); 17 + in 14 18 15 19 stdenv.mkDerivation rec { 16 - lgi = luaPackages.lgi; 17 - lua = luaPackages.lua; 18 - ldoc = luaPackages.ldoc; 19 20 pname = "awesome"; 20 21 version = "4.3"; 21 22 ··· 35 36 xmlto docbook_xml_dtd_45 36 37 docbook_xsl findXMLCatalogs 37 38 asciidoctor 38 - ldoc 39 39 ]; 40 40 41 41 outputs = [ "out" "doc" ]; ··· 44 44 45 45 propagatedUserEnvPkgs = [ hicolor-icon-theme ]; 46 46 buildInputs = [ cairo librsvg dbus gdk-pixbuf gobject-introspection 47 - git lgi libpthreadstubs libstartup_notification 47 + git luaEnv libpthreadstubs libstartup_notification 48 48 libxdg_basedir lua nettools pango xcb-util-cursor 49 49 xorg.libXau xorg.libXdmcp xorg.libxcb xorg.libxshmfence 50 50 xorg.xcbutil xorg.xcbutilimage xorg.xcbutilkeysyms ··· 55 55 cmakeFlags = [ 56 56 #"-DGENERATE_MANPAGES=ON" 57 57 "-DOVERRIDE_VERSION=${version}" 58 - ] ++ lib.optional luaPackages.isLuaJIT "-DLUA_LIBRARY=${lua}/lib/libluajit-5.1.so" 58 + ] ++ lib.optional lua.pkgs.isLuaJIT "-DLUA_LIBRARY=${lua}/lib/libluajit-5.1.so" 59 59 ; 60 60 61 61 GI_TYPELIB_PATH = "${pango.out}/lib/girepository-1.0"; 62 62 # LUA_CPATH and LUA_PATH are used only for *building*, see the --search flags 63 63 # below for how awesome finds the libraries it needs at runtime. 64 - LUA_CPATH = "${lgi}/lib/lua/${lua.luaversion}/?.so"; 65 - LUA_PATH = "${lgi}/share/lua/${lua.luaversion}/?.lua;;"; 64 + LUA_CPATH = "${luaEnv}/lib/lua/${lua.luaversion}/?.so"; 65 + LUA_PATH = "${luaEnv}/share/lua/${lua.luaversion}/?.lua;;"; 66 66 67 67 postInstall = '' 68 68 # Don't use wrapProgram or the wrapper will duplicate the --search ··· 70 70 mv "$out/bin/awesome" "$out/bin/.awesome-wrapped" 71 71 makeWrapper "$out/bin/.awesome-wrapped" "$out/bin/awesome" \ 72 72 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ 73 - --add-flags '--search ${lgi}/lib/lua/${lua.luaversion}' \ 74 - --add-flags '--search ${lgi}/share/lua/${lua.luaversion}' \ 73 + --add-flags '--search ${luaEnv}/lib/lua/${lua.luaversion}' \ 74 + --add-flags '--search ${luaEnv}/share/lua/${lua.luaversion}' \ 75 75 --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" 76 76 77 77 wrapProgram $out/bin/awesome-client \
+1 -1
pkgs/build-support/rust/test/import-cargo-lock/maturin/default.nix
··· 38 38 description = "PyO3 word count example"; 39 39 homepage = "https://github.com/PyO3/pyo3"; 40 40 license = licenses.asl20; 41 - maintainers = [ maintainers.danieldk ]; 41 + maintainers = [ ]; 42 42 }; 43 43 }
+1 -1
pkgs/development/compilers/llvm/rocm/clang.nix
··· 66 66 description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend"; 67 67 homepage = "https://llvm.org/"; 68 68 license = with licenses; [ ncsa ]; 69 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 69 + maintainers = with maintainers; [ acowley lovesegfault ]; 70 70 platforms = platforms.linux; 71 71 }; 72 72 }
+1 -1
pkgs/development/compilers/llvm/rocm/compiler-rt/default.nix
··· 59 59 description = "ROCm fork of the LLVM Compiler runtime libraries"; 60 60 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 61 61 license = licenses.ncsa; 62 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 62 + maintainers = with maintainers; [ acowley lovesegfault ]; 63 63 platforms = platforms.linux; 64 64 }; 65 65 }
+1 -1
pkgs/development/compilers/llvm/rocm/lld.nix
··· 34 34 description = "ROCm fork of the LLVM Linker"; 35 35 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 36 36 license = licenses.ncsa; 37 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 37 + maintainers = with maintainers; [ acowley lovesegfault ]; 38 38 platforms = platforms.linux; 39 39 }; 40 40 }
+1 -1
pkgs/development/compilers/llvm/rocm/llvm/default.nix
··· 110 110 description = "ROCm fork of the LLVM compiler infrastructure"; 111 111 homepage = "https://github.com/RadeonOpenCompute/llvm-project"; 112 112 license = with licenses; [ ncsa ]; 113 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 113 + maintainers = with maintainers; [ acowley lovesegfault ]; 114 114 platforms = platforms.linux; 115 115 }; 116 116 }
+1 -1
pkgs/development/interpreters/lua-5/build-lua-package.nix
··· 238 238 inherit externalDeps; 239 239 } // passthru; 240 240 241 - meta = with lib.maintainers; { 241 + meta = { 242 242 platforms = lua.meta.platforms; 243 243 # add extra maintainer(s) to every package 244 244 maintainers = (meta.maintainers or []) ++ [ ];
+21 -6
pkgs/development/interpreters/lua-5/interpreter.nix
··· 1 1 { lib, stdenv, fetchurl, readline 2 2 , compat ? false 3 3 , callPackage 4 - , packageOverrides ? (self: super: {}) 4 + , makeWrapper 5 + , packageOverrides ? (final: prev: {}) 5 6 , sourceVersion 6 7 , hash 7 8 , patches ? [] ··· 10 11 , staticOnly ? stdenv.hostPlatform.isStatic 11 12 }: 12 13 let 13 - luaPackages = callPackage ../../lua-modules {lua=self; overrides=packageOverrides;}; 14 + luaPackages = callPackage ../../lua-modules { 15 + lua = self; 16 + overrides = packageOverrides; 17 + }; 14 18 15 19 plat = if stdenv.isLinux then "linux" 16 20 else if stdenv.isDarwin then "macosx" ··· 31 35 sha256 = hash; 32 36 }; 33 37 34 - LuaPathSearchPaths = luaPackages.getLuaPathList luaversion; 35 - LuaCPathSearchPaths = luaPackages.getLuaCPathList luaversion; 38 + LuaPathSearchPaths = luaPackages.lib.luaPathList; 39 + LuaCPathSearchPaths = luaPackages.lib.luaCPathList; 36 40 setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths; 37 41 42 + nativeBuildInputs = [ makeWrapper ]; 38 43 buildInputs = [ readline ]; 39 44 40 45 inherit patches; 41 46 42 - postPatch = lib.optionalString (!stdenv.isDarwin && !staticOnly) '' 47 + # we can't pass flags to the lua makefile because for portability, everything is hardcoded 48 + postPatch = '' 49 + { 50 + echo -e ' 51 + #undef LUA_PATH_DEFAULT 52 + #define LUA_PATH_DEFAULT "./share/lua/${luaversion}/?.lua;./?.lua;./?/init.lua" 53 + #undef LUA_CPATH_DEFAULT 54 + #define LUA_CPATH_DEFAULT "./lib/lua/${luaversion}/?.so;./?.so;./lib/lua/${luaversion}/loadall.so" 55 + ' 56 + } >> src/luaconf.h 57 + '' + lib.optionalString (!stdenv.isDarwin && !staticOnly) '' 43 58 # Add a target for a shared library to the Makefile. 44 59 sed -e '1s/^/LUA_SO = liblua.so/' \ 45 60 -e 's/ALL_T *= */&$(LUA_SO) /' \ 46 61 -i src/Makefile 47 62 cat ${./lua-dso.make} >> src/Makefile 48 - ''; 63 + '' ; 49 64 50 65 # see configurePhase for additional flags (with space) 51 66 makeFlags = [
+5 -8
pkgs/development/interpreters/lua-5/wrap-lua.nix
··· 4 4 , makeWrapper 5 5 }: 6 6 7 - with lib; 8 - 9 7 # defined in trivial-builders.nix 10 8 # imported as wrapLua in lua-packages.nix and passed to build-lua-derivation to be used as buildInput 11 9 makeSetupHook { 12 - deps = makeWrapper; 13 - substitutions.executable = lua.interpreter; 14 - substitutions.lua = lua; 15 - substitutions.LuaPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 16 - substitutions.LuaCPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 17 - 10 + deps = makeWrapper; 11 + substitutions.executable = lua.interpreter; 12 + substitutions.lua = lua; 13 + substitutions.LuaPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 14 + substitutions.LuaCPathSearchPaths = lib.escapeShellArgs lua.LuaPathSearchPaths; 18 15 } ./wrap.sh 19 16
+13 -6
pkgs/development/interpreters/lua-5/wrapper.nix
··· 11 11 let 12 12 env = let 13 13 paths = requiredLuaModules (extraLibs ++ [ lua ] ); 14 - in (buildEnv { 14 + in buildEnv { 15 15 name = "${lua.name}-env"; 16 16 17 17 inherit paths; 18 18 inherit ignoreCollisions; 19 19 extraOutputsToInstall = [ "out" ] ++ extraOutputsToInstall; 20 + 21 + nativeBuildInputs = [ 22 + makeWrapper 23 + (lua.pkgs.lua-setup-hook lua.LuaPathSearchPaths lua.LuaCPathSearchPaths) 24 + ]; 20 25 21 26 # we create wrapper for the binaries in the different packages 22 27 postBuild = '' ··· 37 42 rm -f "$out/bin/$prg" 38 43 if [ -x "$prg" ]; then 39 44 nix_debug "Making wrapper $prg" 40 - makeWrapper "$path/bin/$prg" "$out/bin/$prg" --suffix LUA_PATH ';' "$LUA_PATH" --suffix LUA_CPATH ';' "$LUA_CPATH" ${lib.concatStringsSep " " makeWrapperArgs} 45 + makeWrapper "$path/bin/$prg" "$out/bin/$prg" \ 46 + --set-default LUA_PATH ";;" \ 47 + --suffix LUA_PATH ';' "$LUA_PATH" \ 48 + --set-default LUA_CPATH ";;" \ 49 + --suffix LUA_CPATH ';' "$LUA_CPATH" \ 50 + ${lib.concatStringsSep " " makeWrapperArgs} 41 51 fi 42 52 fi 43 53 done ··· 62 72 ''; 63 73 }; 64 74 }; 65 - }).overrideAttrs (_: { 66 - # Add extra deps needed for postBuild hook. 67 - nativeBuildInputs = [ makeWrapper lua ]; 68 - }); 75 + }; 69 76 in env
+14 -10
pkgs/development/interpreters/luajit/default.nix
··· 10 10 , extraMeta ? { } 11 11 , callPackage 12 12 , self 13 - , packageOverrides ? (self: super: { }) 13 + , packageOverrides ? (final: prev: {}) 14 14 , enableFFI ? true 15 15 , enableJIT ? true 16 16 , enableJITDebugModule ? enableJIT ··· 62 62 # passed by nixpkgs CC wrapper is insufficient on its own 63 63 substituteInPlace src/Makefile --replace "#CCDEBUG= -g" "CCDEBUG= -g" 64 64 fi 65 + 66 + { 67 + echo -e ' 68 + #undef LUA_PATH_DEFAULT 69 + #define LUA_PATH_DEFAULT "./share/lua/${luaversion}/?.lua;./?.lua;./?/init.lua" 70 + #undef LUA_CPATH_DEFAULT 71 + #define LUA_CPATH_DEFAULT "./lib/lua/${luaversion}/?.so;./?.so;./lib/lua/${luaversion}/loadall.so" 72 + ' 73 + } >> src/luaconf.h 65 74 ''; 66 75 67 76 configurePhase = false; ··· 88 97 ln -s "$out"/bin/luajit-* "$out"/bin/luajit 89 98 ''; 90 99 91 - LuaPathSearchPaths = [ 92 - "lib/lua/${luaversion}/?.lua" 93 - "share/lua/${luaversion}/?.lua" 94 - "share/lua/${luaversion}/?/init.lua" 95 - "lib/lua/${luaversion}/?/init.lua" 96 - "share/${name}/?.lua" 97 - ]; 98 - LuaCPathSearchPaths = [ "lib/lua/${luaversion}/?.so" "share/lua/${luaversion}/?.so" ]; 99 - setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths; 100 + LuaPathSearchPaths = luaPackages.lib.luaPathList; 101 + LuaCPathSearchPaths = luaPackages.lib.luaCPathList; 102 + 103 + setupHook = luaPackages.lua-setup-hook luaPackages.lib.luaPathList luaPackages.lib.luaCPathList; 100 104 101 105 passthru = rec { 102 106 buildEnv = callPackage ../lua-5/wrapper.nix {
+2 -2
pkgs/development/libraries/abseil-cpp/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "abseil-cpp"; 5 - version = "20210324.1"; 5 + version = "20210324.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "abseil"; 9 9 repo = "abseil-cpp"; 10 10 rev = version; 11 - sha256 = "16w63brfwgiayiyhvawsnr14xyy5hpp68k8fj0z6yk0bjzw6jvjw"; 11 + sha256 = "0g9rbhk3mwjdfxk7cscd04vm8fphd5flz9yykpgvyy1nwa34zk3x"; 12 12 }; 13 13 14 14 patches = [
+2 -2
pkgs/development/libraries/civetweb/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "civetweb"; 7 - version = "1.14"; 7 + version = "1.15"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = pname; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-6qBsM9zkN838cMtpE3+c7qcrFpZCS/Av7Ch7EWmlnD4="; 13 + sha256 = "sha256-Qh6BGPk7a01YzCeX42+Og9M+fjXRs7kzNUCyT4mYab4="; 14 14 }; 15 15 16 16 makeFlags = [
+1 -1
pkgs/development/libraries/dbxml/default.nix
··· 38 38 homepage = "https://www.oracle.com/database/berkeley-db/xml.html"; 39 39 description = "Embeddable XML database based on Berkeley DB"; 40 40 license = licenses.agpl3; 41 - maintainers = with maintainers; [ danieldk ]; 41 + maintainers = with maintainers; [ ]; 42 42 platforms = platforms.unix; 43 43 }; 44 44 }
+16 -8
pkgs/development/libraries/gtkdatabox/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk2 }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , gtk3 6 + , pango 7 + , cairo 8 + }: 2 9 3 10 stdenv.mkDerivation rec { 4 - name = "gtkdatabox-0.9.3.1"; 11 + pname = "gtkdatabox"; 12 + version = "1.0.0"; 5 13 6 14 src = fetchurl { 7 - url = "mirror://sourceforge/gtkdatabox/${name}.tar.gz"; 8 - sha256 = "1rdxnjgh6v3yjqgsfmamyzpfxckzchps4kqvvz88nifmd7ckhjfh"; 15 + url = "mirror://sourceforge/gtkdatabox/${pname}-${version}.tar.gz"; 16 + sha256 = "1qykm551bx8j8pfgxs60l2vhpi8lv4r8va69zvn2594lchh71vlb"; 9 17 }; 10 18 11 19 nativeBuildInputs = [ pkg-config ]; 12 20 13 - propagatedBuildInputs = [ gtk2 ]; 21 + propagatedBuildInputs = [ gtk3 pango cairo ]; 14 22 15 23 meta = { 16 24 description = "GTK widget for displaying large amounts of numerical data"; 17 - 18 - license = lib.licenses.lgpl2; 19 - 25 + homepage = "https://gtkdatabox.sourceforge.io/"; 26 + license = lib.licenses.lgpl2Only; 20 27 platforms = lib.platforms.unix; 28 + maintainers = with lib.maintainers; [ yl3dy ]; 21 29 }; 22 30 }
+1 -1
pkgs/development/libraries/liblinear/default.nix
··· 42 42 description = "A library for large linear classification"; 43 43 homepage = "https://www.csie.ntu.edu.tw/~cjlin/liblinear/"; 44 44 license = licenses.bsd3; 45 - maintainers = [ maintainers.danieldk ]; 45 + maintainers = [ ]; 46 46 platforms = platforms.unix; 47 47 }; 48 48 }
+1 -1
pkgs/development/libraries/libvirt/default.nix
··· 91 91 fetchurl 92 92 { 93 93 url = "https://libvirt.org/sources/${pname}-${version}.tar.xz"; 94 - sha256 = "sha256-l1VjqpfxBigg06SiRE4ANZ4jLahE9mJC6SrTzZ8o5kY="; 94 + sha256 = "1cjj48dn4ww13ayicd2g863a5kz0sc5jlbv2991bj54dq6cn0q8v"; 95 95 } 96 96 else 97 97 fetchFromGitLab {
+2 -2
pkgs/development/libraries/mm-common/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "mm-common"; 11 - version = "1.0.2"; 11 + version = "1.0.3"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 15 - sha256 = "07b4s5ckcz9q5gwx8vchim19mhfgl8wysqwi30pndks3m4zrzad2"; 15 + sha256 = "6BWWYliZqs8dC/J8zC/Mfzc0BexIc1yhxyc8D7zcHvU="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+1 -1
pkgs/development/libraries/rocm-opencl-runtime/default.nix
··· 86 86 description = "OpenCL runtime for AMD GPUs, part of the ROCm stack"; 87 87 homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime"; 88 88 license = with licenses; [ asl20 mit ]; 89 - maintainers = with maintainers; [ acowley danieldk lovesegfault ]; 89 + maintainers = with maintainers; [ acowley lovesegfault ]; 90 90 platforms = platforms.linux; 91 91 }; 92 92 }
+1 -1
pkgs/development/libraries/rocm-runtime/default.nix
··· 53 53 description = "Platform runtime for ROCm"; 54 54 homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime"; 55 55 license = with licenses; [ ncsa ]; 56 - maintainers = with maintainers; [ danieldk lovesegfault ]; 56 + maintainers = with maintainers; [ lovesegfault ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/libraries/science/math/amd-blis/default.nix
··· 64 64 description = "BLAS-compatible library optimized for AMD CPUs"; 65 65 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 66 66 license = licenses.bsd3; 67 - maintainers = [ maintainers.danieldk ]; 67 + maintainers = [ ]; 68 68 platforms = [ "x86_64-linux" ]; 69 69 }; 70 70 }
+1 -1
pkgs/development/libraries/science/math/amd-libflame/default.nix
··· 66 66 description = "LAPACK-compatible linear algebra library optimized for AMD CPUs"; 67 67 homepage = "https://developer.amd.com/amd-aocl/blas-library/"; 68 68 license = licenses.bsd3; 69 - maintainers = with maintainers; [ danieldk ]; 69 + maintainers = with maintainers; [ ]; 70 70 platforms = [ "x86_64-linux" ]; 71 71 }; 72 72 }
+1 -1
pkgs/development/libraries/science/math/blis/default.nix
··· 58 58 description = "BLAS-compatible linear algebra library"; 59 59 homepage = "https://github.com/flame/blis"; 60 60 license = licenses.bsd3; 61 - maintainers = [ maintainers.danieldk ]; 61 + maintainers = [ ]; 62 62 platforms = [ "x86_64-linux" ]; 63 63 }; 64 64 }
+1 -1
pkgs/development/libraries/science/math/libtorch/bin.nix
··· 117 117 description = "C++ API of the PyTorch machine learning framework"; 118 118 homepage = "https://pytorch.org/"; 119 119 license = licenses.unfree; # Includes CUDA and Intel MKL. 120 - maintainers = with maintainers; [ danieldk ]; 120 + maintainers = with maintainers; [ ]; 121 121 platforms = with platforms; linux ++ darwin; 122 122 }; 123 123 }
+1 -1
pkgs/development/libraries/sentencepiece/default.nix
··· 29 29 description = "Unsupervised text tokenizer for Neural Network-based text generation"; 30 30 license = licenses.asl20; 31 31 platforms = platforms.unix; 32 - maintainers = with maintainers; [ danieldk pashashocky ]; 32 + maintainers = with maintainers; [ pashashocky ]; 33 33 }; 34 34 }
+2 -2
pkgs/development/libraries/vtk/9.x.nix
··· 1 1 import ./generic.nix { 2 2 majorVersion = "9.0"; 3 - minorVersion = "1"; 4 - sourceSha256 = "1ir2lq9i45ls374lcmjzw0nrm5l5hnm1w47lg8g8d0n2j7hsaf8v"; 3 + minorVersion = "3"; 4 + sourceSha256 = "vD65Ylsrjb/stgUqKrCR/JFAXeQzOw7GjzMjgVFU7Yo="; 5 5 }
+3 -4
pkgs/development/lua-modules/default.nix
··· 1 1 # inspired by pkgs/development/haskell-modules/default.nix 2 2 { pkgs, lib 3 3 , lua 4 - , overrides ? (self: super: {}) 4 + , overrides ? (final: prev: {}) 5 5 }: 6 6 7 7 let ··· 15 15 overridenPackages = import ./overrides.nix { inherit pkgs; }; 16 16 17 17 generatedPackages = if (builtins.pathExists ./generated-packages.nix) then 18 - pkgs.callPackage ./generated-packages.nix { } else (self: super: {}); 18 + pkgs.callPackage ./generated-packages.nix { } else (final: prev: {}); 19 19 20 20 extensible-self = lib.makeExtensible 21 21 (extends overrides ··· 24 24 initialPackages 25 25 ) 26 26 ) 27 - ) 28 - ; 27 + ); 29 28 in 30 29 extensible-self
+63
pkgs/development/lua-modules/lib.nix
··· 1 + { pkgs, lib, lua }: 2 + let 3 + requiredLuaModules = drvs: with lib; let 4 + modules = filter hasLuaModule drvs; 5 + in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules)); 6 + # Check whether a derivation provides a lua module. 7 + hasLuaModule = drv: drv ? luaModule; 8 + in 9 + rec { 10 + inherit hasLuaModule requiredLuaModules; 11 + 12 + luaPathList = [ 13 + "share/lua/${lua.luaversion}/?.lua" 14 + "share/lua/${lua.luaversion}/?/init.lua" 15 + ]; 16 + luaCPathList = [ 17 + "lib/lua/${lua.luaversion}/?.so" 18 + ]; 19 + 20 + /* generate paths without a prefix 21 + */ 22 + luaPathRelStr = lib.concatStringsSep ";" luaPathList; 23 + luaCPathRelStr = lib.concatStringsSep ";" luaCPathList; 24 + 25 + /* generate LUA_(C)PATH value for a specific derivation, i.e., with absolute paths 26 + */ 27 + genLuaPathAbsStr = drv: lib.concatMapStringsSep ";" (x: "${drv}/${x}") luaPathList; 28 + genLuaCPathAbsStr = drv: lib.concatMapStringsSep ";" (x: "${drv}/${x}") luaCPathList; 29 + 30 + /* Generate a LUA_PATH with absolute paths 31 + */ 32 + # genLuaPathAbs = drv: 33 + # lib.concatStringsSep ";" (map (x: "${drv}/x") luaPathList); 34 + 35 + luaAtLeast = lib.versionAtLeast lua.luaversion; 36 + luaOlder = lib.versionOlder lua.luaversion; 37 + isLua51 = (lib.versions.majorMinor lua.version) == "5.1"; 38 + isLua52 = (lib.versions.majorMinor lua.version) == "5.2"; 39 + isLua53 = lua.luaversion == "5.3"; 40 + isLuaJIT = lib.getName lua == "luajit"; 41 + 42 + /* generates the relative path towards the folder where 43 + seems stable even when using lua_modules_path = "" 44 + 45 + Example: 46 + getDataFolder luaPackages.stdlib 47 + => stdlib-41.2.2-1-rocks/stdlib/41.2.2-1/doc 48 + */ 49 + getDataFolder = drv: 50 + "${drv.pname}-${drv.version}-rocks/${drv.pname}/${drv.version}"; 51 + 52 + /* Convert derivation to a lua module. 53 + so that luaRequireModules can be run later 54 + */ 55 + toLuaModule = drv: 56 + drv.overrideAttrs( oldAttrs: { 57 + # Use passthru in order to prevent rebuilds when possible. 58 + passthru = (oldAttrs.passthru or {}) // { 59 + luaModule = lua; 60 + requiredLuaModules = requiredLuaModules drv.propagatedBuildInputs; 61 + }; 62 + }); 63 + }
+6
pkgs/development/lua-modules/overrides.nix
··· 363 363 ''; 364 364 }); 365 365 366 + # TODO just while testing, remove afterwards 367 + # toVimPlugin should do it instead 368 + gitsigns-nvim = super.gitsigns-nvim.overrideAttrs(oa: { 369 + nativeBuildInputs = oa.nativeBuildInputs or [] ++ [ pkgs.vimUtils.vimGenDocHook ]; 370 + }); 371 + 366 372 # aliases 367 373 cjson = super.lua-cjson; 368 374 }
+2 -2
pkgs/development/python-modules/Markups/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "Markups"; 13 - version = "3.1.1"; 13 + version = "3.1.2"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "e309d79dde0935576ce1def6752f2127a12e2c2ea2ae8b0c69f99ff8bc12181d"; 17 + sha256 = "2954d53656d9ec84f2f6c077e91a1de534e05647f20d327757283bbb5a857770"; 18 18 }; 19 19 20 20 checkInputs = [ markdown docutils pygments pyyaml ];
+2 -2
pkgs/development/python-modules/asyncssh/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "asyncssh"; 21 - version = "2.7.0"; 21 + version = "2.7.1"; 22 22 disabled = pythonOlder "3.6"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - sha256 = "sha256-GFAT2OZ3R8PA8BtyQWuL14QX2h30jHH3baU8YH71QbY="; 26 + sha256 = "8c8852eb00a09e45c403086e10965cb6d13e5cd203a1688d91e9c81aa080d052"; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-keyvault/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "azure-mgmt-keyvault"; 15 - version = "9.0.0"; 15 + version = "9.1.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 19 extension = "zip"; 20 - sha256 = "2890c489289b8a0bf833852014f2f494eb96873834896910ddfa58cfa97b90da"; 20 + sha256 = "cd35e81c4a3cf812ade4bdcf1f7ccf4b5b78a801ef967340012a6ac9fe61ded2"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-netapp/default.nix
··· 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 - version = "4.0.0"; 9 + version = "5.0.0"; 10 10 pname = "azure-mgmt-netapp"; 11 11 disabled = isPy27; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "7195e413a0764684cd42bec9e429c13c290db9ab5c465dbed586a6f6d0ec8a42"; 15 + sha256 = "2d5163c49f91636809ef1cacd48d91130803594855f43afe0f2b31fc5f02d53c"; 16 16 extension = "zip"; 17 17 }; 18 18
+2 -2
pkgs/development/python-modules/azure-mgmt-rdbms/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-rdbms"; 14 - version = "9.0.0"; 14 + version = "9.1.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "36a508fe40f904723485586e9088092e6f65cdb82bc86efc42d615499c256829"; 19 + sha256 = "f738d9e6db8f6da6bb4e84e59dd0548c8adef948357a447337e78d1035ac960a"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-relay/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-relay"; 14 - version = "1.0.0"; 14 + version = "1.1.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "38f6dd9d122a316efa921e72933e01ec4d76ed39d4682655b17a997079e8b20a"; 19 + sha256 = "c93b7550e64b6734bf23ce57ca974a3ea929b734c58d1fe3669728c4fd2d2eb3"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-resource/default.nix
··· 8 8 9 9 10 10 buildPythonPackage rec { 11 - version = "19.0.0"; 11 + version = "20.0.0"; 12 12 pname = "azure-mgmt-resource"; 13 13 disabled = !isPy3k; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "bbb60bb9419633c2339569d4e097908638c7944e782b5aef0f5d9535085a9100"; 18 + sha256 = "622dca4484be64f9f5ce335d327dffabf3e71e14e8a3f4a1051dc85a5c3ebbca"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "azure-mgmt-servicefabric"; 15 - version = "1.0.0"; 15 + version = "2.0.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 19 extension = "zip"; 20 - sha256 = "de35e117912832c1a9e93109a8d24cab94f55703a9087b2eb1c5b0655b3b1913"; 20 + sha256 = "4c6f3de2526a27af78aecae248604f941c4d059fbcf2265912a380e3c788735d"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/blocksat-cli/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "blocksat-cli"; 16 - version = "0.3.2"; 16 + version = "0.4.0"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "06ky5kahh8dm1d7ckid3fdwizvkh3g4aycm39r00kwxdlfca7bgf"; 20 + sha256 = "sha256-g/V1//Jo8wnoOHEotF2ElVm+vzTIwZ6EzssJg6WJw6g="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/datasets/default.nix
··· 53 53 changelog = "https://github.com/huggingface/datasets/releases/tag/${version}"; 54 54 license = licenses.asl20; 55 55 platforms = platforms.unix; 56 - maintainers = with maintainers; [ danieldk ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/dawg-python/default.nix
··· 19 19 description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension"; 20 20 homepage = "https://github.com/pytries/DAWG-Python"; 21 21 license = licenses.mit; 22 - maintainers = with maintainers; [ danieldk ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+2 -2
pkgs/development/python-modules/django-mailman3/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "django-mailman3"; 7 - version = "1.3.5"; 7 + version = "1.3.6"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "368595b3c2623edeaca5beea5f12887424c384edd6f7052cf442443075084313"; 11 + sha256 = "cd3cb1ac26a3658bd694b82f00eaab98903bd2edff34956e90c187c9ab5c0dae"; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dropbox/default.nix
··· 3 3 4 4 buildPythonPackage rec { 5 5 pname = "dropbox"; 6 - version = "11.18.0"; 6 + version = "11.19.0"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "fa512c87521809e93502fc6a27b1d57ffbcef2281468c8f93575eab6a9ad5f05"; 10 + sha256 = "a56d200c47d7cd19f697e232a616342b224079f43abf4748bc55fb0c1de4346f"; 11 11 }; 12 12 13 13 postPatch = ''
+1 -1
pkgs/development/python-modules/fasttext/default.nix
··· 17 17 description = "Python module for text classification and representation learning"; 18 18 homepage = "https://fasttext.cc/"; 19 19 license = licenses.mit; 20 - maintainers = with maintainers; [ danieldk ]; 20 + maintainers = with maintainers; [ ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/python-modules/finalfusion/default.nix
··· 49 49 meta = with lib; { 50 50 description = "Python module for using finalfusion, word2vec, and fastText word embeddings"; 51 51 homepage = "https://github.com/finalfusion/finalfusion-python/"; 52 - maintainers = with maintainers; [ danieldk ]; 52 + maintainers = with maintainers; [ ]; 53 53 platforms = platforms.all; 54 54 license = licenses.blueOak100; 55 55 };
+2 -2
pkgs/development/python-modules/flexmock/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "flexmock"; 9 - version = "0.10.8"; 9 + version = "0.10.9"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "6820031c39b298646194a3f0b2b693322bb7f44b39dbaf1c54b0ae68b3d768fa"; 13 + sha256 = "9c128b7cf31fac5340062c9c2cf1e0b12c601ee2d5c10ef39cc191036fb2e688"; 14 14 }; 15 15 16 16 checkInputs = [ pytest ];
+32
pkgs/development/python-modules/flynt/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , astor 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "flynt"; 11 + version = "0.66"; 12 + 13 + disabled = pythonOlder "3.6"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ikamensh"; 17 + repo = "flynt"; 18 + rev = version; 19 + hash = "sha256-DV433wqLjF5k4g8J7rj5gZfaw+Y4/TDOoFKo3eKDjZ4="; 20 + }; 21 + 22 + propagatedBuildInputs = [ astor ]; 23 + 24 + checkInputs = [ pytestCheckHook ]; 25 + 26 + meta = with lib; { 27 + description = "command line tool to automatically convert a project's Python code from old format style strings into Python 3.6+'s f-strings"; 28 + homepage = "https://github.com/ikamensh/flynt"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ cpcloud ]; 31 + }; 32 + }
+1 -1
pkgs/development/python-modules/huggingface-hub/default.nix
··· 34 34 description = "Download and publish models and other files on the huggingface.co hub"; 35 35 changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/${version}"; 36 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ danieldk ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+2 -2
pkgs/development/python-modules/mutf8/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "mutf8"; 10 - version = "1.0.4"; 10 + version = "1.0.5"; 11 11 12 12 disabled = pythonOlder "3.6"; 13 13 ··· 15 15 owner = "TkTech"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-99NL4mCvzQmDvaOI2M9PA8UUwIrrEtVHRmJqkd6hNd0="; 18 + sha256 = "0blp6gb7q3f7if326xard8zlfg2rcmb3a7mxvaxgkvxigipjb9af"; 19 19 }; 20 20 21 21 checkInputs = [
+3 -3
pkgs/development/python-modules/numcodecs/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "numcodecs"; 16 - version = "0.9.0"; 16 + version = "0.9.1"; 17 17 disabled = isPy27; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "3c23803671a3d920efa175af5828870bdff60ba2a3fcbf1d5b48bb81d68219c6"; 21 + sha256 = "35adbcc746b95e3ac92e949a161811f5aa2602b9eb1ef241b5ea6f09bb220997"; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 49 49 ]; 50 50 51 51 meta = with lib;{ 52 - homepage = "https://github.com/alimanfoo/numcodecs"; 52 + homepage = "https://github.com/zarr-developers/numcodecs"; 53 53 license = licenses.mit; 54 54 description = "Buffer compression and transformation codecs for use in data storage and communication applications"; 55 55 maintainers = [ maintainers.costrouc ];
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "pex"; 9 - version = "2.1.48"; 9 + version = "2.1.49"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "5f6a489075c5bbecdb36a42249cd52cfd882e205242f80a1f1e2294951ab46e7"; 13 + sha256 = "af536388eeede93111d8ef0af4a80cbb3d847c1a1470c6f34f3abe83deac1b91"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ setuptools ];
+1 -1
pkgs/development/python-modules/pymorphy2/default.nix
··· 30 30 description = "Morphological analyzer/inflection engine for Russian and Ukrainian"; 31 31 homepage = "https://github.com/kmike/pymorphy2"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ danieldk ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+1 -1
pkgs/development/python-modules/pymorphy2/dicts-ru.nix
··· 18 18 description = "Russian dictionaries for pymorphy2"; 19 19 homepage = "https://github.com/kmike/pymorphy2-dicts/"; 20 20 license = licenses.mit; 21 - maintainers = with maintainers; [ danieldk ]; 21 + maintainers = with maintainers; [ ]; 22 22 }; 23 23 }
+1 -1
pkgs/development/python-modules/pytorch/bin.nix
··· 67 67 changelog = "https://github.com/pytorch/pytorch/releases/tag/v${version}"; 68 68 license = licenses.unfree; # Includes CUDA and Intel MKL. 69 69 platforms = platforms.linux; 70 - maintainers = with maintainers; [ danieldk ]; 70 + maintainers = with maintainers; [ ]; 71 71 }; 72 72 }
+1 -1
pkgs/development/python-modules/pytorch/default.nix
··· 313 313 homepage = "https://pytorch.org/"; 314 314 license = licenses.bsd3; 315 315 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 316 - maintainers = with maintainers; [ danieldk teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 316 + maintainers = with maintainers; [ teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 317 317 # error: use of undeclared identifier 'noU'; did you mean 'no'? 318 318 broken = stdenv.isDarwin; 319 319 };
+2 -2
pkgs/development/python-modules/relatorio/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "relatorio"; 5 - version = "0.9.3"; 5 + version = "0.10.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "1d5d08f5323a1cdf6d860cd13c3408482a822d9924899927a8c7cd2ebeaa8699"; 9 + sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [
+2 -3
pkgs/development/python-modules/setuptools-rust/default.nix
··· 23 23 24 24 propagatedBuildInputs = [ semantic-version setuptools toml ]; 25 25 26 - # no tests 27 26 doCheck = false; 28 27 pythonImportsCheck = [ "setuptools_rust" ]; 29 28 30 - passthru.tests.pyo3 = callPackage ./pyo3-test {}; 29 + passthru.tests.pyo3 = callPackage ./pyo3-test { }; 31 30 32 31 meta = with lib; { 33 32 description = "Setuptools plugin for Rust support"; 34 33 homepage = "https://github.com/PyO3/setuptools-rust"; 35 34 changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; 36 35 license = licenses.mit; 37 - maintainers = with maintainers; [ danieldk ]; 36 + maintainers = with maintainers; [ SuperSandro2000 ]; 38 37 }; 39 38 }
+1 -1
pkgs/development/python-modules/somajo/default.nix
··· 21 21 description = "Tokenizer and sentence splitter for German and English web texts"; 22 22 homepage = "https://github.com/tsproisl/SoMaJo"; 23 23 license = licenses.gpl3Plus; 24 - maintainers = with maintainers; [ danieldk ]; 24 + maintainers = with maintainers; [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/spacy-alignments/default.nix
··· 55 55 description = "Align tokenizations for spaCy and transformers"; 56 56 homepage = "https://github.com/explosion/spacy-alignments"; 57 57 license = licenses.mit; 58 - maintainers = with maintainers; [ danieldk ]; 58 + maintainers = with maintainers; [ ]; 59 59 }; 60 60 }
+1 -1
pkgs/development/python-modules/spacy-pkuseg/default.nix
··· 33 33 description = "Toolkit for multi-domain Chinese word segmentation (spaCy fork)"; 34 34 homepage = "https://github.com/explosion/spacy-pkuseg"; 35 35 license = licenses.mit; 36 - maintainers = with maintainers; [ danieldk ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 }
+1 -1
pkgs/development/python-modules/spacy-transformers/default.nix
··· 37 37 description = "spaCy pipelines for pretrained BERT, XLNet and GPT-2"; 38 38 homepage = "https://github.com/explosion/spacy-transformers"; 39 39 license = licenses.mit; 40 - maintainers = with maintainers; [ danieldk ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/tokenizers/default.nix
··· 115 115 description = "Fast State-of-the-Art Tokenizers optimized for Research and Production"; 116 116 license = licenses.asl20; 117 117 platforms = platforms.unix; 118 - maintainers = with maintainers; [ danieldk ]; 118 + maintainers = with maintainers; [ ]; 119 119 }; 120 120 }
+1 -1
pkgs/development/python-modules/torchvision/bin.nix
··· 54 54 changelog = "https://github.com/pytorch/vision/releases/tag/v${version}"; 55 55 license = licenses.bsd3; 56 56 platforms = platforms.linux; 57 - maintainers = with maintainers; [ danieldk ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/transformers/default.nix
··· 55 55 changelog = "https://github.com/huggingface/transformers/releases/tag/v${version}"; 56 56 license = licenses.asl20; 57 57 platforms = platforms.unix; 58 - maintainers = with maintainers; [ danieldk pashashocky ]; 58 + maintainers = with maintainers; [ pashashocky ]; 59 59 }; 60 60 }
+2 -2
pkgs/development/python-modules/wordfreq/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "wordfreq"; 16 - version = "2.5"; 16 + version = "2.5.1"; 17 17 disabled = isPy27; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "LuminosoInsight"; 21 21 repo = "wordfreq"; 22 22 rev = "v${version}"; 23 - sha256 = "09wzraddbdw3781pk2sxlz8knax9jrcl24ymz54wx6sk0gvq95i7"; 23 + sha256 = "1lw7kbsydd89hybassnnhqnj9s5ch9wvgd6pla96198nrq9mj7fw"; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/azcopy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "azure-storage-azcopy"; 5 - version = "10.11.0"; 5 + version = "10.12.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Azure"; 9 9 repo = "azure-storage-azcopy"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-mti93UDFgHQKJt3z1sjCkT71TZtwh2YnhTyUCi5tS5c="; 11 + sha256 = "sha256-kujY7Qgis2pie0WVQAokVopD3TYkjjBnqhw6XZTG16o="; 12 12 }; 13 13 14 14 subPackages = [ "." ]; 15 15 16 - vendorSha256 = "sha256-NEW1qXOxFPmDFUTciJkqwutZd3+sVkHgoZgQO8Gsdwk="; 16 + vendorSha256 = "sha256-4Jz57VjdQX+LJexEZau4pd8nIQPt0HGzCjHRj7uPox4="; 17 17 18 18 doCheck = false; 19 19
+3 -3
pkgs/development/tools/golangci-lint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "golangci-lint"; 5 - version = "1.42.0"; 5 + version = "1.42.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golangci"; 9 9 repo = "golangci-lint"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xwJZfWDtA/6HkYZmGyhL/44xU8qLmJ2kk3Uqft0yivE="; 11 + sha256 = "sha256-lhpljK4odn+j+Cb3sp1/cMnBRrLNhWxVoRIO2PDqMHo="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-lOVGyxQcWG99hO+Eff2cNA5gW4DhsDrBY5Ejj0s4v4Q="; 14 + vendorSha256 = "sha256-Z4lNGWLKagKHbVOy6MiKyuSlXwUCYlkvnvk5zS4vl1A="; 15 15 16 16 doCheck = false; 17 17
+1 -1
pkgs/development/tools/rust/cargo-asm/default.nix
··· 23 23 description = "Display the assembly or LLVM-IR generated for Rust source code"; 24 24 homepage = "https://github.com/gnzlbg/cargo-asm"; 25 25 license = licenses.mit; 26 - maintainers = [ maintainers.danieldk ]; 26 + maintainers = [ ]; 27 27 }; 28 28 }
+1 -1
pkgs/development/tools/rust/maturin/default.nix
··· 44 44 ''; 45 45 homepage = "https://github.com/PyO3/maturin"; 46 46 license = licenses.asl20; 47 - maintainers = [ maintainers.danieldk ]; 47 + maintainers = [ ]; 48 48 }; 49 49 }
+1 -1
pkgs/development/tools/rust/maturin/pyo3-test/generic.nix
··· 40 40 description = "PyO3 word count example"; 41 41 homepage = "https://github.com/PyO3/pyo3"; 42 42 license = licenses.asl20; 43 - maintainers = [ maintainers.danieldk ]; 43 + maintainers = [ ]; 44 44 }; 45 45 }
+40 -11
pkgs/games/eduke32/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, pkg-config, nasm, makeDesktopItem 2 2 , alsa-lib, flac, gtk2, libvorbis, libvpx, libGLU, libGL 3 - , SDL2, SDL2_mixer }: 3 + , SDL2, SDL2_mixer 4 + , AGL, Cocoa, GLUT, OpenGL 5 + }: 4 6 5 7 let 6 8 desktopItem = makeDesktopItem { ··· 16 18 17 19 in stdenv.mkDerivation rec { 18 20 pname = "eduke32"; 19 - version = "20210722"; 20 - rev = "9484"; 21 - revExtra = "f3fea8c15"; 21 + version = "20210910"; 22 + rev = "9603"; 23 + revExtra = "6c289cce4"; 22 24 23 25 src = fetchurl { 24 - url = "http://dukeworld.duke4.net/eduke32/synthesis/${version}-${rev}-${revExtra}/eduke32_src_${version}-${rev}-${revExtra}.tar.xz"; 25 - sha256 = "0fdl2i465cl5x7129772ksx97lvim98m9009q5cfmf6scagj9pvz"; 26 + url = "https://dukeworld.com/eduke32/synthesis/${version}-${rev}-${revExtra}/eduke32_src_${version}-${rev}-${revExtra}.tar.xz"; 27 + sha256 = "sha256-/NQMsmT9z2N3KWBrP8hlGngQKJUgSP+vrNoFqJscRCk="; 26 28 }; 27 29 28 - buildInputs = [ alsa-lib flac gtk2 libvorbis libvpx libGL libGLU SDL2 SDL2_mixer ]; 30 + buildInputs = [ 31 + flac 32 + libvorbis 33 + libvpx 34 + SDL2 35 + SDL2_mixer 36 + ] ++ lib.optionals stdenv.isLinux [ 37 + alsa-lib 38 + gtk2 39 + libGL 40 + libGLU 41 + ] ++ lib.optionals stdenv.isDarwin [ 42 + AGL 43 + Cocoa 44 + GLUT 45 + OpenGL 46 + ]; 29 47 30 48 nativeBuildInputs = [ makeWrapper pkg-config ] 31 49 ++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm; 32 50 33 - postPatch = '' 51 + postPatch = lib.optionalString stdenv.isLinux '' 34 52 substituteInPlace source/build/src/glbuild.cpp \ 35 53 --replace libGLU.so ${libGLU}/lib/libGLU.so 36 54 ··· 44 62 45 63 makeFlags = [ 46 64 "SDLCONFIG=${SDL2}/bin/sdl2-config" 65 + ] ++ lib.optionals stdenv.isDarwin [ 66 + # broken, see: https://github.com/NixOS/nixpkgs/issues/19098 67 + "LTO=0" 47 68 ]; 48 69 49 70 enableParallelBuilding = true; ··· 52 73 runHook preInstall 53 74 54 75 install -Dm755 -t $out/bin eduke32 mapster32 55 - 76 + '' + lib.optionalString stdenv.isLinux '' 56 77 makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ 57 78 --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ 58 79 --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' ··· 60 81 cp -rv ${desktopItem}/share $out 61 82 substituteInPlace $out/share/applications/eduke32.desktop \ 62 83 --subst-var out 84 + '' + lib.optionalString stdenv.isDarwin '' 85 + mkdir -p $out/Applications/EDuke32.app/Contents/MacOS 86 + mkdir -p $out/Applications/Mapster32.app/Contents/MacOS 87 + 88 + cp -r platform/Apple/bundles/EDuke32.app/* $out/Applications/EDuke32.app/ 89 + cp -r platform/Apple/bundles/Mapster32.app/* $out/Applications/Mapster32.app/ 63 90 91 + ln -sf $out/bin/eduke32 $out/Applications/EDuke32.app/Contents/MacOS/eduke32 92 + ln -sf $out/bin/mapster32 $out/Applications/Mapster32.app/Contents/MacOS/mapster32 93 + '' + '' 64 94 runHook postInstall 65 95 ''; 66 96 ··· 68 98 description = "Enhanched port of Duke Nukem 3D for various platforms"; 69 99 homepage = "http://eduke32.com"; 70 100 license = licenses.gpl2Plus; 71 - maintainers = with maintainers; [ sander ]; 72 - # Darwin is untested (supported by upstream) 101 + maintainers = with maintainers; [ mikroskeem sander ]; 73 102 platforms = platforms.all; 74 103 }; 75 104 }
+3 -3
pkgs/games/mudlet/default.nix
··· 2 2 , boost, libGLU, lua, cmake, which, pkg-config, }: 3 3 4 4 let 5 - luaEnv = lua.withPackages(ps: with ps; [ luazip luafilesystem lrexlib-pcre luasql-sqlite3 lua-yajl luautf8 ]); 5 + luaEnv = lua.withPackages(ps: with ps; [ 6 + luazip luafilesystem lrexlib-pcre luasql-sqlite3 lua-yajl luautf8 7 + ]); 6 8 in 7 9 stdenv.mkDerivation rec { 8 10 pname = "mudlet"; ··· 39 41 cp -r ../mudlet.png $out/share/pixmaps/ 40 42 41 43 makeQtWrapper $out/mudlet $out/bin/mudlet \ 42 - --set LUA_CPATH "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \ 43 - --prefix LUA_PATH : "$NIX_LUA_PATH" \ 44 44 --prefix LD_LIBRARY_PATH : "${libsForQt5.qtkeychain}/lib/" \ 45 45 --run "cd $out"; 46 46 '';
+54 -9
pkgs/games/quakespasm/default.nix
··· 1 - { lib, stdenv, SDL, fetchurl, gzip, libvorbis, libmad, copyDesktopItems, makeDesktopItem }: 1 + { lib, stdenv, SDL, SDL2, fetchurl, gzip, libvorbis, libmad 2 + , Cocoa, CoreAudio, CoreFoundation, IOKit, OpenGL 3 + , copyDesktopItems, makeDesktopItem 4 + , useSDL2 ? stdenv.isDarwin # TODO: CoreAudio fails to initialize with SDL 1.x for some reason. 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "quakespasm"; 5 - majorVersion = "0.93"; 6 - version = "${majorVersion}.2"; 9 + version = "0.94.1"; 7 10 8 11 src = fetchurl { 9 - url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tgz"; 10 - sha256 = "0qm0j5drybvvq8xadfyppkpk3rxqsxbywzm6iwsjwdf0iia3gss5"; 12 + url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tar.gz"; 13 + sha256 = "19grpvsk3ikjypx9j0gpfsx5wanrqxkgf8dwl9h6ab5c8wwmjcjp"; 11 14 }; 12 15 13 16 sourceRoot = "${pname}-${version}/Quake"; 14 17 18 + patches = lib.optionals stdenv.isDarwin [ 19 + # Makes Darwin Makefile use system libraries instead of ones from app bundle 20 + ./quakespasm-darwin-makefile-improvements.patch 21 + ]; 22 + 15 23 nativeBuildInputs = [ copyDesktopItems ]; 16 24 buildInputs = [ 17 - gzip SDL libvorbis libmad 25 + gzip libvorbis libmad (if useSDL2 then SDL2 else SDL) 26 + ] ++ lib.optionals stdenv.isDarwin [ 27 + Cocoa CoreAudio IOKit OpenGL 28 + ] ++ lib.optionals (stdenv.isDarwin && useSDL2) [ 29 + CoreFoundation 30 + ]; 31 + 32 + buildFlags = [ 33 + "DO_USERDIRS=1" 34 + # Makefile defaults, set here to enforce consistency on Darwin build 35 + "USE_CODEC_WAVE=1" 36 + "USE_CODEC_MP3=1" 37 + "USE_CODEC_VORBIS=1" 38 + "USE_CODEC_FLAC=0" 39 + "USE_CODEC_OPUS=0" 40 + "USE_CODEC_MIKMOD=0" 41 + "USE_CODEC_UMX=0" 42 + "MP3LIB=mad" 43 + "VORBISLIB=vorbis" 44 + ] ++ lib.optionals useSDL2 [ 45 + "SDL_CONFIG=sdl2-config" 46 + "USE_SDL2=1" 18 47 ]; 19 48 20 - buildFlags = [ "DO_USERDIRS=1" ]; 49 + makefile = if (stdenv.isDarwin) then "Makefile.darwin" else "Makefile"; 21 50 22 51 preInstall = '' 23 52 mkdir -p "$out/bin" 24 53 substituteInPlace Makefile --replace "/usr/local/games" "$out/bin" 54 + substituteInPlace Makefile.darwin --replace "/usr/local/games" "$out/bin" 55 + ''; 56 + 57 + postInstall = lib.optionalString stdenv.isDarwin '' 58 + # Let's build app bundle 59 + mkdir -p $out/Applications/Quake.app/Contents/MacOS 60 + mkdir -p $out/Applications/Quake.app/Contents/Resources 61 + cp ../MacOSX/Info.plist $out/Applications/Quake.app/Contents/ 62 + cp ../MacOSX/QuakeSpasm.icns $out/Applications/Quake.app/Contents/Resources/ 63 + cp -r ../MacOSX/English.lproj $out/Applications/Quake.app/Contents/Resources/ 64 + ln -sf $out/bin/quake $out/Applications/Quake.app/Contents/MacOS/quake 65 + 66 + substituteInPlace $out/Applications/Quake.app/Contents/Info.plist \ 67 + --replace '>''${EXECUTABLE_NAME}' '>quake' 68 + substituteInPlace $out/Applications/Quake.app/Contents/Info.plist \ 69 + --replace '>''${PRODUCT_NAME}' '>QuakeSpasm' 25 70 ''; 26 71 27 72 enableParallelBuilding = true; ··· 47 92 and smoother mouse input - though no CD support. 48 93 ''; 49 94 50 - platforms = platforms.linux; 51 - maintainers = with maintainers; [ m3tti ]; 95 + platforms = platforms.unix; 96 + maintainers = with maintainers; [ mikroskeem m3tti ]; 52 97 }; 53 98 }
+92
pkgs/games/quakespasm/quakespasm-darwin-makefile-improvements.patch
··· 1 + --- a/Makefile.darwin 2021-09-12 14:42:51.000000000 +0300 2 + +++ b/Makefile.darwin 2021-09-12 15:09:16.000000000 +0300 3 + @@ -49,6 +49,7 @@ 4 + LIPO ?= lipo 5 + 6 + STRIP ?= strip 7 + +PKG_CONFIG ?= pkg-config 8 + 9 + CPUFLAGS= 10 + LDFLAGS = 11 + @@ -84,9 +85,6 @@ 12 + USE_RPATH=1 13 + endif 14 + CFLAGS += $(CPUFLAGS) 15 + -ifeq ($(USE_RPATH),1) 16 + -LDFLAGS+=-Wl,-rpath,@executable_path/../Frameworks 17 + -endif 18 + 19 + ifneq ($(DEBUG),0) 20 + DFLAGS += -DDEBUG 21 + @@ -115,19 +113,14 @@ 22 + # not relying on sdl-config command and assuming 23 + # /Library/Frameworks/SDL.framework is available 24 + SDL_CFLAGS =-D_GNU_SOURCE=1 -D_THREAD_SAFE 25 + -SDL_CFLAGS+=-DSDL_FRAMEWORK -DNO_SDL_CONFIG 26 + ifeq ($(USE_SDL2),1) 27 + -SDL_FRAMEWORK_NAME = SDL2 28 + +SDL_CONFIG ?= sdl2-config 29 + else 30 + -SDL_FRAMEWORK_NAME = SDL 31 + -endif 32 + -# default to our local SDL[2].framework for build 33 + -SDL_FRAMEWORK_PATH ?=../MacOSX 34 + -ifneq ($(SDL_FRAMEWORK_PATH),) 35 + -SDL_LIBS +=-F$(SDL_FRAMEWORK_PATH) 36 + -SDL_CFLAGS+=-F$(SDL_FRAMEWORK_PATH) 37 + +SDL_CONFIG ?= sdl2-config 38 + endif 39 + -SDL_LIBS +=-Wl,-framework,$(SDL_FRAMEWORK_NAME) -Wl,-framework,Cocoa 40 + +SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags) 41 + +SDL_LIBS := $(shell $(SDL_CONFIG) --libs) 42 + +SDL_LIBS += -Wl,-framework,Cocoa 43 + 44 + NET_LIBS := 45 + 46 + @@ -164,38 +157,26 @@ 47 + endif 48 + ifeq ($(USE_CODEC_FLAC),1) 49 + CFLAGS+= -DUSE_CODEC_FLAC 50 + -CODEC_INC = -I../MacOSX/codecs/include 51 + -CODEC_LINK= -L../MacOSX/codecs/lib 52 + CODECLIBS+= -lFLAC 53 + endif 54 + ifeq ($(USE_CODEC_OPUS),1) 55 + -CFLAGS+= -DUSE_CODEC_OPUS 56 + -CODEC_INC = -I../MacOSX/codecs/include 57 + -CODEC_LINK= -L../MacOSX/codecs/lib 58 + -CODECLIBS+= -lopusfile -lopus -logg 59 + +CFLAGS+= -DUSE_CODEC_OPUS $(shell $(PKG_CONFIG) --cflags opusfile) 60 + +CODECLIBS+= $(shell $(PKG_CONFIG) --libs opusfile) 61 + endif 62 + ifeq ($(USE_CODEC_VORBIS),1) 63 + CFLAGS+= -DUSE_CODEC_VORBIS $(cpp_vorbisdec) 64 + -CODEC_INC = -I../MacOSX/codecs/include 65 + -CODEC_LINK= -L../MacOSX/codecs/lib 66 + CODECLIBS+= $(lib_vorbisdec) 67 + endif 68 + ifeq ($(USE_CODEC_MP3),1) 69 + CFLAGS+= -DUSE_CODEC_MP3 70 + -CODEC_INC = -I../MacOSX/codecs/include 71 + -CODEC_LINK= -L../MacOSX/codecs/lib 72 + CODECLIBS+= $(lib_mp3dec) 73 + endif 74 + ifeq ($(USE_CODEC_MIKMOD),1) 75 + CFLAGS+= -DUSE_CODEC_MIKMOD 76 + -CODEC_INC = -I../MacOSX/codecs/include 77 + -CODEC_LINK= -L../MacOSX/codecs/lib 78 + CODECLIBS+= -lmikmod 79 + endif 80 + ifeq ($(USE_CODEC_XMP),1) 81 + CFLAGS+= -DUSE_CODEC_XMP 82 + -CODEC_INC = -I../MacOSX/codecs/include 83 + -CODEC_LINK= -L../MacOSX/codecs/lib 84 + CODECLIBS+= -lxmp 85 + endif 86 + ifeq ($(USE_CODEC_UMX),1) 87 + @@ -332,3 +313,5 @@ 88 + clean: 89 + rm -f $(shell find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name '*.res' -o -name $(DEFAULT_TARGET) \) -print) 90 + 91 + +install: quakespasm 92 + + install -D -m 755 quakespasm /usr/local/games/quake
+1 -1
pkgs/misc/vim-plugins/build-vim-plugin.nix
··· 19 19 buildPhase ? "", 20 20 preInstall ? "", 21 21 postInstall ? "", 22 - path ? lib.getName name, 22 + path ? ".", 23 23 addonInfo ? null, 24 24 ... 25 25 }:
+12
pkgs/misc/vim-plugins/generated.nix
··· 8153 8153 meta.homepage = "https://github.com/andreshazard/vim-logreview/"; 8154 8154 }; 8155 8155 8156 + vim-loves-dafny = buildVimPluginFrom2Nix { 8157 + pname = "vim-loves-dafny"; 8158 + version = "2018-09-25"; 8159 + src = fetchFromGitHub { 8160 + owner = "mlr-msft"; 8161 + repo = "vim-loves-dafny"; 8162 + rev = "d75d3b074a3da2b0fa9fd5bc980f52ec82c2ad7b"; 8163 + sha256 = "170dc38mrakfma30r8z9zaxfn8d5ghrvnlglq6l60yn8fg7njxks"; 8164 + }; 8165 + meta.homepage = "https://github.com/mlr-msft/vim-loves-dafny/"; 8166 + }; 8167 + 8156 8168 vim-lsc = buildVimPluginFrom2Nix { 8157 8169 pname = "vim-lsc"; 8158 8170 version = "2021-04-28";
+9 -9
pkgs/misc/vim-plugins/overrides.nix
··· 99 99 # The linked ruby code shows generates the required '.clang_complete' for cmake based projects 100 100 # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144 101 101 preFixup = '' 102 - substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \ 102 + substituteInPlace "$out"/plugin/clang_complete.vim \ 103 103 --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.libclang.lib}/lib/libclang.so'" 104 104 105 - substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/libclang.py \ 105 + substituteInPlace "$out"/plugin/libclang.py \ 106 106 --replace "/usr/lib/clang" "${llvmPackages.clang.cc}/lib/clang" 107 107 ''; 108 108 }); ··· 110 110 clighter8 = super.clighter8.overrideAttrs (old: { 111 111 preFixup = '' 112 112 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \ 113 - -i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim 113 + -i "$out"/plugin/clighter8.vim 114 114 ''; 115 115 }); 116 116 ··· 203 203 204 204 direnv-vim = super.direnv-vim.overrideAttrs (oa: { 205 205 preFixup = oa.preFixup or "" + '' 206 - substituteInPlace $out/share/vim-plugins/direnv.vim/autoload/direnv.vim \ 206 + substituteInPlace $out/autoload/direnv.vim \ 207 207 --replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \ 208 208 "let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')" 209 209 ''; ··· 354 354 propagatedBuildInputs = [ LanguageClient-neovim-bin ]; 355 355 356 356 preFixup = '' 357 - substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \ 357 + substituteInPlace "$out"/autoload/LanguageClient.vim \ 358 358 --replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'" 359 359 ''; 360 360 }; ··· 387 387 388 388 minimap-vim = super.minimap-vim.overrideAttrs (old: { 389 389 preFixup = '' 390 - substituteInPlace $out/share/vim-plugins/minimap.vim/plugin/minimap.vim \ 390 + substituteInPlace $out/plugin/minimap.vim \ 391 391 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 392 - substituteInPlace $out/share/vim-plugins/minimap.vim/bin/minimap_generator.sh \ 392 + substituteInPlace $out/bin/minimap_generator.sh \ 393 393 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 394 394 ''; 395 395 }); ··· 691 691 692 692 vim-dasht = super.vim-dasht.overrideAttrs (old: { 693 693 preFixup = '' 694 - substituteInPlace $out/share/vim-plugins/vim-dasht/autoload/dasht.vim \ 694 + substituteInPlace $out/autoload/dasht.vim \ 695 695 --replace "['dasht']" "['${dasht}/bin/dasht']" 696 696 ''; 697 697 }); ··· 795 795 in 796 796 super.vim-markdown-composer.overrideAttrs (oldAttrs: rec { 797 797 preFixup = '' 798 - substituteInPlace "$out"/share/vim-plugins/vim-markdown-composer/after/ftplugin/markdown/composer.vim \ 798 + substituteInPlace "$out"/after/ftplugin/markdown/composer.vim \ 799 799 --replace "let l:args = [s:plugin_root . '/target/release/markdown-composer']" \ 800 800 "let l:args = ['${vim-markdown-composer-bin}/bin/markdown-composer']" 801 801 '';
-1
pkgs/misc/vim-plugins/vim-gen-doc-hook.sh
··· 7 7 8 8 target="$out/@rtpPath@/$pname" 9 9 mkdir -p $out/@rtpPath@ 10 - cp -r . $target 11 10 12 11 # build help tags 13 12 if [ -d "$target/doc" ]; then
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 447 447 mindriot101/vim-yapf 448 448 mk12/vim-lean 449 449 mkasa/lushtags 450 + mlr-msft/vim-loves-dafny 450 451 moll/vim-bbye 451 452 mopp/sky-color-clock.vim 452 453 morhetz/gruvbox
+8 -7
pkgs/misc/vim-plugins/vim-utils.nix
··· 185 185 else (lib.optional (x ? name) x.name) 186 186 ++ (x.names or []); 187 187 188 - rtpPath = "share/vim-plugins"; 188 + rtpPath = "."; 189 189 190 190 nativeImpl = packages: 191 191 (let ··· 196 196 ln -sf ${plugin}/${plugin.pname}-${plugin.version}-rocks/${plugin.pname}/${plugin.version}/* $out/pack/${packageName}/${dir}/${plugin.pname}/ 197 197 ''; 198 198 199 - linkVimlPlugin = pluginPath: packageName: dir: 200 - "ln -sf ${pluginPath}/${rtpPath}/* $out/pack/${packageName}/${dir}"; 199 + linkVimlPlugin = plugin: packageName: dir: '' 200 + mkdir -p $out/pack/${packageName}/${dir}/${plugin.pname} 201 + ln -sf ${plugin}/${rtpPath}/* $out/pack/${packageName}/${dir}/${plugin.pname} 202 + ''; 201 203 202 - # (builtins.trace pluginPath ) 203 - link = pluginPath: if hasLuaModule pluginPath 204 - then linkLuaPlugin pluginPath 205 - else linkVimlPlugin pluginPath; 204 + link = pluginPath: if hasLuaModule pluginPath 205 + then linkLuaPlugin pluginPath 206 + else linkVimlPlugin pluginPath; 206 207 207 208 packageLinks = (packageName: {start ? [], opt ? []}: 208 209 let
+2 -2
pkgs/servers/bazarr/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bazarr"; 5 - version = "0.9.7"; 5 + version = "0.9.8"; 6 6 7 7 sourceRoot = "."; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; 11 - sha256 = "sha256-OyH3/KK8d5pWu+Ubzgd4N0IwpumbAe/43Oo+LGg+Erc="; 11 + sha256 = "sha256-ESmSfor28KIaZ68Sy+YRbumefHDxLZgBQ6XeUSYSR1c="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ unzip makeWrapper ];
+2 -2
pkgs/servers/jellyfin/default.nix
··· 41 41 in 42 42 stdenv.mkDerivation rec { 43 43 pname = "jellyfin"; 44 - version = "10.7.6"; # ensure that jellyfin-web has matching version 44 + version = "10.7.7"; # ensure that jellyfin-web has matching version 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "jellyfin"; 48 48 repo = "jellyfin"; 49 49 rev = "v${version}"; 50 - sha256 = "3wXB9HrOaLgHJjWpwPWVtcy8xcYBgZoE29hWqf1On2Q="; 50 + sha256 = "mByGsz9+R8I5/f6hUoM9JK/MDcWIJ/Xt51Z/LRXeQQQ="; 51 51 }; 52 52 53 53 nativeBuildInputs = [
+1865 -1719
pkgs/servers/jellyfin/node-deps.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "@apideck/better-ajv-errors-0.2.5" = { 8 + name = "_at_apideck_slash_better-ajv-errors"; 9 + packageName = "@apideck/better-ajv-errors"; 10 + version = "0.2.5"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.2.5.tgz"; 13 + sha512 = "Pm1fAqCT8OEfBVLddU3fWZ/URWpGGhkvlsBIgn9Y2jJlcNumo0gNzPsQswDJTiA8HcKpCjOhWQOgkA9kXR4Ghg=="; 14 + }; 15 + }; 7 16 "@babel/code-frame-7.12.11" = { 8 17 name = "_at_babel_slash_code-frame"; 9 18 packageName = "@babel/code-frame"; ··· 13 22 sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 14 23 }; 15 24 }; 16 - "@babel/code-frame-7.12.13" = { 25 + "@babel/code-frame-7.14.5" = { 17 26 name = "_at_babel_slash_code-frame"; 18 27 packageName = "@babel/code-frame"; 19 - version = "7.12.13"; 28 + version = "7.14.5"; 20 29 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"; 22 - sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="; 30 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"; 31 + sha512 = "9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw=="; 23 32 }; 24 33 }; 25 - "@babel/compat-data-7.14.0" = { 34 + "@babel/compat-data-7.15.0" = { 26 35 name = "_at_babel_slash_compat-data"; 27 36 packageName = "@babel/compat-data"; 28 - version = "7.14.0"; 37 + version = "7.15.0"; 29 38 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.0.tgz"; 31 - sha512 = "vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q=="; 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz"; 40 + sha512 = "0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA=="; 32 41 }; 33 42 }; 34 - "@babel/core-7.14.0" = { 43 + "@babel/core-7.15.5" = { 35 44 name = "_at_babel_slash_core"; 36 45 packageName = "@babel/core"; 37 - version = "7.14.0"; 46 + version = "7.15.5"; 38 47 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.14.0.tgz"; 40 - sha512 = "8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw=="; 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz"; 49 + sha512 = "pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg=="; 41 50 }; 42 51 }; 43 - "@babel/eslint-parser-7.13.14" = { 52 + "@babel/eslint-parser-7.15.4" = { 44 53 name = "_at_babel_slash_eslint-parser"; 45 54 packageName = "@babel/eslint-parser"; 46 - version = "7.13.14"; 55 + version = "7.15.4"; 47 56 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.13.14.tgz"; 49 - sha512 = "I0HweR36D73Ibn/FfrRDMKlMqJHFwidIUgYdMpH+aXYuQC+waq59YaJ6t9e9N36axJ82v1jR041wwqDrDXEwRA=="; 57 + url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.15.4.tgz"; 58 + sha512 = "hPMIAmGNbmQzXJIo2P43Zj9UhRmGev5f9nqdBFOWNGDGh6XKmjby79woBvg6y0Jur6yRfQBneDbUQ8ZVc1krFw=="; 50 59 }; 51 60 }; 52 - "@babel/eslint-plugin-7.13.16" = { 61 + "@babel/eslint-plugin-7.14.5" = { 53 62 name = "_at_babel_slash_eslint-plugin"; 54 63 packageName = "@babel/eslint-plugin"; 55 - version = "7.13.16"; 64 + version = "7.14.5"; 56 65 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/eslint-plugin/-/eslint-plugin-7.13.16.tgz"; 58 - sha512 = "RNL0dLHBvjXW857JwzToTHxtbOZfGcvdSegcgXC1c1PqfE+o/QN8MugkgKj2vXFxCcMByfxJrmpCbLzVBVlgIA=="; 66 + url = "https://registry.npmjs.org/@babel/eslint-plugin/-/eslint-plugin-7.14.5.tgz"; 67 + sha512 = "nzt/YMnOOIRikvSn2hk9+W2omgJBy6U8TN0R+WTTmqapA+HnZTuviZaketdTE9W7/k/+E/DfZlt1ey1NSE39pg=="; 59 68 }; 60 69 }; 61 - "@babel/generator-7.14.1" = { 70 + "@babel/generator-7.15.4" = { 62 71 name = "_at_babel_slash_generator"; 63 72 packageName = "@babel/generator"; 64 - version = "7.14.1"; 73 + version = "7.15.4"; 65 74 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.1.tgz"; 67 - sha512 = "TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ=="; 75 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz"; 76 + sha512 = "d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw=="; 68 77 }; 69 78 }; 70 - "@babel/helper-annotate-as-pure-7.12.13" = { 79 + "@babel/helper-annotate-as-pure-7.15.4" = { 71 80 name = "_at_babel_slash_helper-annotate-as-pure"; 72 81 packageName = "@babel/helper-annotate-as-pure"; 73 - version = "7.12.13"; 82 + version = "7.15.4"; 74 83 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"; 76 - sha512 = "7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="; 84 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz"; 85 + sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA=="; 77 86 }; 78 87 }; 79 - "@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" = { 88 + "@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = { 80 89 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 81 90 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 82 - version = "7.12.13"; 91 + version = "7.15.4"; 83 92 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz"; 85 - sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 93 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz"; 94 + sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q=="; 86 95 }; 87 96 }; 88 - "@babel/helper-compilation-targets-7.13.16" = { 97 + "@babel/helper-compilation-targets-7.15.4" = { 89 98 name = "_at_babel_slash_helper-compilation-targets"; 90 99 packageName = "@babel/helper-compilation-targets"; 91 - version = "7.13.16"; 100 + version = "7.15.4"; 92 101 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz"; 94 - sha512 = "3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA=="; 102 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"; 103 + sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ=="; 95 104 }; 96 105 }; 97 - "@babel/helper-create-class-features-plugin-7.14.1" = { 106 + "@babel/helper-create-class-features-plugin-7.15.4" = { 98 107 name = "_at_babel_slash_helper-create-class-features-plugin"; 99 108 packageName = "@babel/helper-create-class-features-plugin"; 100 - version = "7.14.1"; 109 + version = "7.15.4"; 101 110 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.1.tgz"; 103 - sha512 = "r8rsUahG4ywm0QpGcCrLaUSOuNAISR3IZCg4Fx05Ozq31aCUrQsTLH6KPxy0N5ULoQ4Sn9qjNdGNtbPWAC6hYg=="; 111 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz"; 112 + sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw=="; 104 113 }; 105 114 }; 106 - "@babel/helper-create-regexp-features-plugin-7.12.17" = { 115 + "@babel/helper-create-regexp-features-plugin-7.14.5" = { 107 116 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 108 117 packageName = "@babel/helper-create-regexp-features-plugin"; 109 - version = "7.12.17"; 118 + version = "7.14.5"; 110 119 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz"; 112 - sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg=="; 120 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz"; 121 + sha512 = "TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A=="; 113 122 }; 114 123 }; 115 - "@babel/helper-define-polyfill-provider-0.2.0" = { 124 + "@babel/helper-define-polyfill-provider-0.2.3" = { 116 125 name = "_at_babel_slash_helper-define-polyfill-provider"; 117 126 packageName = "@babel/helper-define-polyfill-provider"; 118 - version = "0.2.0"; 127 + version = "0.2.3"; 119 128 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz"; 121 - sha512 = "JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw=="; 129 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz"; 130 + sha512 = "RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew=="; 122 131 }; 123 132 }; 124 - "@babel/helper-explode-assignable-expression-7.13.0" = { 133 + "@babel/helper-explode-assignable-expression-7.15.4" = { 125 134 name = "_at_babel_slash_helper-explode-assignable-expression"; 126 135 packageName = "@babel/helper-explode-assignable-expression"; 127 - version = "7.13.0"; 136 + version = "7.15.4"; 128 137 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz"; 130 - sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA=="; 138 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz"; 139 + sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g=="; 131 140 }; 132 141 }; 133 - "@babel/helper-function-name-7.12.13" = { 142 + "@babel/helper-function-name-7.15.4" = { 134 143 name = "_at_babel_slash_helper-function-name"; 135 144 packageName = "@babel/helper-function-name"; 136 - version = "7.12.13"; 145 + version = "7.15.4"; 137 146 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"; 139 - sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="; 147 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"; 148 + sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw=="; 140 149 }; 141 150 }; 142 - "@babel/helper-get-function-arity-7.12.13" = { 151 + "@babel/helper-get-function-arity-7.15.4" = { 143 152 name = "_at_babel_slash_helper-get-function-arity"; 144 153 packageName = "@babel/helper-get-function-arity"; 145 - version = "7.12.13"; 154 + version = "7.15.4"; 146 155 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"; 148 - sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="; 156 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"; 157 + sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA=="; 149 158 }; 150 159 }; 151 - "@babel/helper-hoist-variables-7.13.16" = { 160 + "@babel/helper-hoist-variables-7.15.4" = { 152 161 name = "_at_babel_slash_helper-hoist-variables"; 153 162 packageName = "@babel/helper-hoist-variables"; 154 - version = "7.13.16"; 163 + version = "7.15.4"; 155 164 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz"; 157 - sha512 = "1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg=="; 165 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"; 166 + sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA=="; 158 167 }; 159 168 }; 160 - "@babel/helper-member-expression-to-functions-7.13.12" = { 169 + "@babel/helper-member-expression-to-functions-7.15.4" = { 161 170 name = "_at_babel_slash_helper-member-expression-to-functions"; 162 171 packageName = "@babel/helper-member-expression-to-functions"; 163 - version = "7.13.12"; 172 + version = "7.15.4"; 164 173 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 166 - sha512 = "48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="; 174 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"; 175 + sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA=="; 167 176 }; 168 177 }; 169 - "@babel/helper-module-imports-7.13.12" = { 178 + "@babel/helper-module-imports-7.15.4" = { 170 179 name = "_at_babel_slash_helper-module-imports"; 171 180 packageName = "@babel/helper-module-imports"; 172 - version = "7.13.12"; 181 + version = "7.15.4"; 173 182 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 175 - sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 183 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; 184 + sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 176 185 }; 177 186 }; 178 - "@babel/helper-module-transforms-7.14.0" = { 187 + "@babel/helper-module-transforms-7.15.4" = { 179 188 name = "_at_babel_slash_helper-module-transforms"; 180 189 packageName = "@babel/helper-module-transforms"; 181 - version = "7.14.0"; 190 + version = "7.15.4"; 182 191 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz"; 184 - sha512 = "L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw=="; 192 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz"; 193 + sha512 = "9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw=="; 185 194 }; 186 195 }; 187 - "@babel/helper-optimise-call-expression-7.12.13" = { 196 + "@babel/helper-optimise-call-expression-7.15.4" = { 188 197 name = "_at_babel_slash_helper-optimise-call-expression"; 189 198 packageName = "@babel/helper-optimise-call-expression"; 190 - version = "7.12.13"; 199 + version = "7.15.4"; 191 200 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"; 193 - sha512 = "BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="; 201 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"; 202 + sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw=="; 194 203 }; 195 204 }; 196 - "@babel/helper-plugin-utils-7.13.0" = { 205 + "@babel/helper-plugin-utils-7.14.5" = { 197 206 name = "_at_babel_slash_helper-plugin-utils"; 198 207 packageName = "@babel/helper-plugin-utils"; 199 - version = "7.13.0"; 208 + version = "7.14.5"; 200 209 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"; 202 - sha512 = "ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="; 210 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"; 211 + sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="; 203 212 }; 204 213 }; 205 - "@babel/helper-remap-async-to-generator-7.13.0" = { 214 + "@babel/helper-remap-async-to-generator-7.15.4" = { 206 215 name = "_at_babel_slash_helper-remap-async-to-generator"; 207 216 packageName = "@babel/helper-remap-async-to-generator"; 208 - version = "7.13.0"; 217 + version = "7.15.4"; 209 218 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz"; 211 - sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 219 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz"; 220 + sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ=="; 212 221 }; 213 222 }; 214 - "@babel/helper-replace-supers-7.13.12" = { 223 + "@babel/helper-replace-supers-7.15.4" = { 215 224 name = "_at_babel_slash_helper-replace-supers"; 216 225 packageName = "@babel/helper-replace-supers"; 217 - version = "7.13.12"; 226 + version = "7.15.4"; 218 227 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 220 - sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="; 228 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"; 229 + sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw=="; 221 230 }; 222 231 }; 223 - "@babel/helper-simple-access-7.13.12" = { 232 + "@babel/helper-simple-access-7.15.4" = { 224 233 name = "_at_babel_slash_helper-simple-access"; 225 234 packageName = "@babel/helper-simple-access"; 226 - version = "7.13.12"; 235 + version = "7.15.4"; 227 236 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 229 - sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 237 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"; 238 + sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg=="; 230 239 }; 231 240 }; 232 - "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { 241 + "@babel/helper-skip-transparent-expression-wrappers-7.15.4" = { 233 242 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 234 243 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 235 - version = "7.12.1"; 244 + version = "7.15.4"; 236 245 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"; 238 - sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 246 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz"; 247 + sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A=="; 239 248 }; 240 249 }; 241 - "@babel/helper-split-export-declaration-7.12.13" = { 250 + "@babel/helper-split-export-declaration-7.15.4" = { 242 251 name = "_at_babel_slash_helper-split-export-declaration"; 243 252 packageName = "@babel/helper-split-export-declaration"; 244 - version = "7.12.13"; 253 + version = "7.15.4"; 245 254 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 247 - sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="; 255 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"; 256 + sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="; 248 257 }; 249 258 }; 250 - "@babel/helper-validator-identifier-7.14.0" = { 259 + "@babel/helper-validator-identifier-7.14.9" = { 251 260 name = "_at_babel_slash_helper-validator-identifier"; 252 261 packageName = "@babel/helper-validator-identifier"; 253 - version = "7.14.0"; 262 + version = "7.14.9"; 254 263 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"; 256 - sha512 = "V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A=="; 264 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; 265 + sha512 = "pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="; 257 266 }; 258 267 }; 259 - "@babel/helper-validator-option-7.12.17" = { 268 + "@babel/helper-validator-option-7.14.5" = { 260 269 name = "_at_babel_slash_helper-validator-option"; 261 270 packageName = "@babel/helper-validator-option"; 262 - version = "7.12.17"; 271 + version = "7.14.5"; 263 272 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"; 265 - sha512 = "TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="; 273 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 274 + sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 266 275 }; 267 276 }; 268 - "@babel/helper-wrap-function-7.13.0" = { 277 + "@babel/helper-wrap-function-7.15.4" = { 269 278 name = "_at_babel_slash_helper-wrap-function"; 270 279 packageName = "@babel/helper-wrap-function"; 271 - version = "7.13.0"; 280 + version = "7.15.4"; 272 281 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz"; 274 - sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA=="; 282 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz"; 283 + sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw=="; 275 284 }; 276 285 }; 277 - "@babel/helpers-7.14.0" = { 286 + "@babel/helpers-7.15.4" = { 278 287 name = "_at_babel_slash_helpers"; 279 288 packageName = "@babel/helpers"; 280 - version = "7.14.0"; 289 + version = "7.15.4"; 281 290 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz"; 283 - sha512 = "+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg=="; 291 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz"; 292 + sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ=="; 284 293 }; 285 294 }; 286 - "@babel/highlight-7.14.0" = { 295 + "@babel/highlight-7.14.5" = { 287 296 name = "_at_babel_slash_highlight"; 288 297 packageName = "@babel/highlight"; 289 - version = "7.14.0"; 298 + version = "7.14.5"; 290 299 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz"; 292 - sha512 = "YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg=="; 300 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"; 301 + sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="; 293 302 }; 294 303 }; 295 - "@babel/parser-7.14.1" = { 304 + "@babel/parser-7.15.5" = { 296 305 name = "_at_babel_slash_parser"; 297 306 packageName = "@babel/parser"; 298 - version = "7.14.1"; 307 + version = "7.15.5"; 299 308 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.1.tgz"; 301 - sha512 = "muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q=="; 309 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz"; 310 + sha512 = "2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg=="; 302 311 }; 303 312 }; 304 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" = { 313 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = { 305 314 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 306 315 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 307 - version = "7.13.12"; 316 + version = "7.15.4"; 308 317 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz"; 310 - sha512 = "d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ=="; 318 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz"; 319 + sha512 = "eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog=="; 311 320 }; 312 321 }; 313 - "@babel/plugin-proposal-async-generator-functions-7.13.15" = { 322 + "@babel/plugin-proposal-async-generator-functions-7.15.4" = { 314 323 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 315 324 packageName = "@babel/plugin-proposal-async-generator-functions"; 316 - version = "7.13.15"; 325 + version = "7.15.4"; 317 326 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz"; 319 - sha512 = "VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA=="; 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz"; 328 + sha512 = "2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw=="; 320 329 }; 321 330 }; 322 - "@babel/plugin-proposal-class-properties-7.13.0" = { 331 + "@babel/plugin-proposal-class-properties-7.14.5" = { 323 332 name = "_at_babel_slash_plugin-proposal-class-properties"; 324 333 packageName = "@babel/plugin-proposal-class-properties"; 325 - version = "7.13.0"; 334 + version = "7.14.5"; 326 335 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz"; 328 - sha512 = "KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"; 337 + sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="; 329 338 }; 330 339 }; 331 - "@babel/plugin-proposal-class-static-block-7.13.11" = { 340 + "@babel/plugin-proposal-class-static-block-7.15.4" = { 332 341 name = "_at_babel_slash_plugin-proposal-class-static-block"; 333 342 packageName = "@babel/plugin-proposal-class-static-block"; 334 - version = "7.13.11"; 343 + version = "7.15.4"; 335 344 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz"; 337 - sha512 = "fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz"; 346 + sha512 = "M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA=="; 338 347 }; 339 348 }; 340 - "@babel/plugin-proposal-dynamic-import-7.13.8" = { 349 + "@babel/plugin-proposal-dynamic-import-7.14.5" = { 341 350 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 342 351 packageName = "@babel/plugin-proposal-dynamic-import"; 343 - version = "7.13.8"; 352 + version = "7.14.5"; 344 353 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz"; 346 - sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ=="; 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz"; 355 + sha512 = "ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g=="; 347 356 }; 348 357 }; 349 - "@babel/plugin-proposal-export-namespace-from-7.12.13" = { 358 + "@babel/plugin-proposal-export-namespace-from-7.14.5" = { 350 359 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 351 360 packageName = "@babel/plugin-proposal-export-namespace-from"; 352 - version = "7.12.13"; 361 + version = "7.14.5"; 353 362 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz"; 355 - sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz"; 364 + sha512 = "g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA=="; 356 365 }; 357 366 }; 358 - "@babel/plugin-proposal-json-strings-7.13.8" = { 367 + "@babel/plugin-proposal-json-strings-7.14.5" = { 359 368 name = "_at_babel_slash_plugin-proposal-json-strings"; 360 369 packageName = "@babel/plugin-proposal-json-strings"; 361 - version = "7.13.8"; 370 + version = "7.14.5"; 362 371 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz"; 364 - sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q=="; 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz"; 373 + sha512 = "NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ=="; 365 374 }; 366 375 }; 367 - "@babel/plugin-proposal-logical-assignment-operators-7.13.8" = { 376 + "@babel/plugin-proposal-logical-assignment-operators-7.14.5" = { 368 377 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 369 378 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 370 - version = "7.13.8"; 379 + version = "7.14.5"; 371 380 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz"; 373 - sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A=="; 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz"; 382 + sha512 = "YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw=="; 374 383 }; 375 384 }; 376 - "@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" = { 385 + "@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" = { 377 386 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 378 387 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 379 - version = "7.13.8"; 388 + version = "7.14.5"; 380 389 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz"; 382 - sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A=="; 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz"; 391 + sha512 = "gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg=="; 383 392 }; 384 393 }; 385 - "@babel/plugin-proposal-numeric-separator-7.12.13" = { 394 + "@babel/plugin-proposal-numeric-separator-7.14.5" = { 386 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 387 396 packageName = "@babel/plugin-proposal-numeric-separator"; 388 - version = "7.12.13"; 397 + version = "7.14.5"; 389 398 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz"; 391 - sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w=="; 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz"; 400 + sha512 = "yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg=="; 392 401 }; 393 402 }; 394 - "@babel/plugin-proposal-object-rest-spread-7.13.8" = { 403 + "@babel/plugin-proposal-object-rest-spread-7.14.7" = { 395 404 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 396 405 packageName = "@babel/plugin-proposal-object-rest-spread"; 397 - version = "7.13.8"; 406 + version = "7.14.7"; 398 407 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz"; 400 - sha512 = "DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g=="; 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz"; 409 + sha512 = "082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g=="; 401 410 }; 402 411 }; 403 - "@babel/plugin-proposal-optional-catch-binding-7.13.8" = { 412 + "@babel/plugin-proposal-optional-catch-binding-7.14.5" = { 404 413 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 405 414 packageName = "@babel/plugin-proposal-optional-catch-binding"; 406 - version = "7.13.8"; 415 + version = "7.14.5"; 407 416 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz"; 409 - sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz"; 418 + sha512 = "3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ=="; 410 419 }; 411 420 }; 412 - "@babel/plugin-proposal-optional-chaining-7.13.12" = { 421 + "@babel/plugin-proposal-optional-chaining-7.14.5" = { 413 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 414 423 packageName = "@babel/plugin-proposal-optional-chaining"; 415 - version = "7.13.12"; 424 + version = "7.14.5"; 416 425 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz"; 418 - sha512 = "fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ=="; 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz"; 427 + sha512 = "ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ=="; 419 428 }; 420 429 }; 421 - "@babel/plugin-proposal-private-methods-7.13.0" = { 430 + "@babel/plugin-proposal-private-methods-7.14.5" = { 422 431 name = "_at_babel_slash_plugin-proposal-private-methods"; 423 432 packageName = "@babel/plugin-proposal-private-methods"; 424 - version = "7.13.0"; 433 + version = "7.14.5"; 425 434 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz"; 427 - sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q=="; 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz"; 436 + sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g=="; 428 437 }; 429 438 }; 430 - "@babel/plugin-proposal-private-property-in-object-7.14.0" = { 439 + "@babel/plugin-proposal-private-property-in-object-7.15.4" = { 431 440 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 432 441 packageName = "@babel/plugin-proposal-private-property-in-object"; 433 - version = "7.14.0"; 442 + version = "7.15.4"; 434 443 src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz"; 436 - sha512 = "59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg=="; 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz"; 445 + sha512 = "X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA=="; 437 446 }; 438 447 }; 439 - "@babel/plugin-proposal-unicode-property-regex-7.12.13" = { 448 + "@babel/plugin-proposal-unicode-property-regex-7.14.5" = { 440 449 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 441 450 packageName = "@babel/plugin-proposal-unicode-property-regex"; 442 - version = "7.12.13"; 451 + version = "7.14.5"; 443 452 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz"; 445 - sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg=="; 453 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz"; 454 + sha512 = "6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q=="; 446 455 }; 447 456 }; 448 457 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 463 472 sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 464 473 }; 465 474 }; 466 - "@babel/plugin-syntax-class-static-block-7.12.13" = { 475 + "@babel/plugin-syntax-class-static-block-7.14.5" = { 467 476 name = "_at_babel_slash_plugin-syntax-class-static-block"; 468 477 packageName = "@babel/plugin-syntax-class-static-block"; 469 - version = "7.12.13"; 478 + version = "7.14.5"; 470 479 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz"; 472 - sha512 = "ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A=="; 480 + url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; 481 + sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; 473 482 }; 474 483 }; 475 484 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 553 562 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 554 563 }; 555 564 }; 556 - "@babel/plugin-syntax-private-property-in-object-7.14.0" = { 565 + "@babel/plugin-syntax-private-property-in-object-7.14.5" = { 557 566 name = "_at_babel_slash_plugin-syntax-private-property-in-object"; 558 567 packageName = "@babel/plugin-syntax-private-property-in-object"; 559 - version = "7.14.0"; 568 + version = "7.14.5"; 560 569 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz"; 562 - sha512 = "bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w=="; 570 + url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; 571 + sha512 = "0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="; 563 572 }; 564 573 }; 565 - "@babel/plugin-syntax-top-level-await-7.12.13" = { 574 + "@babel/plugin-syntax-top-level-await-7.14.5" = { 566 575 name = "_at_babel_slash_plugin-syntax-top-level-await"; 567 576 packageName = "@babel/plugin-syntax-top-level-await"; 568 - version = "7.12.13"; 577 + version = "7.14.5"; 569 578 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz"; 571 - sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ=="; 579 + url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; 580 + sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 572 581 }; 573 582 }; 574 - "@babel/plugin-transform-arrow-functions-7.13.0" = { 583 + "@babel/plugin-transform-arrow-functions-7.14.5" = { 575 584 name = "_at_babel_slash_plugin-transform-arrow-functions"; 576 585 packageName = "@babel/plugin-transform-arrow-functions"; 577 - version = "7.13.0"; 586 + version = "7.14.5"; 578 587 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"; 580 - sha512 = "96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="; 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz"; 589 + sha512 = "KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A=="; 581 590 }; 582 591 }; 583 - "@babel/plugin-transform-async-to-generator-7.13.0" = { 592 + "@babel/plugin-transform-async-to-generator-7.14.5" = { 584 593 name = "_at_babel_slash_plugin-transform-async-to-generator"; 585 594 packageName = "@babel/plugin-transform-async-to-generator"; 586 - version = "7.13.0"; 595 + version = "7.14.5"; 587 596 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz"; 589 - sha512 = "3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg=="; 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz"; 598 + sha512 = "szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA=="; 590 599 }; 591 600 }; 592 - "@babel/plugin-transform-block-scoped-functions-7.12.13" = { 601 + "@babel/plugin-transform-block-scoped-functions-7.14.5" = { 593 602 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 594 603 packageName = "@babel/plugin-transform-block-scoped-functions"; 595 - version = "7.12.13"; 604 + version = "7.14.5"; 596 605 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"; 598 - sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="; 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz"; 607 + sha512 = "dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ=="; 599 608 }; 600 609 }; 601 - "@babel/plugin-transform-block-scoping-7.14.1" = { 610 + "@babel/plugin-transform-block-scoping-7.15.3" = { 602 611 name = "_at_babel_slash_plugin-transform-block-scoping"; 603 612 packageName = "@babel/plugin-transform-block-scoping"; 604 - version = "7.14.1"; 613 + version = "7.15.3"; 605 614 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.1.tgz"; 607 - sha512 = "2mQXd0zBrwfp0O1moWIhPpEeTKDvxyHcnma3JATVP1l+CctWBuot6OJG8LQ4DnBj4ZZPSmlb/fm4mu47EOAnVA=="; 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz"; 616 + sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q=="; 608 617 }; 609 618 }; 610 - "@babel/plugin-transform-classes-7.13.0" = { 619 + "@babel/plugin-transform-classes-7.15.4" = { 611 620 name = "_at_babel_slash_plugin-transform-classes"; 612 621 packageName = "@babel/plugin-transform-classes"; 613 - version = "7.13.0"; 622 + version = "7.15.4"; 614 623 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"; 616 - sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="; 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz"; 625 + sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg=="; 617 626 }; 618 627 }; 619 - "@babel/plugin-transform-computed-properties-7.13.0" = { 628 + "@babel/plugin-transform-computed-properties-7.14.5" = { 620 629 name = "_at_babel_slash_plugin-transform-computed-properties"; 621 630 packageName = "@babel/plugin-transform-computed-properties"; 622 - version = "7.13.0"; 631 + version = "7.14.5"; 623 632 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"; 625 - sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz"; 634 + sha512 = "pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg=="; 626 635 }; 627 636 }; 628 - "@babel/plugin-transform-destructuring-7.13.17" = { 637 + "@babel/plugin-transform-destructuring-7.14.7" = { 629 638 name = "_at_babel_slash_plugin-transform-destructuring"; 630 639 packageName = "@babel/plugin-transform-destructuring"; 631 - version = "7.13.17"; 640 + version = "7.14.7"; 632 641 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz"; 634 - sha512 = "UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA=="; 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz"; 643 + sha512 = "0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw=="; 635 644 }; 636 645 }; 637 - "@babel/plugin-transform-dotall-regex-7.12.13" = { 646 + "@babel/plugin-transform-dotall-regex-7.14.5" = { 638 647 name = "_at_babel_slash_plugin-transform-dotall-regex"; 639 648 packageName = "@babel/plugin-transform-dotall-regex"; 640 - version = "7.12.13"; 649 + version = "7.14.5"; 641 650 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 643 - sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz"; 652 + sha512 = "loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw=="; 644 653 }; 645 654 }; 646 - "@babel/plugin-transform-duplicate-keys-7.12.13" = { 655 + "@babel/plugin-transform-duplicate-keys-7.14.5" = { 647 656 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 648 657 packageName = "@babel/plugin-transform-duplicate-keys"; 649 - version = "7.12.13"; 658 + version = "7.14.5"; 650 659 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz"; 652 - sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz"; 661 + sha512 = "iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A=="; 653 662 }; 654 663 }; 655 - "@babel/plugin-transform-exponentiation-operator-7.12.13" = { 664 + "@babel/plugin-transform-exponentiation-operator-7.14.5" = { 656 665 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 657 666 packageName = "@babel/plugin-transform-exponentiation-operator"; 658 - version = "7.12.13"; 667 + version = "7.14.5"; 659 668 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz"; 661 - sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA=="; 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz"; 670 + sha512 = "jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA=="; 662 671 }; 663 672 }; 664 - "@babel/plugin-transform-for-of-7.13.0" = { 673 + "@babel/plugin-transform-for-of-7.15.4" = { 665 674 name = "_at_babel_slash_plugin-transform-for-of"; 666 675 packageName = "@babel/plugin-transform-for-of"; 667 - version = "7.13.0"; 676 + version = "7.15.4"; 668 677 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"; 670 - sha512 = "IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="; 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz"; 679 + sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA=="; 671 680 }; 672 681 }; 673 - "@babel/plugin-transform-function-name-7.12.13" = { 682 + "@babel/plugin-transform-function-name-7.14.5" = { 674 683 name = "_at_babel_slash_plugin-transform-function-name"; 675 684 packageName = "@babel/plugin-transform-function-name"; 676 - version = "7.12.13"; 685 + version = "7.14.5"; 677 686 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"; 679 - sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="; 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz"; 688 + sha512 = "vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ=="; 680 689 }; 681 690 }; 682 - "@babel/plugin-transform-literals-7.12.13" = { 691 + "@babel/plugin-transform-literals-7.14.5" = { 683 692 name = "_at_babel_slash_plugin-transform-literals"; 684 693 packageName = "@babel/plugin-transform-literals"; 685 - version = "7.12.13"; 694 + version = "7.14.5"; 686 695 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"; 688 - sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz"; 697 + sha512 = "ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A=="; 689 698 }; 690 699 }; 691 - "@babel/plugin-transform-member-expression-literals-7.12.13" = { 700 + "@babel/plugin-transform-member-expression-literals-7.14.5" = { 692 701 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 693 702 packageName = "@babel/plugin-transform-member-expression-literals"; 694 - version = "7.12.13"; 703 + version = "7.14.5"; 695 704 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"; 697 - sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="; 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz"; 706 + sha512 = "WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q=="; 698 707 }; 699 708 }; 700 - "@babel/plugin-transform-modules-amd-7.14.0" = { 709 + "@babel/plugin-transform-modules-amd-7.14.5" = { 701 710 name = "_at_babel_slash_plugin-transform-modules-amd"; 702 711 packageName = "@babel/plugin-transform-modules-amd"; 703 - version = "7.14.0"; 712 + version = "7.14.5"; 704 713 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz"; 706 - sha512 = "CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ=="; 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz"; 715 + sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g=="; 707 716 }; 708 717 }; 709 - "@babel/plugin-transform-modules-commonjs-7.14.0" = { 718 + "@babel/plugin-transform-modules-commonjs-7.15.4" = { 710 719 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 711 720 packageName = "@babel/plugin-transform-modules-commonjs"; 712 - version = "7.14.0"; 721 + version = "7.15.4"; 713 722 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz"; 715 - sha512 = "EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ=="; 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz"; 724 + sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA=="; 716 725 }; 717 726 }; 718 - "@babel/plugin-transform-modules-systemjs-7.13.8" = { 727 + "@babel/plugin-transform-modules-systemjs-7.15.4" = { 719 728 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 720 729 packageName = "@babel/plugin-transform-modules-systemjs"; 721 - version = "7.13.8"; 730 + version = "7.15.4"; 722 731 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz"; 724 - sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz"; 733 + sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw=="; 725 734 }; 726 735 }; 727 - "@babel/plugin-transform-modules-umd-7.14.0" = { 736 + "@babel/plugin-transform-modules-umd-7.14.5" = { 728 737 name = "_at_babel_slash_plugin-transform-modules-umd"; 729 738 packageName = "@babel/plugin-transform-modules-umd"; 730 - version = "7.14.0"; 739 + version = "7.14.5"; 731 740 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz"; 733 - sha512 = "nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw=="; 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz"; 742 + sha512 = "RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA=="; 734 743 }; 735 744 }; 736 - "@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = { 745 + "@babel/plugin-transform-named-capturing-groups-regex-7.14.9" = { 737 746 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 738 747 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 739 - version = "7.12.13"; 748 + version = "7.14.9"; 740 749 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz"; 742 - sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA=="; 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz"; 751 + sha512 = "l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA=="; 743 752 }; 744 753 }; 745 - "@babel/plugin-transform-new-target-7.12.13" = { 754 + "@babel/plugin-transform-new-target-7.14.5" = { 746 755 name = "_at_babel_slash_plugin-transform-new-target"; 747 756 packageName = "@babel/plugin-transform-new-target"; 748 - version = "7.12.13"; 757 + version = "7.14.5"; 749 758 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz"; 751 - sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ=="; 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz"; 760 + sha512 = "Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ=="; 752 761 }; 753 762 }; 754 - "@babel/plugin-transform-object-super-7.12.13" = { 763 + "@babel/plugin-transform-object-super-7.14.5" = { 755 764 name = "_at_babel_slash_plugin-transform-object-super"; 756 765 packageName = "@babel/plugin-transform-object-super"; 757 - version = "7.12.13"; 766 + version = "7.14.5"; 758 767 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"; 760 - sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="; 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz"; 769 + sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg=="; 761 770 }; 762 771 }; 763 - "@babel/plugin-transform-parameters-7.13.0" = { 772 + "@babel/plugin-transform-parameters-7.15.4" = { 764 773 name = "_at_babel_slash_plugin-transform-parameters"; 765 774 packageName = "@babel/plugin-transform-parameters"; 766 - version = "7.13.0"; 775 + version = "7.15.4"; 767 776 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz"; 769 - sha512 = "Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw=="; 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz"; 778 + sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ=="; 770 779 }; 771 780 }; 772 - "@babel/plugin-transform-property-literals-7.12.13" = { 781 + "@babel/plugin-transform-property-literals-7.14.5" = { 773 782 name = "_at_babel_slash_plugin-transform-property-literals"; 774 783 packageName = "@babel/plugin-transform-property-literals"; 775 - version = "7.12.13"; 784 + version = "7.14.5"; 776 785 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"; 778 - sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz"; 787 + sha512 = "r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw=="; 779 788 }; 780 789 }; 781 - "@babel/plugin-transform-regenerator-7.13.15" = { 790 + "@babel/plugin-transform-regenerator-7.14.5" = { 782 791 name = "_at_babel_slash_plugin-transform-regenerator"; 783 792 packageName = "@babel/plugin-transform-regenerator"; 784 - version = "7.13.15"; 793 + version = "7.14.5"; 785 794 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz"; 787 - sha512 = "Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ=="; 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz"; 796 + sha512 = "NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg=="; 788 797 }; 789 798 }; 790 - "@babel/plugin-transform-reserved-words-7.12.13" = { 799 + "@babel/plugin-transform-reserved-words-7.14.5" = { 791 800 name = "_at_babel_slash_plugin-transform-reserved-words"; 792 801 packageName = "@babel/plugin-transform-reserved-words"; 793 - version = "7.12.13"; 802 + version = "7.14.5"; 794 803 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz"; 796 - sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz"; 805 + sha512 = "cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg=="; 797 806 }; 798 807 }; 799 - "@babel/plugin-transform-shorthand-properties-7.12.13" = { 808 + "@babel/plugin-transform-shorthand-properties-7.14.5" = { 800 809 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 801 810 packageName = "@babel/plugin-transform-shorthand-properties"; 802 - version = "7.12.13"; 811 + version = "7.14.5"; 803 812 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"; 805 - sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz"; 814 + sha512 = "xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g=="; 806 815 }; 807 816 }; 808 - "@babel/plugin-transform-spread-7.13.0" = { 817 + "@babel/plugin-transform-spread-7.14.6" = { 809 818 name = "_at_babel_slash_plugin-transform-spread"; 810 819 packageName = "@babel/plugin-transform-spread"; 811 - version = "7.13.0"; 820 + version = "7.14.6"; 812 821 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"; 814 - sha512 = "V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz"; 823 + sha512 = "Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag=="; 815 824 }; 816 825 }; 817 - "@babel/plugin-transform-sticky-regex-7.12.13" = { 826 + "@babel/plugin-transform-sticky-regex-7.14.5" = { 818 827 name = "_at_babel_slash_plugin-transform-sticky-regex"; 819 828 packageName = "@babel/plugin-transform-sticky-regex"; 820 - version = "7.12.13"; 829 + version = "7.14.5"; 821 830 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz"; 823 - sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg=="; 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz"; 832 + sha512 = "Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A=="; 824 833 }; 825 834 }; 826 - "@babel/plugin-transform-template-literals-7.13.0" = { 835 + "@babel/plugin-transform-template-literals-7.14.5" = { 827 836 name = "_at_babel_slash_plugin-transform-template-literals"; 828 837 packageName = "@babel/plugin-transform-template-literals"; 829 - version = "7.13.0"; 838 + version = "7.14.5"; 830 839 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"; 832 - sha512 = "d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="; 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz"; 841 + sha512 = "22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg=="; 833 842 }; 834 843 }; 835 - "@babel/plugin-transform-typeof-symbol-7.12.13" = { 844 + "@babel/plugin-transform-typeof-symbol-7.14.5" = { 836 845 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 837 846 packageName = "@babel/plugin-transform-typeof-symbol"; 838 - version = "7.12.13"; 847 + version = "7.14.5"; 839 848 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz"; 841 - sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz"; 850 + sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw=="; 842 851 }; 843 852 }; 844 - "@babel/plugin-transform-unicode-escapes-7.12.13" = { 853 + "@babel/plugin-transform-unicode-escapes-7.14.5" = { 845 854 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 846 855 packageName = "@babel/plugin-transform-unicode-escapes"; 847 - version = "7.12.13"; 856 + version = "7.14.5"; 848 857 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz"; 850 - sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw=="; 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz"; 859 + sha512 = "crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA=="; 851 860 }; 852 861 }; 853 - "@babel/plugin-transform-unicode-regex-7.12.13" = { 862 + "@babel/plugin-transform-unicode-regex-7.14.5" = { 854 863 name = "_at_babel_slash_plugin-transform-unicode-regex"; 855 864 packageName = "@babel/plugin-transform-unicode-regex"; 856 - version = "7.12.13"; 865 + version = "7.14.5"; 857 866 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz"; 859 - sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA=="; 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz"; 868 + sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="; 860 869 }; 861 870 }; 862 - "@babel/preset-env-7.14.1" = { 871 + "@babel/preset-env-7.15.4" = { 863 872 name = "_at_babel_slash_preset-env"; 864 873 packageName = "@babel/preset-env"; 865 - version = "7.14.1"; 874 + version = "7.15.4"; 866 875 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.1.tgz"; 868 - sha512 = "0M4yL1l7V4l+j/UHvxcdvNfLB9pPtIooHTbEhgD/6UGyh8Hy3Bm1Mj0buzjDXATCSz3JFibVdnoJZCrlUCanrQ=="; 876 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz"; 877 + sha512 = "4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ=="; 869 878 }; 870 879 }; 871 880 "@babel/preset-modules-0.1.4" = { ··· 877 886 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 878 887 }; 879 888 }; 880 - "@babel/runtime-7.14.0" = { 889 + "@babel/runtime-7.15.4" = { 881 890 name = "_at_babel_slash_runtime"; 882 891 packageName = "@babel/runtime"; 883 - version = "7.14.0"; 892 + version = "7.15.4"; 884 893 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz"; 886 - sha512 = "JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA=="; 894 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz"; 895 + sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw=="; 887 896 }; 888 897 }; 889 - "@babel/template-7.12.13" = { 898 + "@babel/template-7.15.4" = { 890 899 name = "_at_babel_slash_template"; 891 900 packageName = "@babel/template"; 892 - version = "7.12.13"; 901 + version = "7.15.4"; 893 902 src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"; 895 - sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="; 903 + url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz"; 904 + sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg=="; 896 905 }; 897 906 }; 898 - "@babel/traverse-7.14.0" = { 907 + "@babel/traverse-7.15.4" = { 899 908 name = "_at_babel_slash_traverse"; 900 909 packageName = "@babel/traverse"; 901 - version = "7.14.0"; 910 + version = "7.15.4"; 902 911 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.0.tgz"; 904 - sha512 = "dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA=="; 912 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz"; 913 + sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA=="; 905 914 }; 906 915 }; 907 - "@babel/types-7.14.1" = { 916 + "@babel/types-7.15.4" = { 908 917 name = "_at_babel_slash_types"; 909 918 packageName = "@babel/types"; 910 - version = "7.14.1"; 919 + version = "7.15.4"; 911 920 src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz"; 913 - sha512 = "S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA=="; 921 + url = "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz"; 922 + sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 914 923 }; 915 924 }; 916 925 "@csstools/convert-colors-1.4.0" = { ··· 922 931 sha512 = "5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw=="; 923 932 }; 924 933 }; 925 - "@discoveryjs/json-ext-0.5.2" = { 934 + "@discoveryjs/json-ext-0.5.3" = { 926 935 name = "_at_discoveryjs_slash_json-ext"; 927 936 packageName = "@discoveryjs/json-ext"; 928 - version = "0.5.2"; 937 + version = "0.5.3"; 929 938 src = fetchurl { 930 - url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz"; 931 - sha512 = "HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg=="; 939 + url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz"; 940 + sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 932 941 }; 933 942 }; 934 - "@eslint/eslintrc-0.4.0" = { 943 + "@eslint/eslintrc-0.4.3" = { 935 944 name = "_at_eslint_slash_eslintrc"; 936 945 packageName = "@eslint/eslintrc"; 937 - version = "0.4.0"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 940 - sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 941 - }; 942 - }; 943 - "@hapi/address-2.1.4" = { 944 - name = "_at_hapi_slash_address"; 945 - packageName = "@hapi/address"; 946 - version = "2.1.4"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz"; 949 - sha512 = "QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ=="; 950 - }; 951 - }; 952 - "@hapi/bourne-1.3.2" = { 953 - name = "_at_hapi_slash_bourne"; 954 - packageName = "@hapi/bourne"; 955 - version = "1.3.2"; 946 + version = "0.4.3"; 956 947 src = fetchurl { 957 - url = "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz"; 958 - sha512 = "1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA=="; 948 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 949 + sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 959 950 }; 960 951 }; 961 - "@hapi/hoek-8.5.1" = { 962 - name = "_at_hapi_slash_hoek"; 963 - packageName = "@hapi/hoek"; 964 - version = "8.5.1"; 952 + "@gar/promisify-1.1.2" = { 953 + name = "_at_gar_slash_promisify"; 954 + packageName = "@gar/promisify"; 955 + version = "1.1.2"; 965 956 src = fetchurl { 966 - url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz"; 967 - sha512 = "yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow=="; 957 + url = "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz"; 958 + sha512 = "82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw=="; 968 959 }; 969 960 }; 970 - "@hapi/joi-15.1.1" = { 971 - name = "_at_hapi_slash_joi"; 972 - packageName = "@hapi/joi"; 973 - version = "15.1.1"; 961 + "@humanwhocodes/config-array-0.5.0" = { 962 + name = "_at_humanwhocodes_slash_config-array"; 963 + packageName = "@humanwhocodes/config-array"; 964 + version = "0.5.0"; 974 965 src = fetchurl { 975 - url = "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz"; 976 - sha512 = "entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ=="; 966 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; 967 + sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; 977 968 }; 978 969 }; 979 - "@hapi/topo-3.1.6" = { 980 - name = "_at_hapi_slash_topo"; 981 - packageName = "@hapi/topo"; 982 - version = "3.1.6"; 970 + "@humanwhocodes/object-schema-1.2.0" = { 971 + name = "_at_humanwhocodes_slash_object-schema"; 972 + packageName = "@humanwhocodes/object-schema"; 973 + version = "1.2.0"; 983 974 src = fetchurl { 984 - url = "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz"; 985 - sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 975 + url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz"; 976 + sha512 = "wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w=="; 986 977 }; 987 978 }; 988 - "@mdn/browser-compat-data-2.0.7" = { 979 + "@mdn/browser-compat-data-3.3.14" = { 989 980 name = "_at_mdn_slash_browser-compat-data"; 990 981 packageName = "@mdn/browser-compat-data"; 991 - version = "2.0.7"; 982 + version = "3.3.14"; 992 983 src = fetchurl { 993 - url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-2.0.7.tgz"; 994 - sha512 = "GeeM827DlzFFidn1eKkMBiqXFD2oLsnZbaiGhByPl0vcapsRzUL+t9hDoov1swc9rB2jw64R+ihtzC8qOE9wXw=="; 984 + url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.14.tgz"; 985 + sha512 = "n2RC9d6XatVbWFdHLimzzUJxJ1KY8LdjqrW6YvGPiRmsHkhOUx74/Ct10x5Yo7bC/Jvqx7cDEW8IMPv/+vwEzA=="; 995 986 }; 996 987 }; 997 988 "@mrmlnc/readdir-enhanced-2.2.1" = { ··· 1003 994 sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g=="; 1004 995 }; 1005 996 }; 1006 - "@nodelib/fs.scandir-2.1.4" = { 997 + "@nodelib/fs.scandir-2.1.5" = { 1007 998 name = "_at_nodelib_slash_fs.scandir"; 1008 999 packageName = "@nodelib/fs.scandir"; 1009 - version = "2.1.4"; 1000 + version = "2.1.5"; 1010 1001 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 1012 - sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 1002 + url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 1003 + sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 1013 1004 }; 1014 1005 }; 1015 1006 "@nodelib/fs.stat-1.1.3" = { ··· 1021 1012 sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; 1022 1013 }; 1023 1014 }; 1024 - "@nodelib/fs.stat-2.0.4" = { 1015 + "@nodelib/fs.stat-2.0.5" = { 1025 1016 name = "_at_nodelib_slash_fs.stat"; 1026 1017 packageName = "@nodelib/fs.stat"; 1027 - version = "2.0.4"; 1018 + version = "2.0.5"; 1028 1019 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 1030 - sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 1020 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 1021 + sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 1031 1022 }; 1032 1023 }; 1033 - "@nodelib/fs.walk-1.2.6" = { 1024 + "@nodelib/fs.walk-1.2.8" = { 1034 1025 name = "_at_nodelib_slash_fs.walk"; 1035 1026 packageName = "@nodelib/fs.walk"; 1036 - version = "1.2.6"; 1027 + version = "1.2.8"; 1037 1028 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 1039 - sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 1029 + url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 1030 + sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1031 + }; 1032 + }; 1033 + "@npmcli/fs-1.0.0" = { 1034 + name = "_at_npmcli_slash_fs"; 1035 + packageName = "@npmcli/fs"; 1036 + version = "1.0.0"; 1037 + src = fetchurl { 1038 + url = "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz"; 1039 + sha512 = "8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ=="; 1040 1040 }; 1041 1041 }; 1042 1042 "@npmcli/move-file-1.1.2" = { ··· 1048 1048 sha512 = "1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="; 1049 1049 }; 1050 1050 }; 1051 - "@rollup/plugin-node-resolve-7.1.3" = { 1051 + "@rollup/plugin-babel-5.3.0" = { 1052 + name = "_at_rollup_slash_plugin-babel"; 1053 + packageName = "@rollup/plugin-babel"; 1054 + version = "5.3.0"; 1055 + src = fetchurl { 1056 + url = "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz"; 1057 + sha512 = "9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw=="; 1058 + }; 1059 + }; 1060 + "@rollup/plugin-node-resolve-11.2.1" = { 1052 1061 name = "_at_rollup_slash_plugin-node-resolve"; 1053 1062 packageName = "@rollup/plugin-node-resolve"; 1054 - version = "7.1.3"; 1063 + version = "11.2.1"; 1055 1064 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz"; 1057 - sha512 = "RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q=="; 1065 + url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; 1066 + sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; 1058 1067 }; 1059 1068 }; 1060 1069 "@rollup/plugin-replace-2.4.2" = { ··· 1102 1111 sha512 = "yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A=="; 1103 1112 }; 1104 1113 }; 1105 - "@types/anymatch-1.3.1" = { 1106 - name = "_at_types_slash_anymatch"; 1107 - packageName = "@types/anymatch"; 1108 - version = "1.3.1"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz"; 1111 - sha512 = "/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA=="; 1112 - }; 1113 - }; 1114 - "@types/eslint-7.2.10" = { 1114 + "@types/eslint-7.28.0" = { 1115 1115 name = "_at_types_slash_eslint"; 1116 1116 packageName = "@types/eslint"; 1117 - version = "7.2.10"; 1117 + version = "7.28.0"; 1118 1118 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.10.tgz"; 1120 - sha512 = "kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ=="; 1119 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz"; 1120 + sha512 = "07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A=="; 1121 1121 }; 1122 1122 }; 1123 - "@types/eslint-scope-3.7.0" = { 1123 + "@types/eslint-scope-3.7.1" = { 1124 1124 name = "_at_types_slash_eslint-scope"; 1125 1125 packageName = "@types/eslint-scope"; 1126 - version = "3.7.0"; 1126 + version = "3.7.1"; 1127 1127 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"; 1129 - sha512 = "O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw=="; 1128 + url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz"; 1129 + sha512 = "SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g=="; 1130 1130 }; 1131 1131 }; 1132 1132 "@types/estree-0.0.39" = { ··· 1138 1138 sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 1139 1139 }; 1140 1140 }; 1141 - "@types/estree-0.0.47" = { 1141 + "@types/estree-0.0.50" = { 1142 1142 name = "_at_types_slash_estree"; 1143 1143 packageName = "@types/estree"; 1144 - version = "0.0.47"; 1144 + version = "0.0.50"; 1145 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz"; 1147 - sha512 = "c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg=="; 1146 + url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz"; 1147 + sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; 1148 1148 }; 1149 1149 }; 1150 - "@types/glob-7.1.3" = { 1150 + "@types/glob-7.1.4" = { 1151 1151 name = "_at_types_slash_glob"; 1152 1152 packageName = "@types/glob"; 1153 - version = "7.1.3"; 1153 + version = "7.1.4"; 1154 1154 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz"; 1156 - sha512 = "SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="; 1155 + url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz"; 1156 + sha512 = "w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA=="; 1157 1157 }; 1158 1158 }; 1159 - "@types/html-minifier-terser-5.1.1" = { 1159 + "@types/html-minifier-terser-5.1.2" = { 1160 1160 name = "_at_types_slash_html-minifier-terser"; 1161 1161 packageName = "@types/html-minifier-terser"; 1162 - version = "5.1.1"; 1162 + version = "5.1.2"; 1163 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz"; 1165 - sha512 = "giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA=="; 1164 + url = "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz"; 1165 + sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 1166 1166 }; 1167 1167 }; 1168 - "@types/json-schema-7.0.7" = { 1168 + "@types/json-schema-7.0.9" = { 1169 1169 name = "_at_types_slash_json-schema"; 1170 1170 packageName = "@types/json-schema"; 1171 - version = "7.0.7"; 1171 + version = "7.0.9"; 1172 1172 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; 1174 - sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 1173 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"; 1174 + sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 1175 1175 }; 1176 1176 }; 1177 1177 "@types/json5-0.0.29" = { ··· 1192 1192 sha1 = "5e31c32dd8791ec4b9ff3ef47c9cb55b2d0d9438"; 1193 1193 }; 1194 1194 }; 1195 - "@types/mdast-3.0.3" = { 1195 + "@types/mdast-3.0.10" = { 1196 1196 name = "_at_types_slash_mdast"; 1197 1197 packageName = "@types/mdast"; 1198 - version = "3.0.3"; 1198 + version = "3.0.10"; 1199 1199 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz"; 1201 - sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw=="; 1200 + url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz"; 1201 + sha512 = "W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA=="; 1202 1202 }; 1203 1203 }; 1204 - "@types/minimatch-3.0.4" = { 1204 + "@types/minimatch-3.0.5" = { 1205 1205 name = "_at_types_slash_minimatch"; 1206 1206 packageName = "@types/minimatch"; 1207 - version = "3.0.4"; 1207 + version = "3.0.5"; 1208 1208 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz"; 1210 - sha512 = "1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA=="; 1209 + url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"; 1210 + sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1211 1211 }; 1212 1212 }; 1213 - "@types/minimist-1.2.1" = { 1213 + "@types/minimist-1.2.2" = { 1214 1214 name = "_at_types_slash_minimist"; 1215 1215 packageName = "@types/minimist"; 1216 - version = "1.2.1"; 1216 + version = "1.2.2"; 1217 1217 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz"; 1219 - sha512 = "fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg=="; 1218 + url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"; 1219 + sha512 = "jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="; 1220 1220 }; 1221 1221 }; 1222 - "@types/node-15.0.2" = { 1222 + "@types/node-16.7.10" = { 1223 1223 name = "_at_types_slash_node"; 1224 1224 packageName = "@types/node"; 1225 - version = "15.0.2"; 1225 + version = "16.7.10"; 1226 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@types/node/-/node-15.0.2.tgz"; 1228 - sha512 = "p68+a+KoxpoB47015IeYZYRrdqMUcpbK8re/zpFB8Ld46LHC1lPEbp3EXgkEhAYEcPvjJF6ZO+869SQ0aH1dcA=="; 1227 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.10.tgz"; 1228 + sha512 = "S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA=="; 1229 1229 }; 1230 1230 }; 1231 - "@types/normalize-package-data-2.4.0" = { 1231 + "@types/normalize-package-data-2.4.1" = { 1232 1232 name = "_at_types_slash_normalize-package-data"; 1233 1233 packageName = "@types/normalize-package-data"; 1234 - version = "2.4.0"; 1234 + version = "2.4.1"; 1235 1235 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; 1237 - sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1236 + url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"; 1237 + sha512 = "Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="; 1238 1238 }; 1239 1239 }; 1240 1240 "@types/parse-json-4.0.0" = { ··· 1246 1246 sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1247 1247 }; 1248 1248 }; 1249 - "@types/q-1.5.4" = { 1249 + "@types/q-1.5.5" = { 1250 1250 name = "_at_types_slash_q"; 1251 1251 packageName = "@types/q"; 1252 - version = "1.5.4"; 1252 + version = "1.5.5"; 1253 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz"; 1255 - sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 1254 + url = "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz"; 1255 + sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; 1256 1256 }; 1257 1257 }; 1258 - "@types/resolve-0.0.8" = { 1258 + "@types/resolve-1.17.1" = { 1259 1259 name = "_at_types_slash_resolve"; 1260 1260 packageName = "@types/resolve"; 1261 - version = "0.0.8"; 1261 + version = "1.17.1"; 1262 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz"; 1264 - sha512 = "auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ=="; 1263 + url = "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"; 1264 + sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; 1265 1265 }; 1266 1266 }; 1267 1267 "@types/source-list-map-0.1.2" = { ··· 1273 1273 sha512 = "K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA=="; 1274 1274 }; 1275 1275 }; 1276 - "@types/tapable-1.0.7" = { 1276 + "@types/tapable-1.0.8" = { 1277 1277 name = "_at_types_slash_tapable"; 1278 1278 packageName = "@types/tapable"; 1279 - version = "1.0.7"; 1279 + version = "1.0.8"; 1280 1280 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.7.tgz"; 1282 - sha512 = "0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ=="; 1281 + url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"; 1282 + sha512 = "ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ=="; 1283 1283 }; 1284 1284 }; 1285 - "@types/uglify-js-3.13.0" = { 1285 + "@types/trusted-types-2.0.2" = { 1286 + name = "_at_types_slash_trusted-types"; 1287 + packageName = "@types/trusted-types"; 1288 + version = "2.0.2"; 1289 + src = fetchurl { 1290 + url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz"; 1291 + sha512 = "F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="; 1292 + }; 1293 + }; 1294 + "@types/uglify-js-3.13.1" = { 1286 1295 name = "_at_types_slash_uglify-js"; 1287 1296 packageName = "@types/uglify-js"; 1288 - version = "3.13.0"; 1297 + version = "3.13.1"; 1289 1298 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz"; 1291 - sha512 = "EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q=="; 1299 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz"; 1300 + sha512 = "O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ=="; 1292 1301 }; 1293 1302 }; 1294 - "@types/unist-2.0.3" = { 1303 + "@types/unist-2.0.6" = { 1295 1304 name = "_at_types_slash_unist"; 1296 1305 packageName = "@types/unist"; 1297 - version = "2.0.3"; 1306 + version = "2.0.6"; 1298 1307 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz"; 1300 - sha512 = "FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ=="; 1308 + url = "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz"; 1309 + sha512 = "PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ=="; 1301 1310 }; 1302 1311 }; 1303 1312 "@types/vfile-3.0.2" = { ··· 1318 1327 sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw=="; 1319 1328 }; 1320 1329 }; 1321 - "@types/webpack-4.41.28" = { 1330 + "@types/webpack-4.41.30" = { 1322 1331 name = "_at_types_slash_webpack"; 1323 1332 packageName = "@types/webpack"; 1324 - version = "4.41.28"; 1333 + version = "4.41.30"; 1325 1334 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.28.tgz"; 1327 - sha512 = "Nn84RAiJjKRfPFFCVR8LC4ueTtTdfWAMZ03THIzZWRJB+rX24BD3LqPSFnbMscWauEsT4segAsylPDIaZyZyLQ=="; 1335 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.30.tgz"; 1336 + sha512 = "GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA=="; 1328 1337 }; 1329 1338 }; 1330 - "@types/webpack-sources-2.1.0" = { 1339 + "@types/webpack-sources-3.2.0" = { 1331 1340 name = "_at_types_slash_webpack-sources"; 1332 1341 packageName = "@types/webpack-sources"; 1333 - version = "2.1.0"; 1342 + version = "3.2.0"; 1334 1343 src = fetchurl { 1335 - url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz"; 1336 - sha512 = "LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg=="; 1344 + url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; 1345 + sha512 = "Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg=="; 1337 1346 }; 1338 1347 }; 1339 1348 "@uupaa/dynamic-import-polyfill-1.0.2" = { ··· 1345 1354 sha512 = "V3vzdXunOKKob1F+2ldv/4iGQoQA/iyqtW8PVlr1v16xCCKL831pGUubT+vs5/9wxTE/zBKEhjIjmmpK6nqw2A=="; 1346 1355 }; 1347 1356 }; 1348 - "@webassemblyjs/ast-1.11.0" = { 1357 + "@webassemblyjs/ast-1.11.1" = { 1349 1358 name = "_at_webassemblyjs_slash_ast"; 1350 1359 packageName = "@webassemblyjs/ast"; 1351 - version = "1.11.0"; 1360 + version = "1.11.1"; 1352 1361 src = fetchurl { 1353 - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz"; 1354 - sha512 = "kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg=="; 1362 + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz"; 1363 + sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; 1355 1364 }; 1356 1365 }; 1357 - "@webassemblyjs/floating-point-hex-parser-1.11.0" = { 1366 + "@webassemblyjs/floating-point-hex-parser-1.11.1" = { 1358 1367 name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 1359 1368 packageName = "@webassemblyjs/floating-point-hex-parser"; 1360 - version = "1.11.0"; 1369 + version = "1.11.1"; 1361 1370 src = fetchurl { 1362 - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"; 1363 - sha512 = "Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA=="; 1371 + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"; 1372 + sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; 1364 1373 }; 1365 1374 }; 1366 - "@webassemblyjs/helper-api-error-1.11.0" = { 1375 + "@webassemblyjs/helper-api-error-1.11.1" = { 1367 1376 name = "_at_webassemblyjs_slash_helper-api-error"; 1368 1377 packageName = "@webassemblyjs/helper-api-error"; 1369 - version = "1.11.0"; 1378 + version = "1.11.1"; 1370 1379 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"; 1372 - sha512 = "baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w=="; 1380 + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"; 1381 + sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; 1373 1382 }; 1374 1383 }; 1375 - "@webassemblyjs/helper-buffer-1.11.0" = { 1384 + "@webassemblyjs/helper-buffer-1.11.1" = { 1376 1385 name = "_at_webassemblyjs_slash_helper-buffer"; 1377 1386 packageName = "@webassemblyjs/helper-buffer"; 1378 - version = "1.11.0"; 1387 + version = "1.11.1"; 1379 1388 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"; 1381 - sha512 = "u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA=="; 1389 + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"; 1390 + sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; 1382 1391 }; 1383 1392 }; 1384 - "@webassemblyjs/helper-numbers-1.11.0" = { 1393 + "@webassemblyjs/helper-numbers-1.11.1" = { 1385 1394 name = "_at_webassemblyjs_slash_helper-numbers"; 1386 1395 packageName = "@webassemblyjs/helper-numbers"; 1387 - version = "1.11.0"; 1396 + version = "1.11.1"; 1388 1397 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"; 1390 - sha512 = "DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ=="; 1398 + url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"; 1399 + sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; 1391 1400 }; 1392 1401 }; 1393 - "@webassemblyjs/helper-wasm-bytecode-1.11.0" = { 1402 + "@webassemblyjs/helper-wasm-bytecode-1.11.1" = { 1394 1403 name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 1395 1404 packageName = "@webassemblyjs/helper-wasm-bytecode"; 1396 - version = "1.11.0"; 1405 + version = "1.11.1"; 1397 1406 src = fetchurl { 1398 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"; 1399 - sha512 = "MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA=="; 1407 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"; 1408 + sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; 1400 1409 }; 1401 1410 }; 1402 - "@webassemblyjs/helper-wasm-section-1.11.0" = { 1411 + "@webassemblyjs/helper-wasm-section-1.11.1" = { 1403 1412 name = "_at_webassemblyjs_slash_helper-wasm-section"; 1404 1413 packageName = "@webassemblyjs/helper-wasm-section"; 1405 - version = "1.11.0"; 1414 + version = "1.11.1"; 1406 1415 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"; 1408 - sha512 = "3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew=="; 1416 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"; 1417 + sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; 1409 1418 }; 1410 1419 }; 1411 - "@webassemblyjs/ieee754-1.11.0" = { 1420 + "@webassemblyjs/ieee754-1.11.1" = { 1412 1421 name = "_at_webassemblyjs_slash_ieee754"; 1413 1422 packageName = "@webassemblyjs/ieee754"; 1414 - version = "1.11.0"; 1423 + version = "1.11.1"; 1415 1424 src = fetchurl { 1416 - url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"; 1417 - sha512 = "KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA=="; 1425 + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"; 1426 + sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; 1418 1427 }; 1419 1428 }; 1420 - "@webassemblyjs/leb128-1.11.0" = { 1429 + "@webassemblyjs/leb128-1.11.1" = { 1421 1430 name = "_at_webassemblyjs_slash_leb128"; 1422 1431 packageName = "@webassemblyjs/leb128"; 1423 - version = "1.11.0"; 1432 + version = "1.11.1"; 1424 1433 src = fetchurl { 1425 - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"; 1426 - sha512 = "aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g=="; 1434 + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"; 1435 + sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; 1427 1436 }; 1428 1437 }; 1429 - "@webassemblyjs/utf8-1.11.0" = { 1438 + "@webassemblyjs/utf8-1.11.1" = { 1430 1439 name = "_at_webassemblyjs_slash_utf8"; 1431 1440 packageName = "@webassemblyjs/utf8"; 1432 - version = "1.11.0"; 1441 + version = "1.11.1"; 1433 1442 src = fetchurl { 1434 - url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"; 1435 - sha512 = "A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw=="; 1443 + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"; 1444 + sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; 1436 1445 }; 1437 1446 }; 1438 - "@webassemblyjs/wasm-edit-1.11.0" = { 1447 + "@webassemblyjs/wasm-edit-1.11.1" = { 1439 1448 name = "_at_webassemblyjs_slash_wasm-edit"; 1440 1449 packageName = "@webassemblyjs/wasm-edit"; 1441 - version = "1.11.0"; 1450 + version = "1.11.1"; 1442 1451 src = fetchurl { 1443 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"; 1444 - sha512 = "JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ=="; 1452 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"; 1453 + sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; 1445 1454 }; 1446 1455 }; 1447 - "@webassemblyjs/wasm-gen-1.11.0" = { 1456 + "@webassemblyjs/wasm-gen-1.11.1" = { 1448 1457 name = "_at_webassemblyjs_slash_wasm-gen"; 1449 1458 packageName = "@webassemblyjs/wasm-gen"; 1450 - version = "1.11.0"; 1459 + version = "1.11.1"; 1451 1460 src = fetchurl { 1452 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"; 1453 - sha512 = "BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ=="; 1461 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"; 1462 + sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; 1454 1463 }; 1455 1464 }; 1456 - "@webassemblyjs/wasm-opt-1.11.0" = { 1465 + "@webassemblyjs/wasm-opt-1.11.1" = { 1457 1466 name = "_at_webassemblyjs_slash_wasm-opt"; 1458 1467 packageName = "@webassemblyjs/wasm-opt"; 1459 - version = "1.11.0"; 1468 + version = "1.11.1"; 1460 1469 src = fetchurl { 1461 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"; 1462 - sha512 = "tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg=="; 1470 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"; 1471 + sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; 1463 1472 }; 1464 1473 }; 1465 - "@webassemblyjs/wasm-parser-1.11.0" = { 1474 + "@webassemblyjs/wasm-parser-1.11.1" = { 1466 1475 name = "_at_webassemblyjs_slash_wasm-parser"; 1467 1476 packageName = "@webassemblyjs/wasm-parser"; 1468 - version = "1.11.0"; 1477 + version = "1.11.1"; 1469 1478 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"; 1471 - sha512 = "6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw=="; 1479 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"; 1480 + sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; 1472 1481 }; 1473 1482 }; 1474 - "@webassemblyjs/wast-printer-1.11.0" = { 1483 + "@webassemblyjs/wast-printer-1.11.1" = { 1475 1484 name = "_at_webassemblyjs_slash_wast-printer"; 1476 1485 packageName = "@webassemblyjs/wast-printer"; 1477 - version = "1.11.0"; 1486 + version = "1.11.1"; 1478 1487 src = fetchurl { 1479 - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz"; 1480 - sha512 = "Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ=="; 1488 + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"; 1489 + sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; 1481 1490 }; 1482 1491 }; 1483 - "@webpack-cli/configtest-1.0.2" = { 1492 + "@webpack-cli/configtest-1.0.4" = { 1484 1493 name = "_at_webpack-cli_slash_configtest"; 1485 1494 packageName = "@webpack-cli/configtest"; 1486 - version = "1.0.2"; 1495 + version = "1.0.4"; 1487 1496 src = fetchurl { 1488 - url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.2.tgz"; 1489 - sha512 = "3OBzV2fBGZ5TBfdW50cha1lHDVf9vlvRXnjpVbJBa20pSZQaSkMJZiwA8V2vD9ogyeXn8nU5s5A6mHyf5jhMzA=="; 1497 + url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.4.tgz"; 1498 + sha512 = "cs3XLy+UcxiP6bj0A6u7MLLuwdXJ1c3Dtc0RkKg+wiI1g/Ti1om8+/2hc2A2B60NbBNAbMgyBMHvyymWm/j4wQ=="; 1490 1499 }; 1491 1500 }; 1492 - "@webpack-cli/info-1.2.3" = { 1501 + "@webpack-cli/info-1.3.0" = { 1493 1502 name = "_at_webpack-cli_slash_info"; 1494 1503 packageName = "@webpack-cli/info"; 1495 - version = "1.2.3"; 1504 + version = "1.3.0"; 1496 1505 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.2.3.tgz"; 1498 - sha512 = "lLek3/T7u40lTqzCGpC6CAbY6+vXhdhmwFRxZLMnRm6/sIF/7qMpT8MocXCRQfz0JAh63wpbXLMnsQ5162WS7Q=="; 1506 + url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.3.0.tgz"; 1507 + sha512 = "ASiVB3t9LOKHs5DyVUcxpraBXDOKubYu/ihHhU+t1UPpxsivg6Od2E2qU4gJCekfEddzRBzHhzA/Acyw/mlK/w=="; 1499 1508 }; 1500 1509 }; 1501 - "@webpack-cli/serve-1.3.1" = { 1510 + "@webpack-cli/serve-1.5.2" = { 1502 1511 name = "_at_webpack-cli_slash_serve"; 1503 1512 packageName = "@webpack-cli/serve"; 1504 - version = "1.3.1"; 1513 + version = "1.5.2"; 1505 1514 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.3.1.tgz"; 1507 - sha512 = "0qXvpeYO6vaNoRBI52/UsbcaBydJCggoBBnIo/ovQQdn6fug0BgwsjorV1hVS7fMqGVTZGcVxv8334gjmbj5hw=="; 1515 + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.5.2.tgz"; 1516 + sha512 = "vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw=="; 1508 1517 }; 1509 1518 }; 1510 1519 "@xtuc/ieee754-1.2.0" = { ··· 1552 1561 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1553 1562 }; 1554 1563 }; 1555 - "acorn-8.2.4" = { 1564 + "acorn-8.4.1" = { 1556 1565 name = "acorn"; 1557 1566 packageName = "acorn"; 1558 - version = "8.2.4"; 1567 + version = "8.4.1"; 1559 1568 src = fetchurl { 1560 - url = "https://registry.npmjs.org/acorn/-/acorn-8.2.4.tgz"; 1561 - sha512 = "Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg=="; 1569 + url = "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"; 1570 + sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA=="; 1571 + }; 1572 + }; 1573 + "acorn-import-assertions-1.7.6" = { 1574 + name = "acorn-import-assertions"; 1575 + packageName = "acorn-import-assertions"; 1576 + version = "1.7.6"; 1577 + src = fetchurl { 1578 + url = "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz"; 1579 + sha512 = "FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA=="; 1562 1580 }; 1563 1581 }; 1564 - "acorn-jsx-5.3.1" = { 1582 + "acorn-jsx-5.3.2" = { 1565 1583 name = "acorn-jsx"; 1566 1584 packageName = "acorn-jsx"; 1567 - version = "5.3.1"; 1585 + version = "5.3.2"; 1568 1586 src = fetchurl { 1569 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 1570 - sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="; 1587 + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 1588 + sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 1571 1589 }; 1572 1590 }; 1573 1591 "aggregate-error-3.1.0" = { ··· 1588 1606 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1589 1607 }; 1590 1608 }; 1591 - "ajv-8.2.0" = { 1609 + "ajv-8.6.2" = { 1592 1610 name = "ajv"; 1593 1611 packageName = "ajv"; 1594 - version = "8.2.0"; 1612 + version = "8.6.2"; 1595 1613 src = fetchurl { 1596 - url = "https://registry.npmjs.org/ajv/-/ajv-8.2.0.tgz"; 1597 - sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA=="; 1614 + url = "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz"; 1615 + sha512 = "9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w=="; 1598 1616 }; 1599 1617 }; 1600 1618 "ajv-errors-1.0.1" = { ··· 1858 1876 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1859 1877 }; 1860 1878 }; 1861 - "ast-metadata-inferer-0.4.0" = { 1879 + "ast-metadata-inferer-0.7.0" = { 1862 1880 name = "ast-metadata-inferer"; 1863 1881 packageName = "ast-metadata-inferer"; 1864 - version = "0.4.0"; 1882 + version = "0.7.0"; 1865 1883 src = fetchurl { 1866 - url = "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.4.0.tgz"; 1867 - sha512 = "tKHdBe8N/Vq2nLAm4YPBVREVZjMux6KrqyPfNQgIbDl0t7HaNSmy8w4OyVHYg/cvyn5BW7o7pVwpjPte89Zhcg=="; 1884 + url = "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.7.0.tgz"; 1885 + sha512 = "OkMLzd8xelb3gmnp6ToFvvsHLtS6CbagTkFQvQ+ZYFe3/AIl9iKikNR9G7pY3GfOR/2Xc222hwBjzI7HLkE76Q=="; 1868 1886 }; 1869 1887 }; 1870 1888 "astral-regex-1.0.0" = { ··· 1912 1930 sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; 1913 1931 }; 1914 1932 }; 1933 + "at-least-node-1.0.0" = { 1934 + name = "at-least-node"; 1935 + packageName = "at-least-node"; 1936 + version = "1.0.0"; 1937 + src = fetchurl { 1938 + url = "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"; 1939 + sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 1940 + }; 1941 + }; 1915 1942 "atob-2.1.2" = { 1916 1943 name = "atob"; 1917 1944 packageName = "atob"; ··· 1928 1955 src = fetchurl { 1929 1956 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz"; 1930 1957 sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg=="; 1931 - }; 1932 - }; 1933 - "babel-extract-comments-1.0.0" = { 1934 - name = "babel-extract-comments"; 1935 - packageName = "babel-extract-comments"; 1936 - version = "1.0.0"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz"; 1939 - sha512 = "qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ=="; 1940 1958 }; 1941 1959 }; 1942 1960 "babel-loader-8.2.2" = { ··· 1966 1984 sha512 = "fqdut9hGeaAgdX3sbAY25TkqA7LPmZB+Hf1XI67AppvhUw1cBST58BPwl5kPwDZYIvmqRwnsVKM0lppsQAsxhg=="; 1967 1985 }; 1968 1986 }; 1969 - "babel-plugin-polyfill-corejs2-0.2.0" = { 1987 + "babel-plugin-polyfill-corejs2-0.2.2" = { 1970 1988 name = "babel-plugin-polyfill-corejs2"; 1971 1989 packageName = "babel-plugin-polyfill-corejs2"; 1972 - version = "0.2.0"; 1990 + version = "0.2.2"; 1973 1991 src = fetchurl { 1974 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz"; 1975 - sha512 = "9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg=="; 1992 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz"; 1993 + sha512 = "kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ=="; 1976 1994 }; 1977 1995 }; 1978 - "babel-plugin-polyfill-corejs3-0.2.0" = { 1996 + "babel-plugin-polyfill-corejs3-0.2.4" = { 1979 1997 name = "babel-plugin-polyfill-corejs3"; 1980 1998 packageName = "babel-plugin-polyfill-corejs3"; 1981 - version = "0.2.0"; 1999 + version = "0.2.4"; 1982 2000 src = fetchurl { 1983 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz"; 1984 - sha512 = "zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg=="; 2001 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz"; 2002 + sha512 = "z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ=="; 1985 2003 }; 1986 2004 }; 1987 - "babel-plugin-polyfill-regenerator-0.2.0" = { 2005 + "babel-plugin-polyfill-regenerator-0.2.2" = { 1988 2006 name = "babel-plugin-polyfill-regenerator"; 1989 2007 packageName = "babel-plugin-polyfill-regenerator"; 1990 - version = "0.2.0"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz"; 1993 - sha512 = "J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg=="; 1994 - }; 1995 - }; 1996 - "babel-plugin-syntax-object-rest-spread-6.13.0" = { 1997 - name = "babel-plugin-syntax-object-rest-spread"; 1998 - packageName = "babel-plugin-syntax-object-rest-spread"; 1999 - version = "6.13.0"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; 2002 - sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; 2003 - }; 2004 - }; 2005 - "babel-plugin-transform-object-rest-spread-6.26.0" = { 2006 - name = "babel-plugin-transform-object-rest-spread"; 2007 - packageName = "babel-plugin-transform-object-rest-spread"; 2008 - version = "6.26.0"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"; 2011 - sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06"; 2012 - }; 2013 - }; 2014 - "babel-runtime-6.26.0" = { 2015 - name = "babel-runtime"; 2016 - packageName = "babel-runtime"; 2017 - version = "6.26.0"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 2020 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 2021 - }; 2022 - }; 2023 - "babylon-6.18.0" = { 2024 - name = "babylon"; 2025 - packageName = "babylon"; 2026 - version = "6.18.0"; 2008 + version = "0.2.2"; 2027 2009 src = fetchurl { 2028 - url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; 2029 - sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="; 2010 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz"; 2011 + sha512 = "Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg=="; 2030 2012 }; 2031 2013 }; 2032 2014 "bail-1.0.5" = { ··· 2110 2092 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2111 2093 }; 2112 2094 }; 2113 - "blurhash-1.1.3" = { 2095 + "blurhash-1.1.4" = { 2114 2096 name = "blurhash"; 2115 2097 packageName = "blurhash"; 2116 - version = "1.1.3"; 2098 + version = "1.1.4"; 2117 2099 src = fetchurl { 2118 - url = "https://registry.npmjs.org/blurhash/-/blurhash-1.1.3.tgz"; 2119 - sha512 = "yUhPJvXexbqbyijCIE/T2NCXcj9iNPhWmOKbPTuR/cm7Q5snXYIfnVnz6m7MWOXxODMz/Cr3UcVkRdHiuDVRDw=="; 2100 + url = "https://registry.npmjs.org/blurhash/-/blurhash-1.1.4.tgz"; 2101 + sha512 = "MXIPz6zwYUKayju+Uidf83KhH0vodZfeRl6Ich8Gu+KGl0JgKiFq9LsfqV7cVU5fKD/AotmduZqvOfrGKOfTaA=="; 2120 2102 }; 2121 2103 }; 2122 2104 "body-parser-1.19.0" = { ··· 2182 2164 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; 2183 2165 }; 2184 2166 }; 2185 - "browserslist-4.16.6" = { 2167 + "browserslist-4.17.0" = { 2186 2168 name = "browserslist"; 2187 2169 packageName = "browserslist"; 2188 - version = "4.16.6"; 2170 + version = "4.17.0"; 2189 2171 src = fetchurl { 2190 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"; 2191 - sha512 = "Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="; 2172 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz"; 2173 + sha512 = "g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g=="; 2192 2174 }; 2193 2175 }; 2194 - "buffer-from-1.1.1" = { 2176 + "buffer-from-1.1.2" = { 2195 2177 name = "buffer-from"; 2196 2178 packageName = "buffer-from"; 2197 - version = "1.1.1"; 2179 + version = "1.1.2"; 2198 2180 src = fetchurl { 2199 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 2200 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 2181 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 2182 + sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 2201 2183 }; 2202 2184 }; 2203 2185 "buffer-indexof-1.1.1" = { ··· 2236 2218 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 2237 2219 }; 2238 2220 }; 2239 - "cacache-15.0.6" = { 2221 + "cacache-15.3.0" = { 2240 2222 name = "cacache"; 2241 2223 packageName = "cacache"; 2242 - version = "15.0.6"; 2224 + version = "15.3.0"; 2243 2225 src = fetchurl { 2244 - url = "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz"; 2245 - sha512 = "g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w=="; 2226 + url = "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"; 2227 + sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 2246 2228 }; 2247 2229 }; 2248 2230 "cache-base-1.0.1" = { ··· 2335 2317 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2336 2318 }; 2337 2319 }; 2338 - "camelcase-6.2.0" = { 2339 - name = "camelcase"; 2340 - packageName = "camelcase"; 2341 - version = "6.2.0"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 2344 - sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2345 - }; 2346 - }; 2347 2320 "camelcase-keys-4.2.0" = { 2348 2321 name = "camelcase-keys"; 2349 2322 packageName = "camelcase-keys"; ··· 2371 2344 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2372 2345 }; 2373 2346 }; 2374 - "caniuse-db-1.0.30001222" = { 2347 + "caniuse-db-1.0.30001255" = { 2375 2348 name = "caniuse-db"; 2376 2349 packageName = "caniuse-db"; 2377 - version = "1.0.30001222"; 2350 + version = "1.0.30001255"; 2378 2351 src = fetchurl { 2379 - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001222.tgz"; 2380 - sha512 = "ZLsTZ9Rqz407NLdjwqDnTq9SahH+eCu+qCXh91M+fK+7CgbNrz510I7RYCiG11SIklDxvvmD9BqvdPOA//y9Rg=="; 2352 + url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001255.tgz"; 2353 + sha512 = "+FV7TQX0PoThDIwNvRpoUbhmKJzAB8ZGc8xDNTRltvpbL7d7Si+HTOn1NDdZh4yw2JUqnV6LOYsAcG20lH7gGg=="; 2381 2354 }; 2382 2355 }; 2383 - "caniuse-lite-1.0.30001222" = { 2356 + "caniuse-lite-1.0.30001255" = { 2384 2357 name = "caniuse-lite"; 2385 2358 packageName = "caniuse-lite"; 2386 - version = "1.0.30001222"; 2359 + version = "1.0.30001255"; 2387 2360 src = fetchurl { 2388 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001222.tgz"; 2389 - sha512 = "rPmwUK0YMjfMlZVmH6nVB5U3YJ5Wnx3vmT5lnRO3nIKO8bJ+TRWMbGuuiSugDJqESy/lz+1hSrlQEagCtoOAWQ=="; 2361 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz"; 2362 + sha512 = "F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ=="; 2390 2363 }; 2391 2364 }; 2392 2365 "ccount-1.1.0" = { ··· 2416 2389 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2417 2390 }; 2418 2391 }; 2419 - "chalk-4.1.1" = { 2392 + "chalk-4.1.2" = { 2420 2393 name = "chalk"; 2421 2394 packageName = "chalk"; 2422 - version = "4.1.1"; 2395 + version = "4.1.2"; 2423 2396 src = fetchurl { 2424 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"; 2425 - sha512 = "diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="; 2397 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 2398 + sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 2426 2399 }; 2427 2400 }; 2428 2401 "character-entities-1.2.4" = { ··· 2470 2443 sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2471 2444 }; 2472 2445 }; 2473 - "chokidar-3.5.1" = { 2446 + "chokidar-3.5.2" = { 2474 2447 name = "chokidar"; 2475 2448 packageName = "chokidar"; 2476 - version = "3.5.1"; 2449 + version = "3.5.2"; 2477 2450 src = fetchurl { 2478 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 2479 - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 2451 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2452 + sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2480 2453 }; 2481 2454 }; 2482 2455 "chownr-2.0.0" = { ··· 2606 2579 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 2607 2580 }; 2608 2581 }; 2609 - "color-3.1.3" = { 2582 + "color-3.2.1" = { 2610 2583 name = "color"; 2611 2584 packageName = "color"; 2612 - version = "3.1.3"; 2585 + version = "3.2.1"; 2613 2586 src = fetchurl { 2614 - url = "https://registry.npmjs.org/color/-/color-3.1.3.tgz"; 2615 - sha512 = "xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ=="; 2587 + url = "https://registry.npmjs.org/color/-/color-3.2.1.tgz"; 2588 + sha512 = "aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA=="; 2616 2589 }; 2617 2590 }; 2618 2591 "color-convert-1.9.3" = { ··· 2651 2624 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2652 2625 }; 2653 2626 }; 2654 - "color-string-1.5.5" = { 2627 + "color-string-1.6.0" = { 2655 2628 name = "color-string"; 2656 2629 packageName = "color-string"; 2657 - version = "1.5.5"; 2630 + version = "1.6.0"; 2658 2631 src = fetchurl { 2659 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"; 2660 - sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="; 2632 + url = "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"; 2633 + sha512 = "c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="; 2661 2634 }; 2662 2635 }; 2663 - "colorette-1.2.2" = { 2636 + "colorette-1.3.0" = { 2664 2637 name = "colorette"; 2665 2638 packageName = "colorette"; 2666 - version = "1.2.2"; 2639 + version = "1.3.0"; 2667 2640 src = fetchurl { 2668 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 2669 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 2641 + url = "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz"; 2642 + sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w=="; 2670 2643 }; 2671 2644 }; 2672 2645 "commander-2.20.3" = { ··· 2766 2739 src = fetchurl { 2767 2740 url = "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"; 2768 2741 sha512 = "e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="; 2769 - }; 2770 - }; 2771 - "contains-path-0.1.0" = { 2772 - name = "contains-path"; 2773 - packageName = "contains-path"; 2774 - version = "0.1.0"; 2775 - src = fetchurl { 2776 - url = "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz"; 2777 - sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; 2778 2742 }; 2779 2743 }; 2780 2744 "content-disposition-0.5.3" = { ··· 2795 2759 sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 2796 2760 }; 2797 2761 }; 2798 - "convert-source-map-1.7.0" = { 2762 + "convert-source-map-1.8.0" = { 2799 2763 name = "convert-source-map"; 2800 2764 packageName = "convert-source-map"; 2801 - version = "1.7.0"; 2765 + version = "1.8.0"; 2802 2766 src = fetchurl { 2803 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"; 2804 - sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="; 2767 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"; 2768 + sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2805 2769 }; 2806 2770 }; 2807 2771 "cookie-0.4.0" = { ··· 2840 2804 sha512 = "MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA=="; 2841 2805 }; 2842 2806 }; 2843 - "core-js-2.6.12" = { 2844 - name = "core-js"; 2845 - packageName = "core-js"; 2846 - version = "2.6.12"; 2847 - src = fetchurl { 2848 - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"; 2849 - sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2850 - }; 2851 - }; 2852 - "core-js-3.11.2" = { 2807 + "core-js-3.17.2" = { 2853 2808 name = "core-js"; 2854 2809 packageName = "core-js"; 2855 - version = "3.11.2"; 2810 + version = "3.17.2"; 2856 2811 src = fetchurl { 2857 - url = "https://registry.npmjs.org/core-js/-/core-js-3.11.2.tgz"; 2858 - sha512 = "3tfrrO1JpJSYGKnd9LKTBPqgUES/UYiCzMKeqwR1+jF16q4kD1BY2NvqkfuzXwQ6+CIWm55V9cjD7PQd+hijdw=="; 2812 + url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz"; 2813 + sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA=="; 2859 2814 }; 2860 2815 }; 2861 - "core-js-compat-3.11.2" = { 2816 + "core-js-compat-3.17.2" = { 2862 2817 name = "core-js-compat"; 2863 2818 packageName = "core-js-compat"; 2864 - version = "3.11.2"; 2819 + version = "3.17.2"; 2865 2820 src = fetchurl { 2866 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.11.2.tgz"; 2867 - sha512 = "gYhNwu7AJjecNtRrIfyoBabQ3ZG+llfPmg9BifIX8yxIpDyfNLRM73zIjINSm6z3dMdI1nwNC9C7uiy4pIC6cw=="; 2821 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz"; 2822 + sha512 = "lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg=="; 2868 2823 }; 2869 2824 }; 2870 - "core-util-is-1.0.2" = { 2825 + "core-util-is-1.0.3" = { 2871 2826 name = "core-util-is"; 2872 2827 packageName = "core-util-is"; 2873 - version = "1.0.2"; 2828 + version = "1.0.3"; 2874 2829 src = fetchurl { 2875 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 2876 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 2830 + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 2831 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 2877 2832 }; 2878 2833 }; 2879 2834 "cosmiconfig-5.2.1" = { ··· 2885 2840 sha512 = "H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="; 2886 2841 }; 2887 2842 }; 2888 - "cosmiconfig-7.0.0" = { 2843 + "cosmiconfig-7.0.1" = { 2889 2844 name = "cosmiconfig"; 2890 2845 packageName = "cosmiconfig"; 2891 - version = "7.0.0"; 2846 + version = "7.0.1"; 2892 2847 src = fetchurl { 2893 - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz"; 2894 - sha512 = "pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA=="; 2848 + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; 2849 + sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; 2895 2850 }; 2896 2851 }; 2897 2852 "cross-spawn-6.0.5" = { ··· 2912 2867 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2913 2868 }; 2914 2869 }; 2915 - "crypto-random-string-1.0.0" = { 2870 + "crypto-random-string-2.0.0" = { 2916 2871 name = "crypto-random-string"; 2917 2872 packageName = "crypto-random-string"; 2918 - version = "1.0.0"; 2873 + version = "2.0.0"; 2919 2874 src = fetchurl { 2920 - url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; 2921 - sha1 = "a230f64f568310e1498009940790ec99545bca7e"; 2875 + url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 2876 + sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; 2922 2877 }; 2923 2878 }; 2924 2879 "css-blank-pseudo-0.1.4" = { ··· 2957 2912 sha512 = "Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ=="; 2958 2913 }; 2959 2914 }; 2960 - "css-loader-5.2.4" = { 2915 + "css-loader-5.2.7" = { 2961 2916 name = "css-loader"; 2962 2917 packageName = "css-loader"; 2963 - version = "5.2.4"; 2918 + version = "5.2.7"; 2964 2919 src = fetchurl { 2965 - url = "https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz"; 2966 - sha512 = "OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw=="; 2920 + url = "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz"; 2921 + sha512 = "Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg=="; 2967 2922 }; 2968 2923 }; 2969 2924 "css-prefers-color-scheme-3.1.1" = { ··· 2984 2939 sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; 2985 2940 }; 2986 2941 }; 2942 + "css-select-4.1.3" = { 2943 + name = "css-select"; 2944 + packageName = "css-select"; 2945 + version = "4.1.3"; 2946 + src = fetchurl { 2947 + url = "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz"; 2948 + sha512 = "gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA=="; 2949 + }; 2950 + }; 2987 2951 "css-select-base-adapter-0.1.1" = { 2988 2952 name = "css-select-base-adapter"; 2989 2953 packageName = "css-select-base-adapter"; ··· 3018 2982 src = fetchurl { 3019 2983 url = "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz"; 3020 2984 sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; 2985 + }; 2986 + }; 2987 + "css-what-5.0.1" = { 2988 + name = "css-what"; 2989 + packageName = "css-what"; 2990 + version = "5.0.1"; 2991 + src = fetchurl { 2992 + url = "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz"; 2993 + sha512 = "FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg=="; 3021 2994 }; 3022 2995 }; 3023 2996 "cssdb-4.4.0" = { ··· 3128 3101 sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; 3129 3102 }; 3130 3103 }; 3131 - "date-fns-2.21.1" = { 3104 + "date-fns-2.23.0" = { 3132 3105 name = "date-fns"; 3133 3106 packageName = "date-fns"; 3134 - version = "2.21.1"; 3107 + version = "2.23.0"; 3135 3108 src = fetchurl { 3136 - url = "https://registry.npmjs.org/date-fns/-/date-fns-2.21.1.tgz"; 3137 - sha512 = "m1WR0xGiC6j6jNFAyW4Nvh4WxAi4JF4w9jRJwSI8nBmNcyZXPcP9VUQG+6gHQXAmqaGEKDKhOqAtENDC941UkA=="; 3109 + url = "https://registry.npmjs.org/date-fns/-/date-fns-2.23.0.tgz"; 3110 + sha512 = "5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA=="; 3138 3111 }; 3139 3112 }; 3140 3113 "debug-2.6.9" = { ··· 3200 3173 sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="; 3201 3174 }; 3202 3175 }; 3203 - "deep-is-0.1.3" = { 3176 + "deep-is-0.1.4" = { 3204 3177 name = "deep-is"; 3205 3178 packageName = "deep-is"; 3206 - version = "0.1.3"; 3179 + version = "0.1.4"; 3207 3180 src = fetchurl { 3208 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 3209 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 3181 + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 3182 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 3183 + }; 3184 + }; 3185 + "deepmerge-4.2.2" = { 3186 + name = "deepmerge"; 3187 + packageName = "deepmerge"; 3188 + version = "4.2.2"; 3189 + src = fetchurl { 3190 + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 3191 + sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 3210 3192 }; 3211 3193 }; 3212 3194 "default-gateway-4.2.0" = { ··· 3281 3263 sha1 = "978857442c44749e4206613e37946205826abd80"; 3282 3264 }; 3283 3265 }; 3284 - "detect-node-2.0.5" = { 3266 + "detect-node-2.1.0" = { 3285 3267 name = "detect-node"; 3286 3268 packageName = "detect-node"; 3287 - version = "2.0.5"; 3269 + version = "2.1.0"; 3288 3270 src = fetchurl { 3289 - url = "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz"; 3290 - sha512 = "qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw=="; 3271 + url = "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz"; 3272 + sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="; 3291 3273 }; 3292 3274 }; 3293 3275 "dir-glob-2.2.2" = { ··· 3317 3299 sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d"; 3318 3300 }; 3319 3301 }; 3320 - "dns-packet-1.3.1" = { 3302 + "dns-packet-1.3.4" = { 3321 3303 name = "dns-packet"; 3322 3304 packageName = "dns-packet"; 3323 - version = "1.3.1"; 3305 + version = "1.3.4"; 3324 3306 src = fetchurl { 3325 - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz"; 3326 - sha512 = "0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg=="; 3307 + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz"; 3308 + sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA=="; 3327 3309 }; 3328 3310 }; 3329 3311 "dns-txt-2.0.2" = { ··· 3335 3317 sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6"; 3336 3318 }; 3337 3319 }; 3338 - "doctrine-1.5.0" = { 3320 + "doctrine-2.1.0" = { 3339 3321 name = "doctrine"; 3340 3322 packageName = "doctrine"; 3341 - version = "1.5.0"; 3323 + version = "2.1.0"; 3342 3324 src = fetchurl { 3343 - url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz"; 3344 - sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; 3325 + url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"; 3326 + sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; 3345 3327 }; 3346 3328 }; 3347 3329 "doctrine-3.0.0" = { ··· 3371 3353 sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; 3372 3354 }; 3373 3355 }; 3374 - "dom-serializer-1.3.1" = { 3356 + "dom-serializer-1.3.2" = { 3375 3357 name = "dom-serializer"; 3376 3358 packageName = "dom-serializer"; 3377 - version = "1.3.1"; 3359 + version = "1.3.2"; 3378 3360 src = fetchurl { 3379 - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz"; 3380 - sha512 = "Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q=="; 3361 + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz"; 3362 + sha512 = "5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig=="; 3381 3363 }; 3382 3364 }; 3383 3365 "dom7-3.0.0" = { ··· 3425 3407 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 3426 3408 }; 3427 3409 }; 3428 - "domhandler-4.2.0" = { 3410 + "domhandler-4.2.2" = { 3429 3411 name = "domhandler"; 3430 3412 packageName = "domhandler"; 3431 - version = "4.2.0"; 3413 + version = "4.2.2"; 3432 3414 src = fetchurl { 3433 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz"; 3434 - sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="; 3415 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz"; 3416 + sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 3435 3417 }; 3436 3418 }; 3437 3419 "domutils-1.7.0" = { ··· 3443 3425 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 3444 3426 }; 3445 3427 }; 3446 - "domutils-2.6.0" = { 3428 + "domutils-2.8.0" = { 3447 3429 name = "domutils"; 3448 3430 packageName = "domutils"; 3449 - version = "2.6.0"; 3431 + version = "2.8.0"; 3450 3432 src = fetchurl { 3451 - url = "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz"; 3452 - sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA=="; 3433 + url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"; 3434 + sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 3453 3435 }; 3454 3436 }; 3455 3437 "dot-case-3.0.4" = { ··· 3488 3470 sha512 = "7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="; 3489 3471 }; 3490 3472 }; 3491 - "electron-to-chromium-1.3.726" = { 3473 + "electron-to-chromium-1.3.830" = { 3492 3474 name = "electron-to-chromium"; 3493 3475 packageName = "electron-to-chromium"; 3494 - version = "1.3.726"; 3476 + version = "1.3.830"; 3495 3477 src = fetchurl { 3496 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.726.tgz"; 3497 - sha512 = "dw7WmrSu/JwtACiBzth8cuKf62NKL1xVJuNvyOg0jvruN/n4NLtGYoTzciQquCPNaS2eR+BT5GrxHbslfc/w1w=="; 3478 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.830.tgz"; 3479 + sha512 = "gBN7wNAxV5vl1430dG+XRcQhD4pIeYeak6p6rjdCtlz5wWNwDad8jwvphe5oi1chL5MV6RNRikfffBBiFuj+rQ=="; 3498 3480 }; 3499 3481 }; 3500 3482 "emoji-regex-7.0.3" = { ··· 3542 3524 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 3543 3525 }; 3544 3526 }; 3545 - "enhanced-resolve-5.8.0" = { 3527 + "enhanced-resolve-5.8.2" = { 3546 3528 name = "enhanced-resolve"; 3547 3529 packageName = "enhanced-resolve"; 3548 - version = "5.8.0"; 3530 + version = "5.8.2"; 3549 3531 src = fetchurl { 3550 - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.0.tgz"; 3551 - sha512 = "Sl3KRpJA8OpprrtaIswVki3cWPiPKxXuFxJXBp+zNb6s6VwNWwFRUdtmzd2ReUut8n+sCPx7QCtQ7w5wfJhSgQ=="; 3532 + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz"; 3533 + sha512 = "F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA=="; 3552 3534 }; 3553 3535 }; 3554 3536 "enquirer-2.3.6" = { ··· 3614 3596 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 3615 3597 }; 3616 3598 }; 3617 - "es-abstract-1.18.0" = { 3599 + "es-abstract-1.18.5" = { 3618 3600 name = "es-abstract"; 3619 3601 packageName = "es-abstract"; 3620 - version = "1.18.0"; 3602 + version = "1.18.5"; 3621 3603 src = fetchurl { 3622 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz"; 3623 - sha512 = "LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw=="; 3604 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz"; 3605 + sha512 = "DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA=="; 3624 3606 }; 3625 3607 }; 3626 - "es-module-lexer-0.4.1" = { 3608 + "es-module-lexer-0.7.1" = { 3627 3609 name = "es-module-lexer"; 3628 3610 packageName = "es-module-lexer"; 3629 - version = "0.4.1"; 3611 + version = "0.7.1"; 3630 3612 src = fetchurl { 3631 - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.1.tgz"; 3632 - sha512 = "ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA=="; 3613 + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz"; 3614 + sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw=="; 3633 3615 }; 3634 3616 }; 3635 3617 "es-to-primitive-1.2.1" = { ··· 3704 3686 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 3705 3687 }; 3706 3688 }; 3707 - "eslint-7.25.0" = { 3689 + "escape-string-regexp-4.0.0" = { 3690 + name = "escape-string-regexp"; 3691 + packageName = "escape-string-regexp"; 3692 + version = "4.0.0"; 3693 + src = fetchurl { 3694 + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 3695 + sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 3696 + }; 3697 + }; 3698 + "eslint-7.32.0" = { 3708 3699 name = "eslint"; 3709 3700 packageName = "eslint"; 3710 - version = "7.25.0"; 3701 + version = "7.32.0"; 3711 3702 src = fetchurl { 3712 - url = "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz"; 3713 - sha512 = "TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw=="; 3703 + url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"; 3704 + sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 3714 3705 }; 3715 3706 }; 3716 - "eslint-import-resolver-node-0.3.4" = { 3707 + "eslint-import-resolver-node-0.3.6" = { 3717 3708 name = "eslint-import-resolver-node"; 3718 3709 packageName = "eslint-import-resolver-node"; 3719 - version = "0.3.4"; 3710 + version = "0.3.6"; 3720 3711 src = fetchurl { 3721 - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"; 3722 - sha512 = "ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA=="; 3712 + url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; 3713 + sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; 3723 3714 }; 3724 3715 }; 3725 - "eslint-module-utils-2.6.0" = { 3716 + "eslint-module-utils-2.6.2" = { 3726 3717 name = "eslint-module-utils"; 3727 3718 packageName = "eslint-module-utils"; 3728 - version = "2.6.0"; 3719 + version = "2.6.2"; 3729 3720 src = fetchurl { 3730 - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"; 3731 - sha512 = "6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA=="; 3721 + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz"; 3722 + sha512 = "QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q=="; 3732 3723 }; 3733 3724 }; 3734 - "eslint-plugin-compat-3.9.0" = { 3725 + "eslint-plugin-compat-3.13.0" = { 3735 3726 name = "eslint-plugin-compat"; 3736 3727 packageName = "eslint-plugin-compat"; 3737 - version = "3.9.0"; 3728 + version = "3.13.0"; 3738 3729 src = fetchurl { 3739 - url = "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-3.9.0.tgz"; 3740 - sha512 = "lt3l5PHFHVEYSZ5zijcoYvtQJPsBifRiH5N0Et57KwVu7l/yxmHhSG6VJiLMa/lXrg93Qu8049RNQOMn0+yJBg=="; 3730 + url = "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-3.13.0.tgz"; 3731 + sha512 = "cv8IYMuTXm7PIjMVDN2y4k/KVnKZmoNGHNq27/9dLstOLydKblieIv+oe2BN2WthuXnFNhaNvv3N1Bvl4dbIGA=="; 3741 3732 }; 3742 3733 }; 3743 3734 "eslint-plugin-eslint-comments-3.2.0" = { ··· 3749 3740 sha512 = "0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ=="; 3750 3741 }; 3751 3742 }; 3752 - "eslint-plugin-import-2.22.1" = { 3743 + "eslint-plugin-import-2.24.2" = { 3753 3744 name = "eslint-plugin-import"; 3754 3745 packageName = "eslint-plugin-import"; 3755 - version = "2.22.1"; 3746 + version = "2.24.2"; 3756 3747 src = fetchurl { 3757 - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz"; 3758 - sha512 = "8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw=="; 3748 + url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz"; 3749 + sha512 = "hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q=="; 3759 3750 }; 3760 3751 }; 3761 3752 "eslint-plugin-promise-4.3.1" = { ··· 3866 3857 sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 3867 3858 }; 3868 3859 }; 3869 - "estree-walker-0.6.1" = { 3870 - name = "estree-walker"; 3871 - packageName = "estree-walker"; 3872 - version = "0.6.1"; 3873 - src = fetchurl { 3874 - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz"; 3875 - sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="; 3876 - }; 3877 - }; 3878 3860 "estree-walker-1.0.1" = { 3879 3861 name = "estree-walker"; 3880 3862 packageName = "estree-walker"; ··· 3947 3929 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 3948 3930 }; 3949 3931 }; 3950 - "execa-5.0.0" = { 3932 + "execa-5.1.1" = { 3951 3933 name = "execa"; 3952 3934 packageName = "execa"; 3953 - version = "5.0.0"; 3935 + version = "5.1.1"; 3954 3936 src = fetchurl { 3955 - url = "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz"; 3956 - sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ=="; 3937 + url = "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"; 3938 + sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; 3957 3939 }; 3958 3940 }; 3959 3941 "execall-1.0.0" = { ··· 4001 3983 sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 4002 3984 }; 4003 3985 }; 4004 - "ext-1.4.0" = { 3986 + "ext-1.5.0" = { 4005 3987 name = "ext"; 4006 3988 packageName = "ext"; 4007 - version = "1.4.0"; 3989 + version = "1.5.0"; 4008 3990 src = fetchurl { 4009 - url = "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz"; 4010 - sha512 = "Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A=="; 3991 + url = "https://registry.npmjs.org/ext/-/ext-1.5.0.tgz"; 3992 + sha512 = "+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q=="; 4011 3993 }; 4012 3994 }; 4013 3995 "extend-3.0.2" = { ··· 4064 4046 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4065 4047 }; 4066 4048 }; 4067 - "fast-glob-3.2.5" = { 4049 + "fast-glob-3.2.7" = { 4068 4050 name = "fast-glob"; 4069 4051 packageName = "fast-glob"; 4070 - version = "3.2.5"; 4052 + version = "3.2.7"; 4071 4053 src = fetchurl { 4072 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; 4073 - sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 4054 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz"; 4055 + sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 4074 4056 }; 4075 4057 }; 4076 4058 "fast-json-stable-stringify-2.1.0" = { ··· 4109 4091 sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 4110 4092 }; 4111 4093 }; 4112 - "fastq-1.11.0" = { 4094 + "fastq-1.12.0" = { 4113 4095 name = "fastq"; 4114 4096 packageName = "fastq"; 4115 - version = "1.11.0"; 4097 + version = "1.12.0"; 4116 4098 src = fetchurl { 4117 - url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 4118 - sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 4099 + url = "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz"; 4100 + sha512 = "VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg=="; 4119 4101 }; 4120 4102 }; 4121 - "faye-websocket-0.11.3" = { 4103 + "faye-websocket-0.11.4" = { 4122 4104 name = "faye-websocket"; 4123 4105 packageName = "faye-websocket"; 4124 - version = "0.11.3"; 4106 + version = "0.11.4"; 4125 4107 src = fetchurl { 4126 - url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz"; 4127 - sha512 = "D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA=="; 4108 + url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz"; 4109 + sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g=="; 4128 4110 }; 4129 4111 }; 4130 4112 "file-entry-cache-4.0.0" = { ··· 4190 4172 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 4191 4173 }; 4192 4174 }; 4193 - "find-cache-dir-3.3.1" = { 4175 + "find-cache-dir-3.3.2" = { 4194 4176 name = "find-cache-dir"; 4195 4177 packageName = "find-cache-dir"; 4196 - version = "3.3.1"; 4178 + version = "3.3.2"; 4197 4179 src = fetchurl { 4198 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 4199 - sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 4180 + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 4181 + sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 4200 4182 }; 4201 4183 }; 4202 4184 "find-up-2.1.0" = { ··· 4226 4208 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 4227 4209 }; 4228 4210 }; 4211 + "find-up-5.0.0" = { 4212 + name = "find-up"; 4213 + packageName = "find-up"; 4214 + version = "5.0.0"; 4215 + src = fetchurl { 4216 + url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 4217 + sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 4218 + }; 4219 + }; 4229 4220 "flat-cache-2.0.1" = { 4230 4221 name = "flat-cache"; 4231 4222 packageName = "flat-cache"; ··· 4253 4244 sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 4254 4245 }; 4255 4246 }; 4256 - "flatted-3.1.1" = { 4247 + "flatted-3.2.2" = { 4257 4248 name = "flatted"; 4258 4249 packageName = "flatted"; 4259 - version = "3.1.1"; 4250 + version = "3.2.2"; 4260 4251 src = fetchurl { 4261 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 4262 - sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 4252 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz"; 4253 + sha512 = "JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA=="; 4263 4254 }; 4264 4255 }; 4265 4256 "flatten-1.0.3" = { ··· 4271 4262 sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg=="; 4272 4263 }; 4273 4264 }; 4274 - "flv.js-1.5.0" = { 4265 + "flv.js-1.6.1" = { 4275 4266 name = "flv.js"; 4276 4267 packageName = "flv.js"; 4277 - version = "1.5.0"; 4268 + version = "1.6.1"; 4278 4269 src = fetchurl { 4279 - url = "https://registry.npmjs.org/flv.js/-/flv.js-1.5.0.tgz"; 4280 - sha512 = "7tFwccqkFXpA7RIED0KvuNny2qVnpuGc5nTGsRpzrCT+qtwIaZyciK5UgyvgtlAMYaPFzYS0wdI92JiSBKOyXw=="; 4270 + url = "https://registry.npmjs.org/flv.js/-/flv.js-1.6.1.tgz"; 4271 + sha512 = "6/ffUPbFaYf7QsdcZC43PQmEsi9Fwlp89Oq0bz8gNlj0eSMUhyHFxESxuLNSFgIEle+ChxqoF7kL2pL7xdam2A=="; 4281 4272 }; 4282 4273 }; 4283 - "follow-redirects-1.14.0" = { 4274 + "follow-redirects-1.14.3" = { 4284 4275 name = "follow-redirects"; 4285 4276 packageName = "follow-redirects"; 4286 - version = "1.14.0"; 4277 + version = "1.14.3"; 4287 4278 src = fetchurl { 4288 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.0.tgz"; 4289 - sha512 = "0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg=="; 4279 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz"; 4280 + sha512 = "3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw=="; 4290 4281 }; 4291 4282 }; 4292 4283 "fontsource-noto-sans-3.1.5" = { ··· 4343 4334 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 4344 4335 }; 4345 4336 }; 4346 - "forwarded-0.1.2" = { 4337 + "forwarded-0.2.0" = { 4347 4338 name = "forwarded"; 4348 4339 packageName = "forwarded"; 4349 - version = "0.1.2"; 4340 + version = "0.2.0"; 4350 4341 src = fetchurl { 4351 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 4352 - sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 4342 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"; 4343 + sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 4353 4344 }; 4354 4345 }; 4355 4346 "fragment-cache-0.2.1" = { ··· 4370 4361 sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 4371 4362 }; 4372 4363 }; 4373 - "fs-extra-8.1.0" = { 4364 + "fs-extra-9.1.0" = { 4374 4365 name = "fs-extra"; 4375 4366 packageName = "fs-extra"; 4376 - version = "8.1.0"; 4367 + version = "9.1.0"; 4377 4368 src = fetchurl { 4378 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"; 4379 - sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 4369 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 4370 + sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 4380 4371 }; 4381 4372 }; 4382 4373 "fs-minipass-2.1.0" = { ··· 4523 4514 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 4524 4515 }; 4525 4516 }; 4526 - "glob-7.1.6" = { 4517 + "glob-7.1.7" = { 4527 4518 name = "glob"; 4528 4519 packageName = "glob"; 4529 - version = "7.1.6"; 4520 + version = "7.1.7"; 4530 4521 src = fetchurl { 4531 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 4532 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 4522 + url = "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"; 4523 + sha512 = "OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="; 4533 4524 }; 4534 4525 }; 4535 4526 "glob-parent-3.1.0" = { ··· 4595 4586 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 4596 4587 }; 4597 4588 }; 4598 - "globals-12.4.0" = { 4589 + "globals-13.11.0" = { 4599 4590 name = "globals"; 4600 4591 packageName = "globals"; 4601 - version = "12.4.0"; 4602 - src = fetchurl { 4603 - url = "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"; 4604 - sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 4605 - }; 4606 - }; 4607 - "globals-13.8.0" = { 4608 - name = "globals"; 4609 - packageName = "globals"; 4610 - version = "13.8.0"; 4592 + version = "13.11.0"; 4611 4593 src = fetchurl { 4612 - url = "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz"; 4613 - sha512 = "rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q=="; 4594 + url = "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz"; 4595 + sha512 = "08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g=="; 4614 4596 }; 4615 4597 }; 4616 - "globby-11.0.3" = { 4598 + "globby-11.0.4" = { 4617 4599 name = "globby"; 4618 4600 packageName = "globby"; 4619 - version = "11.0.3"; 4601 + version = "11.0.4"; 4620 4602 src = fetchurl { 4621 - url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 4622 - sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 4603 + url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 4604 + sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 4623 4605 }; 4624 4606 }; 4625 4607 "globby-6.1.0" = { ··· 4658 4640 sha512 = "otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ=="; 4659 4641 }; 4660 4642 }; 4661 - "graceful-fs-4.2.6" = { 4643 + "graceful-fs-4.2.8" = { 4662 4644 name = "graceful-fs"; 4663 4645 packageName = "graceful-fs"; 4664 - version = "4.2.6"; 4646 + version = "4.2.8"; 4665 4647 src = fetchurl { 4666 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"; 4667 - sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 4648 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 4649 + sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 4668 4650 }; 4669 4651 }; 4670 4652 "handle-thing-2.0.1" = { ··· 4748 4730 sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 4749 4731 }; 4750 4732 }; 4733 + "has-tostringtag-1.0.0" = { 4734 + name = "has-tostringtag"; 4735 + packageName = "has-tostringtag"; 4736 + version = "1.0.0"; 4737 + src = fetchurl { 4738 + url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 4739 + sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 4740 + }; 4741 + }; 4751 4742 "has-value-0.3.1" = { 4752 4743 name = "has-value"; 4753 4744 packageName = "has-value"; ··· 4937 4928 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 4938 4929 }; 4939 4930 }; 4931 + "htmlparser2-6.1.0" = { 4932 + name = "htmlparser2"; 4933 + packageName = "htmlparser2"; 4934 + version = "6.1.0"; 4935 + src = fetchurl { 4936 + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz"; 4937 + sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 4938 + }; 4939 + }; 4940 4940 "http-deceiver-1.2.7" = { 4941 4941 name = "http-deceiver"; 4942 4942 packageName = "http-deceiver"; ··· 5009 5009 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 5010 5010 }; 5011 5011 }; 5012 - "iconv-lite-0.6.2" = { 5012 + "iconv-lite-0.6.3" = { 5013 5013 name = "iconv-lite"; 5014 5014 packageName = "iconv-lite"; 5015 - version = "0.6.2"; 5015 + version = "0.6.3"; 5016 5016 src = fetchurl { 5017 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz"; 5018 - sha512 = "2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ=="; 5017 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 5018 + sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 5019 5019 }; 5020 5020 }; 5021 5021 "icss-utils-5.1.0" = { ··· 5025 5025 src = fetchurl { 5026 5026 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"; 5027 5027 sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; 5028 + }; 5029 + }; 5030 + "idb-6.1.3" = { 5031 + name = "idb"; 5032 + packageName = "idb"; 5033 + version = "6.1.3"; 5034 + src = fetchurl { 5035 + url = "https://registry.npmjs.org/idb/-/idb-6.1.3.tgz"; 5036 + sha512 = "oIRDpVcs5KXpI1hRnTJUwkY63RB/7iqu9nSNuzXN8TLHjs7oO20IoPFbBTsqxIL5IjzIUDi+FXlVcK4zm26J8A=="; 5028 5037 }; 5029 5038 }; 5030 5039 "ignore-4.0.6" = { ··· 5216 5225 sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="; 5217 5226 }; 5218 5227 }; 5228 + "internal-slot-1.0.3" = { 5229 + name = "internal-slot"; 5230 + packageName = "internal-slot"; 5231 + version = "1.0.3"; 5232 + src = fetchurl { 5233 + url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"; 5234 + sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 5235 + }; 5236 + }; 5219 5237 "interpret-2.2.0" = { 5220 5238 name = "interpret"; 5221 5239 packageName = "interpret"; ··· 5333 5351 sha512 = "UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="; 5334 5352 }; 5335 5353 }; 5336 - "is-arguments-1.1.0" = { 5354 + "is-arguments-1.1.1" = { 5337 5355 name = "is-arguments"; 5338 5356 packageName = "is-arguments"; 5339 - version = "1.1.0"; 5357 + version = "1.1.1"; 5340 5358 src = fetchurl { 5341 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"; 5342 - sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="; 5359 + url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 5360 + sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 5343 5361 }; 5344 5362 }; 5345 5363 "is-arrayish-0.2.1" = { ··· 5360 5378 sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="; 5361 5379 }; 5362 5380 }; 5363 - "is-bigint-1.0.2" = { 5381 + "is-bigint-1.0.4" = { 5364 5382 name = "is-bigint"; 5365 5383 packageName = "is-bigint"; 5366 - version = "1.0.2"; 5384 + version = "1.0.4"; 5367 5385 src = fetchurl { 5368 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz"; 5369 - sha512 = "0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA=="; 5386 + url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 5387 + sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 5370 5388 }; 5371 5389 }; 5372 5390 "is-binary-path-1.0.1" = { ··· 5387 5405 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 5388 5406 }; 5389 5407 }; 5390 - "is-boolean-object-1.1.0" = { 5408 + "is-boolean-object-1.1.2" = { 5391 5409 name = "is-boolean-object"; 5392 5410 packageName = "is-boolean-object"; 5393 - version = "1.1.0"; 5411 + version = "1.1.2"; 5394 5412 src = fetchurl { 5395 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz"; 5396 - sha512 = "a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA=="; 5413 + url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 5414 + sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 5397 5415 }; 5398 5416 }; 5399 5417 "is-buffer-1.1.6" = { ··· 5414 5432 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 5415 5433 }; 5416 5434 }; 5417 - "is-callable-1.2.3" = { 5435 + "is-callable-1.2.4" = { 5418 5436 name = "is-callable"; 5419 5437 packageName = "is-callable"; 5420 - version = "1.2.3"; 5438 + version = "1.2.4"; 5421 5439 src = fetchurl { 5422 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"; 5423 - sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="; 5440 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"; 5441 + sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 5424 5442 }; 5425 5443 }; 5426 5444 "is-color-stop-1.1.0" = { ··· 5432 5450 sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; 5433 5451 }; 5434 5452 }; 5435 - "is-core-module-2.3.0" = { 5453 + "is-core-module-2.6.0" = { 5436 5454 name = "is-core-module"; 5437 5455 packageName = "is-core-module"; 5438 - version = "2.3.0"; 5456 + version = "2.6.0"; 5439 5457 src = fetchurl { 5440 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.3.0.tgz"; 5441 - sha512 = "xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw=="; 5458 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz"; 5459 + sha512 = "wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ=="; 5442 5460 }; 5443 5461 }; 5444 5462 "is-data-descriptor-0.1.4" = { ··· 5459 5477 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 5460 5478 }; 5461 5479 }; 5462 - "is-date-object-1.0.2" = { 5480 + "is-date-object-1.0.5" = { 5463 5481 name = "is-date-object"; 5464 5482 packageName = "is-date-object"; 5465 - version = "1.0.2"; 5483 + version = "1.0.5"; 5466 5484 src = fetchurl { 5467 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"; 5468 - sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 5485 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 5486 + sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 5469 5487 }; 5470 5488 }; 5471 5489 "is-decimal-1.0.4" = { ··· 5612 5630 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 5613 5631 }; 5614 5632 }; 5615 - "is-number-object-1.0.4" = { 5633 + "is-number-object-1.0.6" = { 5616 5634 name = "is-number-object"; 5617 5635 packageName = "is-number-object"; 5618 - version = "1.0.4"; 5636 + version = "1.0.6"; 5619 5637 src = fetchurl { 5620 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz"; 5621 - sha512 = "zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw=="; 5638 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; 5639 + sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 5622 5640 }; 5623 5641 }; 5624 5642 "is-obj-1.0.1" = { ··· 5693 5711 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 5694 5712 }; 5695 5713 }; 5696 - "is-regex-1.1.2" = { 5714 + "is-regex-1.1.4" = { 5697 5715 name = "is-regex"; 5698 5716 packageName = "is-regex"; 5699 - version = "1.1.2"; 5717 + version = "1.1.4"; 5700 5718 src = fetchurl { 5701 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz"; 5702 - sha512 = "axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg=="; 5719 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 5720 + sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 5703 5721 }; 5704 5722 }; 5705 5723 "is-regexp-1.0.0" = { ··· 5738 5756 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 5739 5757 }; 5740 5758 }; 5741 - "is-stream-2.0.0" = { 5759 + "is-stream-2.0.1" = { 5742 5760 name = "is-stream"; 5743 5761 packageName = "is-stream"; 5744 - version = "2.0.0"; 5762 + version = "2.0.1"; 5745 5763 src = fetchurl { 5746 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 5747 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 5764 + url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 5765 + sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 5748 5766 }; 5749 5767 }; 5750 - "is-string-1.0.5" = { 5768 + "is-string-1.0.7" = { 5751 5769 name = "is-string"; 5752 5770 packageName = "is-string"; 5753 - version = "1.0.5"; 5771 + version = "1.0.7"; 5754 5772 src = fetchurl { 5755 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz"; 5756 - sha512 = "buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ=="; 5773 + url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 5774 + sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 5757 5775 }; 5758 5776 }; 5759 5777 "is-supported-regexp-flag-1.0.1" = { ··· 5765 5783 sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ=="; 5766 5784 }; 5767 5785 }; 5768 - "is-symbol-1.0.3" = { 5786 + "is-symbol-1.0.4" = { 5769 5787 name = "is-symbol"; 5770 5788 packageName = "is-symbol"; 5771 - version = "1.0.3"; 5789 + version = "1.0.4"; 5772 5790 src = fetchurl { 5773 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"; 5774 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 5791 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 5792 + sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 5775 5793 }; 5776 5794 }; 5777 5795 "is-typedarray-1.0.0" = { ··· 5882 5900 sha512 = "fwAF1G89amm3uO2Yw0E26fW5X6JoyRUnOdBEeuSN04/NpdKKVHD4u53dgqF0jHzXNuKdn5eh0AuV37cMKzBanA=="; 5883 5901 }; 5884 5902 }; 5885 - "jest-worker-24.9.0" = { 5903 + "jest-worker-26.6.2" = { 5886 5904 name = "jest-worker"; 5887 5905 packageName = "jest-worker"; 5888 - version = "24.9.0"; 5906 + version = "26.6.2"; 5889 5907 src = fetchurl { 5890 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz"; 5891 - sha512 = "51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw=="; 5908 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"; 5909 + sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 5892 5910 }; 5893 5911 }; 5894 - "jest-worker-26.6.2" = { 5912 + "jest-worker-27.1.0" = { 5895 5913 name = "jest-worker"; 5896 5914 packageName = "jest-worker"; 5897 - version = "26.6.2"; 5915 + version = "27.1.0"; 5898 5916 src = fetchurl { 5899 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"; 5900 - sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 5917 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.0.tgz"; 5918 + sha512 = "mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg=="; 5901 5919 }; 5902 5920 }; 5903 5921 "jquery-3.6.0" = { ··· 5972 5990 sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 5973 5991 }; 5974 5992 }; 5993 + "json-schema-0.3.0" = { 5994 + name = "json-schema"; 5995 + packageName = "json-schema"; 5996 + version = "0.3.0"; 5997 + src = fetchurl { 5998 + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.3.0.tgz"; 5999 + sha512 = "TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ=="; 6000 + }; 6001 + }; 5975 6002 "json-schema-traverse-0.4.1" = { 5976 6003 name = "json-schema-traverse"; 5977 6004 packageName = "json-schema-traverse"; ··· 6026 6053 sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 6027 6054 }; 6028 6055 }; 6029 - "jsonfile-4.0.0" = { 6056 + "jsonfile-6.1.0" = { 6030 6057 name = "jsonfile"; 6031 6058 packageName = "jsonfile"; 6032 - version = "4.0.0"; 6059 + version = "6.1.0"; 6060 + src = fetchurl { 6061 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"; 6062 + sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; 6063 + }; 6064 + }; 6065 + "jsonpointer-4.1.0" = { 6066 + name = "jsonpointer"; 6067 + packageName = "jsonpointer"; 6068 + version = "4.1.0"; 6033 6069 src = fetchurl { 6034 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; 6035 - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 6070 + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz"; 6071 + sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg=="; 6036 6072 }; 6037 6073 }; 6038 - "jstree-3.3.11" = { 6074 + "jstree-3.3.12" = { 6039 6075 name = "jstree"; 6040 6076 packageName = "jstree"; 6041 - version = "3.3.11"; 6077 + version = "3.3.12"; 6042 6078 src = fetchurl { 6043 - url = "https://registry.npmjs.org/jstree/-/jstree-3.3.11.tgz"; 6044 - sha512 = "9ZJKroPjCyjb6JLPuAbBrLJKT6pS1f4m5gkwoEagG5oQWtvzm0IiDsntXTxeFtz7AmqrKfij+gLfF9MgWriNxg=="; 6079 + url = "https://registry.npmjs.org/jstree/-/jstree-3.3.12.tgz"; 6080 + sha512 = "vHNLWkUr02ZYH7RcIckvhtLUtneWCVEtIKpIp2G9WtRh01ITv18EoNtNQcFG3ozM+oK6wp1Z300gSLXNQWCqGA=="; 6045 6081 }; 6046 6082 }; 6047 - "jszip-3.6.0" = { 6083 + "jszip-3.7.1" = { 6048 6084 name = "jszip"; 6049 6085 packageName = "jszip"; 6050 - version = "3.6.0"; 6086 + version = "3.7.1"; 6051 6087 src = fetchurl { 6052 - url = "https://registry.npmjs.org/jszip/-/jszip-3.6.0.tgz"; 6053 - sha512 = "jgnQoG9LKnWO3mnVNBnfhkh0QknICd1FGSrXcgrl67zioyJ4wgx25o9ZqwNtrROSflGBCGYnJfjrIyRIby1OoQ=="; 6088 + url = "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz"; 6089 + sha512 = "ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg=="; 6054 6090 }; 6055 6091 }; 6056 6092 "killable-1.0.1" = { ··· 6134 6170 sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; 6135 6171 }; 6136 6172 }; 6173 + "leven-3.1.0" = { 6174 + name = "leven"; 6175 + packageName = "leven"; 6176 + version = "3.1.0"; 6177 + src = fetchurl { 6178 + url = "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"; 6179 + sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; 6180 + }; 6181 + }; 6137 6182 "levn-0.4.1" = { 6138 6183 name = "levn"; 6139 6184 packageName = "levn"; ··· 6189 6234 sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 6190 6235 }; 6191 6236 }; 6192 - "load-json-file-2.0.0" = { 6193 - name = "load-json-file"; 6194 - packageName = "load-json-file"; 6195 - version = "2.0.0"; 6196 - src = fetchurl { 6197 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; 6198 - sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; 6199 - }; 6200 - }; 6201 6237 "load-json-file-4.0.0" = { 6202 6238 name = "load-json-file"; 6203 6239 packageName = "load-json-file"; ··· 6234 6270 sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 6235 6271 }; 6236 6272 }; 6237 - "localforage-1.9.0" = { 6273 + "localforage-1.10.0" = { 6238 6274 name = "localforage"; 6239 6275 packageName = "localforage"; 6240 - version = "1.9.0"; 6276 + version = "1.10.0"; 6241 6277 src = fetchurl { 6242 - url = "https://registry.npmjs.org/localforage/-/localforage-1.9.0.tgz"; 6243 - sha512 = "rR1oyNrKulpe+VM9cYmcFn6tsHuokyVHFaCM3+osEmxaHTbEk8oQu6eGDfS6DQLWi/N67XRmB8ECG37OES368g=="; 6278 + url = "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz"; 6279 + sha512 = "14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg=="; 6244 6280 }; 6245 6281 }; 6246 6282 "locate-path-2.0.0" = { ··· 6270 6306 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 6271 6307 }; 6272 6308 }; 6309 + "locate-path-6.0.0" = { 6310 + name = "locate-path"; 6311 + packageName = "locate-path"; 6312 + version = "6.0.0"; 6313 + src = fetchurl { 6314 + url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 6315 + sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 6316 + }; 6317 + }; 6273 6318 "lodash-4.17.21" = { 6274 6319 name = "lodash"; 6275 6320 packageName = "lodash"; ··· 6279 6324 sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 6280 6325 }; 6281 6326 }; 6282 - "lodash._reinterpolate-3.0.0" = { 6283 - name = "lodash._reinterpolate"; 6284 - packageName = "lodash._reinterpolate"; 6285 - version = "3.0.0"; 6286 - src = fetchurl { 6287 - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; 6288 - sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; 6289 - }; 6290 - }; 6291 6327 "lodash.clonedeep-4.5.0" = { 6292 6328 name = "lodash.clonedeep"; 6293 6329 packageName = "lodash.clonedeep"; ··· 6306 6342 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 6307 6343 }; 6308 6344 }; 6309 - "lodash.flatten-4.4.0" = { 6310 - name = "lodash.flatten"; 6311 - packageName = "lodash.flatten"; 6312 - version = "4.4.0"; 6313 - src = fetchurl { 6314 - url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; 6315 - sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; 6316 - }; 6317 - }; 6318 6345 "lodash.memoize-4.1.2" = { 6319 6346 name = "lodash.memoize"; 6320 6347 packageName = "lodash.memoize"; ··· 6324 6351 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 6325 6352 }; 6326 6353 }; 6327 - "lodash.template-4.5.0" = { 6328 - name = "lodash.template"; 6329 - packageName = "lodash.template"; 6330 - version = "4.5.0"; 6354 + "lodash.merge-4.6.2" = { 6355 + name = "lodash.merge"; 6356 + packageName = "lodash.merge"; 6357 + version = "4.6.2"; 6331 6358 src = fetchurl { 6332 - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz"; 6333 - sha512 = "84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A=="; 6359 + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 6360 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 6334 6361 }; 6335 6362 }; 6336 - "lodash.templatesettings-4.2.0" = { 6337 - name = "lodash.templatesettings"; 6338 - packageName = "lodash.templatesettings"; 6339 - version = "4.2.0"; 6363 + "lodash.sortby-4.7.0" = { 6364 + name = "lodash.sortby"; 6365 + packageName = "lodash.sortby"; 6366 + version = "4.7.0"; 6340 6367 src = fetchurl { 6341 - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"; 6342 - sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 6368 + url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; 6369 + sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; 6343 6370 }; 6344 6371 }; 6345 6372 "lodash.truncate-4.4.2" = { ··· 6711 6738 sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; 6712 6739 }; 6713 6740 }; 6714 - "mime-db-1.47.0" = { 6741 + "mime-db-1.49.0" = { 6715 6742 name = "mime-db"; 6716 6743 packageName = "mime-db"; 6717 - version = "1.47.0"; 6744 + version = "1.49.0"; 6718 6745 src = fetchurl { 6719 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz"; 6720 - sha512 = "QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw=="; 6746 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz"; 6747 + sha512 = "CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="; 6721 6748 }; 6722 6749 }; 6723 - "mime-types-2.1.30" = { 6750 + "mime-types-2.1.32" = { 6724 6751 name = "mime-types"; 6725 6752 packageName = "mime-types"; 6726 - version = "2.1.30"; 6753 + version = "2.1.32"; 6727 6754 src = fetchurl { 6728 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz"; 6729 - sha512 = "crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg=="; 6755 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz"; 6756 + sha512 = "hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A=="; 6730 6757 }; 6731 6758 }; 6732 6759 "mimic-fn-2.1.0" = { ··· 6909 6936 sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901"; 6910 6937 }; 6911 6938 }; 6912 - "nan-2.14.2" = { 6939 + "nan-2.15.0" = { 6913 6940 name = "nan"; 6914 6941 packageName = "nan"; 6915 - version = "2.14.2"; 6942 + version = "2.15.0"; 6916 6943 src = fetchurl { 6917 - url = "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz"; 6918 - sha512 = "M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ=="; 6944 + url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"; 6945 + sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 6919 6946 }; 6920 6947 }; 6921 - "nanoid-3.1.22" = { 6948 + "nanoid-3.1.25" = { 6922 6949 name = "nanoid"; 6923 6950 packageName = "nanoid"; 6924 - version = "3.1.22"; 6951 + version = "3.1.25"; 6925 6952 src = fetchurl { 6926 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz"; 6927 - sha512 = "/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ=="; 6953 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz"; 6954 + sha512 = "rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q=="; 6928 6955 }; 6929 6956 }; 6930 6957 "nanomatch-1.2.13" = { ··· 7008 7035 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 7009 7036 }; 7010 7037 }; 7011 - "node-releases-1.1.71" = { 7038 + "node-releases-1.1.75" = { 7012 7039 name = "node-releases"; 7013 7040 packageName = "node-releases"; 7014 - version = "1.1.71"; 7041 + version = "1.1.75"; 7015 7042 src = fetchurl { 7016 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz"; 7017 - sha512 = "zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg=="; 7043 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz"; 7044 + sha512 = "Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw=="; 7018 7045 }; 7019 7046 }; 7020 7047 "normalize-package-data-2.5.0" = { ··· 7026 7053 sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 7027 7054 }; 7028 7055 }; 7029 - "normalize-package-data-3.0.2" = { 7056 + "normalize-package-data-3.0.3" = { 7030 7057 name = "normalize-package-data"; 7031 7058 packageName = "normalize-package-data"; 7032 - version = "3.0.2"; 7059 + version = "3.0.3"; 7033 7060 src = fetchurl { 7034 - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz"; 7035 - sha512 = "6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg=="; 7061 + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz"; 7062 + sha512 = "p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA=="; 7036 7063 }; 7037 7064 }; 7038 7065 "normalize-path-2.1.1" = { ··· 7107 7134 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; 7108 7135 }; 7109 7136 }; 7137 + "nth-check-2.0.0" = { 7138 + name = "nth-check"; 7139 + packageName = "nth-check"; 7140 + version = "2.0.0"; 7141 + src = fetchurl { 7142 + url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz"; 7143 + sha512 = "i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q=="; 7144 + }; 7145 + }; 7110 7146 "num2fraction-1.2.2" = { 7111 7147 name = "num2fraction"; 7112 7148 packageName = "num2fraction"; ··· 7134 7170 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 7135 7171 }; 7136 7172 }; 7137 - "object-inspect-1.10.2" = { 7173 + "object-inspect-1.11.0" = { 7138 7174 name = "object-inspect"; 7139 7175 packageName = "object-inspect"; 7140 - version = "1.10.2"; 7176 + version = "1.11.0"; 7141 7177 src = fetchurl { 7142 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz"; 7143 - sha512 = "gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA=="; 7178 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"; 7179 + sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="; 7144 7180 }; 7145 7181 }; 7146 7182 "object-is-1.1.5" = { ··· 7197 7233 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 7198 7234 }; 7199 7235 }; 7200 - "object.values-1.1.3" = { 7236 + "object.values-1.1.4" = { 7201 7237 name = "object.values"; 7202 7238 packageName = "object.values"; 7203 - version = "1.1.3"; 7239 + version = "1.1.4"; 7204 7240 src = fetchurl { 7205 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz"; 7206 - sha512 = "nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw=="; 7241 + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz"; 7242 + sha512 = "TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg=="; 7207 7243 }; 7208 7244 }; 7209 7245 "obuf-1.1.2" = { ··· 7341 7377 sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 7342 7378 }; 7343 7379 }; 7380 + "p-locate-5.0.0" = { 7381 + name = "p-locate"; 7382 + packageName = "p-locate"; 7383 + version = "5.0.0"; 7384 + src = fetchurl { 7385 + url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 7386 + sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 7387 + }; 7388 + }; 7344 7389 "p-map-2.1.0" = { 7345 7390 name = "p-map"; 7346 7391 packageName = "p-map"; ··· 7438 7483 src = fetchurl { 7439 7484 url = "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz"; 7440 7485 sha512 = "kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="; 7441 - }; 7442 - }; 7443 - "parse-json-2.2.0" = { 7444 - name = "parse-json"; 7445 - packageName = "parse-json"; 7446 - version = "2.2.0"; 7447 - src = fetchurl { 7448 - url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; 7449 - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 7450 7486 }; 7451 7487 }; 7452 7488 "parse-json-4.0.0" = { ··· 7557 7593 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 7558 7594 }; 7559 7595 }; 7560 - "path-parse-1.0.6" = { 7596 + "path-parse-1.0.7" = { 7561 7597 name = "path-parse"; 7562 7598 packageName = "path-parse"; 7563 - version = "1.0.6"; 7599 + version = "1.0.7"; 7564 7600 src = fetchurl { 7565 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 7566 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 7601 + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 7602 + sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 7567 7603 }; 7568 7604 }; 7569 7605 "path-to-regexp-0.1.7" = { ··· 7584 7620 sha1 = "b33705c140234d873c8721c7b9fd8b541ed3aff9"; 7585 7621 }; 7586 7622 }; 7587 - "path-type-2.0.0" = { 7588 - name = "path-type"; 7589 - packageName = "path-type"; 7590 - version = "2.0.0"; 7591 - src = fetchurl { 7592 - url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; 7593 - sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; 7594 - }; 7595 - }; 7596 7623 "path-type-3.0.0" = { 7597 7624 name = "path-type"; 7598 7625 packageName = "path-type"; ··· 7629 7656 sha512 = "xGDUhnCYPfHy+unMXCLCJtlpZaaZ17Ew3WIL0tnSgKFUZXHAPD49GO9xScyszSsQMoutNDgRb+rfBXIaX/lJbw=="; 7630 7657 }; 7631 7658 }; 7632 - "picomatch-2.2.3" = { 7659 + "picomatch-2.3.0" = { 7633 7660 name = "picomatch"; 7634 7661 packageName = "picomatch"; 7635 - version = "2.2.3"; 7662 + version = "2.3.0"; 7636 7663 src = fetchurl { 7637 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz"; 7638 - sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg=="; 7664 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 7665 + sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 7639 7666 }; 7640 7667 }; 7641 7668 "pify-2.3.0" = { ··· 7710 7737 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 7711 7738 }; 7712 7739 }; 7740 + "pkg-up-2.0.0" = { 7741 + name = "pkg-up"; 7742 + packageName = "pkg-up"; 7743 + version = "2.0.0"; 7744 + src = fetchurl { 7745 + url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz"; 7746 + sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f"; 7747 + }; 7748 + }; 7713 7749 "plur-2.1.2" = { 7714 7750 name = "plur"; 7715 7751 packageName = "plur"; ··· 7746 7782 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; 7747 7783 }; 7748 7784 }; 7749 - "postcss-7.0.35" = { 7785 + "postcss-7.0.36" = { 7750 7786 name = "postcss"; 7751 7787 packageName = "postcss"; 7752 - version = "7.0.35"; 7788 + version = "7.0.36"; 7753 7789 src = fetchurl { 7754 - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz"; 7755 - sha512 = "3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg=="; 7790 + url = "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz"; 7791 + sha512 = "BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw=="; 7756 7792 }; 7757 7793 }; 7758 - "postcss-8.2.13" = { 7794 + "postcss-8.3.6" = { 7759 7795 name = "postcss"; 7760 7796 packageName = "postcss"; 7761 - version = "8.2.13"; 7797 + version = "8.3.6"; 7762 7798 src = fetchurl { 7763 - url = "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz"; 7764 - sha512 = "FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ=="; 7799 + url = "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz"; 7800 + sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A=="; 7765 7801 }; 7766 7802 }; 7767 7803 "postcss-attribute-case-insensitive-4.0.2" = { ··· 8448 8484 sha512 = "w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ=="; 8449 8485 }; 8450 8486 }; 8451 - "postcss-selector-parser-6.0.5" = { 8487 + "postcss-selector-parser-6.0.6" = { 8452 8488 name = "postcss-selector-parser"; 8453 8489 packageName = "postcss-selector-parser"; 8454 - version = "6.0.5"; 8490 + version = "6.0.6"; 8455 8491 src = fetchurl { 8456 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz"; 8457 - sha512 = "aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg=="; 8492 + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz"; 8493 + sha512 = "9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg=="; 8458 8494 }; 8459 8495 }; 8460 8496 "postcss-sorting-4.1.0" = { ··· 8583 8619 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 8584 8620 }; 8585 8621 }; 8586 - "proxy-addr-2.0.6" = { 8622 + "proxy-addr-2.0.7" = { 8587 8623 name = "proxy-addr"; 8588 8624 packageName = "proxy-addr"; 8589 - version = "2.0.6"; 8625 + version = "2.0.7"; 8590 8626 src = fetchurl { 8591 - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz"; 8592 - sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; 8627 + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"; 8628 + sha512 = "llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="; 8593 8629 }; 8594 8630 }; 8595 8631 "prr-1.0.1" = { ··· 8727 8763 sha1 = "25eccff3a153b6809afacb23ee15387db9e0ee61"; 8728 8764 }; 8729 8765 }; 8730 - "read-pkg-2.0.0" = { 8731 - name = "read-pkg"; 8732 - packageName = "read-pkg"; 8733 - version = "2.0.0"; 8734 - src = fetchurl { 8735 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; 8736 - sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; 8737 - }; 8738 - }; 8739 8766 "read-pkg-3.0.0" = { 8740 8767 name = "read-pkg"; 8741 8768 packageName = "read-pkg"; ··· 8752 8779 src = fetchurl { 8753 8780 url = "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"; 8754 8781 sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="; 8755 - }; 8756 - }; 8757 - "read-pkg-up-2.0.0" = { 8758 - name = "read-pkg-up"; 8759 - packageName = "read-pkg-up"; 8760 - version = "2.0.0"; 8761 - src = fetchurl { 8762 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 8763 - sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; 8764 8782 }; 8765 8783 }; 8766 8784 "read-pkg-up-3.0.0" = { ··· 8808 8826 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 8809 8827 }; 8810 8828 }; 8811 - "readdirp-3.5.0" = { 8829 + "readdirp-3.6.0" = { 8812 8830 name = "readdirp"; 8813 8831 packageName = "readdirp"; 8814 - version = "3.5.0"; 8832 + version = "3.6.0"; 8815 8833 src = fetchurl { 8816 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 8817 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 8834 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 8835 + sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 8818 8836 }; 8819 8837 }; 8820 - "rechoir-0.7.0" = { 8838 + "rechoir-0.7.1" = { 8821 8839 name = "rechoir"; 8822 8840 packageName = "rechoir"; 8823 - version = "0.7.0"; 8841 + version = "0.7.1"; 8824 8842 src = fetchurl { 8825 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.7.0.tgz"; 8826 - sha512 = "ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q=="; 8843 + url = "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz"; 8844 + sha512 = "/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg=="; 8827 8845 }; 8828 8846 }; 8829 8847 "redent-2.0.0" = { ··· 8862 8880 sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA=="; 8863 8881 }; 8864 8882 }; 8865 - "regenerator-runtime-0.11.1" = { 8883 + "regenerator-runtime-0.13.9" = { 8866 8884 name = "regenerator-runtime"; 8867 8885 packageName = "regenerator-runtime"; 8868 - version = "0.11.1"; 8886 + version = "0.13.9"; 8869 8887 src = fetchurl { 8870 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 8871 - sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 8872 - }; 8873 - }; 8874 - "regenerator-runtime-0.13.8" = { 8875 - name = "regenerator-runtime"; 8876 - packageName = "regenerator-runtime"; 8877 - version = "0.13.8"; 8878 - src = fetchurl { 8879 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.8.tgz"; 8880 - sha512 = "o/ASGwgZ6UiVjspr4YnzHKF1NbBdX+mCPkSeymofk/d7I+csCYn3ZgZMMVtXeecpT8DBiI2nAlYkHd+xNCqu4A=="; 8888 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 8889 + sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 8881 8890 }; 8882 8891 }; 8883 8892 "regenerator-transform-0.14.5" = { ··· 8907 8916 sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; 8908 8917 }; 8909 8918 }; 8910 - "regexpp-3.1.0" = { 8919 + "regexpp-3.2.0" = { 8911 8920 name = "regexpp"; 8912 8921 packageName = "regexpp"; 8913 - version = "3.1.0"; 8922 + version = "3.2.0"; 8914 8923 src = fetchurl { 8915 - url = "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"; 8916 - sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="; 8924 + url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"; 8925 + sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 8917 8926 }; 8918 8927 }; 8919 8928 "regexpu-core-4.7.1" = { ··· 9015 9024 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 9016 9025 }; 9017 9026 }; 9018 - "renderkid-2.0.5" = { 9027 + "renderkid-2.0.7" = { 9019 9028 name = "renderkid"; 9020 9029 packageName = "renderkid"; 9021 - version = "2.0.5"; 9030 + version = "2.0.7"; 9022 9031 src = fetchurl { 9023 - url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz"; 9024 - sha512 = "ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ=="; 9032 + url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz"; 9033 + sha512 = "oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ=="; 9025 9034 }; 9026 9035 }; 9027 9036 "repeat-element-1.1.4" = { ··· 9231 9240 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 9232 9241 }; 9233 9242 }; 9234 - "rollup-1.32.1" = { 9243 + "rollup-2.56.3" = { 9235 9244 name = "rollup"; 9236 9245 packageName = "rollup"; 9237 - version = "1.32.1"; 9246 + version = "2.56.3"; 9238 9247 src = fetchurl { 9239 - url = "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz"; 9240 - sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 9248 + url = "https://registry.npmjs.org/rollup/-/rollup-2.56.3.tgz"; 9249 + sha512 = "Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg=="; 9241 9250 }; 9242 9251 }; 9243 - "rollup-plugin-babel-4.4.0" = { 9244 - name = "rollup-plugin-babel"; 9245 - packageName = "rollup-plugin-babel"; 9246 - version = "4.4.0"; 9247 - src = fetchurl { 9248 - url = "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz"; 9249 - sha512 = "Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw=="; 9250 - }; 9251 - }; 9252 - "rollup-plugin-terser-5.3.1" = { 9252 + "rollup-plugin-terser-7.0.2" = { 9253 9253 name = "rollup-plugin-terser"; 9254 9254 packageName = "rollup-plugin-terser"; 9255 - version = "5.3.1"; 9255 + version = "7.0.2"; 9256 9256 src = fetchurl { 9257 - url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz"; 9258 - sha512 = "1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w=="; 9259 - }; 9260 - }; 9261 - "rollup-pluginutils-2.8.2" = { 9262 - name = "rollup-pluginutils"; 9263 - packageName = "rollup-pluginutils"; 9264 - version = "2.8.2"; 9265 - src = fetchurl { 9266 - url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz"; 9267 - sha512 = "EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ=="; 9257 + url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; 9258 + sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; 9268 9259 }; 9269 9260 }; 9270 9261 "run-parallel-1.2.0" = { ··· 9303 9294 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 9304 9295 }; 9305 9296 }; 9306 - "sass-1.32.12" = { 9297 + "sass-1.39.0" = { 9307 9298 name = "sass"; 9308 9299 packageName = "sass"; 9309 - version = "1.32.12"; 9300 + version = "1.39.0"; 9310 9301 src = fetchurl { 9311 - url = "https://registry.npmjs.org/sass/-/sass-1.32.12.tgz"; 9312 - sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 9302 + url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 9303 + sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 9313 9304 }; 9314 9305 }; 9315 - "sass-loader-10.1.1" = { 9306 + "sass-loader-10.2.0" = { 9316 9307 name = "sass-loader"; 9317 9308 packageName = "sass-loader"; 9318 - version = "10.1.1"; 9309 + version = "10.2.0"; 9319 9310 src = fetchurl { 9320 - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz"; 9321 - sha512 = "W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw=="; 9311 + url = "https://registry.npmjs.org/sass-loader/-/sass-loader-10.2.0.tgz"; 9312 + sha512 = "kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw=="; 9322 9313 }; 9323 9314 }; 9324 9315 "sax-1.2.4" = { ··· 9348 9339 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 9349 9340 }; 9350 9341 }; 9351 - "schema-utils-3.0.0" = { 9342 + "schema-utils-3.1.1" = { 9352 9343 name = "schema-utils"; 9353 9344 packageName = "schema-utils"; 9354 - version = "3.0.0"; 9345 + version = "3.1.1"; 9355 9346 src = fetchurl { 9356 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz"; 9357 - sha512 = "6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA=="; 9347 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz"; 9348 + sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; 9358 9349 }; 9359 9350 }; 9360 9351 "screenfull-5.1.0" = { ··· 9411 9402 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 9412 9403 }; 9413 9404 }; 9414 - "semver-7.3.2" = { 9415 - name = "semver"; 9416 - packageName = "semver"; 9417 - version = "7.3.2"; 9418 - src = fetchurl { 9419 - url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; 9420 - sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; 9421 - }; 9422 - }; 9423 9405 "semver-7.3.5" = { 9424 9406 name = "semver"; 9425 9407 packageName = "semver"; ··· 9454 9436 src = fetchurl { 9455 9437 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 9456 9438 sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 9439 + }; 9440 + }; 9441 + "serialize-javascript-6.0.0" = { 9442 + name = "serialize-javascript"; 9443 + packageName = "serialize-javascript"; 9444 + version = "6.0.0"; 9445 + src = fetchurl { 9446 + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 9447 + sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 9457 9448 }; 9458 9449 }; 9459 9450 "serve-index-1.9.1" = { ··· 9564 9555 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9565 9556 }; 9566 9557 }; 9558 + "side-channel-1.0.4" = { 9559 + name = "side-channel"; 9560 + packageName = "side-channel"; 9561 + version = "1.0.4"; 9562 + src = fetchurl { 9563 + url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 9564 + sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 9565 + }; 9566 + }; 9567 9567 "signal-exit-3.0.3" = { 9568 9568 name = "signal-exit"; 9569 9569 packageName = "signal-exit"; ··· 9654 9654 sha512 = "DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw=="; 9655 9655 }; 9656 9656 }; 9657 - "sockjs-client-1.5.1" = { 9657 + "sockjs-client-1.5.2" = { 9658 9658 name = "sockjs-client"; 9659 9659 packageName = "sockjs-client"; 9660 - version = "1.5.1"; 9660 + version = "1.5.2"; 9661 9661 src = fetchurl { 9662 - url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz"; 9663 - sha512 = "VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ=="; 9662 + url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz"; 9663 + sha512 = "ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ=="; 9664 9664 }; 9665 9665 }; 9666 - "sortablejs-1.13.0" = { 9666 + "sortablejs-1.14.0" = { 9667 9667 name = "sortablejs"; 9668 9668 packageName = "sortablejs"; 9669 - version = "1.13.0"; 9669 + version = "1.14.0"; 9670 9670 src = fetchurl { 9671 - url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.13.0.tgz"; 9672 - sha512 = "RBJirPY0spWCrU5yCmWM1eFs/XgX2J5c6b275/YyxFRgnzPhKl/TDeU2hNR8Dt7ITq66NRPM4UlOt+e5O4CFHg=="; 9671 + url = "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz"; 9672 + sha512 = "pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w=="; 9673 9673 }; 9674 9674 }; 9675 9675 "source-list-map-2.0.1" = { ··· 9708 9708 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 9709 9709 }; 9710 9710 }; 9711 + "source-map-0.8.0-beta.0" = { 9712 + name = "source-map"; 9713 + packageName = "source-map"; 9714 + version = "0.8.0-beta.0"; 9715 + src = fetchurl { 9716 + url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 9717 + sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 9718 + }; 9719 + }; 9720 + "source-map-js-0.6.2" = { 9721 + name = "source-map-js"; 9722 + packageName = "source-map-js"; 9723 + version = "0.6.2"; 9724 + src = fetchurl { 9725 + url = "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz"; 9726 + sha512 = "/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="; 9727 + }; 9728 + }; 9711 9729 "source-map-loader-1.1.3" = { 9712 9730 name = "source-map-loader"; 9713 9731 packageName = "source-map-loader"; ··· 9780 9798 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 9781 9799 }; 9782 9800 }; 9783 - "spdx-license-ids-3.0.7" = { 9801 + "spdx-license-ids-3.0.10" = { 9784 9802 name = "spdx-license-ids"; 9785 9803 packageName = "spdx-license-ids"; 9786 - version = "3.0.7"; 9804 + version = "3.0.10"; 9787 9805 src = fetchurl { 9788 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 9789 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 9806 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz"; 9807 + sha512 = "oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA=="; 9790 9808 }; 9791 9809 }; 9792 9810 "spdy-4.0.2" = { ··· 9987 10005 sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 9988 10006 }; 9989 10007 }; 9990 - "strip-comments-1.0.2" = { 10008 + "strip-comments-2.0.1" = { 9991 10009 name = "strip-comments"; 9992 10010 packageName = "strip-comments"; 9993 - version = "1.0.2"; 10011 + version = "2.0.1"; 9994 10012 src = fetchurl { 9995 - url = "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz"; 9996 - sha512 = "kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw=="; 10013 + url = "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz"; 10014 + sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; 9997 10015 }; 9998 10016 }; 9999 10017 "strip-eof-1.0.0" = { ··· 10131 10149 sha512 = "sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw=="; 10132 10150 }; 10133 10151 }; 10134 - "stylelint-scss-3.19.0" = { 10152 + "stylelint-scss-3.20.1" = { 10135 10153 name = "stylelint-scss"; 10136 10154 packageName = "stylelint-scss"; 10137 - version = "3.19.0"; 10155 + version = "3.20.1"; 10138 10156 src = fetchurl { 10139 - url = "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.19.0.tgz"; 10140 - sha512 = "Ic5bsmpS4wVucOw44doC1Yi9f5qbeVL4wPFiEOaUElgsOuLEN6Ofn/krKI8BeNL2gAn53Zu+IcVV4E345r6rBw=="; 10157 + url = "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.20.1.tgz"; 10158 + sha512 = "OTd55O1TTAC5nGKkVmUDLpz53LlK39R3MImv1CfuvsK7/qugktqiZAeQLuuC4UBhzxCnsc7fp9u/gfRZwFAIkA=="; 10141 10159 }; 10142 10160 }; 10143 10161 "sugarss-2.0.0" = { ··· 10194 10212 sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 10195 10213 }; 10196 10214 }; 10215 + "supports-color-8.1.1" = { 10216 + name = "supports-color"; 10217 + packageName = "supports-color"; 10218 + version = "8.1.1"; 10219 + src = fetchurl { 10220 + url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 10221 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 10222 + }; 10223 + }; 10197 10224 "svg-tags-1.0.0" = { 10198 10225 name = "svg-tags"; 10199 10226 packageName = "svg-tags"; ··· 10212 10239 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 10213 10240 }; 10214 10241 }; 10215 - "swiper-6.5.9" = { 10242 + "swiper-6.8.4" = { 10216 10243 name = "swiper"; 10217 10244 packageName = "swiper"; 10218 - version = "6.5.9"; 10245 + version = "6.8.4"; 10219 10246 src = fetchurl { 10220 - url = "https://registry.npmjs.org/swiper/-/swiper-6.5.9.tgz"; 10221 - sha512 = "zO3UCLVEiOXZontAQWBNpWFZGV3WaXwHSgvng0qIGLVMyxYGD6w78S7YkGAu/XBam1SBQNZzxqfFc/LDjNdq/A=="; 10247 + url = "https://registry.npmjs.org/swiper/-/swiper-6.8.4.tgz"; 10248 + sha512 = "O+buF9Q+sMA0H7luMS8R59hCaJKlpo8PXhQ6ZYu6Rn2v9OsFd4d1jmrv14QvxtQpKAvL/ZiovEeANI/uDGet7g=="; 10222 10249 }; 10223 10250 }; 10224 10251 "table-5.4.6" = { ··· 10230 10257 sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 10231 10258 }; 10232 10259 }; 10233 - "table-6.6.0" = { 10260 + "table-6.7.1" = { 10234 10261 name = "table"; 10235 10262 packageName = "table"; 10236 - version = "6.6.0"; 10263 + version = "6.7.1"; 10237 10264 src = fetchurl { 10238 - url = "https://registry.npmjs.org/table/-/table-6.6.0.tgz"; 10239 - sha512 = "iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg=="; 10265 + url = "https://registry.npmjs.org/table/-/table-6.7.1.tgz"; 10266 + sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg=="; 10240 10267 }; 10241 10268 }; 10242 10269 "tapable-1.1.3" = { ··· 10257 10284 sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 10258 10285 }; 10259 10286 }; 10260 - "tar-6.1.0" = { 10287 + "tar-6.1.11" = { 10261 10288 name = "tar"; 10262 10289 packageName = "tar"; 10263 - version = "6.1.0"; 10290 + version = "6.1.11"; 10264 10291 src = fetchurl { 10265 - url = "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz"; 10266 - sha512 = "DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA=="; 10292 + url = "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz"; 10293 + sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 10267 10294 }; 10268 10295 }; 10269 - "temp-dir-1.0.0" = { 10296 + "temp-dir-2.0.0" = { 10270 10297 name = "temp-dir"; 10271 10298 packageName = "temp-dir"; 10272 - version = "1.0.0"; 10299 + version = "2.0.0"; 10273 10300 src = fetchurl { 10274 - url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; 10275 - sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"; 10301 + url = "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz"; 10302 + sha512 = "aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="; 10276 10303 }; 10277 10304 }; 10278 - "tempy-0.3.0" = { 10305 + "tempy-0.6.0" = { 10279 10306 name = "tempy"; 10280 10307 packageName = "tempy"; 10281 - version = "0.3.0"; 10308 + version = "0.6.0"; 10282 10309 src = fetchurl { 10283 - url = "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz"; 10284 - sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; 10310 + url = "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz"; 10311 + sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; 10285 10312 }; 10286 10313 }; 10287 10314 "terser-4.8.0" = { ··· 10293 10320 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 10294 10321 }; 10295 10322 }; 10296 - "terser-5.7.0" = { 10323 + "terser-5.7.2" = { 10297 10324 name = "terser"; 10298 10325 packageName = "terser"; 10299 - version = "5.7.0"; 10326 + version = "5.7.2"; 10300 10327 src = fetchurl { 10301 - url = "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz"; 10302 - sha512 = "HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g=="; 10328 + url = "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz"; 10329 + sha512 = "0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw=="; 10303 10330 }; 10304 10331 }; 10305 - "terser-webpack-plugin-5.1.1" = { 10332 + "terser-webpack-plugin-5.2.3" = { 10306 10333 name = "terser-webpack-plugin"; 10307 10334 packageName = "terser-webpack-plugin"; 10308 - version = "5.1.1"; 10335 + version = "5.2.3"; 10309 10336 src = fetchurl { 10310 - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz"; 10311 - sha512 = "5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q=="; 10337 + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.3.tgz"; 10338 + sha512 = "eDbuaDlXhVaaoKuLD3DTNTozKqln6xOG6Us0SzlKG5tNlazG+/cdl8pm9qiF1Di89iWScTI0HcO+CDcf2dkXiw=="; 10312 10339 }; 10313 10340 }; 10314 10341 "text-table-0.2.0" = { ··· 10390 10417 src = fetchurl { 10391 10418 url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; 10392 10419 sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 10420 + }; 10421 + }; 10422 + "tr46-1.0.1" = { 10423 + name = "tr46"; 10424 + packageName = "tr46"; 10425 + version = "1.0.1"; 10426 + src = fetchurl { 10427 + url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz"; 10428 + sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; 10393 10429 }; 10394 10430 }; 10395 10431 "trim-0.0.1" = { ··· 10410 10446 sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20"; 10411 10447 }; 10412 10448 }; 10413 - "trim-newlines-3.0.0" = { 10449 + "trim-newlines-3.0.1" = { 10414 10450 name = "trim-newlines"; 10415 10451 packageName = "trim-newlines"; 10416 - version = "3.0.0"; 10452 + version = "3.0.1"; 10417 10453 src = fetchurl { 10418 - url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz"; 10419 - sha512 = "C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA=="; 10454 + url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"; 10455 + sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw=="; 10420 10456 }; 10421 10457 }; 10422 10458 "trim-trailing-lines-1.1.4" = { ··· 10437 10473 sha512 = "rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="; 10438 10474 }; 10439 10475 }; 10440 - "tsconfig-paths-3.9.0" = { 10476 + "tsconfig-paths-3.11.0" = { 10441 10477 name = "tsconfig-paths"; 10442 10478 packageName = "tsconfig-paths"; 10443 - version = "3.9.0"; 10479 + version = "3.11.0"; 10444 10480 src = fetchurl { 10445 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"; 10446 - sha512 = "dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw=="; 10481 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; 10482 + sha512 = "7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA=="; 10447 10483 }; 10448 10484 }; 10449 - "tslib-2.2.0" = { 10485 + "tslib-2.3.1" = { 10450 10486 name = "tslib"; 10451 10487 packageName = "tslib"; 10452 - version = "2.2.0"; 10488 + version = "2.3.1"; 10453 10489 src = fetchurl { 10454 - url = "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz"; 10455 - sha512 = "gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w=="; 10490 + url = "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"; 10491 + sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 10456 10492 }; 10457 10493 }; 10458 10494 "type-1.2.0" = { ··· 10482 10518 sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 10483 10519 }; 10484 10520 }; 10521 + "type-fest-0.16.0" = { 10522 + name = "type-fest"; 10523 + packageName = "type-fest"; 10524 + version = "0.16.0"; 10525 + src = fetchurl { 10526 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz"; 10527 + sha512 = "eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="; 10528 + }; 10529 + }; 10485 10530 "type-fest-0.18.1" = { 10486 10531 name = "type-fest"; 10487 10532 packageName = "type-fest"; ··· 10498 10543 src = fetchurl { 10499 10544 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 10500 10545 sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 10501 - }; 10502 - }; 10503 - "type-fest-0.3.1" = { 10504 - name = "type-fest"; 10505 - packageName = "type-fest"; 10506 - version = "0.3.1"; 10507 - src = fetchurl { 10508 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"; 10509 - sha512 = "cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ=="; 10510 10546 }; 10511 10547 }; 10512 10548 "type-fest-0.6.0" = { ··· 10608 10644 sha512 = "lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw=="; 10609 10645 }; 10610 10646 }; 10611 - "unified-9.2.1" = { 10647 + "unified-9.2.2" = { 10612 10648 name = "unified"; 10613 10649 packageName = "unified"; 10614 - version = "9.2.1"; 10650 + version = "9.2.2"; 10615 10651 src = fetchurl { 10616 - url = "https://registry.npmjs.org/unified/-/unified-9.2.1.tgz"; 10617 - sha512 = "juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA=="; 10652 + url = "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz"; 10653 + sha512 = "Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ=="; 10618 10654 }; 10619 10655 }; 10620 10656 "union-value-1.0.1" = { ··· 10662 10698 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 10663 10699 }; 10664 10700 }; 10665 - "unique-string-1.0.0" = { 10701 + "unique-string-2.0.0" = { 10666 10702 name = "unique-string"; 10667 10703 packageName = "unique-string"; 10668 - version = "1.0.0"; 10704 + version = "2.0.0"; 10669 10705 src = fetchurl { 10670 - url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; 10671 - sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; 10706 + url = "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz"; 10707 + sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="; 10672 10708 }; 10673 10709 }; 10674 10710 "unist-util-find-all-after-1.0.5" = { ··· 10752 10788 sha512 = "DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="; 10753 10789 }; 10754 10790 }; 10755 - "universalify-0.1.2" = { 10791 + "universalify-2.0.0" = { 10756 10792 name = "universalify"; 10757 10793 packageName = "universalify"; 10758 - version = "0.1.2"; 10794 + version = "2.0.0"; 10759 10795 src = fetchurl { 10760 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 10761 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 10796 + url = "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"; 10797 + sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 10762 10798 }; 10763 10799 }; 10764 10800 "unpipe-1.0.0" = { ··· 10824 10860 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; 10825 10861 }; 10826 10862 }; 10827 - "url-parse-1.5.1" = { 10863 + "url-parse-1.5.3" = { 10828 10864 name = "url-parse"; 10829 10865 packageName = "url-parse"; 10830 - version = "1.5.1"; 10866 + version = "1.5.3"; 10831 10867 src = fetchurl { 10832 - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz"; 10833 - sha512 = "HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q=="; 10868 + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz"; 10869 + sha512 = "IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ=="; 10834 10870 }; 10835 10871 }; 10836 - "url-toolkit-2.2.2" = { 10872 + "url-toolkit-2.2.3" = { 10837 10873 name = "url-toolkit"; 10838 10874 packageName = "url-toolkit"; 10839 - version = "2.2.2"; 10875 + version = "2.2.3"; 10840 10876 src = fetchurl { 10841 - url = "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.2.tgz"; 10842 - sha512 = "l25w6Sy+Iy3/IbogunxhWwljPaDnqpiKvrQRoLBm6DfISco7NyRIS7Zf6+Oxhy1T8kHxWdwLND7ZZba6NjXMug=="; 10877 + url = "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.3.tgz"; 10878 + sha512 = "Da75SQoxsZ+2wXS56CZBrj2nukQ4nlGUZUP/dqUBG5E1su5GKThgT94Q00x81eVII7AyS1Pn+CtTTZ4Z0pLUtQ=="; 10843 10879 }; 10844 10880 }; 10845 10881 "use-3.1.1" = { ··· 10986 11022 sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="; 10987 11023 }; 10988 11024 }; 10989 - "watchpack-2.1.1" = { 11025 + "watchpack-2.2.0" = { 10990 11026 name = "watchpack"; 10991 11027 packageName = "watchpack"; 10992 - version = "2.1.1"; 11028 + version = "2.2.0"; 10993 11029 src = fetchurl { 10994 - url = "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz"; 10995 - sha512 = "Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw=="; 11030 + url = "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz"; 11031 + sha512 = "up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA=="; 10996 11032 }; 10997 11033 }; 10998 11034 "wbuf-1.7.3" = { ··· 11013 11049 sha1 = "2116fbfa1468ec416a7befdaa333e1d118f69c04"; 11014 11050 }; 11015 11051 }; 11016 - "webpack-5.36.2" = { 11052 + "webidl-conversions-4.0.2" = { 11053 + name = "webidl-conversions"; 11054 + packageName = "webidl-conversions"; 11055 + version = "4.0.2"; 11056 + src = fetchurl { 11057 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; 11058 + sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; 11059 + }; 11060 + }; 11061 + "webpack-5.52.0" = { 11017 11062 name = "webpack"; 11018 11063 packageName = "webpack"; 11019 - version = "5.36.2"; 11064 + version = "5.52.0"; 11020 11065 src = fetchurl { 11021 - url = "https://registry.npmjs.org/webpack/-/webpack-5.36.2.tgz"; 11022 - sha512 = "XJumVnnGoH2dV+Pk1VwgY4YT6AiMKpVoudUFCNOXMIVrEKPUgEwdIfWPjIuGLESAiS8EdIHX5+TiJz/5JccmRg=="; 11066 + url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 11067 + sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 11023 11068 }; 11024 11069 }; 11025 - "webpack-cli-4.6.0" = { 11070 + "webpack-cli-4.8.0" = { 11026 11071 name = "webpack-cli"; 11027 11072 packageName = "webpack-cli"; 11028 - version = "4.6.0"; 11073 + version = "4.8.0"; 11029 11074 src = fetchurl { 11030 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.6.0.tgz"; 11031 - sha512 = "9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA=="; 11075 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz"; 11076 + sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw=="; 11032 11077 }; 11033 11078 }; 11034 11079 "webpack-dev-middleware-3.7.3" = { ··· 11067 11112 sha512 = "TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g=="; 11068 11113 }; 11069 11114 }; 11070 - "webpack-merge-5.7.3" = { 11115 + "webpack-merge-5.8.0" = { 11071 11116 name = "webpack-merge"; 11072 11117 packageName = "webpack-merge"; 11073 - version = "5.7.3"; 11118 + version = "5.8.0"; 11074 11119 src = fetchurl { 11075 - url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz"; 11076 - sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA=="; 11120 + url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz"; 11121 + sha512 = "/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q=="; 11077 11122 }; 11078 11123 }; 11079 11124 "webpack-sources-1.4.3" = { ··· 11085 11130 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; 11086 11131 }; 11087 11132 }; 11088 - "webpack-sources-2.2.0" = { 11133 + "webpack-sources-3.2.0" = { 11089 11134 name = "webpack-sources"; 11090 11135 packageName = "webpack-sources"; 11091 - version = "2.2.0"; 11136 + version = "3.2.0"; 11092 11137 src = fetchurl { 11093 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.2.0.tgz"; 11094 - sha512 = "bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w=="; 11138 + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.0.tgz"; 11139 + sha512 = "fahN08Et7P9trej8xz/Z7eRu8ltyiygEo/hnRi9KqBUs80KeDcnf96ZJo++ewWd84fEf3xSX9bp4ZS9hbw0OBw=="; 11095 11140 }; 11096 11141 }; 11097 11142 "websocket-driver-0.7.4" = { ··· 11112 11157 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 11113 11158 }; 11114 11159 }; 11115 - "webworkify-1.5.0" = { 11116 - name = "webworkify"; 11117 - packageName = "webworkify"; 11118 - version = "1.5.0"; 11160 + "webworkify-webpack-2.1.5" = { 11161 + name = "webworkify-webpack"; 11162 + packageName = "webworkify-webpack"; 11163 + version = "2.1.5"; 11119 11164 src = fetchurl { 11120 - url = "https://registry.npmjs.org/webworkify/-/webworkify-1.5.0.tgz"; 11121 - sha512 = "AMcUeyXAhbACL8S2hqqdqOLqvJ8ylmIbNwUIqQujRSouf4+eUFaXbG6F1Rbu+srlJMmxQWsiU7mOJi0nMBfM1g=="; 11165 + url = "https://registry.npmjs.org/webworkify-webpack/-/webworkify-webpack-2.1.5.tgz"; 11166 + sha512 = "2akF8FIyUvbiBBdD+RoHpoTbHMQF2HwjcxfDvgztAX5YwbZNyrtfUMgvfgFVsgDhDPVTlkbb5vyasqDHfIDPQw=="; 11122 11167 }; 11123 11168 }; 11124 11169 "whatwg-fetch-3.6.2" = { ··· 11137 11182 src = fetchurl { 11138 11183 url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; 11139 11184 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 11185 + }; 11186 + }; 11187 + "whatwg-url-7.1.0" = { 11188 + name = "whatwg-url"; 11189 + packageName = "whatwg-url"; 11190 + version = "7.1.0"; 11191 + src = fetchurl { 11192 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz"; 11193 + sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; 11140 11194 }; 11141 11195 }; 11142 11196 "which-1.3.1" = { ··· 11193 11247 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 11194 11248 }; 11195 11249 }; 11196 - "workbox-background-sync-5.1.4" = { 11250 + "workbox-background-sync-6.2.4" = { 11197 11251 name = "workbox-background-sync"; 11198 11252 packageName = "workbox-background-sync"; 11199 - version = "5.1.4"; 11253 + version = "6.2.4"; 11200 11254 src = fetchurl { 11201 - url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz"; 11202 - sha512 = "AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA=="; 11255 + url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.2.4.tgz"; 11256 + sha512 = "uoGgm1PZU6THRzXKlMEntrdA4Xkp6SCfxI7re4heN+yGrtAZq6zMKYhZmsdeW+YGnXS3y5xj7WV03b5TDgLh6A=="; 11203 11257 }; 11204 11258 }; 11205 - "workbox-broadcast-update-5.1.4" = { 11259 + "workbox-broadcast-update-6.2.4" = { 11206 11260 name = "workbox-broadcast-update"; 11207 11261 packageName = "workbox-broadcast-update"; 11208 - version = "5.1.4"; 11262 + version = "6.2.4"; 11209 11263 src = fetchurl { 11210 - url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz"; 11211 - sha512 = "HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA=="; 11264 + url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.2.4.tgz"; 11265 + sha512 = "0EpML2lbxNkiZUoap4BJDA0Hfz36MhtUd/rRhFvF6YWoRbTQ8tc6tMaRgM1EBIUmIN2OX9qQlkqe5SGGt4lfXQ=="; 11212 11266 }; 11213 11267 }; 11214 - "workbox-build-5.1.4" = { 11268 + "workbox-build-6.2.4" = { 11215 11269 name = "workbox-build"; 11216 11270 packageName = "workbox-build"; 11217 - version = "5.1.4"; 11271 + version = "6.2.4"; 11218 11272 src = fetchurl { 11219 - url = "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz"; 11220 - sha512 = "xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow=="; 11273 + url = "https://registry.npmjs.org/workbox-build/-/workbox-build-6.2.4.tgz"; 11274 + sha512 = "01ZbY1BHi+yYvu4yDGZBw9xm1bWyZW0QGWPxiksvSPAsNH/z/NwgtWW14YEroFyG98mmXb7pufWlwl40zE1KTw=="; 11221 11275 }; 11222 11276 }; 11223 - "workbox-cacheable-response-5.1.4" = { 11277 + "workbox-cacheable-response-6.2.4" = { 11224 11278 name = "workbox-cacheable-response"; 11225 11279 packageName = "workbox-cacheable-response"; 11226 - version = "5.1.4"; 11280 + version = "6.2.4"; 11227 11281 src = fetchurl { 11228 - url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz"; 11229 - sha512 = "0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA=="; 11282 + url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.2.4.tgz"; 11283 + sha512 = "KZSzAOmgWsrk15Wu+geCUSGLIyyzHaORKjH5JnR6qcVZAsm0JXUu2m2OZGqjQ+/eyQwrGdXXqAMW+4wQvTXccg=="; 11230 11284 }; 11231 11285 }; 11232 11286 "workbox-core-5.1.4" = { ··· 11238 11292 sha512 = "+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg=="; 11239 11293 }; 11240 11294 }; 11241 - "workbox-expiration-5.1.4" = { 11295 + "workbox-core-6.2.4" = { 11296 + name = "workbox-core"; 11297 + packageName = "workbox-core"; 11298 + version = "6.2.4"; 11299 + src = fetchurl { 11300 + url = "https://registry.npmjs.org/workbox-core/-/workbox-core-6.2.4.tgz"; 11301 + sha512 = "Nu8X4R4Is3g8uzEJ6qwbW2CGVpzntW/cSf8OfsQGIKQR0nt84FAKzP2cLDaNLp3L/iV9TuhZgCTZzkMiap5/OQ=="; 11302 + }; 11303 + }; 11304 + "workbox-expiration-6.2.4" = { 11242 11305 name = "workbox-expiration"; 11243 11306 packageName = "workbox-expiration"; 11244 - version = "5.1.4"; 11307 + version = "6.2.4"; 11245 11308 src = fetchurl { 11246 - url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz"; 11247 - sha512 = "oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ=="; 11309 + url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.2.4.tgz"; 11310 + sha512 = "EdOBLunrE3+Ff50y7AYDbiwtiLDvB+oEIkL1Wd9G5d176YVqFfgPfMRzJQ7fN+Yy2NfmsFME0Bw+dQruYekWsQ=="; 11248 11311 }; 11249 11312 }; 11250 - "workbox-google-analytics-5.1.4" = { 11313 + "workbox-google-analytics-6.2.4" = { 11251 11314 name = "workbox-google-analytics"; 11252 11315 packageName = "workbox-google-analytics"; 11253 - version = "5.1.4"; 11316 + version = "6.2.4"; 11254 11317 src = fetchurl { 11255 - url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz"; 11256 - sha512 = "0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA=="; 11318 + url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.2.4.tgz"; 11319 + sha512 = "+PWmTouoGGcDupaxM193F2NmgrF597Pyt9eHIDxfed+x+JSSeUkETlbAKwB8rnBHkAjs8JQcvStEP/IpueNKpQ=="; 11257 11320 }; 11258 11321 }; 11259 - "workbox-navigation-preload-5.1.4" = { 11322 + "workbox-navigation-preload-6.2.4" = { 11260 11323 name = "workbox-navigation-preload"; 11261 11324 packageName = "workbox-navigation-preload"; 11262 - version = "5.1.4"; 11325 + version = "6.2.4"; 11263 11326 src = fetchurl { 11264 - url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz"; 11265 - sha512 = "Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ=="; 11327 + url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.2.4.tgz"; 11328 + sha512 = "y2dOSsaSdEimqhCmBIFR6kBp+GZbtNtWCBaMFwfKxTAul2uyllKcTKBHnZ9IzxULue6o6voV+I2U8Y8tO8n+eA=="; 11266 11329 }; 11267 11330 }; 11268 11331 "workbox-precaching-5.1.4" = { ··· 11274 11337 sha512 = "gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA=="; 11275 11338 }; 11276 11339 }; 11277 - "workbox-range-requests-5.1.4" = { 11340 + "workbox-precaching-6.2.4" = { 11341 + name = "workbox-precaching"; 11342 + packageName = "workbox-precaching"; 11343 + version = "6.2.4"; 11344 + src = fetchurl { 11345 + url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.2.4.tgz"; 11346 + sha512 = "7POznbVc8EG/mkbXzeb94x3B1VJruPgXvXFgS0NJ3GRugkO4ULs/DpIIb+ycs7uJIKY9EzLS7VXvElr3rMSozQ=="; 11347 + }; 11348 + }; 11349 + "workbox-range-requests-6.2.4" = { 11278 11350 name = "workbox-range-requests"; 11279 11351 packageName = "workbox-range-requests"; 11280 - version = "5.1.4"; 11352 + version = "6.2.4"; 11281 11353 src = fetchurl { 11282 - url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz"; 11283 - sha512 = "1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw=="; 11354 + url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.2.4.tgz"; 11355 + sha512 = "q4jjTXD1QOKbrHnzV3nxdZtIpOiVoIP5QyVmjuJrybVnAZurtyKcqirTQcAcT/zlTvgwm07zcTTk9o/zIB6DmA=="; 11284 11356 }; 11285 11357 }; 11286 - "workbox-routing-5.1.4" = { 11358 + "workbox-recipes-6.2.4" = { 11359 + name = "workbox-recipes"; 11360 + packageName = "workbox-recipes"; 11361 + version = "6.2.4"; 11362 + src = fetchurl { 11363 + url = "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.2.4.tgz"; 11364 + sha512 = "z7oECGrt940dw1Bv0xIDJEXY1xARiaxsIedeJOutZFkbgaC/yWG61VTr/hmkeJ8Nx6jnY6W7Rc0iOUvg4sePag=="; 11365 + }; 11366 + }; 11367 + "workbox-routing-6.2.4" = { 11287 11368 name = "workbox-routing"; 11288 11369 packageName = "workbox-routing"; 11289 - version = "5.1.4"; 11370 + version = "6.2.4"; 11290 11371 src = fetchurl { 11291 - url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz"; 11292 - sha512 = "8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw=="; 11372 + url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.2.4.tgz"; 11373 + sha512 = "jHnOmpeH4MOWR4eXv6l608npD2y6IFv7yFJ1bT9/RbB8wq2vXHXJQ0ExTZRTWGbVltSG22wEU+MQ8VebDDwDeg=="; 11293 11374 }; 11294 11375 }; 11295 - "workbox-strategies-5.1.4" = { 11376 + "workbox-strategies-6.2.4" = { 11296 11377 name = "workbox-strategies"; 11297 11378 packageName = "workbox-strategies"; 11298 - version = "5.1.4"; 11379 + version = "6.2.4"; 11299 11380 src = fetchurl { 11300 - url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz"; 11301 - sha512 = "VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA=="; 11381 + url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.2.4.tgz"; 11382 + sha512 = "DKgGC3ruceDuu2o+Ae5qmJy0p0q21mFP+RrkdqKrjyf2u8cJvvtvt1eIt4nevKc5BESiKxmhC2h+TZpOSzUDvA=="; 11302 11383 }; 11303 11384 }; 11304 - "workbox-streams-5.1.4" = { 11385 + "workbox-streams-6.2.4" = { 11305 11386 name = "workbox-streams"; 11306 11387 packageName = "workbox-streams"; 11307 - version = "5.1.4"; 11388 + version = "6.2.4"; 11308 11389 src = fetchurl { 11309 - url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz"; 11310 - sha512 = "xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw=="; 11390 + url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.2.4.tgz"; 11391 + sha512 = "yG6zV7S2NmYT6koyb7/DoPsyUAat9kD+rOmjP2SbBCtJdLu6ZIi1lgN4/rOkxEby/+Xb4OE4RmCSIZdMyjEmhQ=="; 11311 11392 }; 11312 11393 }; 11313 - "workbox-sw-5.1.4" = { 11394 + "workbox-sw-6.2.4" = { 11314 11395 name = "workbox-sw"; 11315 11396 packageName = "workbox-sw"; 11316 - version = "5.1.4"; 11397 + version = "6.2.4"; 11317 11398 src = fetchurl { 11318 - url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz"; 11319 - sha512 = "9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA=="; 11399 + url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.2.4.tgz"; 11400 + sha512 = "OlWLHNNM+j44sN2OaVXnVcf2wwhJUzcHlXrTrbWDu1JWnrQJ/rLicdc/sbxkZoyE0EbQm7Xr1BXcOjsB7PNlXQ=="; 11320 11401 }; 11321 11402 }; 11322 - "workbox-webpack-plugin-5.1.4" = { 11403 + "workbox-webpack-plugin-6.2.4" = { 11323 11404 name = "workbox-webpack-plugin"; 11324 11405 packageName = "workbox-webpack-plugin"; 11325 - version = "5.1.4"; 11406 + version = "6.2.4"; 11326 11407 src = fetchurl { 11327 - url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz"; 11328 - sha512 = "PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ=="; 11408 + url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.2.4.tgz"; 11409 + sha512 = "G6yeOZDYEbtqgNasqwxHFnma0Vp237kMxpsf8JV/YIhvhUuMwnh1WKv4VnFeqmYaWW/ITx0qj92IEMWB/O1mAA=="; 11329 11410 }; 11330 11411 }; 11331 - "workbox-window-5.1.4" = { 11412 + "workbox-window-6.2.4" = { 11332 11413 name = "workbox-window"; 11333 11414 packageName = "workbox-window"; 11334 - version = "5.1.4"; 11415 + version = "6.2.4"; 11335 11416 src = fetchurl { 11336 - url = "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz"; 11337 - sha512 = "vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw=="; 11417 + url = "https://registry.npmjs.org/workbox-window/-/workbox-window-6.2.4.tgz"; 11418 + sha512 = "9jD6THkwGEASj1YP56ZBHYJ147733FoGpJlMamYk38k/EBFE75oc6K3Vs2tGOBx5ZGq54+mHSStnlrtFG3IiOg=="; 11338 11419 }; 11339 11420 }; 11340 - "worker-plugin-5.0.0" = { 11421 + "worker-plugin-5.0.1" = { 11341 11422 name = "worker-plugin"; 11342 11423 packageName = "worker-plugin"; 11343 - version = "5.0.0"; 11424 + version = "5.0.1"; 11344 11425 src = fetchurl { 11345 - url = "https://registry.npmjs.org/worker-plugin/-/worker-plugin-5.0.0.tgz"; 11346 - sha512 = "AXMUstURCxDD6yGam2r4E34aJg6kW85IiaeX72hi+I1cxyaMUtrvVY6sbfpGKAj5e7f68Acl62BjQF5aOOx2IQ=="; 11426 + url = "https://registry.npmjs.org/worker-plugin/-/worker-plugin-5.0.1.tgz"; 11427 + sha512 = "Pn7+19jIiANcGuTSGdy+vrzyF+SGH03A5wV8iu4jRTMAOfAC9bNeiHo4+l5tPS7F0uvICMBv+h8UCvL7lunxcA=="; 11347 11428 }; 11348 11429 }; 11349 11430 "wrap-ansi-5.1.0" = { ··· 11391 11472 sha1 = "c252d7c7c5b1b402897630e3453c7bfe690d9ca1"; 11392 11473 }; 11393 11474 }; 11394 - "ws-6.2.1" = { 11475 + "ws-6.2.2" = { 11395 11476 name = "ws"; 11396 11477 packageName = "ws"; 11397 - version = "6.2.1"; 11478 + version = "6.2.2"; 11398 11479 src = fetchurl { 11399 - url = "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz"; 11400 - sha512 = "GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA=="; 11480 + url = "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz"; 11481 + sha512 = "zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="; 11401 11482 }; 11402 11483 }; 11403 11484 "x-is-string-0.1.0" = { ··· 11481 11562 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 11482 11563 }; 11483 11564 }; 11484 - "yargs-parser-20.2.7" = { 11565 + "yargs-parser-20.2.9" = { 11485 11566 name = "yargs-parser"; 11486 11567 packageName = "yargs-parser"; 11487 - version = "20.2.7"; 11568 + version = "20.2.9"; 11488 11569 src = fetchurl { 11489 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz"; 11490 - sha512 = "FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw=="; 11570 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"; 11571 + sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 11491 11572 }; 11492 11573 }; 11493 11574 "yocto-queue-0.1.0" = { ··· 11513 11594 name = "jellyfin-web"; 11514 11595 packageName = "jellyfin-web"; 11515 11596 version = "0.0.0"; 11516 - src = ../../../../../../../nix/store/ply469lh4lhgpa5j6ak4yss0sgprqzqy-source; 11597 + src = ../../../../../../../nix/store/4n28kmji75gd671zm8v6xg8ywghv3s2s-source; 11517 11598 dependencies = [ 11518 - sources."@babel/code-frame-7.12.13" 11519 - sources."@babel/compat-data-7.14.0" 11520 - sources."@babel/core-7.14.0" 11521 - sources."@babel/eslint-parser-7.13.14" 11522 - sources."@babel/eslint-plugin-7.13.16" 11523 - sources."@babel/generator-7.14.1" 11524 - sources."@babel/helper-annotate-as-pure-7.12.13" 11525 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 11526 - sources."@babel/helper-compilation-targets-7.13.16" 11527 - sources."@babel/helper-create-class-features-plugin-7.14.1" 11528 - sources."@babel/helper-create-regexp-features-plugin-7.12.17" 11529 - sources."@babel/helper-define-polyfill-provider-0.2.0" 11530 - sources."@babel/helper-explode-assignable-expression-7.13.0" 11531 - sources."@babel/helper-function-name-7.12.13" 11532 - sources."@babel/helper-get-function-arity-7.12.13" 11533 - sources."@babel/helper-hoist-variables-7.13.16" 11534 - sources."@babel/helper-member-expression-to-functions-7.13.12" 11535 - sources."@babel/helper-module-imports-7.13.12" 11536 - sources."@babel/helper-module-transforms-7.14.0" 11537 - sources."@babel/helper-optimise-call-expression-7.12.13" 11538 - sources."@babel/helper-plugin-utils-7.13.0" 11539 - sources."@babel/helper-remap-async-to-generator-7.13.0" 11540 - sources."@babel/helper-replace-supers-7.13.12" 11541 - sources."@babel/helper-simple-access-7.13.12" 11542 - sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 11543 - sources."@babel/helper-split-export-declaration-7.12.13" 11544 - sources."@babel/helper-validator-identifier-7.14.0" 11545 - sources."@babel/helper-validator-option-7.12.17" 11546 - sources."@babel/helper-wrap-function-7.13.0" 11547 - sources."@babel/helpers-7.14.0" 11548 - sources."@babel/highlight-7.14.0" 11549 - sources."@babel/parser-7.14.1" 11550 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 11551 - sources."@babel/plugin-proposal-async-generator-functions-7.13.15" 11552 - sources."@babel/plugin-proposal-class-properties-7.13.0" 11553 - sources."@babel/plugin-proposal-class-static-block-7.13.11" 11554 - sources."@babel/plugin-proposal-dynamic-import-7.13.8" 11555 - sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 11556 - sources."@babel/plugin-proposal-json-strings-7.13.8" 11557 - sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 11558 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 11559 - sources."@babel/plugin-proposal-numeric-separator-7.12.13" 11560 - sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 11561 - sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 11562 - sources."@babel/plugin-proposal-optional-chaining-7.13.12" 11563 - sources."@babel/plugin-proposal-private-methods-7.13.0" 11564 - sources."@babel/plugin-proposal-private-property-in-object-7.14.0" 11565 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 11599 + (sources."@apideck/better-ajv-errors-0.2.5" // { 11600 + dependencies = [ 11601 + sources."leven-3.1.0" 11602 + ]; 11603 + }) 11604 + sources."@babel/code-frame-7.14.5" 11605 + sources."@babel/compat-data-7.15.0" 11606 + sources."@babel/core-7.15.5" 11607 + sources."@babel/eslint-parser-7.15.4" 11608 + sources."@babel/eslint-plugin-7.14.5" 11609 + sources."@babel/generator-7.15.4" 11610 + sources."@babel/helper-annotate-as-pure-7.15.4" 11611 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 11612 + sources."@babel/helper-compilation-targets-7.15.4" 11613 + sources."@babel/helper-create-class-features-plugin-7.15.4" 11614 + sources."@babel/helper-create-regexp-features-plugin-7.14.5" 11615 + sources."@babel/helper-define-polyfill-provider-0.2.3" 11616 + sources."@babel/helper-explode-assignable-expression-7.15.4" 11617 + sources."@babel/helper-function-name-7.15.4" 11618 + sources."@babel/helper-get-function-arity-7.15.4" 11619 + sources."@babel/helper-hoist-variables-7.15.4" 11620 + sources."@babel/helper-member-expression-to-functions-7.15.4" 11621 + sources."@babel/helper-module-imports-7.15.4" 11622 + sources."@babel/helper-module-transforms-7.15.4" 11623 + sources."@babel/helper-optimise-call-expression-7.15.4" 11624 + sources."@babel/helper-plugin-utils-7.14.5" 11625 + sources."@babel/helper-remap-async-to-generator-7.15.4" 11626 + sources."@babel/helper-replace-supers-7.15.4" 11627 + sources."@babel/helper-simple-access-7.15.4" 11628 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 11629 + sources."@babel/helper-split-export-declaration-7.15.4" 11630 + sources."@babel/helper-validator-identifier-7.14.9" 11631 + sources."@babel/helper-validator-option-7.14.5" 11632 + sources."@babel/helper-wrap-function-7.15.4" 11633 + sources."@babel/helpers-7.15.4" 11634 + sources."@babel/highlight-7.14.5" 11635 + sources."@babel/parser-7.15.5" 11636 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 11637 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 11638 + sources."@babel/plugin-proposal-class-properties-7.14.5" 11639 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 11640 + sources."@babel/plugin-proposal-dynamic-import-7.14.5" 11641 + sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 11642 + sources."@babel/plugin-proposal-json-strings-7.14.5" 11643 + sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 11644 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 11645 + sources."@babel/plugin-proposal-numeric-separator-7.14.5" 11646 + sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 11647 + sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 11648 + sources."@babel/plugin-proposal-optional-chaining-7.14.5" 11649 + sources."@babel/plugin-proposal-private-methods-7.14.5" 11650 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 11651 + sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 11566 11652 sources."@babel/plugin-syntax-async-generators-7.8.4" 11567 11653 sources."@babel/plugin-syntax-class-properties-7.12.13" 11568 - sources."@babel/plugin-syntax-class-static-block-7.12.13" 11654 + sources."@babel/plugin-syntax-class-static-block-7.14.5" 11569 11655 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 11570 11656 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 11571 11657 sources."@babel/plugin-syntax-json-strings-7.8.3" ··· 11575 11661 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 11576 11662 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 11577 11663 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 11578 - sources."@babel/plugin-syntax-private-property-in-object-7.14.0" 11579 - sources."@babel/plugin-syntax-top-level-await-7.12.13" 11580 - sources."@babel/plugin-transform-arrow-functions-7.13.0" 11581 - sources."@babel/plugin-transform-async-to-generator-7.13.0" 11582 - sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 11583 - sources."@babel/plugin-transform-block-scoping-7.14.1" 11584 - sources."@babel/plugin-transform-classes-7.13.0" 11585 - sources."@babel/plugin-transform-computed-properties-7.13.0" 11586 - sources."@babel/plugin-transform-destructuring-7.13.17" 11587 - sources."@babel/plugin-transform-dotall-regex-7.12.13" 11588 - sources."@babel/plugin-transform-duplicate-keys-7.12.13" 11589 - sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 11590 - sources."@babel/plugin-transform-for-of-7.13.0" 11591 - sources."@babel/plugin-transform-function-name-7.12.13" 11592 - sources."@babel/plugin-transform-literals-7.12.13" 11593 - sources."@babel/plugin-transform-member-expression-literals-7.12.13" 11594 - sources."@babel/plugin-transform-modules-amd-7.14.0" 11595 - sources."@babel/plugin-transform-modules-commonjs-7.14.0" 11596 - sources."@babel/plugin-transform-modules-systemjs-7.13.8" 11597 - sources."@babel/plugin-transform-modules-umd-7.14.0" 11598 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 11599 - sources."@babel/plugin-transform-new-target-7.12.13" 11600 - sources."@babel/plugin-transform-object-super-7.12.13" 11601 - sources."@babel/plugin-transform-parameters-7.13.0" 11602 - sources."@babel/plugin-transform-property-literals-7.12.13" 11603 - sources."@babel/plugin-transform-regenerator-7.13.15" 11604 - sources."@babel/plugin-transform-reserved-words-7.12.13" 11605 - sources."@babel/plugin-transform-shorthand-properties-7.12.13" 11606 - sources."@babel/plugin-transform-spread-7.13.0" 11607 - sources."@babel/plugin-transform-sticky-regex-7.12.13" 11608 - sources."@babel/plugin-transform-template-literals-7.13.0" 11609 - sources."@babel/plugin-transform-typeof-symbol-7.12.13" 11610 - sources."@babel/plugin-transform-unicode-escapes-7.12.13" 11611 - sources."@babel/plugin-transform-unicode-regex-7.12.13" 11612 - sources."@babel/preset-env-7.14.1" 11664 + sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 11665 + sources."@babel/plugin-syntax-top-level-await-7.14.5" 11666 + sources."@babel/plugin-transform-arrow-functions-7.14.5" 11667 + sources."@babel/plugin-transform-async-to-generator-7.14.5" 11668 + sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 11669 + sources."@babel/plugin-transform-block-scoping-7.15.3" 11670 + sources."@babel/plugin-transform-classes-7.15.4" 11671 + sources."@babel/plugin-transform-computed-properties-7.14.5" 11672 + sources."@babel/plugin-transform-destructuring-7.14.7" 11673 + sources."@babel/plugin-transform-dotall-regex-7.14.5" 11674 + sources."@babel/plugin-transform-duplicate-keys-7.14.5" 11675 + sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 11676 + sources."@babel/plugin-transform-for-of-7.15.4" 11677 + sources."@babel/plugin-transform-function-name-7.14.5" 11678 + sources."@babel/plugin-transform-literals-7.14.5" 11679 + sources."@babel/plugin-transform-member-expression-literals-7.14.5" 11680 + sources."@babel/plugin-transform-modules-amd-7.14.5" 11681 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 11682 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 11683 + sources."@babel/plugin-transform-modules-umd-7.14.5" 11684 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 11685 + sources."@babel/plugin-transform-new-target-7.14.5" 11686 + sources."@babel/plugin-transform-object-super-7.14.5" 11687 + sources."@babel/plugin-transform-parameters-7.15.4" 11688 + sources."@babel/plugin-transform-property-literals-7.14.5" 11689 + sources."@babel/plugin-transform-regenerator-7.14.5" 11690 + sources."@babel/plugin-transform-reserved-words-7.14.5" 11691 + sources."@babel/plugin-transform-shorthand-properties-7.14.5" 11692 + sources."@babel/plugin-transform-spread-7.14.6" 11693 + sources."@babel/plugin-transform-sticky-regex-7.14.5" 11694 + sources."@babel/plugin-transform-template-literals-7.14.5" 11695 + sources."@babel/plugin-transform-typeof-symbol-7.14.5" 11696 + sources."@babel/plugin-transform-unicode-escapes-7.14.5" 11697 + sources."@babel/plugin-transform-unicode-regex-7.14.5" 11698 + sources."@babel/preset-env-7.15.4" 11613 11699 sources."@babel/preset-modules-0.1.4" 11614 - sources."@babel/runtime-7.14.0" 11615 - sources."@babel/template-7.12.13" 11616 - sources."@babel/traverse-7.14.0" 11617 - sources."@babel/types-7.14.1" 11700 + sources."@babel/runtime-7.15.4" 11701 + sources."@babel/template-7.15.4" 11702 + sources."@babel/traverse-7.15.4" 11703 + sources."@babel/types-7.15.4" 11618 11704 sources."@csstools/convert-colors-1.4.0" 11619 - sources."@discoveryjs/json-ext-0.5.2" 11620 - (sources."@eslint/eslintrc-0.4.0" // { 11705 + sources."@discoveryjs/json-ext-0.5.3" 11706 + (sources."@eslint/eslintrc-0.4.3" // { 11621 11707 dependencies = [ 11622 - sources."globals-12.4.0" 11708 + sources."globals-13.11.0" 11623 11709 sources."ignore-4.0.6" 11624 11710 sources."import-fresh-3.3.0" 11625 11711 sources."resolve-from-4.0.0" 11626 11712 ]; 11627 11713 }) 11628 - sources."@hapi/address-2.1.4" 11629 - sources."@hapi/bourne-1.3.2" 11630 - sources."@hapi/hoek-8.5.1" 11631 - sources."@hapi/joi-15.1.1" 11632 - sources."@hapi/topo-3.1.6" 11633 - sources."@mdn/browser-compat-data-2.0.7" 11714 + sources."@gar/promisify-1.1.2" 11715 + sources."@humanwhocodes/config-array-0.5.0" 11716 + sources."@humanwhocodes/object-schema-1.2.0" 11717 + sources."@mdn/browser-compat-data-3.3.14" 11634 11718 sources."@mrmlnc/readdir-enhanced-2.2.1" 11635 - sources."@nodelib/fs.scandir-2.1.4" 11636 - sources."@nodelib/fs.stat-2.0.4" 11637 - sources."@nodelib/fs.walk-1.2.6" 11719 + sources."@nodelib/fs.scandir-2.1.5" 11720 + sources."@nodelib/fs.stat-2.0.5" 11721 + sources."@nodelib/fs.walk-1.2.8" 11722 + (sources."@npmcli/fs-1.0.0" // { 11723 + dependencies = [ 11724 + sources."semver-7.3.5" 11725 + ]; 11726 + }) 11638 11727 (sources."@npmcli/move-file-1.1.2" // { 11639 11728 dependencies = [ 11640 11729 sources."rimraf-3.0.2" 11641 11730 ]; 11642 11731 }) 11643 - sources."@rollup/plugin-node-resolve-7.1.3" 11732 + sources."@rollup/plugin-babel-5.3.0" 11733 + sources."@rollup/plugin-node-resolve-11.2.1" 11644 11734 sources."@rollup/plugin-replace-2.4.2" 11645 11735 (sources."@rollup/pluginutils-3.1.0" // { 11646 11736 dependencies = [ ··· 11650 11740 sources."@stylelint/postcss-css-in-js-0.37.2" 11651 11741 sources."@stylelint/postcss-markdown-0.36.2" 11652 11742 sources."@surma/rollup-plugin-off-main-thread-1.4.2" 11653 - sources."@types/anymatch-1.3.1" 11654 - sources."@types/eslint-7.2.10" 11655 - sources."@types/eslint-scope-3.7.0" 11656 - sources."@types/estree-0.0.47" 11657 - sources."@types/glob-7.1.3" 11658 - sources."@types/html-minifier-terser-5.1.1" 11659 - sources."@types/json-schema-7.0.7" 11743 + sources."@types/eslint-7.28.0" 11744 + sources."@types/eslint-scope-3.7.1" 11745 + sources."@types/estree-0.0.50" 11746 + sources."@types/glob-7.1.4" 11747 + sources."@types/html-minifier-terser-5.1.2" 11748 + sources."@types/json-schema-7.0.9" 11660 11749 sources."@types/json5-0.0.29" 11661 11750 sources."@types/localforage-0.0.34" 11662 - sources."@types/mdast-3.0.3" 11663 - sources."@types/minimatch-3.0.4" 11664 - sources."@types/minimist-1.2.1" 11665 - sources."@types/node-15.0.2" 11666 - sources."@types/normalize-package-data-2.4.0" 11751 + sources."@types/mdast-3.0.10" 11752 + sources."@types/minimatch-3.0.5" 11753 + sources."@types/minimist-1.2.2" 11754 + sources."@types/node-16.7.10" 11755 + sources."@types/normalize-package-data-2.4.1" 11667 11756 sources."@types/parse-json-4.0.0" 11668 - sources."@types/q-1.5.4" 11669 - sources."@types/resolve-0.0.8" 11757 + sources."@types/q-1.5.5" 11758 + sources."@types/resolve-1.17.1" 11670 11759 sources."@types/source-list-map-0.1.2" 11671 - sources."@types/tapable-1.0.7" 11672 - (sources."@types/uglify-js-3.13.0" // { 11760 + sources."@types/tapable-1.0.8" 11761 + sources."@types/trusted-types-2.0.2" 11762 + (sources."@types/uglify-js-3.13.1" // { 11673 11763 dependencies = [ 11674 11764 sources."source-map-0.6.1" 11675 11765 ]; 11676 11766 }) 11677 - sources."@types/unist-2.0.3" 11767 + sources."@types/unist-2.0.6" 11678 11768 sources."@types/vfile-3.0.2" 11679 11769 sources."@types/vfile-message-2.0.0" 11680 - (sources."@types/webpack-4.41.28" // { 11770 + (sources."@types/webpack-4.41.30" // { 11681 11771 dependencies = [ 11682 11772 sources."source-map-0.6.1" 11683 11773 ]; 11684 11774 }) 11685 - (sources."@types/webpack-sources-2.1.0" // { 11775 + (sources."@types/webpack-sources-3.2.0" // { 11686 11776 dependencies = [ 11687 11777 sources."source-map-0.7.3" 11688 11778 ]; 11689 11779 }) 11690 11780 sources."@uupaa/dynamic-import-polyfill-1.0.2" 11691 - sources."@webassemblyjs/ast-1.11.0" 11692 - sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 11693 - sources."@webassemblyjs/helper-api-error-1.11.0" 11694 - sources."@webassemblyjs/helper-buffer-1.11.0" 11695 - sources."@webassemblyjs/helper-numbers-1.11.0" 11696 - sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" 11697 - sources."@webassemblyjs/helper-wasm-section-1.11.0" 11698 - sources."@webassemblyjs/ieee754-1.11.0" 11699 - sources."@webassemblyjs/leb128-1.11.0" 11700 - sources."@webassemblyjs/utf8-1.11.0" 11701 - sources."@webassemblyjs/wasm-edit-1.11.0" 11702 - sources."@webassemblyjs/wasm-gen-1.11.0" 11703 - sources."@webassemblyjs/wasm-opt-1.11.0" 11704 - sources."@webassemblyjs/wasm-parser-1.11.0" 11705 - sources."@webassemblyjs/wast-printer-1.11.0" 11706 - sources."@webpack-cli/configtest-1.0.2" 11707 - sources."@webpack-cli/info-1.2.3" 11708 - sources."@webpack-cli/serve-1.3.1" 11781 + sources."@webassemblyjs/ast-1.11.1" 11782 + sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 11783 + sources."@webassemblyjs/helper-api-error-1.11.1" 11784 + sources."@webassemblyjs/helper-buffer-1.11.1" 11785 + sources."@webassemblyjs/helper-numbers-1.11.1" 11786 + sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" 11787 + sources."@webassemblyjs/helper-wasm-section-1.11.1" 11788 + sources."@webassemblyjs/ieee754-1.11.1" 11789 + sources."@webassemblyjs/leb128-1.11.1" 11790 + sources."@webassemblyjs/utf8-1.11.1" 11791 + sources."@webassemblyjs/wasm-edit-1.11.1" 11792 + sources."@webassemblyjs/wasm-gen-1.11.1" 11793 + sources."@webassemblyjs/wasm-opt-1.11.1" 11794 + sources."@webassemblyjs/wasm-parser-1.11.1" 11795 + sources."@webassemblyjs/wast-printer-1.11.1" 11796 + sources."@webpack-cli/configtest-1.0.4" 11797 + sources."@webpack-cli/info-1.3.0" 11798 + sources."@webpack-cli/serve-1.5.2" 11709 11799 sources."@xtuc/ieee754-1.2.0" 11710 11800 sources."@xtuc/long-4.2.2" 11711 11801 sources."abab-2.0.5" 11712 11802 sources."accepts-1.3.7" 11713 11803 sources."acorn-7.4.1" 11714 - sources."acorn-jsx-5.3.1" 11804 + sources."acorn-import-assertions-1.7.6" 11805 + sources."acorn-jsx-5.3.2" 11715 11806 sources."aggregate-error-3.1.0" 11716 11807 sources."ajv-6.12.6" 11717 11808 sources."ajv-errors-1.0.1" ··· 11735 11826 sources."array.prototype.flat-1.2.4" 11736 11827 sources."arrify-1.0.1" 11737 11828 sources."assign-symbols-1.0.0" 11738 - sources."ast-metadata-inferer-0.4.0" 11829 + sources."ast-metadata-inferer-0.7.0" 11739 11830 sources."astral-regex-2.0.0" 11740 11831 sources."async-2.6.3" 11741 11832 sources."async-each-1.0.3" 11742 11833 sources."async-limiter-1.0.1" 11834 + sources."at-least-node-1.0.0" 11743 11835 sources."atob-2.1.2" 11744 11836 sources."autoprefixer-9.8.6" 11745 - sources."babel-extract-comments-1.0.0" 11746 11837 sources."babel-loader-8.2.2" 11747 11838 sources."babel-plugin-dynamic-import-node-2.3.3" 11748 11839 sources."babel-plugin-dynamic-import-polyfill-1.0.0" 11749 - sources."babel-plugin-polyfill-corejs2-0.2.0" 11750 - sources."babel-plugin-polyfill-corejs3-0.2.0" 11751 - sources."babel-plugin-polyfill-regenerator-0.2.0" 11752 - sources."babel-plugin-syntax-object-rest-spread-6.13.0" 11753 - sources."babel-plugin-transform-object-rest-spread-6.26.0" 11754 - (sources."babel-runtime-6.26.0" // { 11755 - dependencies = [ 11756 - sources."core-js-2.6.12" 11757 - sources."regenerator-runtime-0.11.1" 11758 - ]; 11759 - }) 11760 - sources."babylon-6.18.0" 11840 + sources."babel-plugin-polyfill-corejs2-0.2.2" 11841 + sources."babel-plugin-polyfill-corejs3-0.2.4" 11842 + sources."babel-plugin-polyfill-regenerator-0.2.2" 11761 11843 sources."bail-1.0.5" 11762 11844 sources."balanced-match-1.0.2" 11763 11845 (sources."base-0.11.2" // { ··· 11769 11851 sources."big.js-5.2.2" 11770 11852 sources."binary-extensions-2.2.0" 11771 11853 sources."bindings-1.5.0" 11772 - sources."blurhash-1.1.3" 11854 + sources."blurhash-1.1.4" 11773 11855 (sources."body-parser-1.19.0" // { 11774 11856 dependencies = [ 11775 11857 sources."bytes-3.1.0" ··· 11782 11864 sources."boolbase-1.0.0" 11783 11865 sources."brace-expansion-1.1.11" 11784 11866 sources."braces-3.0.2" 11785 - sources."browserslist-4.16.6" 11786 - sources."buffer-from-1.1.1" 11867 + sources."browserslist-4.17.0" 11868 + sources."buffer-from-1.1.2" 11787 11869 sources."buffer-indexof-1.1.1" 11788 11870 sources."builtin-modules-3.2.0" 11789 11871 sources."bytes-3.0.0" 11790 - (sources."cacache-15.0.6" // { 11872 + (sources."cacache-15.3.0" // { 11791 11873 dependencies = [ 11792 11874 sources."p-map-4.0.0" 11793 11875 sources."rimraf-3.0.2" ··· 11800 11882 sources."caller-path-2.0.0" 11801 11883 sources."callsites-2.0.0" 11802 11884 sources."camel-case-4.1.2" 11803 - sources."camelcase-6.2.0" 11804 - (sources."camelcase-keys-6.2.2" // { 11805 - dependencies = [ 11806 - sources."camelcase-5.3.1" 11807 - ]; 11808 - }) 11885 + sources."camelcase-5.3.1" 11886 + sources."camelcase-keys-6.2.2" 11809 11887 sources."caniuse-api-3.0.0" 11810 - sources."caniuse-db-1.0.30001222" 11811 - sources."caniuse-lite-1.0.30001222" 11888 + sources."caniuse-db-1.0.30001255" 11889 + sources."caniuse-lite-1.0.30001255" 11812 11890 sources."ccount-1.1.0" 11813 11891 sources."chalk-2.4.2" 11814 11892 sources."character-entities-1.2.4" 11815 11893 sources."character-entities-html4-1.1.4" 11816 11894 sources."character-entities-legacy-1.1.4" 11817 11895 sources."character-reference-invalid-1.1.4" 11818 - sources."chokidar-3.5.1" 11896 + sources."chokidar-3.5.2" 11819 11897 sources."chownr-2.0.0" 11820 11898 sources."chrome-trace-event-1.0.3" 11821 11899 (sources."class-utils-0.3.6" // { ··· 11858 11936 sources."coa-2.0.2" 11859 11937 sources."collapse-white-space-1.0.6" 11860 11938 sources."collection-visit-1.0.0" 11861 - sources."color-3.1.3" 11939 + sources."color-3.2.1" 11862 11940 sources."color-convert-1.9.3" 11863 11941 sources."color-name-1.1.3" 11864 - sources."color-string-1.5.5" 11865 - sources."colorette-1.2.2" 11942 + sources."color-string-1.6.0" 11943 + sources."colorette-1.3.0" 11866 11944 sources."commander-4.1.1" 11867 11945 sources."common-tags-1.8.0" 11868 11946 sources."commondir-1.0.1" ··· 11877 11955 sources."concat-map-0.0.1" 11878 11956 sources."confusing-browser-globals-1.0.10" 11879 11957 sources."connect-history-api-fallback-1.6.0" 11880 - sources."contains-path-0.1.0" 11881 11958 sources."content-disposition-0.5.3" 11882 11959 sources."content-type-1.0.4" 11883 - sources."convert-source-map-1.7.0" 11960 + sources."convert-source-map-1.8.0" 11884 11961 sources."cookie-0.4.0" 11885 11962 sources."cookie-signature-1.0.6" 11886 11963 sources."copy-descriptor-0.1.1" 11887 11964 (sources."copy-webpack-plugin-6.4.1" // { 11888 11965 dependencies = [ 11889 11966 sources."array-union-2.1.0" 11890 - sources."globby-11.0.3" 11967 + sources."globby-11.0.4" 11891 11968 sources."loader-utils-2.0.0" 11892 11969 sources."p-limit-3.1.0" 11893 - sources."schema-utils-3.0.0" 11970 + sources."schema-utils-3.1.1" 11894 11971 ]; 11895 11972 }) 11896 - sources."core-js-3.11.2" 11897 - (sources."core-js-compat-3.11.2" // { 11973 + sources."core-js-3.17.2" 11974 + (sources."core-js-compat-3.17.2" // { 11898 11975 dependencies = [ 11899 11976 sources."semver-7.0.0" 11900 11977 ]; 11901 11978 }) 11902 - sources."core-util-is-1.0.2" 11979 + sources."core-util-is-1.0.3" 11903 11980 sources."cosmiconfig-5.2.1" 11904 11981 sources."cross-spawn-7.0.3" 11905 - sources."crypto-random-string-1.0.0" 11982 + sources."crypto-random-string-2.0.0" 11906 11983 sources."css-blank-pseudo-0.1.4" 11907 11984 sources."css-color-names-0.0.4" 11908 11985 sources."css-declaration-sorter-4.0.1" ··· 11912 11989 sources."postcss-selector-parser-5.0.0" 11913 11990 ]; 11914 11991 }) 11915 - (sources."css-loader-5.2.4" // { 11992 + (sources."css-loader-5.2.7" // { 11916 11993 dependencies = [ 11917 11994 sources."loader-utils-2.0.0" 11918 - sources."postcss-8.2.13" 11919 - sources."schema-utils-3.0.0" 11995 + sources."postcss-8.3.6" 11996 + sources."schema-utils-3.1.1" 11920 11997 sources."semver-7.3.5" 11921 - sources."source-map-0.6.1" 11922 11998 ]; 11923 11999 }) 11924 12000 sources."css-prefers-color-scheme-3.1.1" ··· 11951 12027 sources."type-1.2.0" 11952 12028 ]; 11953 12029 }) 11954 - sources."date-fns-2.21.1" 12030 + sources."date-fns-2.23.0" 11955 12031 sources."debug-4.3.2" 11956 12032 sources."decamelize-1.2.0" 11957 12033 (sources."decamelize-keys-1.1.0" // { ··· 11961 12037 }) 11962 12038 sources."decode-uri-component-0.2.0" 11963 12039 sources."deep-equal-1.1.1" 11964 - sources."deep-is-0.1.3" 12040 + sources."deep-is-0.1.4" 12041 + sources."deepmerge-4.2.2" 11965 12042 (sources."default-gateway-4.2.0" // { 11966 12043 dependencies = [ 11967 12044 sources."cross-spawn-6.0.5" ··· 11981 12058 sources."del-4.1.1" 11982 12059 sources."depd-1.1.2" 11983 12060 sources."destroy-1.0.4" 11984 - sources."detect-node-2.0.5" 12061 + sources."detect-node-2.1.0" 11985 12062 sources."dir-glob-3.0.1" 11986 12063 sources."dns-equal-1.0.0" 11987 - sources."dns-packet-1.3.1" 12064 + sources."dns-packet-1.3.4" 11988 12065 sources."dns-txt-2.0.2" 11989 12066 sources."doctrine-3.0.0" 11990 12067 sources."dom-converter-0.2.0" ··· 12005 12082 sources."dot-prop-5.3.0" 12006 12083 sources."ee-first-1.1.1" 12007 12084 sources."ejs-2.7.4" 12008 - sources."electron-to-chromium-1.3.726" 12085 + sources."electron-to-chromium-1.3.830" 12009 12086 sources."emoji-regex-8.0.0" 12010 12087 sources."emojis-list-3.0.0" 12011 12088 sources."encodeurl-1.0.2" 12012 12089 sources."end-of-stream-1.4.4" 12013 - (sources."enhanced-resolve-5.8.0" // { 12090 + (sources."enhanced-resolve-5.8.2" // { 12014 12091 dependencies = [ 12015 12092 sources."tapable-2.2.0" 12016 12093 ]; ··· 12021 12098 sources."epubjs-0.3.88" 12022 12099 sources."errno-0.1.8" 12023 12100 sources."error-ex-1.3.2" 12024 - sources."es-abstract-1.18.0" 12025 - sources."es-module-lexer-0.4.1" 12101 + sources."es-abstract-1.18.5" 12102 + sources."es-module-lexer-0.7.1" 12026 12103 sources."es-to-primitive-1.2.1" 12027 12104 sources."es5-ext-0.10.53" 12028 12105 sources."es6-iterator-2.0.3" ··· 12031 12108 sources."escalade-3.1.1" 12032 12109 sources."escape-html-1.0.3" 12033 12110 sources."escape-string-regexp-1.0.5" 12034 - (sources."eslint-7.25.0" // { 12111 + (sources."eslint-7.32.0" // { 12035 12112 dependencies = [ 12036 12113 sources."@babel/code-frame-7.12.11" 12037 12114 sources."ansi-styles-4.3.0" 12038 - sources."chalk-4.1.1" 12115 + sources."chalk-4.1.2" 12039 12116 sources."color-convert-2.0.1" 12040 12117 sources."color-name-1.1.4" 12041 - sources."eslint-visitor-keys-2.1.0" 12042 - sources."globals-13.8.0" 12118 + sources."escape-string-regexp-4.0.0" 12119 + sources."globals-13.11.0" 12043 12120 sources."has-flag-4.0.0" 12044 12121 sources."ignore-4.0.6" 12045 12122 sources."import-fresh-3.3.0" 12046 12123 sources."resolve-from-4.0.0" 12047 12124 sources."semver-7.3.5" 12048 12125 sources."supports-color-7.2.0" 12049 - sources."type-fest-0.20.2" 12050 12126 ]; 12051 12127 }) 12052 - (sources."eslint-import-resolver-node-0.3.4" // { 12128 + (sources."eslint-import-resolver-node-0.3.6" // { 12053 12129 dependencies = [ 12054 - sources."debug-2.6.9" 12055 - sources."ms-2.0.0" 12130 + sources."debug-3.2.7" 12056 12131 ]; 12057 12132 }) 12058 - (sources."eslint-module-utils-2.6.0" // { 12133 + (sources."eslint-module-utils-2.6.2" // { 12059 12134 dependencies = [ 12060 - sources."debug-2.6.9" 12135 + sources."debug-3.2.7" 12061 12136 sources."find-up-2.1.0" 12062 12137 sources."locate-path-2.0.0" 12063 - sources."ms-2.0.0" 12064 12138 sources."p-limit-1.3.0" 12065 12139 sources."p-locate-2.0.0" 12066 12140 sources."p-try-1.0.0" ··· 12068 12142 sources."pkg-dir-2.0.0" 12069 12143 ]; 12070 12144 }) 12071 - (sources."eslint-plugin-compat-3.9.0" // { 12145 + (sources."eslint-plugin-compat-3.13.0" // { 12072 12146 dependencies = [ 12073 - sources."semver-7.3.2" 12147 + sources."find-up-5.0.0" 12148 + sources."locate-path-6.0.0" 12149 + sources."p-limit-3.1.0" 12150 + sources."p-locate-5.0.0" 12151 + sources."semver-7.3.5" 12074 12152 ]; 12075 12153 }) 12076 12154 sources."eslint-plugin-eslint-comments-3.2.0" 12077 - (sources."eslint-plugin-import-2.22.1" // { 12155 + (sources."eslint-plugin-import-2.24.2" // { 12078 12156 dependencies = [ 12079 12157 sources."debug-2.6.9" 12080 - sources."doctrine-1.5.0" 12158 + sources."doctrine-2.1.0" 12159 + sources."find-up-2.1.0" 12160 + sources."locate-path-2.0.0" 12081 12161 sources."ms-2.0.0" 12162 + sources."p-limit-1.3.0" 12163 + sources."p-locate-2.0.0" 12164 + sources."p-try-1.0.0" 12165 + sources."path-exists-3.0.0" 12082 12166 ]; 12083 12167 }) 12084 12168 sources."eslint-plugin-promise-4.3.1" 12085 12169 sources."eslint-rule-composer-0.3.0" 12086 12170 sources."eslint-scope-5.1.1" 12087 - sources."eslint-utils-2.1.0" 12088 - sources."eslint-visitor-keys-1.3.0" 12089 - sources."espree-7.3.1" 12171 + (sources."eslint-utils-2.1.0" // { 12172 + dependencies = [ 12173 + sources."eslint-visitor-keys-1.3.0" 12174 + ]; 12175 + }) 12176 + sources."eslint-visitor-keys-2.1.0" 12177 + (sources."espree-7.3.1" // { 12178 + dependencies = [ 12179 + sources."eslint-visitor-keys-1.3.0" 12180 + ]; 12181 + }) 12090 12182 sources."esprima-4.0.1" 12091 12183 (sources."esquery-1.4.0" // { 12092 12184 dependencies = [ ··· 12106 12198 sources."eventemitter3-4.0.7" 12107 12199 sources."events-3.3.0" 12108 12200 sources."eventsource-1.1.0" 12109 - sources."execa-5.0.0" 12201 + sources."execa-5.1.1" 12110 12202 sources."execall-2.0.0" 12111 12203 (sources."expand-brackets-2.1.4" // { 12112 12204 dependencies = [ ··· 12132 12224 (sources."expose-loader-1.0.3" // { 12133 12225 dependencies = [ 12134 12226 sources."loader-utils-2.0.0" 12135 - sources."schema-utils-3.0.0" 12227 + sources."schema-utils-3.1.1" 12136 12228 ]; 12137 12229 }) 12138 12230 (sources."express-4.17.1" // { ··· 12143 12235 sources."path-to-regexp-0.1.7" 12144 12236 ]; 12145 12237 }) 12146 - sources."ext-1.4.0" 12238 + sources."ext-1.5.0" 12147 12239 sources."extend-3.0.2" 12148 12240 (sources."extend-shallow-3.0.2" // { 12149 12241 dependencies = [ ··· 12157 12249 ]; 12158 12250 }) 12159 12251 sources."fast-deep-equal-3.1.3" 12160 - sources."fast-glob-3.2.5" 12252 + sources."fast-glob-3.2.7" 12161 12253 sources."fast-json-stable-stringify-2.1.0" 12162 12254 sources."fast-levenshtein-2.0.6" 12163 12255 sources."fast-text-encoding-1.0.3" 12164 12256 sources."fastest-levenshtein-1.0.12" 12165 - sources."fastq-1.11.0" 12166 - sources."faye-websocket-0.11.3" 12257 + sources."fastq-1.12.0" 12258 + sources."faye-websocket-0.11.4" 12167 12259 sources."file-entry-cache-6.0.1" 12168 12260 (sources."file-loader-6.2.0" // { 12169 12261 dependencies = [ 12170 12262 sources."loader-utils-2.0.0" 12171 - sources."schema-utils-3.0.0" 12263 + sources."schema-utils-3.1.1" 12172 12264 ]; 12173 12265 }) 12174 12266 sources."file-uri-to-path-1.0.0" ··· 12179 12271 sources."ms-2.0.0" 12180 12272 ]; 12181 12273 }) 12182 - sources."find-cache-dir-3.3.1" 12274 + sources."find-cache-dir-3.3.2" 12183 12275 sources."find-up-4.1.0" 12184 12276 (sources."flat-cache-3.0.4" // { 12185 12277 dependencies = [ 12186 12278 sources."rimraf-3.0.2" 12187 12279 ]; 12188 12280 }) 12189 - sources."flatted-3.1.1" 12281 + sources."flatted-3.2.2" 12190 12282 sources."flatten-1.0.3" 12191 - sources."flv.js-1.5.0" 12192 - sources."follow-redirects-1.14.0" 12283 + sources."flv.js-1.6.1" 12284 + sources."follow-redirects-1.14.3" 12193 12285 sources."fontsource-noto-sans-3.1.5" 12194 12286 sources."fontsource-noto-sans-hk-3.1.5" 12195 12287 sources."fontsource-noto-sans-jp-3.1.5" 12196 12288 sources."fontsource-noto-sans-kr-3.1.5" 12197 12289 sources."fontsource-noto-sans-sc-3.1.5" 12198 12290 sources."for-in-1.0.2" 12199 - sources."forwarded-0.1.2" 12291 + sources."forwarded-0.2.0" 12200 12292 sources."fragment-cache-0.2.1" 12201 12293 sources."fresh-0.5.2" 12202 - sources."fs-extra-8.1.0" 12294 + sources."fs-extra-9.1.0" 12203 12295 sources."fs-minipass-2.1.0" 12204 12296 sources."fs.realpath-1.0.0" 12205 12297 sources."fsevents-2.3.2" ··· 12213 12305 sources."get-stdin-8.0.0" 12214 12306 sources."get-stream-6.0.1" 12215 12307 sources."get-value-2.0.6" 12216 - sources."glob-7.1.6" 12308 + sources."glob-7.1.7" 12217 12309 sources."glob-parent-5.1.2" 12218 12310 sources."glob-to-regexp-0.3.0" 12219 12311 sources."global-modules-2.0.0" ··· 12230 12322 }) 12231 12323 sources."globjoin-0.1.4" 12232 12324 sources."gonzales-pe-4.3.0" 12233 - sources."graceful-fs-4.2.6" 12325 + sources."graceful-fs-4.2.8" 12234 12326 sources."handle-thing-2.0.1" 12235 12327 sources."hard-rejection-2.1.0" 12236 12328 sources."has-1.0.3" ··· 12242 12334 sources."has-bigints-1.0.1" 12243 12335 sources."has-flag-3.0.0" 12244 12336 sources."has-symbols-1.0.2" 12337 + sources."has-tostringtag-1.0.0" 12245 12338 sources."has-value-1.0.0" 12246 12339 (sources."has-values-1.0.0" // { 12247 12340 dependencies = [ ··· 12266 12359 (sources."html-loader-1.3.2" // { 12267 12360 dependencies = [ 12268 12361 sources."loader-utils-2.0.0" 12269 - sources."schema-utils-3.0.0" 12362 + sources."schema-utils-3.1.1" 12270 12363 ]; 12271 12364 }) 12272 12365 sources."html-minifier-terser-5.1.1" ··· 12278 12371 }) 12279 12372 (sources."htmlparser2-4.1.0" // { 12280 12373 dependencies = [ 12281 - (sources."dom-serializer-1.3.1" // { 12374 + (sources."dom-serializer-1.3.2" // { 12282 12375 dependencies = [ 12283 - sources."domhandler-4.2.0" 12376 + sources."domhandler-4.2.2" 12284 12377 ]; 12285 12378 }) 12286 12379 sources."domelementtype-2.2.0" 12287 - (sources."domutils-2.6.0" // { 12380 + (sources."domutils-2.8.0" // { 12288 12381 dependencies = [ 12289 - sources."domhandler-4.2.0" 12382 + sources."domhandler-4.2.2" 12290 12383 ]; 12291 12384 }) 12292 12385 ]; ··· 12312 12405 ]; 12313 12406 }) 12314 12407 sources."human-signals-2.1.0" 12315 - sources."iconv-lite-0.6.2" 12408 + sources."iconv-lite-0.6.3" 12316 12409 sources."icss-utils-5.1.0" 12410 + sources."idb-6.1.3" 12317 12411 sources."ignore-5.1.8" 12318 12412 sources."immediate-3.0.6" 12319 12413 sources."import-cwd-2.1.0" ··· 12329 12423 sources."inherits-2.0.4" 12330 12424 sources."ini-1.3.8" 12331 12425 sources."internal-ip-4.3.0" 12426 + sources."internal-slot-1.0.3" 12332 12427 sources."interpret-2.2.0" 12333 12428 sources."intersection-observer-0.12.0" 12334 12429 sources."ip-1.1.5" ··· 12340 12435 sources."is-alphabetical-1.0.4" 12341 12436 sources."is-alphanumeric-1.0.0" 12342 12437 sources."is-alphanumerical-1.0.4" 12343 - sources."is-arguments-1.1.0" 12438 + sources."is-arguments-1.1.1" 12344 12439 sources."is-arrayish-0.2.1" 12345 - sources."is-bigint-1.0.2" 12440 + sources."is-bigint-1.0.4" 12346 12441 sources."is-binary-path-2.1.0" 12347 - sources."is-boolean-object-1.1.0" 12442 + sources."is-boolean-object-1.1.2" 12348 12443 sources."is-buffer-2.0.5" 12349 - sources."is-callable-1.2.3" 12444 + sources."is-callable-1.2.4" 12350 12445 sources."is-color-stop-1.1.0" 12351 - sources."is-core-module-2.3.0" 12446 + sources."is-core-module-2.6.0" 12352 12447 sources."is-data-descriptor-1.0.0" 12353 - sources."is-date-object-1.0.2" 12448 + sources."is-date-object-1.0.5" 12354 12449 sources."is-decimal-1.0.4" 12355 12450 sources."is-descriptor-1.0.2" 12356 12451 sources."is-directory-0.3.1" ··· 12362 12457 sources."is-module-1.0.0" 12363 12458 sources."is-negative-zero-2.0.1" 12364 12459 sources."is-number-7.0.0" 12365 - sources."is-number-object-1.0.4" 12460 + sources."is-number-object-1.0.6" 12366 12461 sources."is-obj-2.0.0" 12367 12462 sources."is-path-cwd-2.2.0" 12368 12463 sources."is-path-in-cwd-2.1.0" 12369 12464 sources."is-path-inside-2.1.0" 12370 12465 sources."is-plain-obj-2.1.0" 12371 12466 sources."is-plain-object-2.0.4" 12372 - sources."is-regex-1.1.2" 12467 + sources."is-regex-1.1.4" 12373 12468 sources."is-regexp-2.1.0" 12374 12469 sources."is-resolvable-1.1.0" 12375 - sources."is-stream-2.0.0" 12376 - sources."is-string-1.0.5" 12470 + sources."is-stream-2.0.1" 12471 + sources."is-string-1.0.7" 12377 12472 sources."is-supported-regexp-flag-1.0.1" 12378 - sources."is-symbol-1.0.3" 12473 + sources."is-symbol-1.0.4" 12379 12474 sources."is-typedarray-1.0.0" 12380 12475 sources."is-unicode-supported-0.1.0" 12381 12476 sources."is-whitespace-character-1.0.4" ··· 12386 12481 sources."isexe-2.0.0" 12387 12482 sources."isobject-3.0.1" 12388 12483 sources."jellyfin-apiclient-1.8.0" 12389 - (sources."jest-worker-26.6.2" // { 12484 + (sources."jest-worker-27.1.0" // { 12390 12485 dependencies = [ 12391 12486 sources."has-flag-4.0.0" 12392 - sources."supports-color-7.2.0" 12487 + sources."supports-color-8.1.1" 12393 12488 ]; 12394 12489 }) 12395 12490 sources."jquery-3.6.0" ··· 12399 12494 sources."jsesc-2.5.2" 12400 12495 sources."json-parse-better-errors-1.0.2" 12401 12496 sources."json-parse-even-better-errors-2.3.1" 12497 + sources."json-schema-0.3.0" 12402 12498 sources."json-schema-traverse-0.4.1" 12403 12499 sources."json-stable-stringify-without-jsonify-1.0.1" 12404 12500 sources."json3-3.3.3" 12405 12501 sources."json5-2.2.0" 12406 - sources."jsonfile-4.0.0" 12407 - sources."jstree-3.3.11" 12408 - sources."jszip-3.6.0" 12502 + sources."jsonfile-6.1.0" 12503 + sources."jsonpointer-4.1.0" 12504 + sources."jstree-3.3.12" 12505 + sources."jszip-3.7.1" 12409 12506 sources."killable-1.0.1" 12410 12507 sources."kind-of-6.0.3" 12411 12508 sources."klona-2.0.4" ··· 12416 12513 sources."libass-wasm-https://github.com/jellyfin/JavascriptSubtitlesOctopus/archive/refs/tags/4.0.0-jf-smarttv.tar.gz" 12417 12514 sources."lie-3.3.0" 12418 12515 sources."lines-and-columns-1.1.6" 12419 - (sources."load-json-file-2.0.0" // { 12516 + (sources."load-json-file-4.0.0" // { 12420 12517 dependencies = [ 12421 - sources."parse-json-2.2.0" 12422 - sources."pify-2.3.0" 12518 + sources."pify-3.0.0" 12423 12519 ]; 12424 12520 }) 12425 12521 sources."loader-runner-4.2.0" ··· 12428 12524 sources."json5-1.0.1" 12429 12525 ]; 12430 12526 }) 12431 - (sources."localforage-1.9.0" // { 12527 + (sources."localforage-1.10.0" // { 12432 12528 dependencies = [ 12433 12529 sources."lie-3.1.1" 12434 12530 ]; 12435 12531 }) 12436 12532 sources."locate-path-5.0.0" 12437 12533 sources."lodash-4.17.21" 12438 - sources."lodash._reinterpolate-3.0.0" 12439 12534 sources."lodash.clonedeep-4.5.0" 12440 12535 sources."lodash.debounce-4.0.8" 12441 - sources."lodash.flatten-4.4.0" 12442 12536 sources."lodash.memoize-4.1.2" 12443 - sources."lodash.template-4.5.0" 12444 - sources."lodash.templatesettings-4.2.0" 12537 + sources."lodash.merge-4.6.2" 12538 + sources."lodash.sortby-4.7.0" 12445 12539 sources."lodash.truncate-4.4.2" 12446 12540 sources."lodash.uniq-4.5.0" 12447 12541 (sources."log-symbols-4.1.0" // { 12448 12542 dependencies = [ 12449 12543 sources."ansi-styles-4.3.0" 12450 - sources."chalk-4.1.1" 12544 + sources."chalk-4.1.2" 12451 12545 sources."color-convert-2.0.1" 12452 12546 sources."color-name-1.1.4" 12453 12547 sources."has-flag-4.0.0" ··· 12479 12573 (sources."meow-9.0.0" // { 12480 12574 dependencies = [ 12481 12575 sources."hosted-git-info-4.0.2" 12482 - sources."normalize-package-data-3.0.2" 12576 + sources."normalize-package-data-3.0.3" 12483 12577 sources."parse-json-5.2.0" 12484 12578 (sources."read-pkg-5.2.0" // { 12485 12579 dependencies = [ ··· 12505 12599 sources."micromark-2.11.4" 12506 12600 sources."micromatch-4.0.4" 12507 12601 sources."mime-1.6.0" 12508 - sources."mime-db-1.47.0" 12509 - sources."mime-types-2.1.30" 12602 + sources."mime-db-1.49.0" 12603 + sources."mime-types-2.1.32" 12510 12604 sources."mimic-fn-2.1.0" 12511 12605 sources."min-indent-1.0.1" 12512 12606 sources."minimalistic-assert-1.0.1" ··· 12531 12625 sources."ms-2.1.2" 12532 12626 sources."multicast-dns-6.2.3" 12533 12627 sources."multicast-dns-service-types-1.1.0" 12534 - sources."nan-2.14.2" 12535 - sources."nanoid-3.1.22" 12628 + sources."nan-2.15.0" 12629 + sources."nanoid-3.1.25" 12536 12630 sources."nanomatch-1.2.13" 12537 12631 sources."native-promise-only-0.8.1" 12538 12632 sources."natural-compare-1.4.0" ··· 12542 12636 sources."nice-try-1.0.5" 12543 12637 sources."no-case-3.0.4" 12544 12638 sources."node-forge-0.10.0" 12545 - sources."node-releases-1.1.71" 12639 + sources."node-releases-1.1.75" 12546 12640 (sources."normalize-package-data-2.5.0" // { 12547 12641 dependencies = [ 12548 12642 sources."semver-5.7.1" ··· 12570 12664 sources."kind-of-3.2.2" 12571 12665 ]; 12572 12666 }) 12573 - sources."object-inspect-1.10.2" 12667 + sources."object-inspect-1.11.0" 12574 12668 sources."object-is-1.1.5" 12575 12669 sources."object-keys-1.1.1" 12576 12670 sources."object-visit-1.0.1" 12577 12671 sources."object.assign-4.1.2" 12578 12672 sources."object.getownpropertydescriptors-2.1.2" 12579 12673 sources."object.pick-1.3.0" 12580 - sources."object.values-1.1.3" 12674 + sources."object.values-1.1.4" 12581 12675 sources."obuf-1.1.2" 12582 12676 sources."on-finished-2.3.0" 12583 12677 sources."on-headers-1.0.2" ··· 12610 12704 sources."path-is-absolute-1.0.1" 12611 12705 sources."path-is-inside-1.0.2" 12612 12706 sources."path-key-3.1.1" 12613 - sources."path-parse-1.0.6" 12707 + sources."path-parse-1.0.7" 12614 12708 (sources."path-to-regexp-1.2.1" // { 12615 12709 dependencies = [ 12616 12710 sources."isarray-0.0.1" ··· 12619 12713 sources."path-type-4.0.0" 12620 12714 sources."path-webpack-0.0.3" 12621 12715 sources."pdfjs-dist-2.5.207" 12622 - sources."picomatch-2.2.3" 12716 + sources."picomatch-2.3.0" 12623 12717 sources."pify-4.0.1" 12624 12718 sources."pinkie-2.0.4" 12625 12719 sources."pinkie-promise-2.0.1" 12626 12720 sources."pkg-dir-4.2.0" 12721 + (sources."pkg-up-2.0.0" // { 12722 + dependencies = [ 12723 + sources."find-up-2.1.0" 12724 + sources."locate-path-2.0.0" 12725 + sources."p-limit-1.3.0" 12726 + sources."p-locate-2.0.0" 12727 + sources."p-try-1.0.0" 12728 + sources."path-exists-3.0.0" 12729 + ]; 12730 + }) 12627 12731 sources."plur-2.1.2" 12628 12732 (sources."portfinder-1.0.28" // { 12629 12733 dependencies = [ ··· 12632 12736 ]; 12633 12737 }) 12634 12738 sources."posix-character-classes-0.1.1" 12635 - (sources."postcss-7.0.35" // { 12739 + (sources."postcss-7.0.36" // { 12636 12740 dependencies = [ 12637 12741 sources."source-map-0.6.1" 12638 12742 sources."supports-color-6.1.0" ··· 12825 12929 sources."postcss-scss-2.1.1" 12826 12930 sources."postcss-selector-matches-4.0.0" 12827 12931 sources."postcss-selector-not-4.0.1" 12828 - sources."postcss-selector-parser-6.0.5" 12932 + sources."postcss-selector-parser-6.0.6" 12829 12933 sources."postcss-sorting-4.1.0" 12830 12934 (sources."postcss-svgo-4.0.3" // { 12831 12935 dependencies = [ ··· 12842 12946 sources."process-nextick-args-2.0.1" 12843 12947 sources."progress-2.0.3" 12844 12948 sources."promise-inflight-1.0.1" 12845 - sources."proxy-addr-2.0.6" 12949 + sources."proxy-addr-2.0.7" 12846 12950 sources."prr-1.0.1" 12847 12951 sources."pump-3.0.0" 12848 12952 sources."punycode-2.1.1" ··· 12861 12965 ]; 12862 12966 }) 12863 12967 sources."read-file-stdin-0.2.1" 12864 - (sources."read-pkg-2.0.0" // { 12968 + (sources."read-pkg-3.0.0" // { 12865 12969 dependencies = [ 12866 - sources."path-type-2.0.0" 12867 - sources."pify-2.3.0" 12970 + sources."path-type-3.0.0" 12971 + sources."pify-3.0.0" 12868 12972 ]; 12869 12973 }) 12870 - (sources."read-pkg-up-2.0.0" // { 12974 + (sources."read-pkg-up-3.0.0" // { 12871 12975 dependencies = [ 12872 12976 sources."find-up-2.1.0" 12873 12977 sources."locate-path-2.0.0" ··· 12878 12982 ]; 12879 12983 }) 12880 12984 sources."readable-stream-2.3.7" 12881 - sources."readdirp-3.5.0" 12882 - sources."rechoir-0.7.0" 12985 + sources."readdirp-3.6.0" 12986 + sources."rechoir-0.7.1" 12883 12987 sources."redent-3.0.0" 12884 12988 sources."regenerate-1.4.2" 12885 12989 sources."regenerate-unicode-properties-8.2.0" 12886 - sources."regenerator-runtime-0.13.8" 12990 + sources."regenerator-runtime-0.13.9" 12887 12991 sources."regenerator-transform-0.14.5" 12888 12992 sources."regex-not-1.0.2" 12889 12993 sources."regexp.prototype.flags-1.3.1" 12890 - sources."regexpp-3.1.0" 12994 + sources."regexpp-3.2.0" 12891 12995 sources."regexpu-core-4.7.1" 12892 12996 sources."regjsgen-0.5.2" 12893 12997 (sources."regjsparser-0.6.9" // { ··· 12900 13004 sources."remark-parse-9.0.0" 12901 13005 sources."remark-stringify-9.0.1" 12902 13006 sources."remove-trailing-separator-1.1.0" 12903 - (sources."renderkid-2.0.5" // { 13007 + (sources."renderkid-2.0.7" // { 12904 13008 dependencies = [ 12905 13009 sources."ansi-regex-2.1.1" 12906 - sources."domhandler-2.4.2" 12907 - sources."entities-1.1.2" 12908 - sources."htmlparser2-3.10.1" 12909 - sources."readable-stream-3.6.0" 13010 + sources."css-select-4.1.3" 13011 + sources."css-what-5.0.1" 13012 + sources."dom-serializer-1.3.2" 13013 + sources."domelementtype-2.2.0" 13014 + sources."domhandler-4.2.2" 13015 + sources."domutils-2.8.0" 13016 + sources."htmlparser2-6.1.0" 13017 + sources."nth-check-2.0.0" 12910 13018 sources."strip-ansi-3.0.1" 12911 13019 ]; 12912 13020 }) ··· 12932 13040 sources."rgb-regex-1.0.1" 12933 13041 sources."rgba-regex-1.0.0" 12934 13042 sources."rimraf-2.7.1" 12935 - sources."rollup-1.32.1" 12936 - sources."rollup-plugin-babel-4.4.0" 12937 - (sources."rollup-plugin-terser-5.3.1" // { 13043 + sources."rollup-2.56.3" 13044 + (sources."rollup-plugin-terser-7.0.2" // { 12938 13045 dependencies = [ 12939 - sources."jest-worker-24.9.0" 13046 + sources."commander-2.20.3" 13047 + sources."has-flag-4.0.0" 13048 + sources."jest-worker-26.6.2" 12940 13049 sources."serialize-javascript-4.0.0" 12941 - sources."supports-color-6.1.0" 12942 - ]; 12943 - }) 12944 - (sources."rollup-pluginutils-2.8.2" // { 12945 - dependencies = [ 12946 - sources."estree-walker-0.6.1" 13050 + sources."source-map-0.7.3" 13051 + sources."supports-color-7.2.0" 13052 + sources."terser-5.7.2" 12947 13053 ]; 12948 13054 }) 12949 13055 sources."run-parallel-1.2.0" 12950 13056 sources."safe-buffer-5.1.2" 12951 13057 sources."safe-regex-1.1.0" 12952 13058 sources."safer-buffer-2.1.2" 12953 - sources."sass-1.32.12" 12954 - (sources."sass-loader-10.1.1" // { 13059 + sources."sass-1.39.0" 13060 + (sources."sass-loader-10.2.0" // { 12955 13061 dependencies = [ 12956 13062 sources."loader-utils-2.0.0" 12957 - sources."schema-utils-3.0.0" 13063 + sources."schema-utils-3.1.1" 12958 13064 sources."semver-7.3.5" 12959 13065 ]; 12960 13066 }) ··· 12996 13102 sources."shallow-clone-3.0.1" 12997 13103 sources."shebang-command-2.0.0" 12998 13104 sources."shebang-regex-3.0.0" 13105 + sources."side-channel-1.0.4" 12999 13106 sources."signal-exit-3.0.3" 13000 13107 (sources."simple-swizzle-0.2.2" // { 13001 13108 dependencies = [ ··· 13043 13150 ]; 13044 13151 }) 13045 13152 sources."sockjs-0.3.21" 13046 - (sources."sockjs-client-1.5.1" // { 13153 + (sources."sockjs-client-1.5.2" // { 13047 13154 dependencies = [ 13048 13155 sources."debug-3.2.7" 13049 13156 ]; 13050 13157 }) 13051 - sources."sortablejs-1.13.0" 13158 + sources."sortablejs-1.14.0" 13052 13159 sources."source-list-map-2.0.1" 13053 13160 sources."source-map-0.5.7" 13161 + sources."source-map-js-0.6.2" 13054 13162 (sources."source-map-loader-1.1.3" // { 13055 13163 dependencies = [ 13056 13164 sources."loader-utils-2.0.0" 13057 - sources."schema-utils-3.0.0" 13165 + sources."schema-utils-3.1.1" 13058 13166 sources."source-map-0.6.1" 13059 13167 ]; 13060 13168 }) ··· 13069 13177 sources."spdx-correct-3.1.1" 13070 13178 sources."spdx-exceptions-2.3.0" 13071 13179 sources."spdx-expression-parse-3.0.1" 13072 - sources."spdx-license-ids-3.0.7" 13180 + sources."spdx-license-ids-3.0.10" 13073 13181 sources."spdy-4.0.2" 13074 13182 (sources."spdy-transport-3.0.0" // { 13075 13183 dependencies = [ ··· 13115 13223 }) 13116 13224 sources."strip-ansi-6.0.0" 13117 13225 sources."strip-bom-3.0.0" 13118 - sources."strip-comments-1.0.2" 13226 + sources."strip-comments-2.0.1" 13119 13227 sources."strip-eof-1.0.0" 13120 13228 sources."strip-final-newline-2.0.0" 13121 13229 sources."strip-indent-3.0.0" ··· 13123 13231 (sources."style-loader-2.0.0" // { 13124 13232 dependencies = [ 13125 13233 sources."loader-utils-2.0.0" 13126 - sources."schema-utils-3.0.0" 13234 + sources."schema-utils-3.1.1" 13127 13235 ]; 13128 13236 }) 13129 13237 sources."style-search-0.1.0" ··· 13137 13245 sources."ansi-styles-4.3.0" 13138 13246 sources."array-union-2.1.0" 13139 13247 sources."balanced-match-2.0.0" 13140 - sources."chalk-4.1.1" 13248 + sources."chalk-4.1.2" 13141 13249 sources."color-convert-2.0.1" 13142 13250 sources."color-name-1.1.4" 13143 - sources."cosmiconfig-7.0.0" 13144 - sources."globby-11.0.3" 13251 + sources."cosmiconfig-7.0.1" 13252 + sources."globby-11.0.4" 13145 13253 sources."has-flag-4.0.0" 13146 13254 (sources."import-fresh-3.3.0" // { 13147 13255 dependencies = [ ··· 13176 13284 sources."extend-shallow-2.0.1" 13177 13285 ]; 13178 13286 }) 13179 - sources."find-up-2.1.0" 13180 13287 sources."flat-cache-2.0.1" 13181 13288 sources."flatted-2.0.2" 13182 13289 sources."get-stdin-6.0.0" ··· 13194 13301 sources."is-regexp-1.0.0" 13195 13302 sources."kind-of-3.2.2" 13196 13303 sources."known-css-properties-0.11.0" 13197 - sources."load-json-file-4.0.0" 13198 - sources."locate-path-2.0.0" 13199 13304 sources."log-symbols-2.2.0" 13200 13305 sources."map-obj-2.0.0" 13201 13306 sources."meow-5.0.0" 13202 13307 sources."micromatch-3.1.10" 13203 13308 sources."minimist-options-3.0.2" 13204 - sources."p-limit-1.3.0" 13205 - sources."p-locate-2.0.0" 13206 - sources."p-try-1.0.0" 13207 - sources."path-exists-3.0.0" 13208 13309 sources."path-type-3.0.0" 13209 13310 sources."pify-3.0.0" 13210 13311 sources."postcss-sass-0.3.5" 13211 13312 sources."postcss-selector-parser-3.1.2" 13212 13313 sources."postcss-value-parser-3.3.1" 13213 13314 sources."quick-lru-1.1.0" 13214 - sources."read-pkg-3.0.0" 13215 - sources."read-pkg-up-3.0.0" 13216 13315 sources."redent-2.0.0" 13217 13316 sources."resolve-from-4.0.0" 13218 13317 sources."rimraf-2.6.3" ··· 13248 13347 sources."fast-glob-2.2.7" 13249 13348 sources."file-entry-cache-4.0.0" 13250 13349 sources."fill-range-4.0.0" 13251 - sources."find-up-2.1.0" 13252 13350 sources."flat-cache-2.0.1" 13253 13351 sources."flatted-2.0.2" 13254 13352 sources."get-stdin-6.0.0" ··· 13267 13365 sources."is-regexp-1.0.0" 13268 13366 sources."kind-of-3.2.2" 13269 13367 sources."known-css-properties-0.11.0" 13270 - sources."load-json-file-4.0.0" 13271 - sources."locate-path-2.0.0" 13272 13368 sources."log-symbols-1.0.2" 13273 13369 sources."map-obj-2.0.0" 13274 13370 sources."meow-5.0.0" 13275 13371 sources."micromatch-3.1.10" 13276 13372 sources."minimist-options-3.0.2" 13277 - sources."p-limit-1.3.0" 13278 - sources."p-locate-2.0.0" 13279 - sources."p-try-1.0.0" 13280 - sources."path-exists-3.0.0" 13281 13373 sources."path-type-3.0.0" 13282 13374 sources."pify-3.0.0" 13283 13375 (sources."postcss-5.2.18" // { ··· 13295 13387 ]; 13296 13388 }) 13297 13389 sources."has-flag-3.0.0" 13298 - sources."postcss-7.0.35" 13390 + sources."postcss-7.0.36" 13299 13391 sources."supports-color-6.1.0" 13300 13392 ]; 13301 13393 }) 13302 13394 sources."postcss-selector-parser-2.2.3" 13303 13395 sources."postcss-value-parser-3.3.1" 13304 13396 sources."quick-lru-1.1.0" 13305 - sources."read-pkg-3.0.0" 13306 - sources."read-pkg-up-3.0.0" 13307 13397 sources."redent-2.0.0" 13308 13398 sources."resolve-from-4.0.0" 13309 13399 sources."rimraf-2.6.3" ··· 13329 13419 sources."chalk-2.4.2" 13330 13420 sources."has-flag-3.0.0" 13331 13421 sources."log-symbols-2.2.0" 13332 - (sources."postcss-7.0.35" // { 13422 + (sources."postcss-7.0.36" // { 13333 13423 dependencies = [ 13334 13424 sources."supports-color-6.1.0" 13335 13425 ]; ··· 13351 13441 sources."postcss-sorting-5.0.1" 13352 13442 ]; 13353 13443 }) 13354 - sources."stylelint-scss-3.19.0" 13444 + sources."stylelint-scss-3.20.1" 13355 13445 sources."sugarss-2.0.0" 13356 13446 sources."supports-color-5.5.0" 13357 13447 sources."svg-tags-1.0.0" ··· 13360 13450 sources."mkdirp-0.5.5" 13361 13451 ]; 13362 13452 }) 13363 - sources."swiper-6.5.9" 13364 - (sources."table-6.6.0" // { 13453 + sources."swiper-6.8.4" 13454 + (sources."table-6.7.1" // { 13365 13455 dependencies = [ 13366 - sources."ajv-8.2.0" 13456 + sources."ajv-8.6.2" 13367 13457 sources."json-schema-traverse-1.0.0" 13368 13458 ]; 13369 13459 }) 13370 13460 sources."tapable-1.1.3" 13371 - sources."tar-6.1.0" 13372 - sources."temp-dir-1.0.0" 13373 - (sources."tempy-0.3.0" // { 13461 + sources."tar-6.1.11" 13462 + sources."temp-dir-2.0.0" 13463 + (sources."tempy-0.6.0" // { 13374 13464 dependencies = [ 13375 - sources."type-fest-0.3.1" 13465 + sources."type-fest-0.16.0" 13376 13466 ]; 13377 13467 }) 13378 13468 (sources."terser-4.8.0" // { ··· 13381 13471 sources."source-map-0.6.1" 13382 13472 ]; 13383 13473 }) 13384 - (sources."terser-webpack-plugin-5.1.1" // { 13474 + (sources."terser-webpack-plugin-5.2.3" // { 13385 13475 dependencies = [ 13386 13476 sources."commander-2.20.3" 13387 13477 sources."p-limit-3.1.0" 13388 - sources."schema-utils-3.0.0" 13478 + sources."schema-utils-3.1.1" 13479 + sources."serialize-javascript-6.0.0" 13389 13480 sources."source-map-0.6.1" 13390 - (sources."terser-5.7.0" // { 13481 + (sources."terser-5.7.2" // { 13391 13482 dependencies = [ 13392 13483 sources."source-map-0.7.3" 13393 13484 ]; ··· 13407 13498 sources."to-regex-3.0.2" 13408 13499 sources."to-regex-range-5.0.1" 13409 13500 sources."toidentifier-1.0.0" 13501 + sources."tr46-1.0.1" 13410 13502 sources."trim-0.0.1" 13411 - sources."trim-newlines-3.0.0" 13503 + sources."trim-newlines-3.0.1" 13412 13504 sources."trim-trailing-lines-1.1.4" 13413 13505 sources."trough-1.0.5" 13414 - (sources."tsconfig-paths-3.9.0" // { 13506 + (sources."tsconfig-paths-3.11.0" // { 13415 13507 dependencies = [ 13416 13508 sources."json5-1.0.1" 13417 13509 ]; 13418 13510 }) 13419 - sources."tslib-2.2.0" 13511 + sources."tslib-2.3.1" 13420 13512 sources."type-2.5.0" 13421 13513 sources."type-check-0.4.0" 13422 - sources."type-fest-0.8.1" 13514 + sources."type-fest-0.20.2" 13423 13515 sources."type-is-1.6.18" 13424 13516 sources."typedarray-to-buffer-3.1.5" 13425 13517 sources."unbox-primitive-1.0.1" ··· 13428 13520 sources."unicode-match-property-ecmascript-1.0.4" 13429 13521 sources."unicode-match-property-value-ecmascript-1.2.0" 13430 13522 sources."unicode-property-aliases-ecmascript-1.1.0" 13431 - sources."unified-9.2.1" 13523 + sources."unified-9.2.2" 13432 13524 sources."union-value-1.0.1" 13433 13525 sources."uniq-1.0.1" 13434 13526 sources."uniqs-2.0.0" 13435 13527 sources."unique-filename-1.1.1" 13436 13528 sources."unique-slug-2.0.2" 13437 - sources."unique-string-1.0.0" 13529 + sources."unique-string-2.0.0" 13438 13530 sources."unist-util-find-all-after-3.0.2" 13439 13531 sources."unist-util-is-4.1.0" 13440 13532 sources."unist-util-remove-position-1.1.4" ··· 13445 13537 sources."unist-util-is-3.0.0" 13446 13538 ]; 13447 13539 }) 13448 - sources."universalify-0.1.2" 13540 + sources."universalify-2.0.0" 13449 13541 sources."unpipe-1.0.0" 13450 13542 sources."unquote-1.1.1" 13451 13543 (sources."unset-value-1.0.0" // { ··· 13466 13558 sources."punycode-1.3.2" 13467 13559 ]; 13468 13560 }) 13469 - sources."url-parse-1.5.1" 13470 - sources."url-toolkit-2.2.2" 13561 + sources."url-parse-1.5.3" 13562 + sources."url-toolkit-2.2.3" 13471 13563 sources."use-3.1.1" 13472 13564 sources."util-deprecate-1.0.2" 13473 13565 sources."util.promisify-1.0.1" ··· 13481 13573 sources."vfile-4.2.1" 13482 13574 sources."vfile-location-2.0.6" 13483 13575 sources."vfile-message-2.0.4" 13484 - (sources."watchpack-2.1.1" // { 13576 + (sources."watchpack-2.2.0" // { 13485 13577 dependencies = [ 13486 13578 sources."glob-to-regexp-0.4.1" 13487 13579 ]; 13488 13580 }) 13489 13581 sources."wbuf-1.7.3" 13490 13582 sources."webcomponents.js-0.7.24" 13491 - (sources."webpack-5.36.2" // { 13583 + sources."webidl-conversions-4.0.2" 13584 + (sources."webpack-5.52.0" // { 13492 13585 dependencies = [ 13493 - sources."acorn-8.2.4" 13586 + sources."acorn-8.4.1" 13494 13587 sources."glob-to-regexp-0.4.1" 13495 - sources."schema-utils-3.0.0" 13496 - sources."source-map-0.6.1" 13588 + sources."schema-utils-3.1.1" 13497 13589 sources."tapable-2.2.0" 13498 - sources."webpack-sources-2.2.0" 13590 + sources."webpack-sources-3.2.0" 13499 13591 ]; 13500 13592 }) 13501 - (sources."webpack-cli-4.6.0" // { 13593 + (sources."webpack-cli-4.8.0" // { 13502 13594 dependencies = [ 13503 13595 sources."commander-7.2.0" 13504 - sources."webpack-merge-5.7.3" 13596 + sources."webpack-merge-5.8.0" 13505 13597 ]; 13506 13598 }) 13507 13599 (sources."webpack-dev-middleware-3.7.3" // { ··· 13556 13648 }) 13557 13649 sources."websocket-driver-0.7.4" 13558 13650 sources."websocket-extensions-0.1.4" 13559 - sources."webworkify-1.5.0" 13651 + sources."webworkify-webpack-2.1.5" 13560 13652 sources."whatwg-fetch-3.6.2" 13561 13653 sources."whatwg-mimetype-2.3.0" 13654 + sources."whatwg-url-7.1.0" 13562 13655 sources."which-2.0.2" 13563 13656 sources."which-boxed-primitive-1.0.2" 13564 13657 sources."which-module-2.0.0" 13565 13658 sources."wildcard-2.0.0" 13566 13659 sources."word-wrap-1.2.3" 13567 - sources."workbox-background-sync-5.1.4" 13568 - sources."workbox-broadcast-update-5.1.4" 13569 - (sources."workbox-build-5.1.4" // { 13660 + (sources."workbox-background-sync-6.2.4" // { 13570 13661 dependencies = [ 13571 - sources."source-map-0.7.3" 13662 + sources."workbox-core-6.2.4" 13572 13663 ]; 13573 13664 }) 13574 - sources."workbox-cacheable-response-5.1.4" 13665 + (sources."workbox-broadcast-update-6.2.4" // { 13666 + dependencies = [ 13667 + sources."workbox-core-6.2.4" 13668 + ]; 13669 + }) 13670 + (sources."workbox-build-6.2.4" // { 13671 + dependencies = [ 13672 + sources."ajv-8.6.2" 13673 + sources."json-schema-traverse-1.0.0" 13674 + sources."source-map-0.8.0-beta.0" 13675 + sources."workbox-core-6.2.4" 13676 + sources."workbox-precaching-6.2.4" 13677 + ]; 13678 + }) 13679 + (sources."workbox-cacheable-response-6.2.4" // { 13680 + dependencies = [ 13681 + sources."workbox-core-6.2.4" 13682 + ]; 13683 + }) 13575 13684 sources."workbox-core-5.1.4" 13576 - sources."workbox-expiration-5.1.4" 13577 - sources."workbox-google-analytics-5.1.4" 13578 - sources."workbox-navigation-preload-5.1.4" 13685 + (sources."workbox-expiration-6.2.4" // { 13686 + dependencies = [ 13687 + sources."workbox-core-6.2.4" 13688 + ]; 13689 + }) 13690 + (sources."workbox-google-analytics-6.2.4" // { 13691 + dependencies = [ 13692 + sources."workbox-core-6.2.4" 13693 + ]; 13694 + }) 13695 + (sources."workbox-navigation-preload-6.2.4" // { 13696 + dependencies = [ 13697 + sources."workbox-core-6.2.4" 13698 + ]; 13699 + }) 13579 13700 sources."workbox-precaching-5.1.4" 13580 - sources."workbox-range-requests-5.1.4" 13581 - sources."workbox-routing-5.1.4" 13582 - sources."workbox-strategies-5.1.4" 13583 - sources."workbox-streams-5.1.4" 13584 - sources."workbox-sw-5.1.4" 13585 - sources."workbox-webpack-plugin-5.1.4" 13586 - sources."workbox-window-5.1.4" 13587 - sources."worker-plugin-5.0.0" 13701 + (sources."workbox-range-requests-6.2.4" // { 13702 + dependencies = [ 13703 + sources."workbox-core-6.2.4" 13704 + ]; 13705 + }) 13706 + (sources."workbox-recipes-6.2.4" // { 13707 + dependencies = [ 13708 + sources."workbox-core-6.2.4" 13709 + sources."workbox-precaching-6.2.4" 13710 + ]; 13711 + }) 13712 + (sources."workbox-routing-6.2.4" // { 13713 + dependencies = [ 13714 + sources."workbox-core-6.2.4" 13715 + ]; 13716 + }) 13717 + (sources."workbox-strategies-6.2.4" // { 13718 + dependencies = [ 13719 + sources."workbox-core-6.2.4" 13720 + ]; 13721 + }) 13722 + (sources."workbox-streams-6.2.4" // { 13723 + dependencies = [ 13724 + sources."workbox-core-6.2.4" 13725 + ]; 13726 + }) 13727 + sources."workbox-sw-6.2.4" 13728 + sources."workbox-webpack-plugin-6.2.4" 13729 + (sources."workbox-window-6.2.4" // { 13730 + dependencies = [ 13731 + sources."workbox-core-6.2.4" 13732 + ]; 13733 + }) 13734 + sources."worker-plugin-5.0.1" 13588 13735 (sources."wrap-ansi-5.1.0" // { 13589 13736 dependencies = [ 13590 13737 sources."ansi-regex-4.1.0" ··· 13602 13749 }) 13603 13750 sources."write-file-atomic-3.0.3" 13604 13751 sources."write-file-stdout-0.0.2" 13605 - sources."ws-6.2.1" 13752 + sources."ws-6.2.2" 13606 13753 sources."x-is-string-0.1.0" 13607 13754 sources."xmldom-0.3.0" 13608 13755 sources."xtend-4.0.2" ··· 13612 13759 (sources."yargs-13.3.2" // { 13613 13760 dependencies = [ 13614 13761 sources."ansi-regex-4.1.0" 13615 - sources."camelcase-5.3.1" 13616 13762 sources."emoji-regex-7.0.3" 13617 13763 sources."find-up-3.0.0" 13618 13764 sources."is-fullwidth-code-point-2.0.0" ··· 13624 13770 sources."yargs-parser-13.1.2" 13625 13771 ]; 13626 13772 }) 13627 - sources."yargs-parser-20.2.7" 13773 + sources."yargs-parser-20.2.9" 13628 13774 sources."yocto-queue-0.1.0" 13629 13775 sources."zwitch-1.0.5" 13630 13776 ];
+2 -2
pkgs/servers/jellyfin/web.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "jellyfin-web"; 10 - version = "10.7.6"; 10 + version = "10.7.7"; 11 11 # TODO: on the next major release remove src.postFetch 12 12 # and use the lock file in web-update.sh: 13 13 # https://github.com/jellyfin/jellyfin-web/commit/6efef9680d55a93f4333ef8bfb65a8a650c99a49 ··· 16 16 owner = "jellyfin"; 17 17 repo = "jellyfin-web"; 18 18 rev = "v${version}"; 19 - sha256 = "T5a17mAvx7fLla2jQp1dNswijeUbBQB1RA1ZkVpLWqM="; 19 + sha256 = "RDp51IWQ0Woz26cVgWsiLc8DyZztI2ysPbhmOR3jguE="; 20 20 postFetch = '' 21 21 mkdir -p $out 22 22 cd $out
+3 -3
pkgs/servers/klipper/default.nix
··· 6 6 }: 7 7 stdenv.mkDerivation rec { 8 8 pname = "klipper"; 9 - version = "unstable-2021-07-15"; 9 + version = "unstable-2021-09-03"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "KevinOConnor"; 13 13 repo = "klipper"; 14 - rev = "dafb74e3aba707db364ed773bb2135084ac0fffa"; 15 - sha256 = "sha256-wF5I8Mo89ohhysBRDMtkCDbCW9SKWrdYdbifmxCPJBc="; 14 + rev = "c84956befe88daeeb9512acaa9fa82395665df16"; 15 + sha256 = "sha256-dHFIeA2RCoqC0ROYUUbSoLZ4frRWBJaNJWohpK8xN7I="; 16 16 }; 17 17 18 18 # We have no LTO on i686 since commit 22284b0
+2 -2
pkgs/servers/matrix-synapse/plugins/ldap3.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "matrix-synapse-ldap3"; 5 - version = "0.1.4"; 5 + version = "0.1.5"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "01bms89sl16nyh9f141idsz4mnhxvjrc3gj721wxh1fhikps0djx"; 9 + sha256 = "9fdf8df7c8ec756642aa0fea53b31c0b2f1924f70d7f049a2090b523125456fe"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ service-identity ldap3 twisted ];
+2 -2
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "matrix-synapse-mjolnir-antispam"; 5 - version = "0.1.17"; 5 + version = "0.1.19"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "matrix-org"; 9 9 repo = "mjolnir"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-uBI5AllXWgl3eL60WZ/j11Tt7QpY7CKcmFQOU74/Qjs="; 11 + sha256 = "09g2h5qj725745ljxff4vh05zy7lzcmvdz0bkxxhpjhs48jdlq3k"; 12 12 }; 13 13 14 14 sourceRoot = "./source/synapse_antispam";
+3 -3
pkgs/servers/moonraker/default.nix
··· 14 14 ]); 15 15 in stdenvNoCC.mkDerivation rec { 16 16 pname = "moonraker"; 17 - version = "unstable-2021-07-18"; 17 + version = "unstable-2021-09-04"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "Arksine"; 21 21 repo = "moonraker"; 22 - rev = "42f61ceafa90fcfea8bffbe968e26a6fd8b61af6"; 23 - sha256 = "1w6l9pgs4n4nnk3h40y346bf6j3v4j4h1qnhj5dwlbwdxiqpd9gs"; 22 + rev = "db3f69e0dddcc8ac07e895a9a65906a8e08707e7"; 23 + sha256 = "uam3Vp/NA8HWxqqy6l8UkeaR5OSqHMwb5uXUL4E0jBQ="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/nextcloud/news-updater.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "nextcloud-news-updater"; 5 - version = "10.0.1"; 5 + version = "11.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://pypi/n/nextcloud_news_updater/nextcloud_news_updater-${version}.tar.gz"; 9 - sha256 = "14jj3w417wfsm1ki34d980b0s6vfn8i29g4c66qb2fizdq1d0z6q"; 9 + sha256 = "bc2055c16f0dbf610b7e17650508a18fa5a1de652ecdf69c5d4073c97376e9cf"; 10 10 }; 11 11 12 12 doCheck = false;
+1 -1
pkgs/servers/sql/postgresql/ext/age.nix
··· 57 57 description = "A graph database extension for PostgreSQL"; 58 58 homepage = "https://github.com/bitnine-oss/AgensGraph-Extension"; 59 59 changelog = "https://github.com/bitnine-oss/AgensGraph-Extension/releases/tag/v${version}"; 60 - maintainers = with maintainers; [ danieldk ]; 60 + maintainers = with maintainers; [ ]; 61 61 platforms = postgresql.meta.platforms; 62 62 license = licenses.asl20; 63 63 broken = versionOlder postgresql.version "11.0";
+3 -3
pkgs/servers/unpackerr/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "unpackerr"; 5 - version = "0.9.7"; 5 + version = "0.9.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "davidnewhall"; 9 9 repo = "unpackerr"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-OJDFPSXbJffiKW1SmMptPxj69YU7cuOU1LgIiInurCM="; 11 + sha256 = "08xcxs4qh25qsjaf6wivhpszl61zdp59hlkd57igf9fv4lywb41q"; 12 12 }; 13 13 14 - vendorSha256 = "sha256-n8gRefr+MyiSaATG1mZrS3lx4oDEfbQ1LQxQ6vp5l0Y="; 14 + vendorSha256 = "0ilpg7xfll0c5lsv8zf4h3i72yabddkddih4d292hczyz9wi3j4z"; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Cocoa WebKit ]; 17 17
+2 -2
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wiki-js"; 5 - version = "2.5.201"; 5 + version = "2.5.214"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Requarks/wiki/releases/download/${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-k2G+jUne/lq0dRJsIQpWlRFg1Nq92bM28YkawKOKlsI="; 9 + sha256 = "sha256-EXysHhEJ41LMLRueEoFr+SE9SdJEXMZLhJQSvZgToTg="; 10 10 }; 11 11 12 12 sourceRoot = ".";
+16 -15
pkgs/servers/xmpp/prosody/default.nix
··· 1 1 { stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg 2 - , lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop 2 + , lua 3 3 , nixosTests 4 - , withLibevent ? true, luaevent ? null 5 - , withDBI ? true, luadbi ? null 4 + , withLibevent ? true 5 + , withDBI ? true 6 6 # use withExtraLibs to add additional dependencies of community modules 7 7 , withExtraLibs ? [ ] 8 8 , withOnlyInstalledCommunityModules ? [ ] 9 9 , withCommunityModules ? [ ] }: 10 10 11 - assert withLibevent -> luaevent != null; 12 - assert withDBI -> luadbi != null; 13 - 14 11 with lib; 15 12 16 13 14 + let 15 + luaEnv = lua.withPackages(p: with p; [ 16 + luasocket luasec luaexpat luafilesystem luabitop luadbi-sqlite3 17 + ] 18 + ++ lib.optional withLibevent p.luaevent 19 + ++ lib.optional withDBI p.luadbi 20 + ); 21 + in 17 22 stdenv.mkDerivation rec { 18 23 version = "0.11.10"; # also update communityModules 19 24 pname = "prosody"; ··· 41 46 sha256 = "02gj1b8sdmdvymsdmjpq47zrl7sg578jcdxbbq18s44f3njmc9q1"; 42 47 }; 43 48 49 + nativeBuildInputs = [ makeWrapper ]; 44 50 buildInputs = [ 45 - lua5 makeWrapper libidn openssl 46 - ] 47 - # Lua libraries 48 - ++ [ 49 - luasocket luasec luaexpat luafilesystem luabitop 51 + luaEnv libidn openssl 50 52 ] 51 - ++ optional withLibevent luaevent 52 - ++ optional withDBI luadbi 53 53 ++ withExtraLibs; 54 54 55 55 56 56 configureFlags = [ 57 57 "--ostype=linux" 58 - "--with-lua-include=${lua5}/include" 59 - "--with-lua=${lua5}" 58 + "--with-lua-include=${luaEnv}/include" 59 + "--with-lua=${luaEnv}" 60 60 ]; 61 61 62 62 postBuild = '' 63 63 make -C tools/migration 64 64 ''; 65 65 66 + # the wrapping should go away once lua hook is fixed 66 67 postInstall = '' 67 68 ${concatMapStringsSep "\n" (module: '' 68 69 cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
+11
pkgs/shells/zsh/zsh-fzf-tab/darwin.patch
··· 1 + diff --git a/modules/Src/aloxaf/fzftab.c b/modules/Src/aloxaf/fzftab.c 2 + index 60b6330..91975d8 100644 3 + --- a/modules/Src/aloxaf/fzftab.c 4 + +++ b/modules/Src/aloxaf/fzftab.c 5 + @@ -1,6 +1,5 @@ 6 + #include "fzftab.mdh" 7 + #include "fzftab.pro" 8 + -#include <malloc.h> 9 + #include <stdarg.h> 10 + #include <stdlib.h> 11 + #include <sys/stat.h>
+3 -1
pkgs/shells/zsh/zsh-fzf-tab/default.nix
··· 15 15 16 16 buildInputs = [ ncurses ]; 17 17 18 + patches = lib.optionals stdenv.isDarwin [ ./darwin.patch ]; 19 + 18 20 postConfigure = '' 19 21 pushd modules 20 22 ./configure --disable-gdbm --without-tcsetpgrp ··· 40 42 description = "Replace zsh's default completion selection menu with fzf!"; 41 43 license = licenses.mit; 42 44 maintainers = with maintainers; [ vonfry ]; 43 - platforms = platforms.linux; 45 + platforms = platforms.unix; 44 46 }; 45 47 }
+38
pkgs/tools/backup/android-backup-extractor/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , makeWrapper 5 + , jre 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "android-backup-extractor"; 10 + version = "20210909062443-4c55371"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/nelenkov/android-backup-extractor/releases/download/${version}/abe.jar"; 14 + sha256 = "0ms241kb4h9y9apr637sb4kw5mml40c1ac0q4jcxhnwr3dr05w1q"; 15 + }; 16 + 17 + dontUnpack = true; 18 + dontConfigure = true; 19 + dontBuild = true; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 23 + buildInputs = [ jre ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + install -D $src $out/lib/android-backup-extractor/abe.jar 28 + makeWrapper ${jre}/bin/java $out/bin/abe --add-flags "-cp $out/lib/android-backup-extractor/abe.jar org.nick.abe.Main" 29 + runHook postInstall 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Utility to extract and repack Android backups created with adb backup"; 34 + homepage = "https://github.com/nelenkov/android-backup-extractor"; 35 + license = licenses.asl20; 36 + maintainers = with maintainers; [ prusnak ]; 37 + }; 38 + }
+2 -2
pkgs/tools/backup/discordchatexporter-cli/default.nix
··· 7 7 in 8 8 stdenv.mkDerivation rec { 9 9 pname = "discordchatexporter-cli"; 10 - version = "2.30"; 10 + version = "2.30.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "tyrrrz"; 14 14 repo = "discordchatexporter"; 15 15 rev = version; 16 - sha256 = "uTOeRsEab4vaAwtfysUTM3xFP5UMxpUQnuuU8hv3nk8="; 16 + sha256 = "JSYIhd+DNVOKseHtWNNChECR5hKr+ntu1Yyqtnlg8rM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget cacert makeWrapper autoPatchelfHook ];
+3 -1
pkgs/tools/graphics/gnuplot/default.nix
··· 2 2 , cairo, gd, libcerf, pango, readline, zlib 3 3 , withTeXLive ? false, texlive 4 4 , withLua ? false, lua 5 + , withCaca ? false, libcaca 5 6 , libX11 ? null 6 7 , libXt ? null 7 8 , libXpm ? null ··· 33 34 [ cairo gd libcerf pango readline zlib ] 34 35 ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) 35 36 ++ lib.optional withLua lua 37 + ++ lib.optional withCaca libcaca 36 38 ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] 37 39 ++ lib.optionals withQt [ qtbase qtsvg ] 38 40 ++ lib.optional withWxGTK wxGTK; ··· 46 48 (if withX then "--with-x" else "--without-x") 47 49 (if withQt then "--with-qt=qt5" else "--without-qt") 48 50 (if aquaterm then "--with-aquaterm" else "--without-aquaterm") 49 - ]; 51 + ] ++ lib.optional withCaca "--with-caca"; 50 52 51 53 CXXFLAGS = lib.optionalString (stdenv.isDarwin && withQt) "-std=c++11"; 52 54
+1 -1
pkgs/tools/misc/clpeak/default.nix
··· 28 28 description = "A tool which profiles OpenCL devices to find their peak capacities"; 29 29 homepage = "https://github.com/krrishnarraj/clpeak/"; 30 30 license = licenses.unlicense; 31 - maintainers = with maintainers; [ danieldk ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+2 -2
pkgs/tools/misc/nncp/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "nncp"; 13 - version = "7.6.0"; 13 + version = "7.7.0"; 14 14 15 15 src = fetchurl { 16 16 url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz"; 17 - sha256 = "1im43d9z2pwylsgd6lyxxi03jvkfcfpdsmamg8cm8la1f202x180"; 17 + sha256 = "ppKi/JY8sKRb/Vt/SXom0L1zhjBPn6PNUm3Gn8o5Ke4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ go redo-apenwarr ];
+2 -2
pkgs/tools/misc/quich/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "quich"; 5 - version = "3.1.0"; 5 + version = "4.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Usbac"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1n9c01q2v6g9wnmxp248yclhp8cxclnj0yyn1qrvjsn6srcpr22c"; 11 + sha256 = "sha256-4gsSjLZ7Z4ErNqe86Fy5IrzLMfvDyY18sE0yBnj9bvM="; 12 12 }; 13 13 14 14 doCheck = true;
+6 -5
pkgs/tools/misc/svtplay-dl/default.nix
··· 4 4 let 5 5 6 6 inherit (python3Packages) 7 - python pytest nose cryptography pyyaml requests mock python-dateutil setuptools; 7 + python pytest nose cryptography pyyaml requests mock requests-mock 8 + python-dateutil setuptools; 8 9 9 10 in stdenv.mkDerivation rec { 10 11 pname = "svtplay-dl"; 11 - version = "4.2"; 12 + version = "4.3"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "spaam"; 15 16 repo = "svtplay-dl"; 16 17 rev = version; 17 - sha256 = "1bsinf2r07g8c03mcw4gprl92wmysyaa81s8wyck0c6wdq3hcsnp"; 18 + sha256 = "04gmiqg6mq96fw4v1v6947i216fsf0vcnjp3ya8bbii5na91y1aa"; 18 19 }; 19 20 20 21 pythonPaths = [ cryptography pyyaml requests ]; 21 - buildInputs = [ python perl mock python-dateutil setuptools ] ++ pythonPaths; 22 + buildInputs = [ python perl python-dateutil setuptools ] ++ pythonPaths; 22 23 nativeBuildInputs = [ gitMinimal zip makeWrapper ]; 23 - checkInputs = [ nose pytest ]; 24 + checkInputs = [ nose pytest mock requests-mock ]; 24 25 25 26 postPatch = '' 26 27 substituteInPlace scripts/run-tests.sh \
+2 -2
pkgs/tools/networking/kapp/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 2 buildGoModule rec { 3 3 pname = "kapp"; 4 - version = "0.37.0"; 4 + version = "0.38.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "vmware-tanzu"; 8 8 repo = "carvel-kapp"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-SxS6KBiKc68PcRycdVDWWfXBKOJvo7GuG/0dUQGcHsg="; 10 + sha256 = "sha256-sUP+C4ynqeODAKkjUWhL1yqlzXkXydd1ENgHQw4enA4="; 11 11 }; 12 12 13 13 vendorSha256 = null;
+45
pkgs/tools/networking/stuntman/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, openssl, boost }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "stuntman"; 5 + version = "1.2.16"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jselbie"; 9 + repo = "stunserver"; 10 + rev = "cfadf9c3836d5ae63a682913de24ba085df924f3"; 11 + sha256 = "1gcx4zj44f0viddnn5klkmq0dgd29av5p06iyf9f1va4a3lk0cbg"; 12 + }; 13 + 14 + buildInputs = [ 15 + boost 16 + openssl 17 + ]; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + 22 + mkdir -p $out/bin 23 + mv stunserver $out/bin/ 24 + mv stunclient $out/bin/ 25 + 26 + runHook postInstall 27 + ''; 28 + 29 + doCheck = true; 30 + checkPhase = '' 31 + runHook preCheck 32 + 33 + ./stuntestcode 34 + 35 + runHook postCheck 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "STUNTMAN - an open source STUN server and client"; 40 + homepage = "http://www.stunprotocol.org/"; 41 + license = licenses.asl20; 42 + maintainers = with maintainers; [ mattchrist ]; 43 + platforms = platforms.unix; 44 + }; 45 + }
+7 -7
pkgs/tools/networking/v2ray/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "4.41.1"; 6 + version = "4.42.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "v2fly"; 10 10 repo = "v2ray-core"; 11 11 rev = "v${version}"; 12 - sha256 = "14zqvmf7xa4knmc57ck1ns0i0va0223qdp64qmm3q2w82dh9mnb8"; 12 + sha256 = "19xkbkzv9bgj68kmvrxsdqzx40vlyvzl8nn2n19hwwmkrazqgf04"; 13 13 }; 14 14 15 - vendorSha256 = "sha256-K8gFF9TbhVgNOySz7nhPFIdSNWNYKUyFD0LIk6acnkc="; 15 + vendorSha256 = "sha256-N1DYV0zSzCepkRMbcQUHqjITvmGahYKNn1uhL+csMSc="; 16 16 17 17 assets = { 18 18 # MIT licensed 19 19 "geoip.dat" = let 20 - geoipRev = "202107290023"; 21 - geoipSha256 = "14xgy0bsamj2k4knfs1r453yp27wq8qmjqifq63zbp4lb9v8xnjy"; 20 + geoipRev = "202109102251"; 21 + geoipSha256 = "0qh8yf0m6sna3z5i2plbgw61q08qcfcx0l1z5bmwxijagf1yb7fa"; 22 22 in fetchurl { 23 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 24 sha256 = geoipSha256; ··· 26 26 27 27 # MIT licensed 28 28 "geosite.dat" = let 29 - geositeRev = "20210727125446"; 30 - geositeSha256 = "14z1419dkbippm12z6gvwh3q1wd6x1p4sk6zp2i4qa408i1gc81c"; 29 + geositeRev = "20210910080130"; 30 + geositeSha256 = "0d6bzrs5mhca59j1w73kqw10jqkwic9ywm3jvszpd077qwh64dwn"; 31 31 in fetchurl { 32 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 33 sha256 = geositeSha256;
+3 -3
pkgs/tools/security/nuclei/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "nuclei"; 8 - version = "2.5.0"; 8 + version = "2.5.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-6mZ8XstophadNk/3zJe2n3WL4u34jjnWh9m2qrt06hw="; 14 + sha256 = "sha256-SdN8M3Mr3bywpBUwIVOIctYdkueq/0no4wlI7Ft8Uws="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-tJ9cdZloTSXoytmMJ+6S5XAKHYs16SZmbUwZdmVnDzc="; 17 + vendorSha256 = "sha256-Tz96AXGMyHNHG/3JrmZvisOEty/tDhoK1ZUngDSXOcc="; 18 18 19 19 modRoot = "./v2"; 20 20 subPackages = [
+3 -3
pkgs/tools/security/quill/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "quill"; 5 - version = "0.2.4"; 5 + version = "0.2.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dfinity"; 9 9 repo = "quill"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-rR5VgdlJy6TQBmCHuKc7nPjznbeLjCmQdUJKjY0GsNI="; 11 + sha256 = "sha256-lvINDtOG2mmz0ESxL11DQVZh3IcEiZYYMu5oN5Q9WKA="; 12 12 }; 13 13 14 14 ic = fetchFromGitHub { ··· 30 30 export OPENSSL_LIB_DIR=${openssl.out}/lib 31 31 ''; 32 32 33 - cargoSha256 = "sha256-nLNuOqShOq01gVWoRCbsvfAd7B9VClUA8Hu8/UQNILg="; 33 + cargoSha256 = "sha256-F2RMfHVFqCq9cb+9bjPWaRcQWKYIwwffWCssoQ6sSdU="; 34 34 35 35 nativeBuildInputs = [ pkg-config protobuf ]; 36 36 buildInputs = [ openssl ]
+1 -1
pkgs/tools/system/cm-rgb/default.nix
··· 54 54 homepage = "https://github.com/gfduszynski/cm-rgb"; 55 55 license = licenses.mit; 56 56 platforms = platforms.all; 57 - maintainers = with maintainers; [ danieldk ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+3 -3
pkgs/tools/system/consul-template/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "consul-template"; 5 - version = "0.26.0"; 5 + version = "0.27.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = "consul-template"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-upVCztpfT+SuuB343GEnT4KSnWul10/cItKJvUqJYo4="; 11 + sha256 = "sha256-XzsewkHaFIq1kvFDHIsnhfhtLPLFRin7YrhiZuF1+co="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-IAWuqg8zZ9/ny3ZijxGgHAJDICV09NTGxPvLLP4oLzw="; 14 + vendorSha256 = "sha256-/4ZY4YRGsUSL2e6uYPJ9tWEvXDjU5/L56yf49pUkJ2E="; 15 15 16 16 # consul-template tests depend on vault and consul services running to 17 17 # execute tests so we skip them here
+3 -3
pkgs/tools/virtualization/shipyard/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "shipyard"; 5 - version = "0.3.2"; 5 + version = "0.3.27"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "shipyard-run"; 10 10 repo = pname; 11 - sha256 = "sha256-9eGaOSmHrJlcLOvZuLaNu8D/D/rWiyFb4ztxybUP0uM="; 11 + sha256 = "sha256-VbcOoIMhY4FpfQbC2ESFaPoV9AS5DpGvid8jcQxLuEE="; 12 12 }; 13 - vendorSha256 = "sha256-tTkPFftPDNXafIjAjNg6V6e/+2S/v5Do/YyAXPaGIqA="; 13 + vendorSha256 = "sha256-YClNdtnakJJOEytTbopTXeZy218N4vHP3tQLavLgPbg="; 14 14 15 15 ldflags = [ 16 16 "-s" "-w" "-X main.version=${version}"
+18 -9
pkgs/top-level/all-packages.nix
··· 1109 1109 1110 1110 analog = callPackage ../tools/admin/analog {}; 1111 1111 1112 + android-backup-extractor = callPackage ../tools/backup/android-backup-extractor {}; 1113 + 1112 1114 android-tools = lowPrio (callPackage ../tools/misc/android-tools { 1113 1115 stdenv = if stdenv.targetPlatform.isAarch64 then gcc10Stdenv else stdenv; 1114 1116 }); ··· 9324 9326 stun = callPackage ../tools/networking/stun { }; 9325 9327 9326 9328 stunnel = callPackage ../tools/networking/stunnel { }; 9329 + 9330 + stuntman = callPackage ../tools/networking/stuntman { }; 9327 9331 9328 9332 stutter = haskell.lib.justStaticExecutables haskellPackages.stutter; 9329 9333 ··· 16243 16247 16244 16248 http-parser = callPackage ../development/libraries/http-parser { }; 16245 16249 16250 + hubble = callPackage ../applications/networking/cluster/hubble { }; 16251 + 16246 16252 hunspell = callPackage ../development/libraries/hunspell { }; 16247 16253 16248 16254 hunspellDicts = recurseIntoAttrs (callPackages ../development/libraries/hunspell/dictionaries.nix {}); ··· 19953 19959 19954 19960 prosody = callPackage ../servers/xmpp/prosody { 19955 19961 # _compat can probably be removed on next minor version after 0.10.0 19956 - lua5 = lua5_2_compat; 19957 - withExtraLibs = [ luaPackages.luadbi-sqlite3 ]; 19958 - inherit (lua52Packages) luasocket luasec luaexpat luafilesystem luabitop luaevent luadbi; 19962 + lua = lua5_2_compat; 19963 + withExtraLibs = []; 19959 19964 }; 19960 19965 19961 19966 biboumi = callPackage ../servers/xmpp/biboumi { }; ··· 27820 27825 27821 27826 neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { }; 27822 27827 27823 - vis = callPackage ../applications/editors/vis { 27824 - inherit (lua52Packages) lpeg; 27825 - }; 27828 + vis = callPackage ../applications/editors/vis { }; 27826 27829 27827 27830 viw = callPackage ../applications/editors/viw { }; 27828 27831 ··· 29043 29046 29044 29047 ecwolf = callPackage ../games/ecwolf { }; 29045 29048 29046 - eduke32 = callPackage ../games/eduke32 { }; 29049 + eduke32 = callPackage ../games/eduke32 { 29050 + inherit (darwin.apple_sdk.frameworks) AGL Cocoa GLUT OpenGL; 29051 + }; 29047 29052 29048 29053 egoboo = callPackage ../games/egoboo { }; 29049 29054 ··· 29468 29473 29469 29474 quake3hires = callPackage ../games/quake3/content/hires.nix { }; 29470 29475 29471 - quakespasm = callPackage ../games/quakespasm { }; 29476 + quakespasm = callPackage ../games/quakespasm { 29477 + inherit (darwin.apple_sdk.frameworks) Cocoa CoreAudio CoreFoundation IOKit OpenGL; 29478 + }; 29472 29479 vkquake = callPackage ../games/quakespasm/vulkan.nix { }; 29473 29480 29474 29481 ioquake3 = callPackage ../games/quake3/ioquake { }; ··· 30759 30766 30760 30767 ngspice = callPackage ../applications/science/electronics/ngspice { }; 30761 30768 30762 - openems = callPackage ../applications/science/electronics/openems { }; 30769 + openems = callPackage ../applications/science/electronics/openems { 30770 + qcsxcad = libsForQt5.qcsxcad; 30771 + }; 30763 30772 30764 30773 openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { }; 30765 30774
+32 -57
pkgs/top-level/lua-packages.nix
··· 18 18 packages = ( self: 19 19 20 20 let 21 - luaAtLeast = lib.versionAtLeast lua.luaversion; 22 - luaOlder = lib.versionOlder lua.luaversion; 23 - isLua51 = (lib.versions.majorMinor lua.version) == "5.1"; 24 - isLua52 = (lib.versions.majorMinor lua.version) == "5.2"; 25 - isLua53 = lua.luaversion == "5.3"; 26 - isLuaJIT = lib.getName lua == "luajit"; 27 21 28 - lua-setup-hook = callPackage ../development/interpreters/lua-5/setup-hook.nix { }; 29 - 30 - # Check whether a derivation provides a lua module. 31 - hasLuaModule = drv: drv ? luaModule ; 22 + # a function of lua_path / lua_cpath 23 + lua-setup-hook = callPackage ../development/interpreters/lua-5/setup-hook.nix { 24 + inherit lib; 25 + }; 32 26 33 27 callPackage = pkgs.newScope self; 34 28 35 - requiredLuaModules = drvs: with lib; let 36 - modules = filter hasLuaModule drvs; 37 - in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules)); 38 - 39 - # Convert derivation to a lua module. 40 - toLuaModule = drv: 41 - drv.overrideAttrs( oldAttrs: { 42 - # Use passthru in order to prevent rebuilds when possible. 43 - passthru = (oldAttrs.passthru or {})// { 44 - luaModule = lua; 45 - requiredLuaModules = requiredLuaModules drv.propagatedBuildInputs; 46 - }; 47 - }); 48 - 49 - 50 - platformString = 51 - if stdenv.isDarwin then "macosx" 52 - else if stdenv.isFreeBSD then "freebsd" 53 - else if stdenv.isLinux then "linux" 54 - else if stdenv.isSunOS then "solaris" 55 - else throw "unsupported platform"; 56 - 57 29 buildLuaApplication = args: buildLuarocksPackage ({namePrefix="";} // args ); 58 30 59 - buildLuarocksPackage = with pkgs.lib; makeOverridable(callPackage ../development/interpreters/lua-5/build-lua-package.nix { 60 - inherit toLuaModule; 31 + buildLuarocksPackage = lib.makeOverridable(callPackage ../development/interpreters/lua-5/build-lua-package.nix { 61 32 inherit lua; 33 + inherit (pkgs) lib; 34 + inherit (luaLib) toLuaModule; 62 35 }); 63 - in 64 - with self; { 65 36 66 - getLuaPathList = majorVersion: [ 67 - "share/lua/${majorVersion}/?.lua" 68 - "share/lua/${majorVersion}/?/init.lua" 69 - ]; 70 - getLuaCPathList = majorVersion: [ 71 - "lib/lua/${majorVersion}/?.so" 72 - ]; 73 - 74 - # helper functions for dealing with LUA_PATH and LUA_CPATH 75 - getPath = drv: pathListForVersion: 76 - lib.concatMapStringsSep ";" (path: "${drv}/${path}") (pathListForVersion lua.luaversion); 77 - getLuaPath = drv: getPath drv getLuaPathList; 78 - getLuaCPath = drv: getPath drv getLuaCPathList; 37 + luaLib = import ../development/lua-modules/lib.nix { 38 + inherit (pkgs) lib; 39 + inherit pkgs lua; 40 + }; 79 41 80 42 #define build lua package function 81 43 buildLuaPackage = callPackage ../development/lua-modules/generic { 82 - inherit lua writeText; 44 + inherit writeText; 83 45 }; 84 46 47 + getPath = drv: pathListForVersion: 48 + lib.concatMapStringsSep ";" (path: "${drv}/${path}") pathListForVersion; 85 49 86 - inherit toLuaModule hasLuaModule lua-setup-hook; 87 - inherit buildLuarocksPackage buildLuaApplication; 88 - inherit requiredLuaModules luaOlder luaAtLeast 89 - isLua51 isLua52 isLua53 isLuaJIT lua callPackage; 50 + in 51 + { 52 + # helper functions for dealing with LUA_PATH and LUA_CPATH 53 + lib = luaLib; 54 + 55 + getLuaPath = drv: luaLib.getPath drv (luaLib.luaPathList lua.luaversion) ; 56 + getLuaCPath = drv: luaLib.getPath drv (luaLib.luaCPathList lua.luaversion) ; 57 + 58 + 59 + inherit lua lua-setup-hook callPackage; 60 + inherit buildLuaPackage buildLuarocksPackage buildLuaApplication; 61 + inherit (luaLib) luaOlder luaAtLeast isLua51 isLua52 isLua53 isLuaJIT 62 + requiredLuaModules toLuaModule hasLuaModule; 90 63 91 64 # wraps programs in $out/bin with valid LUA_PATH/LUA_CPATH 92 65 wrapLua = callPackage ../development/interpreters/lua-5/wrap-lua.nix { 93 - inherit lua; inherit (pkgs) makeSetupHook makeWrapper; 66 + inherit lua lib; 67 + inherit (pkgs) makeSetupHook makeWrapper; 94 68 }; 95 69 96 70 luarocks = callPackage ../development/tools/misc/luarocks { 97 - inherit lua; 71 + inherit lua lib; 98 72 }; 99 73 74 + # a fork of luarocks used to generate nix lua derivations from rockspecs 100 75 luarocks-nix = callPackage ../development/tools/misc/luarocks/luarocks-nix.nix { }; 101 76 102 77 luxio = buildLuaPackage { ··· 132 107 }; 133 108 }; 134 109 135 - vicious = toLuaModule(stdenv.mkDerivation rec { 110 + vicious = luaLib.toLuaModule( stdenv.mkDerivation rec { 136 111 pname = "vicious"; 137 112 version = "2.5.0"; 138 113
+2
pkgs/top-level/python-packages.nix
··· 2728 2728 2729 2729 flux-led = callPackage ../development/python-modules/flux-led { }; 2730 2730 2731 + flynt = callPackage ../development/python-modules/flynt { }; 2732 + 2731 2733 fn = callPackage ../development/python-modules/fn { }; 2732 2734 2733 2735 fnvhash = callPackage ../development/python-modules/fnvhash { };