Merge master into staging-next

Changed files
+2355 -2899
nixos
modules
profiles
programs
services
monitoring
prometheus
tasks
filesystems
tests
pkgs
applications
misc
stork
networking
browsers
cluster
minikube
nomad
terragrunt
davmail
seafile-client
science
astronomy
siril
window-managers
development
compilers
mono
interpreters
libraries
geos
libunique
xgboost
python-modules
ansible
ansible-lint
hickle
jxmlease
karton-config-extractor
mail-parser
pwntools
pynetbox
python-telegram-bot
pyxb
sentry-sdk
ttp
xgboost
yangson
misc
vscode-extensions
wakatime
os-specific
linux
rtl8192eu
servers
tools
admin
ansible
archivers
xarchiver
misc
bat
gparted
topgrade
top-level
+3
nixos/modules/profiles/all-hardware.nix
···
# drives.
"uas"
+
# SD cards.
+
"sdhci_pci"
+
# Firewire support. Not tested.
"ohci1394" "sbp2"
+6 -2
nixos/modules/programs/sway.nix
···
extraOptions = cfg.extraOptions;
withBaseWrapper = cfg.wrapperFeatures.base;
withGtkWrapper = cfg.wrapperFeatures.gtk;
+
isNixOS = true;
};
in {
options.programs.sway = {
···
systemPackages = [ swayPackage ] ++ cfg.extraPackages;
etc = {
"sway/config".source = mkOptionDefault "${swayPackage}/etc/sway/config";
-
#"sway/security.d".source = mkOptionDefault "${swayPackage}/etc/sway/security.d/";
-
#"sway/config.d".source = mkOptionDefault "${swayPackage}/etc/sway/config.d/";
+
"sway/config.d/nixos.conf".source = pkgs.writeText "nixos.conf" ''
+
# Import the most important environment variables into the D-Bus and systemd
+
# user environments (e.g. required for screen sharing and Pinentry prompts):
+
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
+
'';
};
};
security.pam.services.swaylock = {};
+6 -6
nixos/modules/services/monitoring/prometheus/exporters/bind.nix
···
serviceConfig = {
ExecStart = ''
${pkgs.prometheus-bind-exporter}/bin/bind_exporter \
-
-web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
-
-bind.pid-file /var/run/named/named.pid \
-
-bind.timeout ${toString cfg.bindTimeout} \
-
-bind.stats-url ${cfg.bindURI} \
-
-bind.stats-version ${cfg.bindVersion} \
-
-bind.stats-groups ${concatStringsSep "," cfg.bindGroups} \
+
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
+
--bind.pid-file /var/run/named/named.pid \
+
--bind.timeout ${toString cfg.bindTimeout} \
+
--bind.stats-url ${cfg.bindURI} \
+
--bind.stats-version ${cfg.bindVersion} \
+
--bind.stats-groups ${concatStringsSep "," cfg.bindGroups} \
${concatStringsSep " \\\n " cfg.extraFlags}
'';
};
+9 -9
nixos/modules/services/monitoring/prometheus/exporters/collectd.nix
···
};
logFormat = mkOption {
-
type = types.str;
-
default = "logger:stderr";
-
example = "logger:syslog?appname=bob&local=7 or logger:stdout?json=true";
+
type = types.enum [ "logfmt" "json" ];
+
default = "logfmt";
+
example = "json";
description = ''
-
Set the log target and format.
+
Set the log format.
'';
};
···
};
serviceOpts = let
collectSettingsArgs = if (cfg.collectdBinary.enable) then ''
-
-collectd.listen-address ${cfg.collectdBinary.listenAddress}:${toString cfg.collectdBinary.port} \
-
-collectd.security-level ${cfg.collectdBinary.securityLevel} \
+
--collectd.listen-address ${cfg.collectdBinary.listenAddress}:${toString cfg.collectdBinary.port} \
+
--collectd.security-level ${cfg.collectdBinary.securityLevel} \
'' else "";
in {
serviceConfig = {
ExecStart = ''
${pkgs.prometheus-collectd-exporter}/bin/collectd_exporter \
-
-log.format ${escapeShellArg cfg.logFormat} \
-
-log.level ${cfg.logLevel} \
-
-web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
+
--log.format ${escapeShellArg cfg.logFormat} \
+
--log.level ${cfg.logLevel} \
+
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} \
${collectSettingsArgs} \
${concatStringsSep " \\\n " cfg.extraFlags}
'';
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/rspamd.nix
···
generateConfig = extraLabels: {
metrics = (map (path: {
name = "rspamd_${replaceStrings [ "." " " ] [ "_" "_" ] path}";
-
path = "$.${path}";
+
path = "{ .${path} }";
labels = extraLabels;
}) [
"actions.'add header'"
+1
nixos/modules/tasks/filesystems/zfs.nix
···
readOnly = true;
type = types.package;
default = if config.boot.zfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs;
+
defaultText = "if config.boot.zfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs";
description = "Configured ZFS userland tools package.";
};
+4 -4
nixos/tests/prometheus-exporters.nix
···
url = "http://localhost";
configFile = pkgs.writeText "json-exporter-conf.json" (builtins.toJSON {
metrics = [
-
{ name = "json_test_metric"; path = "$.test"; }
+
{ name = "json_test_metric"; path = "{ .test }"; }
];
});
};
···
};
metricProvider = {
systemd.services.prometheus-lnd-exporter.serviceConfig.DynamicUser = false;
-
services.bitcoind.enable = true;
-
services.bitcoind.extraConfig = ''
+
services.bitcoind.main.enable = true;
+
services.bitcoind.main.extraConfig = ''
rpcauth=bitcoinrpc:e8fe33f797e698ac258c16c8d7aadfbe$872bdb8f4d787367c26bcfd75e6c23c4f19d44a69f5d1ad329e5adf3f82710f7
bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332
bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333
···
# Note: this does not connect the test environment to the Tor network.
# Client, relay, bridge or exit connectivity are disabled by default.
services.tor.enable = true;
-
services.tor.controlPort = 9051;
+
services.tor.settings.ControlPort = 9051;
};
exporterTest = ''
wait_for_unit("tor.service")
+14 -2
nixos/tests/signal-desktop.nix
···
{
name = "signal-desktop";
meta = with pkgs.lib.maintainers; {
-
maintainers = [ flokli ];
+
maintainers = [ flokli primeos ];
};
machine = { ... }:
···
services.xserver.enable = true;
test-support.displayManager.auto.user = "alice";
-
environment.systemPackages = [ pkgs.signal-desktop ];
+
environment.systemPackages = with pkgs; [ signal-desktop file ];
virtualisation.memorySize = 1024;
};
···
machine.wait_for_text("Signal")
machine.wait_for_text("File Edit View Window Help")
machine.screenshot("signal_desktop")
+
+
# Test if the database is encrypted to prevent these issues:
+
# - https://github.com/NixOS/nixpkgs/issues/108772
+
# - https://github.com/NixOS/nixpkgs/pull/117555
+
print(machine.succeed("su - alice -c 'file ~/.config/Signal/sql/db.sqlite'"))
+
# TODO: The DB should be encrypted and the following should be machine.fail
+
# instead of machine.succeed but the DB is currently unencrypted and we
+
# want to notice if this isn't the case anymore as the transition to a
+
# encrypted DB can cause data loss!:
+
machine.succeed(
+
"su - alice -c 'file ~/.config/Signal/sql/db.sqlite' | grep -i sqlite"
+
)
'';
})
+3 -3
pkgs/applications/misc/stork/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "stork";
-
version = "1.2.0";
+
version = "1.2.1";
src = fetchFromGitHub {
owner = "jameslittle230";
repo = "stork";
rev = "v${version}";
-
sha256 = "sha256-gPrXeS7XT38Dil/EBwmeKIJrmPlEK+hmiyHi4p28tl0=";
+
sha256 = "sha256-rox8X+lYiiCXO66JemW+R2I6y/IxdK6qpaiFXYoL6nY=";
};
-
cargoSha256 = "sha256-9YKCtryb9mTPz9iWE7Iuk2SKgV0knWRbaouF+1DCjv8=";
+
cargoSha256 = "sha256-ujmBAld6DCc1l+yUu9qhRF8pS5HoIlstcdPTeTAyyXs=";
nativeBuildInputs = [ pkg-config ];
+5 -5
pkgs/applications/networking/browsers/chromium/upstream-info.json
···
}
},
"ungoogled-chromium": {
-
"version": "90.0.4430.93",
-
"sha256": "0zimr975vp0v12zz1nqjwag3f0q147wrmdhpzgi4yf089rgwfbjk",
-
"sha256bin64": "1vifcrrfv69i0q7qnnml43xr0c20bi22hfw6lygq3k2x70zdzgl6",
+
"version": "90.0.4430.212",
+
"sha256": "17nmhrkl81qqvzbh861k2mmifncx4wg1mv1fmn52f8gzn461vqdb",
+
"sha256bin64": "1y33c5829s22yfj0qmsj8fpcxnjhcm3fsxz7744csfsa9cy4fjr7",
"deps": {
"gn": {
"version": "2021-02-09",
···
"sha256": "1941bzg37c4dpsk3sh6ga3696gpq6vjzpcw9rsnf6kdr9mcgdxvn"
},
"ungoogled-patches": {
-
"rev": "90.0.4430.93-1",
-
"sha256": "11adnd96iwkkri3yyzvxsq43gqsc12fvd87rvqqflj0irrdk98a0"
+
"rev": "90.0.4430.212-1",
+
"sha256": "05jh05a4g50ws7pr18dl5pwi95knygh6xywp7kyydir7wy1pbin8"
}
}
}
+5 -4
pkgs/applications/networking/cluster/minikube/default.nix
···
-
{ lib, stdenv
+
{ lib
+
, stdenv
, buildGoModule
, fetchFromGitHub
, go-bindata
···
buildGoModule rec {
pname = "minikube";
-
version = "1.19.0";
+
version = "1.20.0";
-
vendorSha256 = "sha256-WGW2uz3YJIUjLsYQ6rXNvgJGLrZSIkEEk07llLzMVXA=";
+
vendorSha256 = "sha256-ncgf2C4PZMoVMZIMDn9LwP2EDqg7T/WbUPRd/SqGGnU=";
doCheck = false;
···
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
-
sha256 = "sha256-F+nPSWX9gs/hvOR6g8MW4b+JW+w3ScDaaF/FLHbLspY=";
+
sha256 = "sha256-TnvbO8OLjnI5WGy3QR4OZbesOBat2VsL7ElCnj2Tkmk=";
};
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
+2 -2
pkgs/applications/networking/cluster/nomad/0.12.nix
···
callPackage ./generic.nix {
inherit buildGoPackage nvidia_x11 nvidiaGpuSupport;
-
version = "0.12.10";
-
sha256 = "12hlzjkay7y1502nmfvq2qkhp9pq7vp4zxypawnh98qvxbzv149l";
+
version = "0.12.12";
+
sha256 = "0hz5fsqv8jh22zhs0r1yk0c4qf4sf11hmqg4db91kp2xrq72a0qg";
}
+2 -2
pkgs/applications/networking/cluster/nomad/1.0.nix
···
callPackage ./generic.nix {
inherit buildGoPackage nvidia_x11 nvidiaGpuSupport;
-
version = "1.0.4";
-
sha256 = "0znaxz9mzbqb59p6rwa5h89m344m2ci39jsx8dfh1v5fc17r0fcq";
+
version = "1.0.5";
+
sha256 = "06l56fi4fhplvl8v0i88q18yh1hwwd12fngnrflb91janbyk6p4l";
}
+2 -2
pkgs/applications/networking/cluster/terragrunt/default.nix
···
buildGoModule rec {
pname = "terragrunt";
-
version = "0.29.1";
+
version = "0.29.2";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-fr33DRFZrUZQELYMf8z5ShOZobwylgoiW+yi6qdtFP4=";
+
sha256 = "sha256-e4DwMphX8I37MShMt5nnoizfL919mJaFCkDGNeGXHbQ=";
};
vendorSha256 = "sha256-qlSCQtiGHmlk3DyETMoQbbSYhuUSZTsvAnBKuDJI8x8=";
+6 -4
pkgs/applications/networking/davmail/default.nix
···
stdenv.mkDerivation rec {
pname = "davmail";
-
version = "5.4.0";
+
version = "5.5.1";
src = fetchurl {
-
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}-3135.zip";
-
sha256 = "05n2j5canh046744arvni6yfdsandvjkld93w3p7rg116jrh19gq";
+
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}-3299.zip";
+
sha256 = "sha256-NN/TUOcUIifNzrJnZmtYhs6UVktjlfoOYJjYaMEQpI4=";
};
sourceRoot = ".";
···
nativeBuildInputs = [ makeWrapper unzip ];
installPhase = ''
+
runHook preInstall
mkdir -p $out/share/davmail
cp -vR ./* $out/share/davmail
makeWrapper $out/share/davmail/davmail $out/bin/davmail \
--prefix PATH : ${jre}/bin \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ glib gtk2 libXtst ]}
+
runHook postInstall
'';
meta = with lib; {
···
description = "A Java application which presents a Microsoft Exchange server as local CALDAV, IMAP and SMTP servers";
maintainers = [ maintainers.hinton ];
platforms = platforms.all;
-
license = licenses.gpl2;
+
license = licenses.gpl2Plus;
};
}
+11 -2
pkgs/applications/networking/seafile-client/default.nix
···
-
{ mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, qtbase, qttools
+
{ mkDerivation, lib, fetchFromGitHub, fetchpatch, pkg-config, cmake, qtbase, qttools
, seafile-shared, jansson, libsearpc
, withShibboleth ? true, qtwebengine }:
···
sha256 = "2vV+6ZXjVg81JVLfWeD0UK+RdmpBxBU2Ozx790WFSyw=";
};
+
patches = [
+
# Fix compilation failure with "error: template with C linkage", fixes #122505
+
(fetchpatch {
+
url = "https://aur.archlinux.org/cgit/aur.git/plain/fix_build_with_glib2.diff?h=seafile-client&id=7be253aaa2bdb6771721f45aa08bc875c8001c5a";
+
name = "fix_build_with_glib2.diff";
+
sha256 = "0hl7rcqfr8k62c1pr133bp3j63b905izaaggmgvr1af4jibal05v";
+
})
+
];
+
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ]
++ lib.optional withShibboleth qtwebengine;
···
description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage";
license = licenses.asl20;
platforms = platforms.linux;
-
maintainers = with maintainers; [ ];
+
maintainers = with maintainers; [ eduardosm ];
};
}
+10 -2
pkgs/applications/science/astronomy/siril/default.nix
···
-
{ lib, stdenv, fetchFromGitLab, pkg-config, meson, ninja, wrapGAppsHook
+
{ lib, stdenv, fetchFromGitLab, fetchpatch, pkg-config, meson, ninja
, git, criterion, gtk3, libconfig, gnuplot, opencv, json-glib
, fftwFloat, cfitsio, gsl, exiv2, librtprocess, wcslib, ffmpeg
-
, libraw, libtiff, libpng, libjpeg, libheif, ffms
+
, libraw, libtiff, libpng, libjpeg, libheif, ffms, wrapGAppsHook
}:
stdenv.mkDerivation rec {
···
rev = version;
sha256 = "0h3slgpj6zdc0rwmyr9zb0vgf53283hpwb7h26skdswmggsk90i5";
};
+
+
patches = [
+
# Backport fix for broken build on glib-2.68
+
(fetchpatch {
+
url = "https://gitlab.com/free-astro/siril/-/commit/d319fceca5b00f156e1c5e3512d3ac1f41beb16a.diff";
+
sha256 = "00lq9wq8z48ly3hmkgzfqbdjaxr0hzyl2qwbj45bdnxfwqragh5m";
+
})
+
];
nativeBuildInputs = [
meson ninja pkg-config git criterion wrapGAppsHook
+6
pkgs/applications/window-managers/sway/default.nix
···
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
, wlroots, wayland-protocols, libdrm
, nixosTests
+
# Used by the NixOS module:
+
, isNixOS ? false
}:
stdenv.mkDerivation rec {
···
inherit swaybg;
})
];
+
+
postPatch = lib.optionalString isNixOS ''
+
echo -e '\ninclude /etc/sway/config.d/*' >> config.in
+
'';
nativeBuildInputs = [
meson ninja pkg-config wayland scdoc
+8 -5
pkgs/applications/window-managers/sway/wrapper.nix
···
, withBaseWrapper ? true, extraSessionCommands ? "", dbus
, withGtkWrapper ? false, wrapGAppsHook, gdk-pixbuf, glib, gtk3
, extraOptions ? [] # E.g.: [ "--verbose" ]
+
# Used by the NixOS module:
+
, isNixOS ? false
}:
assert extraSessionCommands != "" -> withBaseWrapper;
···
with lib;
let
+
sway = sway-unwrapped.override { inherit isNixOS; };
baseWrapper = writeShellScriptBin "sway" ''
set -o errexit
if [ ! "$_SWAY_WRAPPER_ALREADY_EXECUTED" ]; then
···
fi
if [ "$DBUS_SESSION_BUS_ADDRESS" ]; then
export DBUS_SESSION_BUS_ADDRESS
-
exec ${sway-unwrapped}/bin/sway "$@"
+
exec ${sway}/bin/sway "$@"
else
-
exec ${dbus}/bin/dbus-run-session ${sway-unwrapped}/bin/sway "$@"
+
exec ${dbus}/bin/dbus-run-session ${sway}/bin/sway "$@"
fi
'';
in symlinkJoin {
-
name = "sway-${sway-unwrapped.version}";
+
name = "sway-${sway.version}";
paths = (optional withBaseWrapper baseWrapper)
-
++ [ sway-unwrapped ];
+
++ [ sway ];
nativeBuildInputs = [ makeWrapper ]
++ (optional withGtkWrapper wrapGAppsHook);
···
passthru.providedSessions = [ "sway" ];
-
inherit (sway-unwrapped) meta;
+
inherit (sway) meta;
}
+2 -2
pkgs/development/compilers/mono/5.nix
···
callPackage ./generic.nix ({
inherit Foundation libobjc;
-
version = "5.20.1.27";
-
sha256 = "15rpwxw642ad1na93k5nj7d2lb24f21kncr924gxr00178a9x0jy";
+
version = "5.20.1.34";
+
sha256 = "12vw5dkhmp1vk9l658pil8jiqirkpdsc5z8dm5mpj595yr6d94fd";
enableParallelBuilding = true;
})
+8
pkgs/development/interpreters/erlang/R24.nix
···
+
{ mkDerivation }:
+
+
# How to obtain `sha256`:
+
# nix-prefetch-url --unpack https://github.com/erlang/otp/archive/OTP-${version}.tar.gz
+
mkDerivation {
+
version = "24.0";
+
sha256 = "0p4p920ncsvls9q3czdc7wz2p7m15bi3nr4306hqddnxz1kxcm4w";
+
}
+2 -1
pkgs/development/interpreters/erlang/generic-builder.nix
···
./otp_build autoconf
'';
-
configureFlags = [ "--with-ssl=${lib.getDev opensslPackage}" ]
+
configureFlags = [ "--with-ssl=${lib.getOutput "out" opensslPackage}" ]
+
++ [ "--with-ssl-incl=${lib.getDev opensslPackage}" ] # This flag was introduced in R24
++ optional enableThreads "--enable-threads"
++ optional enableSmpSupport "--enable-smp-support"
++ optional enableKernelPoll "--enable-kernel-poll"
+1 -3
pkgs/development/libraries/geos/default.nix
···
-
{ lib, stdenv, fetchurl, python }:
+
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "geos";
···
};
enableParallelBuilding = true;
-
-
buildInputs = [ python ];
# https://trac.osgeo.org/geos/ticket/993
configureFlags = lib.optional stdenv.isAarch32 "--disable-inline";
+5 -3
pkgs/development/libraries/libunique/default.nix
···
sha256 = "1fsgvmncd9caw552lyfg8swmsd6bh4ijjsph69bwacwfxwf09j75";
};
+
# Don't make deprecated usages hard errors
+
prePatch = ''
+
substituteInPlace configure --replace "-Werror" "";
+
'';
+
# glib-2.62 deprecations
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
···
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib gtk2 dbus-glib ];
-
-
# Don't make deprecated usages hard errors
-
preBuild = ''substituteInPlace unique/dbus/Makefile --replace -Werror ""'';
doCheck = true;
+27 -13
pkgs/development/libraries/xgboost/default.nix
···
-
{ config, stdenv, lib, fetchgit, cmake
-
, cudaSupport ? config.cudaSupport or false, cudatoolkit
-
, ncclSupport ? false, nccl
+
{ config
+
, stdenv
+
, lib
+
, fetchFromGitHub
+
, cmake
+
, gtest
+
, doCheck ? true
+
, cudaSupport ? config.cudaSupport or false
+
, cudatoolkit
+
, ncclSupport ? false
+
, nccl
, llvmPackages
}:
···
stdenv.mkDerivation rec {
pname = "xgboost";
-
version = "0.90";
+
version = "1.4.1";
-
# needs submodules
-
src = fetchgit {
-
url = "https://github.com/dmlc/xgboost";
-
rev = "refs/tags/v${version}";
-
sha256 = "1zs15k9crkiq7bnr4gqq53mkn3w8z9dq4nwlavmfcr5xr5gw2pw4";
+
src = fetchFromGitHub {
+
owner = "dmlc";
+
repo = pname;
+
rev = "v${version}";
+
fetchSubmodules = true;
+
sha256 = "12b1417dg8jqyxd72kg5a3xhg5h11vz0k7bkv72mzrv83jvgn5ci";
};
nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.isDarwin llvmPackages.openmp;
-
buildInputs = lib.optional cudaSupport cudatoolkit
+
buildInputs = [ gtest ] ++ lib.optional cudaSupport cudatoolkit
++ lib.optional ncclSupport nccl;
-
cmakeFlags = lib.optionals cudaSupport [ "-DUSE_CUDA=ON" "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc" ]
-
++ lib.optional ncclSupport "-DUSE_NCCL=ON";
+
cmakeFlags = lib.optionals doCheck [ "-DGOOGLE_TEST=ON" ]
+
++ lib.optionals cudaSupport [ "-DUSE_CUDA=ON" "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc" ]
+
++ lib.optionals ncclSupport [ "-DUSE_NCCL=ON" ];
+
+
inherit doCheck;
installPhase = let
libname = "libxgboost${stdenv.hostPlatform.extensions.sharedLibrary}";
in ''
+
runHook preInstall
mkdir -p $out
cp -r ../include $out
install -Dm755 ../lib/${libname} $out/lib/${libname}
install -Dm755 ../xgboost $out/bin/xgboost
+
runHook postInstall
'';
meta = with lib; {
description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library";
homepage = "https://github.com/dmlc/xgboost";
license = licenses.asl20;
-
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
+
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
};
}
+45 -30
pkgs/development/python-modules/ansible-lint/default.nix
···
{ lib
-
, stdenv
-
, fetchPypi
, buildPythonPackage
, isPy27
+
, fetchPypi
+
, python
, ansible
+
, enrich
+
, flaky
, pyyaml
+
, rich
, ruamel-yaml
-
, rich
+
, tenacity
+
, wcmatch
+
, yamllint
+
, pytest-xdist
, pytestCheckHook
-
, pytest-xdist
-
, git
-
, wcmatch
-
, enrich
-
, python
}:
buildPythonPackage rec {
pname = "ansible-lint";
-
version = "5.0.2";
+
version = "5.0.8";
disabled = isPy27;
format = "pyproject";
src = fetchPypi {
inherit pname version;
-
sha256 = "sha256-vgt/KqNozTPaON/I19SybBZuo7bbl3Duq5dTBTMlj44=";
+
sha256 = "sha256-tnuWKEB66bwVuwu3H3mHG99ZP+/msGhMDMRL5fyQgD8=";
};
+
buildInputs = [ python ];
+
+
propagatedBuildInputs = [
+
ansible
+
enrich
+
flaky
+
pyyaml
+
rich
+
ruamel-yaml
+
tenacity
+
wcmatch
+
yamllint
+
];
+
+
checkInputs = [
+
pytest-xdist
+
pytestCheckHook
+
];
+
+
pytestFlagsArray = [
+
"--numprocesses" "auto"
+
];
+
postPatch = ''
+
# Both patches are addressed in https://github.com/ansible-community/ansible-lint/pull/1549
+
# and should be removed once merged upstream
+
+
# fixes test_get_yaml_files_umlaut and test_run_inside_role_dir
substituteInPlace src/ansiblelint/file_utils.py \
-
--replace 'raise RuntimeError("Unable to determine file type for %s" % pathex)' 'return "playbook"'
+
--replace 'os.path.join(root, name)' 'os.path.normpath(os.path.join(root, name))'
+
# fixes test_custom_kinds
+
substituteInPlace src/ansiblelint/file_utils.py \
+
--replace "if name.endswith('.yaml') or name.endswith('.yml')" ""
'';
-
buildInputs = [ python ];
-
-
propagatedBuildInputs = [ ansible enrich pyyaml rich ruamel-yaml wcmatch ];
-
-
checkInputs = [ pytestCheckHook pytest-xdist git ];
-
preCheck = ''
# ansible wants to write to $HOME and crashes if it can't
export HOME=$(mktemp -d)
···
export PATH=$PATH:$PWD/src/ansiblelint
ln -rs src/ansiblelint/__main__.py src/ansiblelint/ansible-lint
patchShebangs src/ansiblelint/__main__.py
+
+
# create symlink like in the git repo so test_included_tasks does not fail
+
ln -s ../roles examples/playbooks/roles
'';
disabledTests = [
# requires network
"test_prerun_reqs_v1"
"test_prerun_reqs_v2"
-
# Assertion error with negative numbers; maybe requieres an ansible update?
-
"test_negative"
-
"test_example"
-
"test_playbook"
-
"test_included_tasks"
-
"test_long_line"
-
-
"test_get_yaml_files_umlaut"
-
"test_run_inside_role_dir"
-
"test_role_handler_positive"
];
-
-
# fails to run tests due to issues with temporary directory
-
doCheck = !stdenv.isDarwin;
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible ]}" ];
+78
pkgs/development/python-modules/ansible/base.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, installShellFiles
+
, ansible-collections
+
, cryptography
+
, jinja2
+
, junit-xml
+
, lxml
+
, ncclient
+
, packaging
+
, paramiko
+
, pexpect
+
, psutil
+
, pycrypto
+
, pyyaml
+
, requests
+
, scp
+
, windowsSupport ? false, pywinrm
+
, xmltodict
+
}:
+
+
buildPythonPackage rec {
+
pname = "ansible-base";
+
version = "2.10.9";
+
+
src = fetchPypi {
+
inherit pname version;
+
sha256 = "0l91bwbavjnaqsnb4c6f17xl7r0cvglz3rxqfs63aagw10z5sqq4";
+
};
+
+
# ansible_connection is already wrapped, so don't pass it through
+
# the python interpreter again, as it would break execution of
+
# connection plugins.
+
postPatch = ''
+
substituteInPlace lib/ansible/executor/task_executor.py \
+
--replace "[python," "["
+
'';
+
+
nativeBuildInputs = [
+
installShellFiles
+
];
+
+
propagatedBuildInputs = [
+
# depend on ansible-collections instead of the other way around
+
ansible-collections
+
# from requirements.txt
+
cryptography
+
jinja2
+
packaging
+
pyyaml
+
# optional dependencies
+
junit-xml
+
lxml
+
ncclient
+
paramiko
+
pexpect
+
psutil
+
pycrypto
+
requests
+
scp
+
xmltodict
+
] ++ lib.optional windowsSupport pywinrm;
+
+
postInstall = ''
+
installManPage docs/man/man1/*.1
+
'';
+
+
# internal import errors, missing dependencies
+
doCheck = false;
+
+
meta = with lib; {
+
description = "Radically simple IT automation";
+
homepage = "https://www.ansible.com";
+
license = licenses.gpl3Plus;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+77
pkgs/development/python-modules/ansible/collections.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, ansible-base
+
, jsonschema
+
, jxmlease
+
, ncclient
+
, netaddr
+
, paramiko
+
, pynetbox
+
, scp
+
, textfsm
+
, ttp
+
, xmltodict
+
, withJunos ? false
+
, withNetbox ? false
+
}:
+
+
buildPythonPackage rec {
+
pname = "ansible";
+
version = "3.4.0";
+
format = "setuptools";
+
+
src = fetchPypi {
+
inherit pname version;
+
sha256 = "096rbgz730njk0pg8qnc27mmz110wqrw354ca9gasb7rqg0f4d6a";
+
};
+
+
postPatch = ''
+
# make ansible-base depend on ansible-collection, not the other way around
+
sed -i '/ansible-base/d' setup.py
+
'';
+
+
propagatedBuildInputs = lib.unique ([
+
# Support ansible collections by default, make all others optional
+
# ansible.netcommon
+
jxmlease
+
ncclient
+
netaddr
+
paramiko
+
xmltodict
+
# ansible.posix
+
# ansible.utils
+
jsonschema
+
textfsm
+
ttp
+
xmltodict
+
# ansible.windows
+
+
# lots of collections with dedicated requirements.txt and pyproject.toml files,
+
# add the dependencies for the collections you need conditionally and install
+
# ansible using overrides to enable the collections you need.
+
] ++ lib.optionals (withJunos) [
+
# ansible_collections/junipernetworks/junos/requirements.txt
+
jxmlease
+
ncclient
+
paramiko
+
scp
+
xmltodict
+
] ++ lib.optionals (withNetbox) [
+
# ansible_collections/netbox/netbox/pyproject.toml
+
pynetbox
+
]);
+
+
# don't try and fail to strip 48000+ non strippable files, it takes >5 minutes!
+
dontStrip = true;
+
+
# difficult to test
+
doCheck = false;
+
+
meta = with lib; {
+
description = "Radically simple IT automation";
+
homepage = "Radically simple IT automation";
+
license = licenses.gpl3Plus;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+2 -2
pkgs/development/python-modules/ansible/default.nix pkgs/development/python-modules/ansible/legacy.nix
···
buildPythonPackage rec {
pname = "ansible";
-
version = "2.9.12";
+
version = "2.9.21";
src = fetchFromGitHub {
owner = "ansible";
repo = "ansible";
rev = "v${version}";
-
sha256 = "0c794k0cyl54807sh9in0l942ah6g6wlz5kf3qvy5lhd581zlgyb";
+
sha256 = "1pfiwq2wfw11vmxdq2yhk86hm5jljlrnphlzfjr01kwzfikkdp5m";
};
prePatch = ''
+2
pkgs/development/python-modules/hickle/default.nix
···
pythonImportsCheck = [ "hickle" ];
meta = {
+
# incompatible with h5py>=3.0, see https://github.com/telegraphic/hickle/issues/143
+
broken = true;
description = "Serialize Python data to HDF5";
homepage = "https://github.com/telegraphic/hickle";
license = lib.licenses.mit;
+33
pkgs/development/python-modules/jxmlease/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, lxml
+
, python
+
}:
+
+
buildPythonPackage rec {
+
pname = "jxmlease";
+
version = "1.0.3";
+
+
src = fetchPypi {
+
inherit pname version;
+
sha256 = "17l3w3ak07p72s8kv8hg0ilxs0kkxjn7bfwnl3g2cw58v1siab31";
+
};
+
+
propagatedBuildInputs = [
+
lxml
+
];
+
+
checkPhase = ''
+
runHook preCheck
+
${python.interpreter} -m unittest discover -v
+
runHook postCheck
+
'';
+
+
meta = with lib; {
+
description = "Converts between XML and intelligent Python data structures";
+
homepage = "https://github.com/Juniper/jxmlease";
+
license = licenses.mit;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+2 -4
pkgs/development/python-modules/karton-config-extractor/default.nix
···
buildPythonPackage rec {
pname = "karton-config-extractor";
-
version = "1.1.1";
+
version = "2.0.0";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
-
sha256 = "14592b9vq2iza5agxr29z1mh536if7a9p9hvyjnibsrv22mzwz7l";
+
sha256 = "sha256-vijyqki2x813H2xbmz2JIXlh87J5l6NFoZcOu8xi61o=";
};
propagatedBuildInputs = [
···
];
postPatch = ''
-
substituteInPlace requirements.txt \
-
--replace "karton-core==4.2.0" "karton-core"
substituteInPlace requirements.txt \
--replace "malduck==4.1.0" "malduck"
'';
-10
pkgs/development/python-modules/mail-parser/default.nix
···
LC_ALL = "en_US.utf-8";
-
# remove version bounds
-
prePatch = ''
-
sed -i -e 's/==.*//g' requirements.txt
-
''
-
# ipaddress is part of the standard library of Python 3.3+
-
+ lib.optionalString (!pythonOlder "3.3") ''
-
substituteInPlace requirements.txt \
-
--replace "ipaddress" ""
-
'';
-
nativeBuildInputs = [ glibcLocales ];
propagatedBuildInputs = [ simplejson six ] ++ lib.optional (pythonOlder "3.3") ipaddress;
+11 -4
pkgs/development/python-modules/pwntools/default.nix
···
, installShellFiles
}:
+
let
+
debuggerName = lib.strings.getName debugger;
+
in
buildPythonPackage rec {
version = "4.3.1";
pname = "pwntools";
···
sha256 = "12ja913kz8wl4afrmpzxh9fx6j7rcwc2vqzkvfr1fxn42gkqhqf4";
};
-
# Upstream has set an upper bound on unicorn because of https://github.com/Gallopsled/pwntools/issues/1538,
-
# but since that is a niche use case and it requires extra work to get unicorn 1.0.2rc3 to work we relax
-
# the bound here. Check if this is still necessary when updating!
postPatch = ''
+
# Upstream has set an upper bound on unicorn because of https://github.com/Gallopsled/pwntools/issues/1538,
+
# but since that is a niche use case and it requires extra work to get unicorn 1.0.2rc3 to work we relax
+
# the bound here. Check if this is still necessary when updating!
sed -i 's/unicorn>=1.0.2rc1,<1.0.2rc4/unicorn>=1.0.2rc1/' setup.py
+
+
# Upstream hardcoded the check for the command `gdb-multiarch`;
+
# Forcefully use the provided debugger, as `gdb` (hence `pwndbg`) is built with multiarch in `nixpkgs`.
+
sed -i 's/gdb-multiarch/${debuggerName}/' pwnlib/gdb.py
'';
nativeBuildInputs = [
···
postFixup = ''
mkdir -p "$out/bin"
-
makeWrapper "${debugger}/bin/${lib.strings.getName debugger}" "$out/bin/pwntools-gdb"
+
makeWrapper "${debugger}/bin/${debuggerName}" "$out/bin/pwntools-gdb"
'';
meta = with lib; {
+49
pkgs/development/python-modules/pynetbox/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchFromGitHub
+
, setuptools-scm
+
, requests
+
, six
+
, pytestCheckHook
+
, pyyaml
+
}:
+
+
buildPythonPackage rec {
+
pname = "pynetbox";
+
version = "6.1.2";
+
+
src = fetchFromGitHub {
+
owner = "netbox-community";
+
repo = pname;
+
rev = "v${version}";
+
sha256 = "0di07rny3gqdfb0rf7hm3x03rpn7rydpv3lrl7cak2ccpqm0wzhl";
+
};
+
+
SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
+
nativeBuildInputs = [
+
setuptools-scm
+
];
+
+
propagatedBuildInputs = [
+
requests
+
six
+
];
+
+
checkInputs = [
+
pytestCheckHook
+
pyyaml
+
];
+
+
disabledTestPaths = [
+
# requires docker for integration test
+
"tests/integration"
+
];
+
+
meta = with lib; {
+
description = "API client library for Netbox";
+
homepage = "https://github.com/netbox-community/pynetbox";
+
license = licenses.asl20;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+2 -2
pkgs/development/python-modules/python-telegram-bot/default.nix
···
buildPythonPackage rec {
pname = "python-telegram-bot";
-
version = "13.4.1";
+
version = "13.5";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
-
sha256 = "141w3701jjl460702xddqvi3hswp24jnkl6cakvz2aqrmcyxq7sc";
+
sha256 = "sha256-g9v0zUYyf9gYu2ZV8lCAJKCt5o69s1RNo1xGmtwjvds=";
};
propagatedBuildInputs = [
+31
pkgs/development/python-modules/pyxb/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, python
+
}:
+
+
buildPythonPackage rec {
+
pname = "PyXB";
+
version = "1.2.6";
+
format = "setuptools";
+
+
src = fetchPypi {
+
inherit pname version;
+
sha256 = "1d17pyixbfvjyi2lb0cfp0ch8wwdf44mmg3r5pwqhyyqs66z601a";
+
};
+
+
pythonImportsCheck = [
+
"pyxb"
+
];
+
+
# tests don't complete
+
# https://github.com/pabigot/pyxb/issues/130
+
doCheck = false;
+
+
meta = with lib; {
+
description = "Python XML Schema Bindings";
+
homepage = "https://github.com/pabigot/pyxb";
+
license = licenses.asl20;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+2 -2
pkgs/development/python-modules/sentry-sdk/default.nix
···
buildPythonPackage rec {
pname = "sentry-sdk";
-
version = "1.0.0";
+
version = "1.1.0";
src = fetchPypi {
inherit pname version;
-
sha256 = "71de00c9711926816f750bc0f57ef2abbcb1bfbdf5378c601df7ec978f44857a";
+
sha256 = "sha256-wSJ9ONyjFbo1GCNz8SnD4nIujtmZ5SWE5qyn0oeHBzk=";
};
checkInputs = [ blinker botocore chalice django flask tornado bottle rq falcon sqlalchemy werkzeug trytond
+93
pkgs/development/python-modules/ttp/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, callPackage
+
, fetchFromGitHub
+
, cerberus
+
, configparser
+
, deepdiff
+
, geoip2
+
, jinja2
+
, openpyxl
+
, tabulate
+
, yangson
+
, pytestCheckHook
+
, pyyaml
+
}:
+
+
let
+
ttp_templates = callPackage ./templates.nix { };
+
in
+
buildPythonPackage rec {
+
pname = "ttp";
+
version = "0.6.0";
+
format = "setuptools";
+
+
src = fetchFromGitHub {
+
owner = "dmulyalin";
+
repo = pname;
+
rev = version;
+
sha256 = "08pglwmnhdrsj9rgys1zclhq1h597izb0jq7waahpdabfg25v2sw";
+
};
+
+
propagatedBuildInputs = [
+
# https://github.com/dmulyalin/ttp/blob/master/docs/source/Installation.rst#additional-dependencies
+
cerberus
+
configparser
+
deepdiff
+
geoip2
+
jinja2
+
# n2g unpackaged
+
# netmiko unpackaged
+
# nornir unpackaged
+
openpyxl
+
tabulate
+
yangson
+
];
+
+
pythonImportsCheck = [
+
"ttp"
+
];
+
+
checkInputs = [
+
pytestCheckHook
+
pyyaml
+
ttp_templates
+
];
+
+
disabledTestPaths = [
+
# missing package n2g
+
"test/pytest/test_N2G_formatter.py"
+
];
+
+
disabledTests = [
+
# data structure mismatches
+
"test_yangson_validate"
+
"test_yangson_validate_yang_lib_in_output_tag_data"
+
"test_yangson_validate_multiple_inputs_mode_per_input_with_yang_lib_in_file"
+
"test_yangson_validate_multiple_inputs_mode_per_template"
+
"test_yangson_validate_multiple_inputs_mode_per_input_with_yang_lib_in_file_to_xml"
+
"test_yangson_validate_multiple_inputs_mode_per_template_to_xml"
+
"test_adding_data_from_files"
+
"test_lookup_include_csv"
+
"test_inputs_with_template_base_path"
+
"test_group_inputs"
+
"test_inputs_url_filters_extensions"
+
# ValueError: dictionary update sequence element #0 has length 1; 2 is required
+
"test_include_attribute_with_yaml_loader"
+
# TypeError: string indices must be integers
+
"test_lookup_include_yaml"
+
# missing package n2g
+
"test_n2g_formatter"
+
];
+
+
pytestFlagsArray = [
+
"test/pytest"
+
];
+
+
meta = with lib; {
+
description = "Template Text Parser";
+
homepage = "https://github.com/dmulyalin/ttp";
+
license = licenses.mit;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+31
pkgs/development/python-modules/ttp/templates.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
}:
+
+
buildPythonPackage rec {
+
pname = "ttp-templates";
+
version = "0.1.1";
+
format = "setuptools";
+
+
src = fetchPypi {
+
pname = "ttp_templates";
+
inherit version;
+
sha256 = "0vg7k733i8jqnfz8mpq8kzr2l7b7drk29zkzik91029f6w7li007";
+
};
+
+
# drop circular dependency on ttp
+
postPatch = ''
+
substituteInPlace setup.py --replace '"ttp>=0.6.0"' ""
+
'';
+
+
# circular dependency on ttp
+
doCheck = false;
+
+
meta = with lib; {
+
description = "Template Text Parser Templates";
+
homepage = "https://github.com/dmulyalin/ttp_templates";
+
license = licenses.mit;
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+38 -14
pkgs/development/python-modules/xgboost/default.nix
···
{ buildPythonPackage
-
, pytest
-
, nose
+
, pytestCheckHook
+
, cmake
, scipy
, scikitlearn
, stdenv
···
, matplotlib
, graphviz
, datatable
+
, hypothesis
}:
buildPythonPackage {
pname = "xgboost";
inherit (xgboost) version src meta;
-
patches = [
-
(substituteAll {
-
src = ./lib-path-for-python.patch;
-
libpath = "${xgboost}/lib";
-
extention = stdenv.hostPlatform.extensions.sharedLibrary;
-
})
+
nativeBuildInputs = [ cmake ];
+
buildInputs = [ xgboost ];
+
propagatedBuildInputs = [ scipy ];
+
checkInputs = [
+
pytestCheckHook
+
scikitlearn
+
pandas
+
matplotlib
+
graphviz
+
datatable
+
hypothesis
];
-
postPatch = "cd python-package";
+
# Override existing logic for locating libxgboost.so which is not appropriate for Nix
+
prePatch = let
+
libPath = "${xgboost}/lib/libxgboost${stdenv.hostPlatform.extensions.sharedLibrary}";
+
in ''
+
echo 'find_lib_path = lambda: ["${libPath}"]' > python-package/xgboost/libpath.py
+
'';
-
propagatedBuildInputs = [ scipy ];
-
buildInputs = [ xgboost ];
-
checkInputs = [ nose pytest scikitlearn pandas matplotlib graphviz datatable ];
+
dontUseCmakeConfigure = true;
+
+
postPatch = ''
+
cd python-package
+
'';
-
checkPhase = ''
+
preCheck = ''
ln -sf ../demo .
-
nosetests ../tests/python
+
ln -s ${xgboost}/bin/xgboost ../xgboost
'';
+
+
pytestFlagsArray = ["../tests/python"];
+
disabledTestPaths = [
+
# Requires internet access: https://github.com/dmlc/xgboost/blob/03cd087da180b7dff21bd8ef34997bf747016025/tests/python/test_ranking.py#L81
+
"../tests/python/test_ranking.py"
+
];
+
disabledTests = [
+
"test_cli_binary_classification"
+
"test_model_compatibility"
+
];
+
}
-38
pkgs/development/python-modules/xgboost/lib-path-for-python.patch
···
-
diff --git a/python-package/xgboost/libpath.py b/python-package/xgboost/libpath.py
-
index d87922c0..859a30fb 100644
-
--- a/python-package/xgboost/libpath.py
-
+++ b/python-package/xgboost/libpath.py
-
@@ -19,32 +19,4 @@ def find_lib_path():
-
lib_path: list(string)
-
List of all found library path to xgboost
-
"""
-
- curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
-
- # make pythonpack hack: copy this directory one level upper for setup.py
-
- dll_path = [curr_path, os.path.join(curr_path, '../../lib/'),
-
- os.path.join(curr_path, './lib/'),
-
- os.path.join(sys.prefix, 'xgboost')]
-
- if sys.platform == 'win32':
-
- if platform.architecture()[0] == '64bit':
-
- dll_path.append(os.path.join(curr_path, '../../windows/x64/Release/'))
-
- # hack for pip installation when copy all parent source directory here
-
- dll_path.append(os.path.join(curr_path, './windows/x64/Release/'))
-
- else:
-
- dll_path.append(os.path.join(curr_path, '../../windows/Release/'))
-
- # hack for pip installation when copy all parent source directory here
-
- dll_path.append(os.path.join(curr_path, './windows/Release/'))
-
- dll_path = [os.path.join(p, 'xgboost.dll') for p in dll_path]
-
- elif sys.platform.startswith('linux') or sys.platform.startswith('freebsd'):
-
- dll_path = [os.path.join(p, 'libxgboost.so') for p in dll_path]
-
- elif sys.platform == 'darwin':
-
- dll_path = [os.path.join(p, 'libxgboost.dylib') for p in dll_path]
-
-
-
- lib_path = [p for p in dll_path if os.path.exists(p) and os.path.isfile(p)]
-
-
-
- # From github issues, most of installation errors come from machines w/o compilers
-
- if not lib_path and not os.environ.get('XGBOOST_BUILD_DOC', False):
-
- raise XGBoostLibraryNotFound(
-
- 'Cannot find XGBoost Library in the candidate path, ' +
-
- 'did you install compilers and run build.sh in root path?\n'
-
- 'List of candidates:\n' + ('\n'.join(dll_path)))
-
- return lib_path
-
+ return ["@libpath@/libxgboost@extention@"]
+44
pkgs/development/python-modules/yangson/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, setuptools-scm
+
, pyxb
+
, pytestCheckHook
+
}:
+
+
buildPythonPackage rec {
+
pname = "yangson";
+
version = "1.4.8";
+
format = "setuptools";
+
+
src = fetchPypi {
+
inherit pname version;
+
sha256 = "11w4aq0w2rnkz1axgmw003z2snd4kc49dil6kp1ajlqnfh1pcx8m";
+
};
+
+
nativeBuildInputs = [
+
setuptools-scm
+
];
+
+
propagatedBuildInputs = [
+
pyxb
+
];
+
+
checkInputs = [
+
pytestCheckHook
+
];
+
+
pythonImportsCheck = [
+
"yangson"
+
];
+
+
meta = with lib; {
+
description = "Library for working with data modelled in YANG";
+
homepage = "https://github.com/CZ-NIC/yangson";
+
license = with licenses; [
+
gpl3Plus
+
lgpl3Plus
+
];
+
maintainers = with maintainers; [ hexa ];
+
};
+
}
+2 -2
pkgs/misc/vscode-extensions/wakatime/default.nix
···
};
postPatch = ''
-
mkdir -p wakatime-master
-
cp -rt wakatime-master --no-preserve=all ${wakatime}/lib/python*/site-packages/wakatime
+
mkdir wakatime-cli
+
ln -s ${wakatime}/bin/wakatime ./wakatime-cli/wakatime-cli
'';
meta = with lib; {
+13 -10
pkgs/os-specific/linux/rtl8192eu/default.nix
···
let modDestDir = "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless/realtek/rtl8192eu";
in stdenv.mkDerivation rec {
-
name = "rtl8192eu-${kernel.version}-${version}";
-
version = "4.4.1.20200620";
+
pname = "rtl8192eu";
+
version = "${kernel.version}-4.4.1.20210403";
src = fetchFromGitHub {
owner = "Mange";
repo = "rtl8192eu-linux-driver";
-
rev = "925ac2be34dd608a7ca42daebf9713f0c1bcec74";
-
sha256 = "159vg0scq47wnn600karpgzx3naaiyl1rg8608c8d28nhm62gvjz";
+
rev = "ab35c7e9672f37d75b7559758c99f6d027607687";
+
sha256 = "sha256-sTIaye4oWNYEnNuXlrTLobaFKXzBLsfJXdJuc10EdJI=";
};
hardeningDisable = [ "pic" ];
-
nativeBuildInputs = kernel.moduleBuildDependencies;
-
-
buildInputs = [ bc ];
+
nativeBuildInputs = kernel.moduleBuildDependencies ++ [ bc ];
makeFlags = [ "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];
enableParallelBuilding = true;
installPhase = ''
+
runHook preInstall
+
mkdir -p ${modDestDir}
find . -name '*.ko' -exec cp --parents {} ${modDestDir} \;
find ${modDestDir} -name '*.ko' -exec xz -f {} \;
+
+
runHook postInstall
'';
-
meta = {
+
meta = with lib; {
description = "Realtek rtl8192eu driver";
homepage = "https://github.com/Mange/rtl8192eu-linux-driver";
-
license = lib.licenses.gpl2;
-
platforms = lib.platforms.linux;
+
license = licenses.gpl2Only;
+
platforms = platforms.linux;
+
broken = stdenv.hostPlatform.isAarch64;
maintainers = with maintainers; [ troydm ];
};
}
+2 -2
pkgs/servers/atlassian/jira.nix
···
stdenv.mkDerivation rec {
pname = "atlassian-jira";
-
version = "8.14.1";
+
version = "8.16.1";
src = fetchurl {
url = "https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-${version}.tar.gz";
-
sha256 = "sha256-AtBkGODC8x25GQENRSRiptUvDIcHGg9JnqVnDxXzmmQ=";
+
sha256 = "sha256-0J+P4E9hYPbYBb6qvtBjH1jhKrDW187+309YBHORNZA=";
};
buildPhase = ''
+3 -3
pkgs/servers/etcd/3.4.nix
···
buildGoModule rec {
pname = "etcd";
-
version = "3.4.15";
+
version = "3.4.16";
deleteVendor = true;
-
vendorSha256 = "sha256-1q5tYNDmlgHdPgL2Pn5BS8z3SwW2E3OaZkKPAtnhJZY=";
+
vendorSha256 = null;
doCheck = false;
···
owner = "etcd-io";
repo = "etcd";
rev = "v${version}";
-
sha256 = "sha256-jJC2+zv0io0ZulLVaPMrDD7qkOxGfGtFyZvJ2hTmU24=";
+
sha256 = "sha256-mTQwa9dYc0U0tjum1vR8Dbe/xLRHFUthcklA+Ye6/jw=";
};
buildPhase = ''
+2 -2
pkgs/servers/ftp/bftpd/default.nix
···
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
-
version = "5.6";
+
version = "5.7";
src = fetchurl {
url = "mirror://sourceforge/project/${pname}/${pname}/${name}/${name}.tar.gz";
-
sha256 = "18ksld775balh0yx2icj7fya9fvjkfgvwznvccdlmhi3zidg550h";
+
sha256 = "sha256-pUPOYqgJKntQZRRodcyYeFNLCdxKhT8sK1bi3jl6b0s=";
};
preConfigure = ''
+3 -3
pkgs/servers/monitoring/prometheus/artifactory-exporter.nix
···
buildGoModule rec {
pname = "artifactory_exporter";
-
version = "1.9.0";
+
version = "1.9.1";
rev = "v${version}";
src = fetchFromGitHub {
owner = "peimanja";
repo = pname;
rev = rev;
-
sha256 = "1zmkajg48i40jm624p2h03bwg7w28682yfcgk42ig3d50p8xwqc3";
+
sha256 = "1m68isplrs3zvkg0mans9bgablsif6264x3w475bpnhf68r87v1q";
};
-
vendorSha256 = "1594bpfwhbjgayf4aacs7rfjxm4cnqz8iak8kpm1xzsm1cx1il17";
+
vendorSha256 = "0acwgb0h89parkx75jp057m2hrqyd95vr2zcfqnxbnyy98gxip73";
subPackages = [ "." ];
+2 -2
pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix
···
buildGoPackage rec {
pname = "aws-s3-exporter";
-
version = "0.3.0";
+
version = "0.4.1";
goPackagePath = "github.com/ribbybibby/s3_exporter";
···
owner = "ribbybibby";
repo = "s3_exporter";
rev = "v${version}";
-
sha256 = "062qi4rfqkxwknncwcvx4g132bxhkn2bhbxi4l90wl93v6sdp9l2";
+
sha256 = "01g4k5wrbc2ggxkn4yqd2v0amw8yl5dbcfwi4jm3kqkihrf0rbiq";
};
doCheck = true;
+8 -9
pkgs/servers/monitoring/prometheus/bind-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
+
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "bind_exporter";
-
version = "20161221-${lib.strings.substring 0 7 rev}";
-
rev = "4e1717c7cd5f31c47d0c37274464cbaabdd462ba";
-
-
goPackagePath = "github.com/digitalocean/bind_exporter";
+
version = "0.4.0";
src = fetchFromGitHub {
-
inherit rev;
-
owner = "digitalocean";
+
rev = "v${version}";
+
owner = "prometheus-community";
repo = "bind_exporter";
-
sha256 = "1nd6pc1z627w4x55vd42zfhlqxxjmfsa9lyn0g6qq19k4l85v1qm";
+
sha256 = "152xi6kf1wzb7663ixv27hsdbf1x6s51fdp85zhghg1y700ln63v";
};
+
+
vendorSha256 = "172aqrckkhlyhpkanrcs66m13p5qp4fd2w8xv02j2kqq13klwm1a";
passthru.tests = { inherit (nixosTests.prometheus-exporters) bind; };
+4 -4
pkgs/servers/monitoring/prometheus/bird-exporter.nix
···
buildGoModule rec {
pname = "bird-exporter";
-
version = "1.3.5-git";
+
version = "1.2.5";
src = fetchFromGitHub {
owner = "czerwonk";
repo = "bird_exporter";
-
rev = "019fc09804625658d452a8e043cc16559c3b5b84";
-
sha256 = "1iym46368k8zzy4djx511m926dg8x5mg3xi91f65sknqv26zfggb";
+
rev = version;
+
sha256 = "06rlmmvr79db3lh54938yxi0ixcfb8fni0vgcv3nafqnlr2zbs58";
};
-
vendorSha256 = null;
+
vendorSha256 = "14bjdfqvxvb9gs1nm0nnlib52vd0dbvjll22x7d2cc721cbd0hj0";
passthru.tests = { inherit (nixosTests.prometheus-exporters) bird; };
+6 -7
pkgs/servers/monitoring/prometheus/blackbox-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
+
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "blackbox_exporter";
-
version = "0.18.0";
-
rev = version;
-
-
goPackagePath = "github.com/prometheus/blackbox_exporter";
+
version = "0.19.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "blackbox_exporter";
-
sha256 = "1h4s0ww1drh14slrj9m7mx224qx9c6hyjav8sj959r75902i9491";
+
sha256 = "1lrabbp6nsd9h3hs3y5a37yl4g8zzkv0m3vhz2vrir3wmfn07n4g";
};
+
+
vendorSha256 = "1wi9dmbxb6i1qglnp1v0lkqpp7l29lrbsg4lvx052nkcwkgq8g1y";
# dns-lookup is performed for the tests
doCheck = false;
+4 -4
pkgs/servers/monitoring/prometheus/collectd-exporter.nix
···
buildGoPackage rec {
pname = "collectd-exporter";
-
version = "0.3.1";
+
version = "0.5.0";
rev = version;
goPackagePath = "github.com/prometheus/collectd_exporter";
-
src= fetchFromGitHub {
-
inherit rev;
+
src = fetchFromGitHub {
+
rev = "v${version}";
owner = "prometheus";
repo = "collectd_exporter";
-
sha256 = "1p0kb7c8g0r0sp5a6xrx8vnwbw14hhwlqzk4n2xx2y8pvnbivajz";
+
sha256 = "0vb6vnd2j87iqxdl86j30dk65vrv4scprv200xb83203aprngqgh";
};
passthru.tests = { inherit (nixosTests.prometheus-exporters) collectd; };
+11 -13
pkgs/servers/monitoring/prometheus/default.nix
···
-
{ stdenv, lib, go, buildGoPackage, fetchFromGitHub, mkYarnPackage, nixosTests
+
{ stdenv, lib, go, buildGoModule, fetchFromGitHub, mkYarnPackage, nixosTests
, fetchpatch
}:
let
-
version = "2.23.0";
+
version = "2.26.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "prometheus";
-
sha256 = "sha256-UQ1r8271EiZDU/h2zta6toMRfk2GjXol8GexYL9n+BE=";
+
sha256 = "06zr10zx3f526wcxj77smcl8wk55mhlnikd0b8vbjl9yyb0qc5mz";
};
+
goPackagePath = "github.com/prometheus/prometheus";
+
webui = mkYarnPackage {
src = "${src}/web/ui/react-app";
packageJSON = ./webui-package.json;
···
installPhase = "mv build $out";
distPhase = "true";
};
-
in buildGoPackage rec {
+
in buildGoModule rec {
pname = "prometheus";
inherit src version;
-
goPackagePath = "github.com/prometheus/prometheus";
+
vendorSha256 = "0h14pmk74lxj7z39jb4xwvx3whwkaxn9686y23sgrpkra5sk6dbm";
-
patches = [
-
# Fix https://github.com/prometheus/prometheus/issues/8144
-
(fetchpatch {
-
url = "https://github.com/prometheus/prometheus/commit/8b64b70fe4a5aa2877c95aa12c6798b12d3ff7ec.patch";
-
sha256 = "sha256-RuXT5pBXv8z6WoE59KNGh+OXr1KGLGWs/n0Hjf4BuH8=";
-
})
-
];
+
excludedPackages = [ "documentation/prometheus-mixin" ];
postPatch = ''
ln -s ${webui.node_modules} web/ui/react-app/node_modules
···
''
];
+
# only run this in the real build, not during the vendor build
+
# this should probably be fixed in buildGoModule
preBuild = ''
-
make -C go/src/${goPackagePath} assets
+
if [ -d vendor ]; then make assets; fi
'';
preInstall = ''
+3 -3
pkgs/servers/monitoring/prometheus/domain-exporter.nix
···
buildGoModule rec {
pname = "domain-exporter";
-
version = "1.10.0";
+
version = "1.11.0";
src = fetchFromGitHub {
owner = "caarlos0";
repo = "domain_exporter";
rev = "v${version}";
-
sha256 = "0pvz5vx9jvxdrkmzqzh7dfi09sb55j6zpx5728m5v38p8cl8vyh6";
+
sha256 = "018y0xwdn2f2shhwaa0hqm4y8xsbqwif0733qb0377wpjbj4v137";
};
-
vendorSha256 = "02m2mnx93xq6cl54waazgxq6vqbswfn9aafz0h694n6rskvdn784";
+
vendorSha256 = "0s1hs8byba9y57abg386n09wfg1wcqpzs164ap0km8ap2i96bdlb";
doCheck = false; # needs internet connection
+7 -9
pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "gitlab-ci-pipelines-exporter";
-
version = "0.2.5";
-
-
goPackagePath = "github.com/mvisonneau/gitlab-ci-pipelines-exporter";
-
-
goDeps = ./gitlab-ci-pipelines-exporter_deps.nix;
+
version = "0.4.9";
src = fetchFromGitHub {
owner = "mvisonneau";
repo = pname;
-
rev = version;
-
sha256 = "0qmy6pqfhx9bphgh1zqi68kp0nscwy1x7z13lfiaaz8pgsjh95yy";
+
rev = "v${version}";
+
sha256 = "13zs8140n4z56i0xkl6jvvmwy80l07dxyb23wxzd5avbdm8knypz";
};
+
+
vendorSha256 = "1k620r3d1swhj7cfmqjh5n08da2a6w87fwrsajl0y324iyw2chsa";
doCheck = true;
-390
pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter_deps.nix
···
-
# file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix)
-
[
-
{
-
goPackagePath = "cloud.google.com/go";
-
fetch = {
-
type = "git";
-
url = "https://code.googlesource.com/gocloud";
-
rev = "v0.34.0";
-
sha256 = "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai";
-
};
-
}
-
{
-
goPackagePath = "github.com/beorn7/perks";
-
fetch = {
-
type = "git";
-
url = "https://github.com/beorn7/perks";
-
rev = "v1.0.0";
-
sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x";
-
};
-
}
-
{
-
goPackagePath = "github.com/davecgh/go-spew";
-
fetch = {
-
type = "git";
-
url = "https://github.com/davecgh/go-spew";
-
rev = "v1.1.1";
-
sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y";
-
};
-
}
-
{
-
goPackagePath = "github.com/go-kit/kit";
-
fetch = {
-
type = "git";
-
url = "https://github.com/go-kit/kit";
-
rev = "v0.8.0";
-
sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0";
-
};
-
}
-
{
-
goPackagePath = "github.com/go-logfmt/logfmt";
-
fetch = {
-
type = "git";
-
url = "https://github.com/go-logfmt/logfmt";
-
rev = "v0.4.0";
-
sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9";
-
};
-
}
-
{
-
goPackagePath = "github.com/golang/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/protobuf";
-
rev = "v1.3.2";
-
sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym";
-
};
-
}
-
{
-
goPackagePath = "github.com/google/go-cmp";
-
fetch = {
-
type = "git";
-
url = "https://github.com/google/go-cmp";
-
rev = "v0.3.0";
-
sha256 = "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj";
-
};
-
}
-
{
-
goPackagePath = "github.com/google/go-querystring";
-
fetch = {
-
type = "git";
-
url = "https://github.com/google/go-querystring";
-
rev = "v1.0.0";
-
sha256 = "0xl12bqyvmn4xcnf8p9ksj9rmnr7s40pvppsdmy8n9bzw1db0iwz";
-
};
-
}
-
{
-
goPackagePath = "github.com/heptiolabs/healthcheck";
-
fetch = {
-
type = "git";
-
url = "https://github.com/heptiolabs/healthcheck";
-
rev = "6ff867650f40";
-
sha256 = "17aqrqhx2ibv6mcxsmli6m3hmvwi06cnpaly05daimay3cys5q0l";
-
};
-
}
-
{
-
goPackagePath = "github.com/jpillora/backoff";
-
fetch = {
-
type = "git";
-
url = "https://github.com/jpillora/backoff";
-
rev = "3050d21c67d7";
-
sha256 = "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv";
-
};
-
}
-
{
-
goPackagePath = "github.com/json-iterator/go";
-
fetch = {
-
type = "git";
-
url = "https://github.com/json-iterator/go";
-
rev = "v1.1.6";
-
sha256 = "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r";
-
};
-
}
-
{
-
goPackagePath = "github.com/julienschmidt/httprouter";
-
fetch = {
-
type = "git";
-
url = "https://github.com/julienschmidt/httprouter";
-
rev = "v1.2.0";
-
sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666";
-
};
-
}
-
{
-
goPackagePath = "github.com/konsorten/go-windows-terminal-sequences";
-
fetch = {
-
type = "git";
-
url = "https://github.com/konsorten/go-windows-terminal-sequences";
-
rev = "v1.0.2";
-
sha256 = "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/logfmt";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/logfmt";
-
rev = "b84e30acd515";
-
sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/pretty";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/pretty";
-
rev = "v0.1.0";
-
sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/pty";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/pty";
-
rev = "v1.1.1";
-
sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/text";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/text";
-
rev = "v0.1.0";
-
sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1";
-
};
-
}
-
{
-
goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
-
fetch = {
-
type = "git";
-
url = "https://github.com/matttproud/golang_protobuf_extensions";
-
rev = "v1.0.1";
-
sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya";
-
};
-
}
-
{
-
goPackagePath = "github.com/modern-go/concurrent";
-
fetch = {
-
type = "git";
-
url = "https://github.com/modern-go/concurrent";
-
rev = "bacd9c7ef1dd";
-
sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs";
-
};
-
}
-
{
-
goPackagePath = "github.com/modern-go/reflect2";
-
fetch = {
-
type = "git";
-
url = "https://github.com/modern-go/reflect2";
-
rev = "v1.0.1";
-
sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf";
-
};
-
}
-
{
-
goPackagePath = "github.com/mwitkow/go-conntrack";
-
fetch = {
-
type = "git";
-
url = "https://github.com/mwitkow/go-conntrack";
-
rev = "cc309e4a2223";
-
sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf";
-
};
-
}
-
{
-
goPackagePath = "github.com/pkg/errors";
-
fetch = {
-
type = "git";
-
url = "https://github.com/pkg/errors";
-
rev = "v0.8.0";
-
sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5";
-
};
-
}
-
{
-
goPackagePath = "github.com/pmezard/go-difflib";
-
fetch = {
-
type = "git";
-
url = "https://github.com/pmezard/go-difflib";
-
rev = "v1.0.0";
-
sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_golang";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_golang";
-
rev = "v1.0.0";
-
sha256 = "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_model";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_model";
-
rev = "fd36f4220a90";
-
sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/common";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/common";
-
rev = "v0.6.0";
-
sha256 = "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/procfs";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/procfs";
-
rev = "v0.0.3";
-
sha256 = "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y";
-
};
-
}
-
{
-
goPackagePath = "github.com/sirupsen/logrus";
-
fetch = {
-
type = "git";
-
url = "https://github.com/sirupsen/logrus";
-
rev = "v1.4.2";
-
sha256 = "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x";
-
};
-
}
-
{
-
goPackagePath = "github.com/stretchr/objx";
-
fetch = {
-
type = "git";
-
url = "https://github.com/stretchr/objx";
-
rev = "v0.1.1";
-
sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls";
-
};
-
}
-
{
-
goPackagePath = "github.com/stretchr/testify";
-
fetch = {
-
type = "git";
-
url = "https://github.com/stretchr/testify";
-
rev = "v1.3.0";
-
sha256 = "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy";
-
};
-
}
-
{
-
goPackagePath = "github.com/urfave/cli";
-
fetch = {
-
type = "git";
-
url = "https://github.com/urfave/cli";
-
rev = "v1.20.0";
-
sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj";
-
};
-
}
-
{
-
goPackagePath = "github.com/xanzy/go-gitlab";
-
fetch = {
-
type = "git";
-
url = "https://github.com/xanzy/go-gitlab";
-
rev = "v0.19.0";
-
sha256 = "0xbn94rb9ihpw1g698xbz9vdl7393z9zbb0lck52nxs838gkr4mb";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/crypto";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/crypto";
-
rev = "f99c8df09eb5";
-
sha256 = "0jwi6c6366999mnpzwx3a2kr7hzvdx97qfwiphx0r7cy0mpf28hf";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/net";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/net";
-
rev = "ca1201d0de80";
-
sha256 = "16j9xyby1vfl4ch6wqzafxxxnxvcp8vhzknpchwabci1f2zcsn6i";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/oauth2";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/oauth2";
-
rev = "0f29369cfe45";
-
sha256 = "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/sync";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/sync";
-
rev = "112230192c58";
-
sha256 = "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/sys";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/sys";
-
rev = "fc99dfbffb4e";
-
sha256 = "186x8bg926qb9sprs5zpd97xzvvhc2si7q1nhvyg12r5cd6v7zjd";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/text";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/text";
-
rev = "v0.3.2";
-
sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/tools";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/tools";
-
rev = "d0a3d012864b";
-
sha256 = "1s2jbb94hbcb01hgkd9kzb9js13grj80a72il7467pm57b3rnggg";
-
};
-
}
-
{
-
goPackagePath = "google.golang.org/appengine";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/appengine";
-
rev = "v1.6.1";
-
sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/alecthomas/kingpin.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/alecthomas/kingpin.v2";
-
rev = "v2.2.6";
-
sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/check.v1";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/check.v1";
-
rev = "788fd7840127";
-
sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/yaml.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/yaml.v2";
-
rev = "v2.2.2";
-
sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa";
-
};
-
}
-
]
+3 -4
pkgs/servers/monitoring/prometheus/haproxy-exporter.nix
···
buildGoPackage rec {
pname = "haproxy_exporter";
-
version = "0.8.0";
-
rev = "v${version}";
+
version = "0.12.0";
goPackagePath = "github.com/prometheus/haproxy_exporter";
src = fetchFromGitHub {
-
inherit rev;
+
rev = "v${version}";
owner = "prometheus";
repo = "haproxy_exporter";
-
sha256 = "0gx8pq67w71ch3g3c77xaz39msrd9graizc6d3shwabdjx35yc6q";
+
sha256 = "09aqm2zqimn6w10p1nhnpjcigm299b31xfrq8ma0d7z4v9p2y9dn";
};
meta = with lib; {
+2 -2
pkgs/servers/monitoring/prometheus/jmx-httpserver.nix
···
{ lib, stdenv, fetchurl, jre, makeWrapper }:
let
-
version = "0.10";
+
version = "0.15.0";
jarName = "jmx_prometheus_httpserver-${version}-jar-with-dependencies.jar";
mavenUrl = "mirror://maven/io/prometheus/jmx/jmx_prometheus_httpserver/${version}/${jarName}";
in stdenv.mkDerivation {
···
src = fetchurl {
url = mavenUrl;
-
sha256 = "1pvqphrirq48xhmx0aa6vkxz6qy1cx2q6jxsh7rin432iap7j62f";
+
sha256 = "0fr3svn8kjp7bq1wzbkvv5awylwn8b01bngj04zvk7fpzqpgs7mz";
};
nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/servers/monitoring/prometheus/json-exporter.nix
···
buildGoModule rec {
pname = "prometheus-json-exporter";
-
version = "0.2.0";
+
version = "0.3.0";
src = fetchFromGitHub {
owner = "prometheus-community";
repo = "json_exporter";
rev = "v${version}";
-
sha256 = "1aabvd75a2223x5wnbyryigj7grw6l05jhr3g3s97b1f1hfigz6d";
+
sha256 = "0nhww7pbyqpiikcli1ysqa15d4y76h3jaij1j0sj8i3mhv1nsjz9";
};
-
vendorSha256 = "03kb0gklq08krl7qnvs7267siw1pkyy346b42dsk1d9gr5302wsw";
+
vendorSha256 = "1fiy6x06mqxbv9c4rxfl4q7hvblbzhknkpcp0alz61f3fk5wxsgp";
passthru.tests = { inherit (nixosTests.prometheus-exporters) json; };
+4 -7
pkgs/servers/monitoring/prometheus/mesos-exporter.nix
···
buildGoPackage rec {
pname = "mesos_exporter";
-
version = "0.1.0";
-
rev = version;
+
version = "1.1.2";
goPackagePath = "github.com/prometheus/mesos_exporter";
src = fetchFromGitHub {
-
inherit rev;
-
owner = "prometheus";
+
rev = "v${version}";
+
owner = "mesos";
repo = "mesos_exporter";
-
sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm";
+
sha256 = "0nvjlpxdhh60wcdw2fdc8h0vn6fxkz0nh7zrx43hjxymvc15ixza";
};
-
-
goDeps = ./mesos-exporter_deps.nix;
meta = with lib; {
description = "Export Mesos metrics to Prometheus";
-83
pkgs/servers/monitoring/prometheus/mesos-exporter_deps.nix
···
-
[
-
{
-
goPackagePath = "github.com/golang/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/protobuf";
-
rev = "59b73b37c1e45995477aae817e4a653c89a858db";
-
sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_model";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_model";
-
rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6";
-
sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9";
-
};
-
}
-
{
-
goPackagePath = "github.com/beorn7/perks";
-
fetch = {
-
type = "git";
-
url = "https://github.com/beorn7/perks";
-
rev = "b965b613227fddccbfffe13eae360ed3fa822f8d";
-
sha256 = "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk";
-
};
-
}
-
{
-
goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
-
fetch = {
-
type = "git";
-
url = "https://github.com/matttproud/golang_protobuf_extensions";
-
rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a";
-
sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_golang";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_golang";
-
rev = "6dbab8106ed3ed77359ac85d9cf08e30290df864";
-
sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/procfs";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/procfs";
-
rev = "c91d8eefde16bd047416409eb56353ea84a186e4";
-
sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r";
-
};
-
}
-
{
-
goPackagePath = "github.com/golang/glog";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/glog";
-
rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f";
-
sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8";
-
};
-
}
-
{
-
goPackagePath = "bitbucket.org/ww/goautoneg";
-
fetch = {
-
type = "hg";
-
url = "bitbucket.org/ww/goautoneg";
-
rev = "75cd24fc2f2c2a2088577d12123ddee5f54e0675";
-
sha256 = "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi";
-
};
-
}
-
{
-
goPackagePath = "github.com/antonlindstrom/mesos_stats";
-
fetch = {
-
type = "git";
-
url = "https://github.com/antonlindstrom/mesos_stats";
-
rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920";
-
sha256 = "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4";
-
};
-
}
-
]
+2 -2
pkgs/servers/monitoring/prometheus/nginx-exporter.nix
···
buildGoPackage rec {
pname = "nginx_exporter";
-
version = "0.8.0";
+
version = "0.9.0";
goPackagePath = "github.com/nginxinc/nginx-prometheus-exporter";
···
rev = "v${version}";
owner = "nginxinc";
repo = "nginx-prometheus-exporter";
-
sha256 = "sha256-fFzwJXTwtI0NXZYwORRZomj/wADqxW+wvDH49QK0IZw=";
+
sha256 = "04y5vpj2kv2ygdzxy3crpnx4mhpkm1ns2995kxgvjlhnyck7a5rf";
};
doCheck = true;
+3 -3
pkgs/servers/monitoring/prometheus/nginxlog-exporter.nix
···
buildGoModule rec {
pname = "nginxlog_exporter";
-
version = "1.8.0";
+
version = "1.9.0";
src = fetchFromGitHub {
owner = "martin-helmich";
repo = "prometheus-nginxlog-exporter";
rev = "v${version}";
-
sha256 = "1kqyjw5yqgjb8xa5irdhpqvwp1qhba6igpc23n2qljhbh0aybkbq";
+
sha256 = "0kcwhaf9k7c1xsz78064qz5zb4x3xgi1ifi49qkwiaqrzx2xy26p";
};
-
vendorSha256 = "130hq19y890amxhjywg5blassl8br2p9d62aai8fj839p3p2a7zp";
+
vendorSha256 = "05hisrhlklbs26cgblzfjh6mhaih5asvbll54jngnmwylwjd1mmc";
subPackages = [ "." ];
+11 -7
pkgs/servers/monitoring/prometheus/node-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
+
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "node_exporter";
-
version = "1.0.1";
+
version = "1.1.2";
rev = "v${version}";
-
-
goPackagePath = "github.com/prometheus/node_exporter";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "node_exporter";
-
sha256 = "1r0xx81r9v019fl0iv078yl21ndhb356y7s7zx171zi02k7a4p2l";
+
sha256 = "1kz52zhsm0xx63vczzplj15hli4i22qfxl08grb7m50bqk651j1n";
};
+
+
vendorSha256 = "05lr2ln87902bwamw4l3rrk2j9sdgv1pcvxyvzbga64rymi9dmjb";
# FIXME: tests fail due to read-only nix store
doCheck = false;
-
buildFlagsArray = ''
+
excludedPackages = [ "docs/node-mixin" ];
+
+
buildFlagsArray = let
+
goPackagePath = "github.com/prometheus/node_exporter";
+
in ''
-ldflags=
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Version=${version}
-X ${goPackagePath}/vendor/github.com/prometheus/common/version.Revision=${rev}
-66
pkgs/servers/monitoring/prometheus/openvpn-exporter-deps.nix
···
-
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
-
[
-
{
-
goPackagePath = "github.com/beorn7/perks";
-
fetch = {
-
type = "git";
-
url = "https://github.com/beorn7/perks";
-
rev = "4c0e84591b9aa9e6dcfdf3e020114cd81f89d5f9";
-
sha256 = "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y";
-
};
-
}
-
{
-
goPackagePath = "github.com/golang/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/protobuf";
-
rev = "748d386b5c1ea99658fd69fe9f03991ce86a90c1";
-
sha256 = "0xm0is6sj6r634vrfx85ir0gd9h1xxk25fgc5z07zrjp19f5wqp5";
-
};
-
}
-
{
-
goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
-
fetch = {
-
type = "git";
-
url = "https://github.com/matttproud/golang_protobuf_extensions";
-
rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c";
-
sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_golang";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_golang";
-
rev = "94ff84a9a6ebb5e6eb9172897c221a64df3443bc";
-
sha256 = "188xwc13ml51i29fhp8bz4a7ncmk0lvdw3nnwr56k2l36pp1swil";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_model";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_model";
-
rev = "6f3806018612930941127f2a7c6c453ba2c527d2";
-
sha256 = "1413ibprinxhni51p0755dp57r9wvbw7xgj9nmdaxmhzlqhc86j4";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/common";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/common";
-
rev = "3e6a7635bac6573d43f49f97b47eb9bda195dba8";
-
sha256 = "1q4nwm9lf4jd90z08s6gz8j1zzrk2jn9vpw49xdb8mwxmhv13xgm";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/procfs";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/procfs";
-
rev = "e645f4e5aaa8506fc71d6edbc5c4ff02c04c46f2";
-
sha256 = "18hwygbawbqilz7h8fl25xpbciwalkslb4igqn4cr9d8sqp7d3np";
-
};
-
}
-
]
+6 -9
pkgs/servers/monitoring/prometheus/openvpn-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "openvpn_exporter-unstable";
-
version = "2017-05-15";
-
rev = "a2a179a222144fa9a10030367045f075375a2803";
-
-
goPackagePath = "github.com/kumina/openvpn_exporter";
+
version = "0.3.0";
src = fetchFromGitHub {
owner = "kumina";
repo = "openvpn_exporter";
-
inherit rev;
-
sha256 = "1cjx7ascf532a20wwzrsx3qqs6dr04jyf700s3jvlvhhhx43l8m4";
+
rev = "v${version}";
+
sha256 = "14m4n5918zimdnyf0yg2948jb1hp1bdf27k07j07x3yrx357i05l";
};
-
goDeps = ./openvpn-exporter-deps.nix;
+
vendorSha256 = "1jgw0nnibydhcd83kp6jqkf41mhwldp8wdhqk0yjw18v9m0p7g5s";
meta = with lib; {
inherit (src.meta) homepage;
+6 -6
pkgs/servers/monitoring/prometheus/process-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "process-exporter";
-
version = "0.7.1";
-
-
goPackagePath = "github.com/ncabatoff/process-exporter";
+
version = "0.7.5";
src = fetchFromGitHub {
owner = "ncabatoff";
repo = pname;
rev = "v${version}";
-
sha256 = "0jkh4xzjlrlabpll3igpyhqs35f1dxifjkbfxvijjcq9yahxfj0x";
+
sha256 = "0v1q8mi8p01smzfxaf52kbqnjz9fx4rp64jqhgbcx0s45q3bph9l";
};
+
+
vendorSha256 = "19y2w1vplf7qqkzcpi01ssawv9badhwpglh2gz69fgl6xc3mxfmp";
postPatch = ''
substituteInPlace proc/read_test.go --replace /bin/cat cat
+6 -9
pkgs/servers/monitoring/prometheus/prom2json.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "prom2json";
-
version = "0.1.0";
-
rev = version;
-
-
goPackagePath = "github.com/prometheus/prom2json";
+
version = "1.3.0";
src = fetchFromGitHub {
-
inherit rev;
+
rev = "v${version}";
owner = "prometheus";
repo = "prom2json";
-
sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl";
+
sha256 = "09glf7br1a9k6j2hs94l2k4mlmlckdz5c9v6qg618c2nd4rk1mz6";
};
-
goDeps = ./prom2json_deps.nix;
+
vendorSha256 = null;
meta = with lib; {
description = "Tool to scrape a Prometheus client and dump the result as JSON";
-38
pkgs/servers/monitoring/prometheus/prom2json_deps.nix
···
-
[
-
{
-
goPackagePath = "github.com/golang/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/protobuf";
-
rev = "59b73b37c1e45995477aae817e4a653c89a858db";
-
sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_model";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_model";
-
rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6";
-
sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9";
-
};
-
}
-
{
-
goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
-
fetch = {
-
type = "git";
-
url = "https://github.com/matttproud/golang_protobuf_extensions";
-
rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a";
-
sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_golang";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_golang";
-
rev = "6dbab8106ed3ed77359ac85d9cf08e30290df864";
-
sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna";
-
};
-
}
-
]
+5 -7
pkgs/servers/monitoring/prometheus/rabbitmq-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "rabbitmq_exporter";
-
version = "1.0.0-RC7.1";
-
-
goPackagePath = "github.com/kbudde/rabbitmq_exporter";
+
version = "1.0.0-RC8";
src = fetchFromGitHub {
owner = "kbudde";
repo = "rabbitmq_exporter";
rev = "v${version}";
-
sha256 = "5Agg99yHBMgpWGD6Nk+WvAorRc7j2PGD+3z7nO3N/5s=";
+
sha256 = "162rjp1j56kcq0vdi0ch09ka101zslxp684x6jvw0jq0aix4zj3r";
};
-
goDeps = ./rabbitmq-exporter_deps.nix;
+
vendorSha256 = "1cvdqf5pdwczhqz6xb6w86h7gdr0l8fc3lav88xq26r4x75cm6v0";
meta = with lib; {
description = "Prometheus exporter for RabbitMQ";
-793
pkgs/servers/monitoring/prometheus/rabbitmq-exporter_deps.nix
···
-
# file generated from go.mod using vgo2nix (https://github.com/nix-community/vgo2nix)
-
[
-
{
-
goPackagePath = "bazil.org/fuse";
-
fetch = {
-
type = "git";
-
url = "https://github.com/bazil/fuse";
-
rev = "371fbbdaa898";
-
sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/Azure/go-ansiterm";
-
fetch = {
-
type = "git";
-
url = "https://github.com/Azure/go-ansiterm";
-
rev = "d6e3b3328b78";
-
sha256 = "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/Microsoft/go-winio";
-
fetch = {
-
type = "git";
-
url = "https://github.com/Microsoft/go-winio";
-
rev = "v0.4.14";
-
sha256 = "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/Nvveen/Gotty";
-
fetch = {
-
type = "git";
-
url = "https://github.com/Nvveen/Gotty";
-
rev = "cd527374f1e5";
-
sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/alecthomas/template";
-
fetch = {
-
type = "git";
-
url = "https://github.com/alecthomas/template";
-
rev = "fb15b899a751";
-
sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/alecthomas/units";
-
fetch = {
-
type = "git";
-
url = "https://github.com/alecthomas/units";
-
rev = "c3de453c63f4";
-
sha256 = "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/beorn7/perks";
-
fetch = {
-
type = "git";
-
url = "https://github.com/beorn7/perks";
-
rev = "v1.0.1";
-
sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/cenkalti/backoff";
-
fetch = {
-
type = "git";
-
url = "https://github.com/cenkalti/backoff";
-
rev = "v2.2.1";
-
sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/cenkalti/backoff/v3";
-
fetch = {
-
type = "git";
-
url = "https://github.com/cenkalti/backoff";
-
rev = "v3.2.2";
-
sha256 = "01h52k1sl6drabm3fgd4yy1iwbz06wcbbh16zd6v4wi7slabma9m";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/cespare/xxhash/v2";
-
fetch = {
-
type = "git";
-
url = "https://github.com/cespare/xxhash";
-
rev = "v2.1.1";
-
sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/containerd/continuity";
-
fetch = {
-
type = "git";
-
url = "https://github.com/containerd/continuity";
-
rev = "d3ef23f19fbb";
-
sha256 = "0k5838j54ymqpg0dffr8k4vh992my9zlqrplx4syms09r9z9vap9";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/davecgh/go-spew";
-
fetch = {
-
type = "git";
-
url = "https://github.com/davecgh/go-spew";
-
rev = "v1.1.1";
-
sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/docker/go-connections";
-
fetch = {
-
type = "git";
-
url = "https://github.com/docker/go-connections";
-
rev = "v0.4.0";
-
sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/docker/go-units";
-
fetch = {
-
type = "git";
-
url = "https://github.com/docker/go-units";
-
rev = "v0.4.0";
-
sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/dustin/go-humanize";
-
fetch = {
-
type = "git";
-
url = "https://github.com/dustin/go-humanize";
-
rev = "bb3d318650d4";
-
sha256 = "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/fsnotify/fsnotify";
-
fetch = {
-
type = "git";
-
url = "https://github.com/fsnotify/fsnotify";
-
rev = "v1.4.7";
-
sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/ghodss/yaml";
-
fetch = {
-
type = "git";
-
url = "https://github.com/ghodss/yaml";
-
rev = "v1.0.0";
-
sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/go-kit/kit";
-
fetch = {
-
type = "git";
-
url = "https://github.com/go-kit/kit";
-
rev = "v0.9.0";
-
sha256 = "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/go-logfmt/logfmt";
-
fetch = {
-
type = "git";
-
url = "https://github.com/go-logfmt/logfmt";
-
rev = "v0.4.0";
-
sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/go-stack/stack";
-
fetch = {
-
type = "git";
-
url = "https://github.com/go-stack/stack";
-
rev = "v1.8.0";
-
sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/gogo/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/gogo/protobuf";
-
rev = "v1.1.1";
-
sha256 = "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/golang/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://github.com/golang/protobuf";
-
rev = "v1.4.0";
-
sha256 = "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/google/go-cmp";
-
fetch = {
-
type = "git";
-
url = "https://github.com/google/go-cmp";
-
rev = "v0.4.0";
-
sha256 = "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/google/gofuzz";
-
fetch = {
-
type = "git";
-
url = "https://github.com/google/gofuzz";
-
rev = "v1.0.0";
-
sha256 = "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/gotestyourself/gotestyourself";
-
fetch = {
-
type = "git";
-
url = "https://github.com/gotestyourself/gotestyourself";
-
rev = "v2.2.0";
-
sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/hpcloud/tail";
-
fetch = {
-
type = "git";
-
url = "https://github.com/hpcloud/tail";
-
rev = "v1.0.0";
-
sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/inconshreveable/mousetrap";
-
fetch = {
-
type = "git";
-
url = "https://github.com/inconshreveable/mousetrap";
-
rev = "v1.0.0";
-
sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/json-iterator/go";
-
fetch = {
-
type = "git";
-
url = "https://github.com/json-iterator/go";
-
rev = "v1.1.9";
-
sha256 = "0pkn2maymgl9v6vmq9q1si8xr5bbl88n6981y0lx09px6qxb29qx";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/julienschmidt/httprouter";
-
fetch = {
-
type = "git";
-
url = "https://github.com/julienschmidt/httprouter";
-
rev = "v1.2.0";
-
sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kbudde/gobert";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kbudde/gobert";
-
rev = "77f4c9cb2e7e";
-
sha256 = "1d2m4b0pxswqhkjpbql3kbb9fjvyys4b9cpmhb9iwkcmnq3n8x91";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/konsorten/go-windows-terminal-sequences";
-
fetch = {
-
type = "git";
-
url = "https://github.com/konsorten/go-windows-terminal-sequences";
-
rev = "v1.0.2";
-
sha256 = "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/logfmt";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/logfmt";
-
rev = "b84e30acd515";
-
sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/pretty";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/pretty";
-
rev = "v0.1.0";
-
sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/pty";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/pty";
-
rev = "v1.1.1";
-
sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kr/text";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kr/text";
-
rev = "v0.1.0";
-
sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/kylelemons/godebug";
-
fetch = {
-
type = "git";
-
url = "https://github.com/kylelemons/godebug";
-
rev = "v1.1.0";
-
sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/lib/pq";
-
fetch = {
-
type = "git";
-
url = "https://github.com/lib/pq";
-
rev = "v1.0.0";
-
sha256 = "1zqnnyczaf00xi6xh53vq758v5bdlf0iz7kf22l02cal4i6px47i";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
-
fetch = {
-
type = "git";
-
url = "https://github.com/matttproud/golang_protobuf_extensions";
-
rev = "v1.0.1";
-
sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/modern-go/concurrent";
-
fetch = {
-
type = "git";
-
url = "https://github.com/modern-go/concurrent";
-
rev = "bacd9c7ef1dd";
-
sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/modern-go/reflect2";
-
fetch = {
-
type = "git";
-
url = "https://github.com/modern-go/reflect2";
-
rev = "v1.0.1";
-
sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/mwitkow/go-conntrack";
-
fetch = {
-
type = "git";
-
url = "https://github.com/mwitkow/go-conntrack";
-
rev = "cc309e4a2223";
-
sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/onsi/ginkgo";
-
fetch = {
-
type = "git";
-
url = "https://github.com/onsi/ginkgo";
-
rev = "v1.10.1";
-
sha256 = "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/onsi/gomega";
-
fetch = {
-
type = "git";
-
url = "https://github.com/onsi/gomega";
-
rev = "v1.7.0";
-
sha256 = "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/opencontainers/go-digest";
-
fetch = {
-
type = "git";
-
url = "https://github.com/opencontainers/go-digest";
-
rev = "v1.0.0-rc1";
-
sha256 = "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/opencontainers/image-spec";
-
fetch = {
-
type = "git";
-
url = "https://github.com/opencontainers/image-spec";
-
rev = "v1.0.1";
-
sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/opencontainers/runc";
-
fetch = {
-
type = "git";
-
url = "https://github.com/opencontainers/runc";
-
rev = "v1.0.0-rc9";
-
sha256 = "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/ory/dockertest";
-
fetch = {
-
type = "git";
-
url = "https://github.com/ory/dockertest";
-
rev = "v3.3.5";
-
sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/ory/dockertest/v3";
-
fetch = {
-
type = "git";
-
url = "https://github.com/ory/dockertest";
-
rev = "v3.6.0";
-
sha256 = "1l4czdb532rl1qjjh1ad00h1686dz9h9bg1kmmpyjfm4ggckndyw";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/pkg/errors";
-
fetch = {
-
type = "git";
-
url = "https://github.com/pkg/errors";
-
rev = "v0.9.1";
-
sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/pmezard/go-difflib";
-
fetch = {
-
type = "git";
-
url = "https://github.com/pmezard/go-difflib";
-
rev = "v1.0.0";
-
sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_golang";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_golang";
-
rev = "v1.5.1";
-
sha256 = "0nkhjpwpqr3iz2jsqrl37qkj1g4i8jvi5smgbvhxcpyinjj00067";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/client_model";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/client_model";
-
rev = "v0.2.0";
-
sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/common";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/common";
-
rev = "v0.9.1";
-
sha256 = "12pyywb02p7d30ccm41mwn69qsgqnsgv1w9jlqrrln2f1svnbqch";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/prometheus/procfs";
-
fetch = {
-
type = "git";
-
url = "https://github.com/prometheus/procfs";
-
rev = "v0.0.11";
-
sha256 = "1msc8bfywsmrgr2ryqjdqwkxiz1ll08r3qgvaka2507z1wpcpj2c";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/sirupsen/logrus";
-
fetch = {
-
type = "git";
-
url = "https://github.com/sirupsen/logrus";
-
rev = "v1.5.0";
-
sha256 = "02s74gxzlzr982avw7vbfjkj696hyhklx1ikmmjiqp3z1l8hkghk";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/spf13/cobra";
-
fetch = {
-
type = "git";
-
url = "https://github.com/spf13/cobra";
-
rev = "2da4a54c5cee";
-
sha256 = "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/spf13/pflag";
-
fetch = {
-
type = "git";
-
url = "https://github.com/spf13/pflag";
-
rev = "v1.0.3";
-
sha256 = "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/streadway/amqp";
-
fetch = {
-
type = "git";
-
url = "https://github.com/streadway/amqp";
-
rev = "1c71cc93ed71";
-
sha256 = "0k740vmzkdv9il201x4mj0md73w30jqlmn1q7m1ng3dmi635qrlr";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/stretchr/objx";
-
fetch = {
-
type = "git";
-
url = "https://github.com/stretchr/objx";
-
rev = "v0.1.1";
-
sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/stretchr/testify";
-
fetch = {
-
type = "git";
-
url = "https://github.com/stretchr/testify";
-
rev = "v1.4.0";
-
sha256 = "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "github.com/tkanos/gonfig";
-
fetch = {
-
type = "git";
-
url = "https://github.com/tkanos/gonfig";
-
rev = "896f3d81fadf";
-
sha256 = "1wcyq3vlfp12zsnnv1gpycqgzvq3nk8pvcabni6wxxyk3350d43m";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/crypto";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/crypto";
-
rev = "c2843e01d9a2";
-
sha256 = "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/net";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/net";
-
rev = "d3edc9973b7e";
-
sha256 = "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/sync";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/sync";
-
rev = "cd5d95a43a6e";
-
sha256 = "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/sys";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/sys";
-
rev = "1957bb5e6d1f";
-
sha256 = "0imqk4l9785rw7ddvywyf8zn7k3ga6f17ky8rmf8wrri7nknr03f";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/text";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/text";
-
rev = "v0.3.0";
-
sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/tools";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/tools";
-
rev = "a101b041ded4";
-
sha256 = "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "golang.org/x/xerrors";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/xerrors";
-
rev = "9bdfabe68543";
-
sha256 = "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "google.golang.org/protobuf";
-
fetch = {
-
type = "git";
-
url = "https://go.googlesource.com/protobuf";
-
rev = "v1.21.0";
-
sha256 = "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/airbrake/gobrake.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/airbrake/gobrake.v2";
-
rev = "v2.0.9";
-
sha256 = "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/alecthomas/kingpin.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/alecthomas/kingpin.v2";
-
rev = "v2.2.6";
-
sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/check.v1";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/check.v1";
-
rev = "41f04d3bba15";
-
sha256 = "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/fsnotify.v1";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/fsnotify.v1";
-
rev = "v1.4.7";
-
sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2";
-
rev = "v2.1.2";
-
sha256 = "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/ory-am/dockertest.v3";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/ory-am/dockertest.v3";
-
rev = "v3.3.5";
-
sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/tomb.v1";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/tomb.v1";
-
rev = "dd632973f1e7";
-
sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gopkg.in/yaml.v2";
-
fetch = {
-
type = "git";
-
url = "https://gopkg.in/yaml.v2";
-
rev = "v2.2.8";
-
sha256 = "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gotest.tools";
-
fetch = {
-
type = "git";
-
url = "https://github.com/gotestyourself/gotest.tools";
-
rev = "v2.2.0";
-
sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl";
-
moduleDir = "";
-
};
-
}
-
{
-
goPackagePath = "gotest.tools/v3";
-
fetch = {
-
type = "git";
-
url = "https://github.com/gotestyourself/gotest.tools";
-
rev = "v3.0.2";
-
sha256 = "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm";
-
moduleDir = "";
-
};
-
}
-
]
+8 -7
pkgs/servers/monitoring/prometheus/redis-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
+
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "redis_exporter";
-
version = "1.7.0";
-
-
goPackagePath = "github.com/oliver006/redis_exporter";
+
version = "1.23.1";
src = fetchFromGitHub {
owner = "oliver006";
repo = "redis_exporter";
rev = "v${version}";
-
sha256 = "0rwaxpylividyxz0snfgck32kvpgjkhg20bmdnlp35cdzxcxi8m1";
+
sha256 = "0hlzxmc3jnmbym7by89bb73nlr0gw1xj8d88x10zx55kry7p0jfn";
};
-
goDeps = ./redis-exporter-deps.nix;
+
vendorSha256 = "11237959ikd7l5glkhfz0g55mbld2hq985b5crwb9bnimaly5lga";
buildFlagsArray = ''
-ldflags=
···
-X main.BuildCommitSha=unknown
-X main.BuildDate=unknown
'';
+
+
# needs a redis server
+
doCheck = false;
passthru.tests = { inherit (nixosTests.prometheus-exporters) redis; };
+4 -4
pkgs/servers/monitoring/prometheus/smokeping-prober.nix
···
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
let
-
baseVersion = "0.3.1";
-
commit = "9ba85274dcc21bf8132cbe3b3dccfcb4aab57d9f";
+
baseVersion = "0.4.2";
+
commit = "722200c4adbd6d1e5d847dfbbd9dec07aa4ca38d";
in
buildGoModule rec {
pname = "smokeping_prober";
···
rev = commit;
owner = "SuperQ";
repo = "smokeping_prober";
-
sha256 = "sha256:19596di2gzcvlcwiypsncq4zwbyb6d1r6wxsfi59wax3423i7ndg";
+
sha256 = "1lpcjip6qxhalldgm6i2kgbajfqy3vwfyv9jy0jdpii13lv6mzlz";
};
-
vendorSha256 = "sha256:1b2v3v3kn0m7dvjxbs8q0gw6zingksdqhm5g1frx0mymqk0lg889";
+
vendorSha256 = "0p2jmlxpvpaqc445j39b4z4i3mnjrm25khv3sq6ylldcgfd31vz8";
doCheck = true;
+6 -6
pkgs/servers/monitoring/prometheus/snmp-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub, net-snmp, nixosTests }:
+
{ lib, buildGoModule, fetchFromGitHub, net-snmp, nixosTests }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "snmp_exporter";
-
version = "0.19.0";
-
-
goPackagePath = "github.com/prometheus/snmp_exporter";
+
version = "0.20.0";
src = fetchFromGitHub {
owner = "prometheus";
repo = "snmp_exporter";
rev = "v${version}";
-
sha256 = "1ppi5lmc2lryawpw1b3kpg3qxr7v62zbiwg2v1d8sq1y5b2xdza6";
+
sha256 = "0qwbnx3l25460qbah4ik9mlcyrm31rwm51451gh0jprii80cf16x";
};
+
+
vendorSha256 = "1rivil3hwk269ikrwc4i22k2y5c9zs5ac058y7llz8ivrrjr2w4h";
buildInputs = [ net-snmp ];
+6 -7
pkgs/servers/monitoring/prometheus/statsd-exporter.nix
···
-
{ lib, buildGoPackage, fetchFromGitHub }:
+
{ lib, buildGoModule, fetchFromGitHub }:
-
buildGoPackage rec {
+
buildGoModule rec {
pname = "statsd_exporter";
-
version = "0.9.0";
-
rev = version;
-
-
goPackagePath = "github.com/prometheus/statsd_exporter";
+
version = "0.20.2";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "statsd_exporter";
-
sha256 = "0bgi00005j41p650rb6n1iz2w9m4p22d1w91f2hwlh5bqxf55al3";
+
sha256 = "1k98dmjn2mfwg36khpbxg7yk6rn4sk4v264i4rmqs4v8gss2h3kn";
};
+
+
vendorSha256 = "1fihbchl5g5z9xrca68kaq26l674chcby634k8iz5h31dai8hpyh";
meta = with lib; {
description = "Receives StatsD-style metrics and exports them to Prometheus";
+4 -4
pkgs/servers/monitoring/prometheus/varnish-exporter.nix
···
buildGoModule rec {
pname = "prometheus_varnish_exporter";
-
version = "unstable-2020-03-26";
+
version = "1.6";
src = fetchFromGitHub {
owner = "jonnenauha";
repo = "prometheus_varnish_exporter";
-
rev = "f0f90fc69723de8b716cda16cb419e8a025130ff";
-
sha256 = "1viiiyvhpr7cnf8ykaaq4fzgg9xvn4hnlhv7cagy3jkjlmz60947";
+
rev = version;
+
sha256 = "1cp7c1w237r271m8b1y8pj5jy7j2iadp4vbislxfyp4kga9i4dcc";
};
-
vendorSha256 = "1h9iz3sbz02hb8827hcssqlfg2ag3ymq38siffw9wzajslzhp9sx";
+
vendorSha256 = "1cslg29l9mmyhpdz14ca9m18iaz4hhznplz8fmi3wa3l8r7ih751";
nativeBuildInputs = [ makeWrapper ];
+21 -4
pkgs/servers/monitoring/prometheus/webui-package.json
···
"version": "0.1.0",
"private": true,
"dependencies": {
+
"@codemirror/autocomplete": "^0.18.3",
+
"@codemirror/closebrackets": "^0.18.0",
+
"@codemirror/commands": "^0.18.0",
+
"@codemirror/comment": "^0.18.0",
+
"@codemirror/highlight": "^0.18.3",
+
"@codemirror/history": "^0.18.0",
+
"@codemirror/language": "^0.18.0",
+
"@codemirror/lint": "^0.18.1",
+
"@codemirror/matchbrackets": "^0.18.0",
+
"@codemirror/search": "^0.18.2",
+
"@codemirror/state": "^0.18.2",
+
"@codemirror/view": "^0.18.3",
"@fortawesome/fontawesome-svg-core": "^1.2.14",
"@fortawesome/free-solid-svg-icons": "^5.7.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@reach/router": "^1.2.1",
-
"@testing-library/react-hooks": "^3.1.1",
"@types/jest": "^26.0.10",
"@types/jquery": "^3.5.1",
"@types/node": "^12.11.1",
"@types/reach__router": "^1.2.6",
"@types/react": "^16.8.2",
-
"@types/react-copy-to-clipboard": "^4.3.0",
+
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^16.8.0",
-
"@types/react-resize-detector": "^4.2.0",
+
"@types/react-resize-detector": "^5.0.0",
"@types/sanitize-html": "^1.20.2",
"bootstrap": "^4.2.1",
+
"codemirror-promql": "^0.14.0",
"css.escape": "^1.5.1",
"downshift": "^3.4.8",
"enzyme-to-json": "^3.4.3",
···
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.7.0",
"react-resize-detector": "^5.0.7",
-
"react-scripts": "3.4.3",
+
"react-scripts": "3.4.4",
"react-test-renderer": "^16.9.0",
"reactstrap": "^8.0.1",
"sanitize-html": "^1.20.1",
···
"not op_mini all"
],
"devDependencies": {
+
"@testing-library/react-hooks": "^3.1.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/flot": "0.0.31",
···
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"jest-fetch-mock": "^3.0.3",
+
"mutationobserver-shim": "^0.3.7",
"prettier": "^1.18.2",
"sinon": "^9.0.3"
},
···
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
+
],
+
"transformIgnorePatterns": [
+
"/node_modules/(?!codemirror-promql).+(js|jsx)$"
]
}
}
+1440 -1136
pkgs/servers/monitoring/prometheus/webui-yarndeps.nix
···
};
}
{
-
name = "_babel_code_frame___code_frame_7.10.4.tgz";
+
name = "_babel_code_frame___code_frame_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_code_frame___code_frame_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz";
-
sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a";
+
name = "_babel_code_frame___code_frame_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz";
+
sha1 = "dcfc826beef65e75c50e21d3837d7d95798dd658";
};
}
{
-
name = "_babel_compat_data___compat_data_7.12.5.tgz";
+
name = "_babel_compat_data___compat_data_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_compat_data___compat_data_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.5.tgz";
-
sha1 = "f56db0c4bb1bbbf221b4e81345aab4141e7cb0e9";
+
name = "_babel_compat_data___compat_data_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz";
+
sha1 = "a8a5ccac19c200f9dd49624cac6e19d7be1236a1";
};
}
{
···
};
}
{
-
name = "_babel_core___core_7.12.3.tgz";
+
name = "_babel_core___core_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_core___core_7.12.3.tgz";
-
url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz";
-
sha1 = "1b436884e1e3bff6fb1328dc02b208759de92ad8";
+
name = "_babel_core___core_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz";
+
sha1 = "07de050bbd8193fcd8a3c27918c0890613a94559";
};
}
{
-
name = "_babel_generator___generator_7.12.5.tgz";
+
name = "_babel_generator___generator_7.13.9.tgz";
path = fetchurl {
-
name = "_babel_generator___generator_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz";
-
sha1 = "a2c50de5c8b6d708ab95be5e6053936c1884a4de";
+
name = "_babel_generator___generator_7.13.9.tgz";
+
url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz";
+
sha1 = "3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39";
};
}
{
-
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.10.4.tgz";
+
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz";
-
sha1 = "5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3";
+
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz";
+
sha1 = "0f58e86dfc4bb3b1fcd7db806570e177d439b6ab";
};
}
{
-
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.4.tgz";
+
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz";
-
sha1 = "bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3";
+
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz";
+
sha1 = "6bc20361c88b0a74d05137a65cac8d3cbf6f61fc";
};
}
{
-
name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz";
+
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz";
-
sha1 = "55fc1ead5242caa0ca2875dcb8eed6d311e50f48";
+
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz";
+
sha1 = "1310a1678cb8427c07a753750da4f8ce442bdd0c";
};
}
{
-
name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.10.4.tgz";
+
name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.13.11.tgz";
path = fetchurl {
-
name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz";
-
sha1 = "8095cddbff858e6fa9c326daee54a2f2732c1d5d";
+
name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.13.11.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz";
+
sha1 = "30d30a005bca2c953f5653fc25091a492177f4f6";
};
}
{
-
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz";
+
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.17.tgz";
path = fetchurl {
-
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz";
-
sha1 = "cb470c76198db6a24e9dbc8987275631e5d29831";
+
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.17.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz";
+
sha1 = "a2ac87e9e319269ac655b8d4415e94d38d663cb7";
};
}
{
-
name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz";
+
name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.1.5.tgz";
path = fetchurl {
-
name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz";
-
sha1 = "3c45998f431edd4a9214c5f1d3ad1448a6137f6e";
+
name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.1.5.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz";
+
sha1 = "3c2f91b7971b9fc11fe779c945c014065dea340e";
};
}
{
-
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz";
+
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz";
-
sha1 = "18b1302d4677f9dc4740fe8c9ed96680e29d37e8";
-
};
-
}
-
{
-
name = "_babel_helper_define_map___helper_define_map_7.10.5.tgz";
-
path = fetchurl {
-
name = "_babel_helper_define_map___helper_define_map_7.10.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz";
-
sha1 = "b53c10db78a640800152692b13393147acb9bb30";
-
};
-
}
-
{
-
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.1.tgz";
-
path = fetchurl {
-
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz";
-
sha1 = "8006a466695c4ad86a2a5f2fb15b5f2c31ad5633";
-
};
-
}
-
{
-
name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz";
-
path = fetchurl {
-
name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz";
-
sha1 = "d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a";
+
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz";
+
sha1 = "17b5c59ff473d9f956f40ef570cf3a76ca12657f";
};
}
{
-
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz";
+
name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz";
-
sha1 = "98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2";
+
name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz";
+
sha1 = "93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a";
};
}
{
-
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.4.tgz";
+
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz";
-
sha1 = "d49b001d1d5a68ca5e6604dda01a6297f7c9381e";
+
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz";
+
sha1 = "bc63451d403a3b3082b97e1d8b3fe5bd4091e583";
};
}
{
-
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz";
+
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz";
-
sha1 = "fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c";
+
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz";
+
sha1 = "5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8";
};
}
{
-
name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz";
+
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz";
-
sha1 = "1bfc0229f794988f76ed0a4d4e90860850b54dfb";
+
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz";
+
sha1 = "dfe368f26d426a07299d8d6513821768216e6d72";
};
}
{
-
name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz";
+
name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz";
-
sha1 = "7954fec71f5b32c48e4b303b437c34453fd7247c";
+
name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz";
+
sha1 = "c6a369a6f3621cb25da014078684da9196b61977";
};
}
{
-
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz";
+
name = "_babel_helper_module_transforms___helper_module_transforms_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz";
-
sha1 = "50dc96413d594f995a77905905b05893cd779673";
+
name = "_babel_helper_module_transforms___helper_module_transforms_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz";
+
sha1 = "600e58350490828d82282631a1422268e982ba96";
};
}
{
-
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.10.4.tgz";
+
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz";
-
sha1 = "2f75a831269d4f677de49986dff59927533cf375";
+
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz";
+
sha1 = "5c02d171b4c8615b1e7163f888c1c81c30a2aaea";
};
}
{
-
name = "_babel_helper_regex___helper_regex_7.10.5.tgz";
+
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_helper_regex___helper_regex_7.10.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz";
-
sha1 = "32dfbb79899073c415557053a19bd055aae50ae0";
+
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz";
+
sha1 = "806526ce125aed03373bc416a828321e3a6a33af";
};
}
{
-
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz";
+
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz";
-
sha1 = "8c4dbbf916314f6047dc05e6a2217074238347fd";
+
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz";
+
sha1 = "376a760d9f7b4b2077a9dd05aa9c3927cadb2209";
};
}
{
-
name = "_babel_helper_replace_supers___helper_replace_supers_7.12.5.tgz";
+
name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_helper_replace_supers___helper_replace_supers_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz";
-
sha1 = "f009a17543bbbbce16b06206ae73b63d3fca68d9";
+
name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz";
+
sha1 = "6442f4c1ad912502481a564a7386de0c77ff3804";
};
}
{
-
name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz";
+
name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz";
-
sha1 = "32427e5aa61547d38eb1e6eaf5fd1426fdad9136";
+
name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz";
+
sha1 = "dd6c538afb61819d205a012c31792a39c7a5eaf6";
};
}
{
···
};
}
{
-
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz";
+
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz";
+
path = fetchurl {
+
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz";
+
sha1 = "e9430be00baf3e88b0e13e6f9d4eaf2136372b05";
+
};
+
}
+
{
+
name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz";
path = fetchurl {
-
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz";
-
sha1 = "f8a491244acf6a676158ac42072911ba83ad099f";
+
name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz";
+
sha1 = "c9a1f021917dcb5ccf0d4e453e399022981fc9ed";
};
}
{
-
name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz";
+
name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz";
path = fetchurl {
-
name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz";
-
sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2";
+
name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz";
+
sha1 = "d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831";
};
}
{
-
name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz";
+
name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz";
-
sha1 = "175567380c3e77d60ff98a54bb015fe78f2178d9";
+
name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz";
+
sha1 = "bdb5c66fda8526ec235ab894ad53a1235c79fcc4";
};
}
{
-
name = "_babel_helper_wrap_function___helper_wrap_function_7.12.3.tgz";
+
name = "_babel_helpers___helpers_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_helper_wrap_function___helper_wrap_function_7.12.3.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz";
-
sha1 = "3332339fc4d1fbbf1c27d7958c27d34708e990d9";
+
name = "_babel_helpers___helpers_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz";
+
sha1 = "fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8";
};
}
{
-
name = "_babel_helpers___helpers_7.12.5.tgz";
+
name = "_babel_highlight___highlight_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_helpers___helpers_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz";
-
sha1 = "1a1ba4a768d9b58310eda516c449913fe647116e";
+
name = "_babel_highlight___highlight_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz";
+
sha1 = "a8b2a66148f5b27d666b15d81774347a731d52d1";
};
}
{
-
name = "_babel_highlight___highlight_7.10.4.tgz";
+
name = "_babel_parser___parser_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_highlight___highlight_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz";
-
sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143";
+
name = "_babel_parser___parser_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.12.tgz";
+
sha1 = "ba320059420774394d3b0c0233ba40e4250b81d1";
};
}
{
-
name = "_babel_parser___parser_7.12.5.tgz";
+
name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_parser___parser_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.5.tgz";
-
sha1 = "b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0";
+
name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz";
+
sha1 = "a3484d84d0b549f3fc916b99ee4783f26fabad2a";
};
}
{
-
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz";
+
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz";
-
sha1 = "dc6c1170e27d8aca99ff65f4925bd06b1c90550e";
+
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz";
+
sha1 = "87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1";
};
}
{
···
};
}
{
-
name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz";
+
name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz";
-
sha1 = "a082ff541f2a29a4821065b8add9346c0c16e5de";
+
name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz";
+
sha1 = "146376000b94efd001e57a40a88a525afaab9f37";
};
}
{
···
};
}
{
-
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz";
+
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz";
-
sha1 = "43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc";
+
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz";
+
sha1 = "876a1f6966e1dec332e8c9451afda3bebcdf2e1d";
};
}
{
-
name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz";
+
name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz";
-
sha1 = "8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4";
+
name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz";
+
sha1 = "393be47a4acd03fa2af6e3cde9b06e33de1b446d";
};
}
{
-
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz";
+
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz";
-
sha1 = "d45423b517714eedd5621a9dfdc03fa9f4eb241c";
+
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz";
+
sha1 = "bf1fb362547075afda3634ed31571c5901afef7b";
};
}
{
-
name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz";
+
name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz";
-
sha1 = "f2c490d36e1b3c9659241034a5d2cd50263a2751";
+
name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz";
+
sha1 = "93fa78d63857c40ce3c8c3315220fd00bfbb4e1a";
};
}
{
···
};
}
{
-
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz";
+
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz";
-
sha1 = "3ed4fff31c015e7f3f1467f190dbe545cd7b046c";
+
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz";
+
sha1 = "3730a31dafd3c10d8ccd10648ed80a2ac5472ef3";
};
}
{
···
};
}
{
-
name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.5.tgz";
+
name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz";
-
sha1 = "b1ce757156d40ed79d59d467cb2b154a5c4149ba";
+
name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz";
+
sha1 = "bd9da3188e787b5120b4f9d465a8261ce67ed1db";
};
}
{
-
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz";
+
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz";
-
sha1 = "def9bd03cea0f9b72283dac0ec22d289c7691069";
+
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz";
+
sha1 = "5d210a4d727d6ce3b18f9de82cc99a3964eed60a";
};
}
{
-
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz";
+
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz";
-
sha1 = "ccc2421af64d3aae50b558a71cede929a5ab2942";
+
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz";
+
sha1 = "3ad6bd5901506ea996fc31bdcf3ccfa2bed71107";
};
}
{
···
};
}
{
-
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.1.tgz";
+
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz";
-
sha1 = "cce122203fc8a32794296fc377c6dedaf4363797";
+
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz";
+
sha1 = "ba9feb601d422e0adea6760c2bd6bbb7bfec4866";
};
}
{
-
name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz";
+
name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz";
-
sha1 = "86814f6e7a21374c980c10d38b4493e703f4a389";
+
name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz";
+
sha1 = "04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787";
};
}
{
-
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz";
+
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz";
-
sha1 = "2a183958d417765b9eae334f47758e5d6a82e072";
+
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz";
+
sha1 = "bebde51339be829c17aaaaced18641deb62b39ba";
};
}
{
···
};
}
{
-
name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz";
+
name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz";
-
sha1 = "bcb297c5366e79bebadef509549cd93b04f19978";
+
name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz";
+
sha1 = "b5c987274c4a3a82b89714796931a6b53544ae10";
};
}
{
-
name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz";
+
name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz";
-
sha1 = "81a8b535b284476c41be6de06853a8802b98c5dd";
+
name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz";
+
sha1 = "fac829bf3c7ef4a1bc916257b403e58c6bdaf648";
};
}
{
···
};
}
{
-
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.1.tgz";
+
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz";
-
sha1 = "a77670d9abe6d63e8acadf4c31bb1eb5a506bbdd";
+
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz";
+
sha1 = "5df9962503c0a9c918381c929d51d4d6949e7e86";
};
}
{
···
};
}
{
-
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz";
+
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz";
-
sha1 = "9d9d357cc818aa7ae7935917c1257f67677a0926";
+
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz";
+
sha1 = "044fb81ebad6698fe62c478875575bcbb9b70f15";
};
}
{
···
};
}
{
-
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz";
+
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz";
-
sha1 = "dd6c0b357ac1bb142d98537450a319625d13d2a0";
+
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz";
+
sha1 = "c5f0fa6e249f5b739727f923540cf7a806130178";
};
}
{
-
name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.1.tgz";
+
name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz";
-
sha1 = "460ba9d77077653803c3dd2e673f76d66b4029e5";
+
name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz";
+
sha1 = "9dff111ca64154cef0f4dc52cf843d9f12ce4474";
};
}
{
-
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz";
+
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz";
-
sha1 = "8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3";
+
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz";
+
sha1 = "10a59bebad52d637a027afa692e8d5ceff5e3dae";
};
}
{
-
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz";
+
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz";
-
sha1 = "3849a49cc2a22e9743cbd6b52926d30337229af1";
+
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz";
+
sha1 = "8e112bf6771b82bf1e974e5e26806c5c99aa516f";
};
}
{
-
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz";
+
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz";
-
sha1 = "f2a1a365bde2b7112e0a6ded9067fdd7c07905d9";
+
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz";
+
sha1 = "a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4";
};
}
{
-
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz";
+
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz";
-
sha1 = "f0ee727874b42a208a48a586b84c3d222c2bbef1";
+
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz";
+
sha1 = "f36e55076d06f41dfd78557ea039c1b581642e61";
};
}
{
-
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz";
+
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz";
-
sha1 = "65e650fcaddd3d88ddce67c0f834a3d436a32db6";
+
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz";
+
sha1 = "0265155075c42918bf4d3a4053134176ad9b533b";
};
}
{
-
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz";
+
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz";
-
sha1 = "d68cf6c9b7f838a8a4144badbe97541ea0904852";
+
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz";
+
sha1 = "845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed";
};
}
{
-
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz";
+
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz";
-
sha1 = "b9a570fe0d0a8d460116413cb4f97e8e08b2f847";
+
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz";
+
sha1 = "c5dce270014d4e1ebb1d806116694c12b7028963";
};
}
{
-
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz";
+
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz";
-
sha1 = "a1d16c14862817b6409c0a678d6f9373ca9cd975";
+
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz";
+
sha1 = "3f1601cc29905bfcb67f53910f197aeafebb25ad";
};
}
{
-
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz";
+
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz";
-
sha1 = "745661baba295ac06e686822797a69fbaa2ca228";
+
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz";
+
sha1 = "6f06b87a8b803fd928e54b81c258f0a0033904de";
};
}
{
-
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz";
+
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz";
-
sha1 = "b0f2ed356ba1be1428ecaf128ff8a24f02830ae0";
+
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz";
+
sha1 = "4d52390b9a273e651e4aba6aee49ef40e80cd0a1";
};
}
{
···
};
}
{
-
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz";
+
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz";
-
sha1 = "07640f28867ed16f9511c99c888291f560921cfa";
+
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz";
+
sha1 = "c799f881a8091ac26b54867a845c3e97d2696062";
};
}
{
-
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz";
+
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz";
-
sha1 = "2ec76258c70fe08c6d7da154003a480620eba667";
+
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz";
+
sha1 = "bb024452f9aaed861d374c8e7a24252ce3a50051";
};
}
{
-
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz";
+
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz";
-
sha1 = "d73b803a26b37017ddf9d3bb8f4dc58bfb806f57";
+
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz";
+
sha1 = "2ca45bafe4a820197cf315794a4d26560fe4bdb9";
};
}
{
-
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz";
+
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz";
-
sha1 = "496038602daf1514a64d43d8e17cbb2755e0c3ad";
+
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz";
+
sha1 = "5ffa66cd59b9e191314c9f1f803b938e8c081e40";
};
}
{
-
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz";
+
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz";
-
sha1 = "3154300b026185666eebb0c0ed7f8415fefcf6f9";
+
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz";
+
sha1 = "19f511d60e3d8753cc5a6d4e775d3a5184866cc3";
};
}
{
-
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz";
+
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz";
-
sha1 = "fa403124542636c786cf9b460a0ffbb48a86e648";
+
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz";
+
sha1 = "7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b";
};
}
{
-
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz";
+
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz";
-
sha1 = "663fea620d593c93f214a464cd399bf6dc683086";
+
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz";
+
sha1 = "6d066ee2bff3c7b3d60bf28dec169ad993831ae3";
};
}
{
-
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz";
+
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz";
-
sha1 = "eb5a218d6b1c68f3d6217b8fa2cc82fec6547902";
+
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz";
+
sha1 = "8a3d96a97d199705b9fd021580082af81c06e70b";
};
}
{
-
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz";
+
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz";
-
sha1 = "b407f5c96be0d9f5f88467497fa82b30ac3e8753";
+
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz";
+
sha1 = "2213725a5f5bbbe364b50c3ba5998c9599c5c9d9";
};
}
{
-
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz";
+
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz";
-
sha1 = "80073f02ee1bb2d365c3416490e085c95759dec0";
+
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz";
+
sha1 = "e22d8c3af24b150dd528cbd6e685e799bf1c351c";
};
}
{
-
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz";
+
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz";
-
sha1 = "4ea08696b8d2e65841d0c7706482b048bed1066e";
+
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz";
+
sha1 = "b4416a2d63b8f7be314f3d349bd55a9c1b5171f7";
};
}
{
-
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz";
+
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz";
-
sha1 = "d2e963b038771650c922eff593799c96d853255d";
+
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz";
+
sha1 = "8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007";
};
}
{
-
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz";
+
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz";
-
sha1 = "41bc81200d730abb4456ab8b3fbd5537b59adecd";
+
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz";
+
sha1 = "4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81";
};
}
{
-
name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.12.1.tgz";
+
name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.1.tgz";
-
sha1 = "4471f0851feec3231cc9aaa0dccde39947c1ac1e";
+
name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.13.10.tgz";
+
sha1 = "5d3de8a8ee53f4612e728f4f17b8c9125f8019e5";
};
}
{
···
};
}
{
-
name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz";
+
name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz";
-
sha1 = "1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d";
+
name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz";
+
sha1 = "c28effd771b276f4647411c9733dbb2d2da954bd";
};
}
{
-
name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.5.tgz";
+
name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz";
-
sha1 = "677de5b96da310430d6cfb7fee16a1603afa3d56";
+
name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz";
+
sha1 = "f510c0fa7cd7234153539f9a362ced41a5ca1447";
};
}
{
-
name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz";
+
name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz";
-
sha1 = "ef43cbca2a14f1bd17807dbe4376ff89d714cf28";
+
name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz";
+
sha1 = "422d99d122d592acab9c35ea22a6cfd9bf189f60";
};
}
{
-
name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz";
+
name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz";
-
sha1 = "d07de6863f468da0809edcf79a1aa8ce2a82a26b";
+
name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz";
+
sha1 = "051d76126bee5c9a6aa3ba37be2f6c1698856bcb";
};
}
{
-
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.5.tgz";
+
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz";
-
sha1 = "39ede0e30159770561b6963be143e40af3bde00c";
+
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz";
+
sha1 = "1df5dfaf0f4b784b43e96da6f28d630e775f68b3";
};
}
{
···
};
}
{
-
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz";
+
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz";
-
sha1 = "5f0a28d842f6462281f06a964e88ba8d7ab49753";
+
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz";
+
sha1 = "b628bcc9c85260ac1aeb05b45bde25210194a2f5";
};
}
{
-
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz";
+
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz";
-
sha1 = "6fdfc8cc7edcc42b36a7c12188c6787c873adcd8";
+
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz";
+
sha1 = "7d9988d4f06e0fe697ea1d9803188aa18b472695";
};
}
{
···
};
}
{
-
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz";
+
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz";
-
sha1 = "0bf9cac5550fce0cfdf043420f661d645fdc75e3";
+
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz";
+
sha1 = "db755732b70c539d504c6390d9ce90fe64aff7ad";
};
}
{
-
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz";
+
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz";
-
sha1 = "527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e";
+
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz";
+
sha1 = "84887710e273c1815ace7ae459f6f42a5d31d5fd";
};
}
{
-
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.1.tgz";
+
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz";
-
sha1 = "5c24cf50de396d30e99afc8d1c700e8bce0f5caf";
+
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz";
+
sha1 = "760ffd936face73f860ae646fb86ee82f3d06d1f";
};
}
{
-
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz";
+
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz";
-
sha1 = "b43ece6ed9a79c0c71119f576d299ef09d942843";
+
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz";
+
sha1 = "a36049127977ad94438dee7443598d1cefdf409d";
};
}
{
-
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz";
+
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz";
-
sha1 = "9ca6be343d42512fbc2e68236a82ae64bc7af78a";
+
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz";
+
sha1 = "785dd67a1f2ea579d9c2be722de8c84cb85f5a7f";
};
}
{
-
name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.12.1.tgz";
+
name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz";
-
sha1 = "d92cc0af504d510e26a754a7dbc2e5c8cd9c7ab4";
+
name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz";
+
sha1 = "4a498e1f3600342d2a9e61f60131018f55774853";
};
}
{
-
name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz";
+
name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz";
-
sha1 = "5232b9f81ccb07070b7c3c36c67a1b78f1845709";
+
name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz";
+
sha1 = "840ced3b816d3b5127dd1d12dcedc5dead1a5e74";
};
}
{
-
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz";
+
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz";
-
sha1 = "cc9661f61390db5c65e3febaccefd5c6ac3faecb";
+
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz";
+
sha1 = "b52521685804e155b1202e83fc188d34bb70f5ac";
};
}
{
···
};
}
{
-
name = "_babel_preset_env___preset_env_7.12.1.tgz";
+
name = "_babel_preset_env___preset_env_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_preset_env___preset_env_7.12.1.tgz";
-
url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz";
-
sha1 = "9c7e5ca82a19efc865384bb4989148d2ee5d7ac2";
+
name = "_babel_preset_env___preset_env_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.12.tgz";
+
sha1 = "6dff470478290582ac282fb77780eadf32480237";
};
}
{
···
};
}
{
-
name = "_babel_preset_react___preset_react_7.12.5.tgz";
+
name = "_babel_preset_react___preset_react_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_preset_react___preset_react_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.5.tgz";
-
sha1 = "d45625f65d53612078a43867c5c6750e78772c56";
+
name = "_babel_preset_react___preset_react_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.13.tgz";
+
sha1 = "5f911b2eb24277fa686820d5bd81cad9a0602a0a";
};
}
{
···
};
}
{
-
name = "_babel_runtime_corejs3___runtime_corejs3_7.12.5.tgz";
+
name = "_babel_runtime_corejs3___runtime_corejs3_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_runtime_corejs3___runtime_corejs3_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz";
-
sha1 = "ffee91da0eb4c6dae080774e94ba606368e414f4";
+
name = "_babel_runtime_corejs3___runtime_corejs3_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz";
+
sha1 = "14c3f4c85de22ba88e8e86685d13e8861a82fe86";
};
}
{
···
};
}
{
-
name = "_babel_runtime___runtime_7.12.5.tgz";
+
name = "_babel_runtime___runtime_7.13.10.tgz";
path = fetchurl {
-
name = "_babel_runtime___runtime_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz";
-
sha1 = "410e7e487441e1b360c29be715d870d9b985882e";
+
name = "_babel_runtime___runtime_7.13.10.tgz";
+
url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz";
+
sha1 = "47d42a57b6095f4468da440388fdbad8bebf0d7d";
};
}
{
-
name = "_babel_template___template_7.10.4.tgz";
+
name = "_babel_template___template_7.12.13.tgz";
path = fetchurl {
-
name = "_babel_template___template_7.10.4.tgz";
-
url = "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz";
-
sha1 = "3251996c4200ebc71d1a8fc405fba940f36ba278";
+
name = "_babel_template___template_7.12.13.tgz";
+
url = "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz";
+
sha1 = "530265be8a2589dbb37523844c5bcb55947fb327";
};
}
{
-
name = "_babel_traverse___traverse_7.12.5.tgz";
+
name = "_babel_traverse___traverse_7.13.0.tgz";
path = fetchurl {
-
name = "_babel_traverse___traverse_7.12.5.tgz";
-
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.5.tgz";
-
sha1 = "78a0c68c8e8a35e4cacfd31db8bb303d5606f095";
+
name = "_babel_traverse___traverse_7.13.0.tgz";
+
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.0.tgz";
+
sha1 = "6d95752475f86ee7ded06536de309a65fc8966cc";
};
}
{
-
name = "_babel_types___types_7.12.6.tgz";
+
name = "_babel_types___types_7.13.12.tgz";
path = fetchurl {
-
name = "_babel_types___types_7.12.6.tgz";
-
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz";
-
sha1 = "ae0e55ef1cce1fbc881cd26f8234eb3e657edc96";
+
name = "_babel_types___types_7.13.12.tgz";
+
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.13.12.tgz";
+
sha1 = "edbf99208ef48852acdff1c8a681a1e4ade580cd";
};
}
{
···
};
}
{
+
name = "_codemirror_autocomplete___autocomplete_0.18.3.tgz";
+
path = fetchurl {
+
name = "_codemirror_autocomplete___autocomplete_0.18.3.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-0.18.3.tgz";
+
sha1 = "6c75904c1156e4d9a00e56b9a3e559dda6149e1e";
+
};
+
}
+
{
+
name = "_codemirror_closebrackets___closebrackets_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_closebrackets___closebrackets_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/closebrackets/-/closebrackets-0.18.0.tgz";
+
sha1 = "4bd7e9227ed6e90e590fa6d289d34b0c065cb8cf";
+
};
+
}
+
{
+
name = "_codemirror_commands___commands_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_commands___commands_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/commands/-/commands-0.18.0.tgz";
+
sha1 = "10344d7d7a0fecad826e9853c1e6069d706298c6";
+
};
+
}
+
{
+
name = "_codemirror_comment___comment_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_comment___comment_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/comment/-/comment-0.18.0.tgz";
+
sha1 = "f42e3baaacbeb57f22f4a3eabe5738b3d2bca1f7";
+
};
+
}
+
{
+
name = "_codemirror_highlight___highlight_0.18.3.tgz";
+
path = fetchurl {
+
name = "_codemirror_highlight___highlight_0.18.3.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/highlight/-/highlight-0.18.3.tgz";
+
sha1 = "50e268630f113c322a2dc97c9f68d71934fffcb0";
+
};
+
}
+
{
+
name = "_codemirror_history___history_0.18.1.tgz";
+
path = fetchurl {
+
name = "_codemirror_history___history_0.18.1.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/history/-/history-0.18.1.tgz";
+
sha1 = "853cde4b138b172235d58f945871f0fc08b7310a";
+
};
+
}
+
{
+
name = "_codemirror_language___language_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_language___language_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/language/-/language-0.18.0.tgz";
+
sha1 = "16c3beaf372d0ecfcb76d708a8f55efccaa25563";
+
};
+
}
+
{
+
name = "_codemirror_lint___lint_0.18.1.tgz";
+
path = fetchurl {
+
name = "_codemirror_lint___lint_0.18.1.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/lint/-/lint-0.18.1.tgz";
+
sha1 = "ef5502d3bc27eaf23c670fa888bd23d09b59af55";
+
};
+
}
+
{
+
name = "_codemirror_matchbrackets___matchbrackets_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_matchbrackets___matchbrackets_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/matchbrackets/-/matchbrackets-0.18.0.tgz";
+
sha1 = "64a493090d942de19f15a9ed3cb0fa19ed55f18b";
+
};
+
}
+
{
+
name = "_codemirror_panel___panel_0.18.1.tgz";
+
path = fetchurl {
+
name = "_codemirror_panel___panel_0.18.1.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/panel/-/panel-0.18.1.tgz";
+
sha1 = "b2179cdfb7d7c2913ba682d61d00edff160cfad0";
+
};
+
}
+
{
+
name = "_codemirror_rangeset___rangeset_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_rangeset___rangeset_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/rangeset/-/rangeset-0.18.0.tgz";
+
sha1 = "8b3bec00c1cee8c3db3827a752a76819ead2dfab";
+
};
+
}
+
{
+
name = "_codemirror_search___search_0.18.2.tgz";
+
path = fetchurl {
+
name = "_codemirror_search___search_0.18.2.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/search/-/search-0.18.2.tgz";
+
sha1 = "7f6311ce4d5749d92aefb41b2f8628d28d90918c";
+
};
+
}
+
{
+
name = "_codemirror_state___state_0.18.3.tgz";
+
path = fetchurl {
+
name = "_codemirror_state___state_0.18.3.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/state/-/state-0.18.3.tgz";
+
sha1 = "f275293b077d6c3867c0343320d6b29c10e54f84";
+
};
+
}
+
{
+
name = "_codemirror_text___text_0.18.0.tgz";
+
path = fetchurl {
+
name = "_codemirror_text___text_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/text/-/text-0.18.0.tgz";
+
sha1 = "a4a98862989ccef5545e730b269136d524c6a7c7";
+
};
+
}
+
{
+
name = "_codemirror_tooltip___tooltip_0.18.4.tgz";
+
path = fetchurl {
+
name = "_codemirror_tooltip___tooltip_0.18.4.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/tooltip/-/tooltip-0.18.4.tgz";
+
sha1 = "981bc0ced792c6754148edbc1f60092f3fa54207";
+
};
+
}
+
{
+
name = "_codemirror_view___view_0.18.3.tgz";
+
path = fetchurl {
+
name = "_codemirror_view___view_0.18.3.tgz";
+
url = "https://registry.yarnpkg.com/@codemirror/view/-/view-0.18.3.tgz";
+
sha1 = "31ffcd0a073124b95feac47d2a3a03bfb3546fca";
+
};
+
}
+
{
name = "_csstools_convert_colors___convert_colors_1.4.0.tgz";
path = fetchurl {
name = "_csstools_convert_colors___convert_colors_1.4.0.tgz";
···
};
-
name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.32.tgz";
+
name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.35.tgz";
path = fetchurl {
-
name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.32.tgz";
-
url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.32.tgz";
-
sha1 = "3436795d5684f22742989bfa08f46f50f516f259";
+
name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_0.2.35.tgz";
+
url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz";
+
sha1 = "01dd3d054da07a00b764d78748df20daf2b317e9";
};
-
name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.32.tgz";
+
name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.35.tgz";
path = fetchurl {
-
name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.32.tgz";
-
url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.32.tgz";
-
sha1 = "da092bfc7266aa274be8604de610d7115f9ba6cf";
+
name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_1.2.35.tgz";
+
url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.35.tgz";
+
sha1 = "85aea8c25645fcec88d35f2eb1045c38d3e65cff";
};
-
name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.1.tgz";
+
name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.3.tgz";
path = fetchurl {
-
name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.1.tgz";
-
url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.1.tgz";
-
sha1 = "e1432676ddd43108b41197fee9f86d910ad458ef";
+
name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_5.15.3.tgz";
+
url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz";
+
sha1 = "52eebe354f60dc77e0bde934ffc5c75ffd04f9d8";
};
-
name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.12.tgz";
+
name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.14.tgz";
path = fetchurl {
-
name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.12.tgz";
-
url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.12.tgz";
-
sha1 = "fbdea86e8b73032895e6ded1ee1dbb1874902d1a";
+
name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.14.tgz";
+
url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.14.tgz";
+
sha1 = "bf28875c3935b69ce2dc620e1060b217a47f64ca";
};
···
name = "_hapi_topo___topo_3.1.6.tgz";
url = "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz";
sha1 = "68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29";
+
};
+
}
+
{
+
name = "_hypnosphi_create_react_context___create_react_context_0.3.1.tgz";
+
path = fetchurl {
+
name = "_hypnosphi_create_react_context___create_react_context_0.3.1.tgz";
+
url = "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz";
+
sha1 = "f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6";
};
···
};
-
name = "_sinonjs_commons___commons_1.8.1.tgz";
+
name = "_sinonjs_commons___commons_1.8.2.tgz";
path = fetchurl {
-
name = "_sinonjs_commons___commons_1.8.1.tgz";
-
url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz";
-
sha1 = "e7df00f98a203324f6dc7cc606cad9d4a8ab2217";
+
name = "_sinonjs_commons___commons_1.8.2.tgz";
+
url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.2.tgz";
+
sha1 = "858f5c4b48d80778fde4b9d541f27edc0d56488b";
};
···
};
-
name = "_sinonjs_formatio___formatio_5.0.1.tgz";
-
path = fetchurl {
-
name = "_sinonjs_formatio___formatio_5.0.1.tgz";
-
url = "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-5.0.1.tgz";
-
sha1 = "f13e713cb3313b1ab965901b01b0828ea6b77089";
-
};
-
}
-
{
-
name = "_sinonjs_samsam___samsam_5.3.0.tgz";
+
name = "_sinonjs_samsam___samsam_5.3.1.tgz";
path = fetchurl {
-
name = "_sinonjs_samsam___samsam_5.3.0.tgz";
-
url = "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-5.3.0.tgz";
-
sha1 = "1d2f0743dc54bf13fe9d508baefacdffa25d4329";
+
name = "_sinonjs_samsam___samsam_5.3.1.tgz";
+
url = "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-5.3.1.tgz";
+
sha1 = "375a45fe6ed4e92fca2fb920e007c48232a6507f";
};
···
};
-
name = "_testing_library_react_hooks___react_hooks_3.4.2.tgz";
+
name = "_testing_library_react_hooks___react_hooks_3.7.0.tgz";
path = fetchurl {
-
name = "_testing_library_react_hooks___react_hooks_3.4.2.tgz";
-
url = "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.4.2.tgz";
-
sha1 = "8deb94f7684e0d896edd84a4c90e5b79a0810bc2";
+
name = "_testing_library_react_hooks___react_hooks_3.7.0.tgz";
+
url = "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.7.0.tgz";
+
sha1 = "6d75c5255ef49bce39b6465bf6b49e2dac84919e";
};
-
name = "_types_babel__core___babel__core_7.1.12.tgz";
+
name = "_types_babel__core___babel__core_7.1.14.tgz";
path = fetchurl {
-
name = "_types_babel__core___babel__core_7.1.12.tgz";
-
url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz";
-
sha1 = "4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d";
+
name = "_types_babel__core___babel__core_7.1.14.tgz";
+
url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz";
+
sha1 = "faaeefc4185ec71c389f4501ee5ec84b170cc402";
};
···
};
-
name = "_types_babel__traverse___babel__traverse_7.0.15.tgz";
+
name = "_types_babel__traverse___babel__traverse_7.11.1.tgz";
path = fetchurl {
-
name = "_types_babel__traverse___babel__traverse_7.0.15.tgz";
-
url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.15.tgz";
-
sha1 = "db9e4238931eb69ef8aab0ad6523d4d4caa39d03";
+
name = "_types_babel__traverse___babel__traverse_7.11.1.tgz";
+
url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz";
+
sha1 = "654f6c4f67568e24c23b367e947098c6206fa639";
};
-
name = "_types_cheerio___cheerio_0.22.22.tgz";
+
name = "_types_cheerio___cheerio_0.22.28.tgz";
path = fetchurl {
-
name = "_types_cheerio___cheerio_0.22.22.tgz";
-
url = "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.22.tgz";
-
sha1 = "ae71cf4ca59b8bbaf34c99af7a5d6c8894988f5f";
+
name = "_types_cheerio___cheerio_0.22.28.tgz";
+
url = "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.28.tgz";
+
sha1 = "90808aabb44fec40fa2950f4c72351e3e4eb065b";
};
···
};
-
name = "_types_history___history_4.7.8.tgz";
-
path = fetchurl {
-
name = "_types_history___history_4.7.8.tgz";
-
url = "https://registry.yarnpkg.com/@types/history/-/history-4.7.8.tgz";
-
sha1 = "49348387983075705fe8f4e02fb67f7daaec4934";
-
};
-
}
-
{
name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
path = fetchurl {
name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
···
};
-
name = "_types_jest___jest_26.0.15.tgz";
+
name = "_types_jest___jest_26.0.21.tgz";
path = fetchurl {
-
name = "_types_jest___jest_26.0.15.tgz";
-
url = "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.15.tgz";
-
sha1 = "12e02c0372ad0548e07b9f4e19132b834cb1effe";
+
name = "_types_jest___jest_26.0.21.tgz";
+
url = "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.21.tgz";
+
sha1 = "3a73c2731e7e4f0fbaea56ce7ff8c79cf812bd24";
};
-
name = "_types_jquery___jquery_3.5.4.tgz";
+
name = "_types_jquery___jquery_3.5.5.tgz";
path = fetchurl {
-
name = "_types_jquery___jquery_3.5.4.tgz";
-
url = "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.4.tgz";
-
sha1 = "e923f7d05ca790530f17f80a3b89bc28853fa17f";
+
name = "_types_jquery___jquery_3.5.5.tgz";
+
url = "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.5.tgz";
+
sha1 = "2c63f47c9c8d96693d272f5453602afd8338c903";
};
-
name = "_types_json_schema___json_schema_7.0.6.tgz";
+
name = "_types_json_schema___json_schema_7.0.7.tgz";
path = fetchurl {
-
name = "_types_json_schema___json_schema_7.0.6.tgz";
-
url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz";
-
sha1 = "f4c7ec43e81b319a9815115031709f26987891f0";
+
name = "_types_json_schema___json_schema_7.0.7.tgz";
+
url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz";
+
sha1 = "98a993516c859eb0d5c4c8f098317a9ea68db9ad";
};
···
};
-
name = "_types_node___node_14.14.8.tgz";
+
name = "_types_node___node_14.14.35.tgz";
path = fetchurl {
-
name = "_types_node___node_14.14.8.tgz";
-
url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.8.tgz";
-
sha1 = "2127bd81949a95c8b7d3240f3254352d72563aec";
+
name = "_types_node___node_14.14.35.tgz";
+
url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.35.tgz";
+
sha1 = "42c953a4e2b18ab931f72477e7012172f4ffa313";
};
-
name = "_types_node___node_12.19.5.tgz";
+
name = "_types_node___node_12.20.6.tgz";
path = fetchurl {
-
name = "_types_node___node_12.19.5.tgz";
-
url = "https://registry.yarnpkg.com/@types/node/-/node-12.19.5.tgz";
-
sha1 = "9be3946136e818597c71c62d04240d0602c645d4";
+
name = "_types_node___node_12.20.6.tgz";
+
url = "https://registry.yarnpkg.com/@types/node/-/node-12.20.6.tgz";
+
sha1 = "7b73cce37352936e628c5ba40326193443cfba25";
};
···
};
-
name = "_types_reach__router___reach__router_1.3.6.tgz";
+
name = "_types_reach__router___reach__router_1.3.7.tgz";
path = fetchurl {
-
name = "_types_reach__router___reach__router_1.3.6.tgz";
-
url = "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.6.tgz";
-
sha1 = "413417ce74caab331c70ce6a03a4c825188e4709";
+
name = "_types_reach__router___reach__router_1.3.7.tgz";
+
url = "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.7.tgz";
+
sha1 = "de8ab374259ae7f7499fc1373b9697a5f3cd6428";
};
-
name = "_types_react_copy_to_clipboard___react_copy_to_clipboard_4.3.0.tgz";
+
name = "_types_react_copy_to_clipboard___react_copy_to_clipboard_5.0.0.tgz";
path = fetchurl {
-
name = "_types_react_copy_to_clipboard___react_copy_to_clipboard_4.3.0.tgz";
-
url = "https://registry.yarnpkg.com/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-4.3.0.tgz";
-
sha1 = "8e07becb4f11cfced4bd36038cb5bdf5c2658be5";
+
name = "_types_react_copy_to_clipboard___react_copy_to_clipboard_5.0.0.tgz";
+
url = "https://registry.yarnpkg.com/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.0.tgz";
+
sha1 = "38b035ca0c28334d3e0efaf3f319b81eea9690cd";
};
-
name = "_types_react_dom___react_dom_16.9.9.tgz";
+
name = "_types_react_dom___react_dom_16.9.12.tgz";
path = fetchurl {
-
name = "_types_react_dom___react_dom_16.9.9.tgz";
-
url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.9.tgz";
-
sha1 = "d2d0a6f720a0206369ccbefff752ba37b9583136";
+
name = "_types_react_dom___react_dom_16.9.12.tgz";
+
url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.12.tgz";
+
sha1 = "55cd6b17e73922edb9545e5355a0016c1734e6f4";
};
-
name = "_types_react_resize_detector___react_resize_detector_4.2.0.tgz";
+
name = "_types_react_resize_detector___react_resize_detector_5.0.0.tgz";
path = fetchurl {
-
name = "_types_react_resize_detector___react_resize_detector_4.2.0.tgz";
-
url = "https://registry.yarnpkg.com/@types/react-resize-detector/-/react-resize-detector-4.2.0.tgz";
-
sha1 = "ee8802e25cfb34439aa7f52626932ea62dc5792e";
+
name = "_types_react_resize_detector___react_resize_detector_5.0.0.tgz";
+
url = "https://registry.yarnpkg.com/@types/react-resize-detector/-/react-resize-detector-5.0.0.tgz";
+
sha1 = "18ac4e6d518581bec6345845b7f08232f4cca8a5";
};
-
name = "_types_react_test_renderer___react_test_renderer_16.9.3.tgz";
+
name = "_types_react_test_renderer___react_test_renderer_17.0.1.tgz";
path = fetchurl {
-
name = "_types_react_test_renderer___react_test_renderer_16.9.3.tgz";
-
url = "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.3.tgz";
-
sha1 = "96bab1860904366f4e848b739ba0e2f67bcae87e";
+
name = "_types_react_test_renderer___react_test_renderer_17.0.1.tgz";
+
url = "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz";
+
sha1 = "3120f7d1c157fba9df0118dae20cb0297ee0e06b";
};
-
name = "_types_react___react_16.9.56.tgz";
+
name = "_types_react___react_17.0.3.tgz";
path = fetchurl {
-
name = "_types_react___react_16.9.56.tgz";
-
url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.56.tgz";
-
sha1 = "ea25847b53c5bec064933095fc366b1462e2adf0";
+
name = "_types_react___react_17.0.3.tgz";
+
url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz";
+
sha1 = "ba6e215368501ac3826951eef2904574c262cc79";
+
};
+
}
+
{
+
name = "_types_react___react_16.14.5.tgz";
+
path = fetchurl {
+
name = "_types_react___react_16.14.5.tgz";
+
url = "https://registry.yarnpkg.com/@types/react/-/react-16.14.5.tgz";
+
sha1 = "2c39b5cadefaf4829818f9219e5e093325979f4d";
};
···
};
-
name = "_types_sanitize_html___sanitize_html_1.27.0.tgz";
+
name = "_types_sanitize_html___sanitize_html_1.27.1.tgz";
path = fetchurl {
-
name = "_types_sanitize_html___sanitize_html_1.27.0.tgz";
-
url = "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.27.0.tgz";
-
sha1 = "77702dc856f16efecc005014c1d2e45b1f2cbc56";
+
name = "_types_sanitize_html___sanitize_html_1.27.1.tgz";
+
url = "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.27.1.tgz";
+
sha1 = "1fc4b67edd6296eeb366960d13cd01f5d6bffdcd";
};
-
name = "_types_sinon___sinon_9.0.8.tgz";
+
name = "_types_scheduler___scheduler_0.16.1.tgz";
path = fetchurl {
-
name = "_types_sinon___sinon_9.0.8.tgz";
-
url = "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.8.tgz";
-
sha1 = "1ed0038d356784f75b086104ef83bfd4130bb81b";
+
name = "_types_scheduler___scheduler_0.16.1.tgz";
+
url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz";
+
sha1 = "18845205e86ff0038517aab7a18a62a6b9f71275";
+
};
+
}
+
{
+
name = "_types_sinon___sinon_9.0.11.tgz";
+
path = fetchurl {
+
name = "_types_sinon___sinon_9.0.11.tgz";
+
url = "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.11.tgz";
+
sha1 = "7af202dda5253a847b511c929d8b6dda170562eb";
};
···
};
-
name = "_types_yargs_parser___yargs_parser_15.0.0.tgz";
+
name = "_types_yargs_parser___yargs_parser_20.2.0.tgz";
path = fetchurl {
-
name = "_types_yargs_parser___yargs_parser_15.0.0.tgz";
-
url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz";
-
sha1 = "cb3f9f741869e20cce330ffbeb9271590483882d";
+
name = "_types_yargs_parser___yargs_parser_20.2.0.tgz";
+
url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz";
+
sha1 = "dd3e6699ba3237f0348cd085e4698780204842f9";
};
···
};
-
name = "_types_yargs___yargs_15.0.10.tgz";
+
name = "_types_yargs___yargs_15.0.13.tgz";
path = fetchurl {
-
name = "_types_yargs___yargs_15.0.10.tgz";
-
url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.10.tgz";
-
sha1 = "0fe3c8173a0d5c3e780b389050140c3f5ea6ea74";
+
name = "_types_yargs___yargs_15.0.13.tgz";
+
url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz";
+
sha1 = "34f7fec8b389d7f3c1fd08026a5763e072d3c6dc";
};
···
};
+
name = "acorn___acorn_8.1.0.tgz";
+
path = fetchurl {
+
name = "acorn___acorn_8.1.0.tgz";
+
url = "https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz";
+
sha1 = "52311fd7037ae119cbb134309e901aa46295b3fe";
+
};
+
}
+
{
name = "address___address_1.1.2.tgz";
path = fetchurl {
name = "address___address_1.1.2.tgz";
···
};
-
name = "adjust_sourcemap_loader___adjust_sourcemap_loader_2.0.0.tgz";
+
name = "adjust_sourcemap_loader___adjust_sourcemap_loader_3.0.0.tgz";
path = fetchurl {
-
name = "adjust_sourcemap_loader___adjust_sourcemap_loader_2.0.0.tgz";
-
url = "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz";
-
sha1 = "6471143af75ec02334b219f54bc7970c52fb29a4";
+
name = "adjust_sourcemap_loader___adjust_sourcemap_loader_3.0.0.tgz";
+
url = "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz";
+
sha1 = "5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e";
};
···
};
-
name = "array_includes___array_includes_3.1.1.tgz";
+
name = "array_includes___array_includes_3.1.3.tgz";
path = fetchurl {
-
name = "array_includes___array_includes_3.1.1.tgz";
-
url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz";
-
sha1 = "cdd67e6852bdf9c1215460786732255ed2459348";
+
name = "array_includes___array_includes_3.1.3.tgz";
+
url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz";
+
sha1 = "c7f619b382ad2afaf5326cddfdc0afc61af7690a";
};
···
};
-
name = "assert___assert_1.4.1.tgz";
-
path = fetchurl {
-
name = "assert___assert_1.4.1.tgz";
-
url = "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz";
-
sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
-
};
-
}
-
{
name = "assert___assert_1.5.0.tgz";
path = fetchurl {
name = "assert___assert_1.5.0.tgz";
···
};
-
name = "axe_core___axe_core_4.1.0.tgz";
+
name = "axe_core___axe_core_4.1.3.tgz";
path = fetchurl {
-
name = "axe_core___axe_core_4.1.0.tgz";
-
url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.0.tgz";
-
sha1 = "93d395e6262ecdde5cb52a5d06533d0a0c7bb4cd";
+
name = "axe_core___axe_core_4.1.3.tgz";
+
url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.3.tgz";
+
sha1 = "64a4c85509e0991f5168340edc4bedd1ceea6966";
};
···
};
+
name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.1.10.tgz";
+
path = fetchurl {
+
name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.1.10.tgz";
+
url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz";
+
sha1 = "a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1";
+
};
+
}
+
{
+
name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.1.7.tgz";
+
path = fetchurl {
+
name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.1.7.tgz";
+
url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz";
+
sha1 = "80449d9d6f2274912e05d9e182b54816904befd0";
+
};
+
}
+
{
+
name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.1.6.tgz";
+
path = fetchurl {
+
name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.1.6.tgz";
+
url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz";
+
sha1 = "0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f";
+
};
+
}
+
{
name = "babel_plugin_syntax_object_rest_spread___babel_plugin_syntax_object_rest_spread_6.13.0.tgz";
path = fetchurl {
name = "babel_plugin_syntax_object_rest_spread___babel_plugin_syntax_object_rest_spread_6.13.0.tgz";
···
};
-
name = "binary_extensions___binary_extensions_2.1.0.tgz";
+
name = "binary_extensions___binary_extensions_2.2.0.tgz";
path = fetchurl {
-
name = "binary_extensions___binary_extensions_2.1.0.tgz";
-
url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz";
-
sha1 = "30fa40c9e7fe07dbc895678cd287024dea241dd9";
+
name = "binary_extensions___binary_extensions_2.2.0.tgz";
+
url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz";
+
sha1 = "75f502eeaf9ffde42fc98829645be4ea76bd9e2d";
};
···
};
-
name = "bn.js___bn.js_4.11.9.tgz";
+
name = "bn.js___bn.js_4.12.0.tgz";
path = fetchurl {
-
name = "bn.js___bn.js_4.11.9.tgz";
-
url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz";
-
sha1 = "26d556829458f9d1e81fc48952493d0ba3507828";
+
name = "bn.js___bn.js_4.12.0.tgz";
+
url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz";
+
sha1 = "775b3f278efbb9718eec7361f483fb36fbbfea88";
};
-
name = "bn.js___bn.js_5.1.3.tgz";
+
name = "bn.js___bn.js_5.2.0.tgz";
path = fetchurl {
-
name = "bn.js___bn.js_5.1.3.tgz";
-
url = "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz";
-
sha1 = "beca005408f642ebebea80b042b4d18d2ac0ee6b";
+
name = "bn.js___bn.js_5.2.0.tgz";
+
url = "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz";
+
sha1 = "358860674396c6997771a9d051fcc1b57d4ae002";
};
···
};
-
name = "bootstrap___bootstrap_4.5.3.tgz";
+
name = "bootstrap___bootstrap_4.6.0.tgz";
path = fetchurl {
-
name = "bootstrap___bootstrap_4.5.3.tgz";
-
url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.3.tgz";
-
sha1 = "c6a72b355aaf323920be800246a6e4ef30997fe6";
+
name = "bootstrap___bootstrap_4.6.0.tgz";
+
url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.0.tgz";
+
sha1 = "97b9f29ac98f98dfa43bf7468262d84392552fd7";
};
···
};
-
name = "browserslist___browserslist_4.14.7.tgz";
+
name = "browserslist___browserslist_4.16.3.tgz";
path = fetchurl {
-
name = "browserslist___browserslist_4.14.7.tgz";
-
url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz";
-
sha1 = "c071c1b3622c1c2e790799a37bb09473a4351cb6";
+
name = "browserslist___browserslist_4.16.3.tgz";
+
url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz";
+
sha1 = "340aa46940d7db878748567c5dea24a48ddf3717";
};
···
};
-
name = "call_bind___call_bind_1.0.0.tgz";
+
name = "call_bind___call_bind_1.0.2.tgz";
path = fetchurl {
-
name = "call_bind___call_bind_1.0.0.tgz";
-
url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz";
-
sha1 = "24127054bb3f9bdcb4b1fb82418186072f77b8ce";
+
name = "call_bind___call_bind_1.0.2.tgz";
+
url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz";
+
sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c";
};
···
};
-
name = "camel_case___camel_case_4.1.1.tgz";
-
path = fetchurl {
-
name = "camel_case___camel_case_4.1.1.tgz";
-
url = "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz";
-
sha1 = "1fc41c854f00e2f7d0139dfeba1542d6896fe547";
-
};
-
}
-
{
-
name = "camelcase___camelcase_5.0.0.tgz";
+
name = "camel_case___camel_case_4.1.2.tgz";
path = fetchurl {
-
name = "camelcase___camelcase_5.0.0.tgz";
-
url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz";
-
sha1 = "03295527d58bd3cd4aa75363f35b2e8d97be2f42";
+
name = "camel_case___camel_case_4.1.2.tgz";
+
url = "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz";
+
sha1 = "9728072a954f805228225a6deea6b38461e1bd5a";
};
···
};
-
name = "caniuse_lite___caniuse_lite_1.0.30001159.tgz";
+
name = "caniuse_lite___caniuse_lite_1.0.30001204.tgz";
path = fetchurl {
-
name = "caniuse_lite___caniuse_lite_1.0.30001159.tgz";
-
url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001159.tgz";
-
sha1 = "bebde28f893fa9594dadcaa7d6b8e2aa0299df20";
+
name = "caniuse_lite___caniuse_lite_1.0.30001204.tgz";
+
url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz";
+
sha1 = "256c85709a348ec4d175e847a3b515c66e79f2aa";
};
···
};
-
name = "cheerio___cheerio_1.0.0_rc.3.tgz";
+
name = "cheerio_select_tmp___cheerio_select_tmp_0.1.1.tgz";
path = fetchurl {
-
name = "cheerio___cheerio_1.0.0_rc.3.tgz";
-
url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz";
-
sha1 = "094636d425b2e9c0f4eb91a46c05630c9a1a8bf6";
+
name = "cheerio_select_tmp___cheerio_select_tmp_0.1.1.tgz";
+
url = "https://registry.yarnpkg.com/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz";
+
sha1 = "55bbef02a4771710195ad736d5e346763ca4e646";
+
};
+
}
+
{
+
name = "cheerio___cheerio_1.0.0_rc.5.tgz";
+
path = fetchurl {
+
name = "cheerio___cheerio_1.0.0_rc.5.tgz";
+
url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.5.tgz";
+
sha1 = "88907e1828674e8f9fee375188b27dadd4f0fa2f";
};
···
};
-
name = "chokidar___chokidar_3.4.3.tgz";
+
name = "chokidar___chokidar_3.5.1.tgz";
path = fetchurl {
-
name = "chokidar___chokidar_3.4.3.tgz";
-
url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz";
-
sha1 = "c1df38231448e45ca4ac588e6c79573ba6a57d5b";
+
name = "chokidar___chokidar_3.5.1.tgz";
+
url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz";
+
sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a";
};
···
};
+
name = "codemirror_promql___codemirror_promql_0.14.0.tgz";
+
path = fetchurl {
+
name = "codemirror_promql___codemirror_promql_0.14.0.tgz";
+
url = "https://registry.yarnpkg.com/codemirror-promql/-/codemirror-promql-0.14.0.tgz";
+
sha1 = "a5ad500e68a379ba6bded40ec0f9ff2940015bcd";
+
};
+
}
+
{
name = "collection_visit___collection_visit_1.0.0.tgz";
path = fetchurl {
name = "collection_visit___collection_visit_1.0.0.tgz";
···
};
-
name = "color_string___color_string_1.5.4.tgz";
+
name = "color_string___color_string_1.5.5.tgz";
path = fetchurl {
-
name = "color_string___color_string_1.5.4.tgz";
-
url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz";
-
sha1 = "dd51cd25cfee953d138fe4002372cc3d0e504cb6";
+
name = "color_string___color_string_1.5.5.tgz";
+
url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz";
+
sha1 = "65474a8f0e7439625f3d27a6a19d89fc45223014";
};
···
};
-
name = "colorette___colorette_1.2.1.tgz";
+
name = "colorette___colorette_1.2.2.tgz";
path = fetchurl {
-
name = "colorette___colorette_1.2.1.tgz";
-
url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz";
-
sha1 = "4d0b921325c14faf92633086a536db6e89564b1b";
+
name = "colorette___colorette_1.2.2.tgz";
+
url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz";
+
sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94";
};
···
};
-
name = "compute_scroll_into_view___compute_scroll_into_view_1.0.16.tgz";
+
name = "compute_scroll_into_view___compute_scroll_into_view_1.0.17.tgz";
path = fetchurl {
-
name = "compute_scroll_into_view___compute_scroll_into_view_1.0.16.tgz";
-
url = "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.16.tgz";
-
sha1 = "5b7bf4f7127ea2c19b750353d7ce6776a90ee088";
+
name = "compute_scroll_into_view___compute_scroll_into_view_1.0.17.tgz";
+
url = "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz";
+
sha1 = "6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab";
};
···
};
-
name = "core_js_compat___core_js_compat_3.7.0.tgz";
+
name = "core_js_compat___core_js_compat_3.9.1.tgz";
path = fetchurl {
-
name = "core_js_compat___core_js_compat_3.7.0.tgz";
-
url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz";
-
sha1 = "8479c5d3d672d83f1f5ab94cf353e57113e065ed";
+
name = "core_js_compat___core_js_compat_3.9.1.tgz";
+
url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz";
+
sha1 = "4e572acfe90aff69d76d8c37759d21a5c59bb455";
};
-
name = "core_js_pure___core_js_pure_3.7.0.tgz";
+
name = "core_js_pure___core_js_pure_3.9.1.tgz";
path = fetchurl {
-
name = "core_js_pure___core_js_pure_3.7.0.tgz";
-
url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.7.0.tgz";
-
sha1 = "28a57c861d5698e053f0ff36905f7a3301b4191e";
+
name = "core_js_pure___core_js_pure_3.9.1.tgz";
+
url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.9.1.tgz";
+
sha1 = "677b322267172bd490e4464696f790cbc355bec5";
};
-
name = "core_js___core_js_2.6.11.tgz";
+
name = "core_js___core_js_2.6.12.tgz";
path = fetchurl {
-
name = "core_js___core_js_2.6.11.tgz";
-
url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz";
-
sha1 = "38831469f9922bded8ee21c9dc46985e0399308c";
+
name = "core_js___core_js_2.6.12.tgz";
+
url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz";
+
sha1 = "d9333dfa7b065e347cc5682219d6f690859cc2ec";
};
-
name = "core_js___core_js_3.7.0.tgz";
+
name = "core_js___core_js_3.9.1.tgz";
path = fetchurl {
-
name = "core_js___core_js_3.7.0.tgz";
-
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.7.0.tgz";
-
sha1 = "b0a761a02488577afbf97179e4681bf49568520f";
+
name = "core_js___core_js_3.9.1.tgz";
+
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.9.1.tgz";
+
sha1 = "cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae";
};
···
};
-
name = "cross_fetch___cross_fetch_3.0.6.tgz";
+
name = "crelt___crelt_1.0.5.tgz";
path = fetchurl {
-
name = "cross_fetch___cross_fetch_3.0.6.tgz";
-
url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.6.tgz";
-
sha1 = "3a4040bc8941e653e0e9cf17f29ebcd177d3365c";
+
name = "crelt___crelt_1.0.5.tgz";
+
url = "https://registry.yarnpkg.com/crelt/-/crelt-1.0.5.tgz";
+
sha1 = "57c0d52af8c859e354bace1883eb2e1eb182bb94";
+
};
+
}
+
{
+
name = "cross_fetch___cross_fetch_3.1.2.tgz";
+
path = fetchurl {
+
name = "cross_fetch___cross_fetch_3.1.2.tgz";
+
url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.2.tgz";
+
sha1 = "ee0c2f18844c4fde36150c2a4ddc068d20c1bc41";
};
···
};
-
name = "css_select___css_select_1.2.0.tgz";
-
path = fetchurl {
-
name = "css_select___css_select_1.2.0.tgz";
-
url = "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz";
-
sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
-
};
-
}
-
{
name = "css_select___css_select_2.1.0.tgz";
path = fetchurl {
name = "css_select___css_select_2.1.0.tgz";
···
};
-
name = "css_tree___css_tree_1.0.0_alpha.37.tgz";
+
name = "css_select___css_select_3.1.2.tgz";
path = fetchurl {
-
name = "css_tree___css_tree_1.0.0_alpha.37.tgz";
-
url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz";
-
sha1 = "98bebd62c4c1d9f960ec340cf9f7522e30709a22";
+
name = "css_select___css_select_3.1.2.tgz";
+
url = "https://registry.yarnpkg.com/css-select/-/css-select-3.1.2.tgz";
+
sha1 = "d52cbdc6fee379fba97fb0d3925abbd18af2d9d8";
};
-
name = "css_tree___css_tree_1.1.1.tgz";
+
name = "css_tree___css_tree_1.0.0_alpha.37.tgz";
path = fetchurl {
-
name = "css_tree___css_tree_1.1.1.tgz";
-
url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.1.tgz";
-
sha1 = "30b8c0161d9fb4e9e2141d762589b6ec2faebd2e";
+
name = "css_tree___css_tree_1.0.0_alpha.37.tgz";
+
url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz";
+
sha1 = "98bebd62c4c1d9f960ec340cf9f7522e30709a22";
};
-
name = "css_what___css_what_2.1.3.tgz";
+
name = "css_tree___css_tree_1.1.2.tgz";
path = fetchurl {
-
name = "css_what___css_what_2.1.3.tgz";
-
url = "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz";
-
sha1 = "a6d7604573365fe74686c3f311c56513d88285f2";
+
name = "css_tree___css_tree_1.1.2.tgz";
+
url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.2.tgz";
+
sha1 = "9ae393b5dafd7dae8a622475caec78d3d8fbd7b5";
};
···
name = "css_what___css_what_3.4.2.tgz";
url = "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz";
sha1 = "ea7026fcb01777edbde52124e21f327e7ae950e4";
+
};
+
}
+
{
+
name = "css_what___css_what_4.0.0.tgz";
+
path = fetchurl {
+
name = "css_what___css_what_4.0.0.tgz";
+
url = "https://registry.yarnpkg.com/css-what/-/css-what-4.0.0.tgz";
+
sha1 = "35e73761cab2eeb3d3661126b23d7aa0e8432233";
};
···
};
-
name = "csso___csso_4.1.1.tgz";
+
name = "csso___csso_4.2.0.tgz";
path = fetchurl {
-
name = "csso___csso_4.1.1.tgz";
-
url = "https://registry.yarnpkg.com/csso/-/csso-4.1.1.tgz";
-
sha1 = "e0cb02d6eb3af1df719222048e4359efd662af13";
+
name = "csso___csso_4.2.0.tgz";
+
url = "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz";
+
sha1 = "ea3a561346e8dc9f546d6febedd50187cf389529";
};
···
};
-
name = "csstype___csstype_3.0.5.tgz";
+
name = "csstype___csstype_3.0.7.tgz";
path = fetchurl {
-
name = "csstype___csstype_3.0.5.tgz";
-
url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.5.tgz";
-
sha1 = "7fdec6a28a67ae18647c51668a9ff95bb2fa7bb8";
+
name = "csstype___csstype_3.0.7.tgz";
+
url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.7.tgz";
+
sha1 = "2a5fb75e1015e84dd15692f71e89a1450290950b";
};
···
};
-
name = "detect_node___detect_node_2.0.4.tgz";
+
name = "detect_node___detect_node_2.0.5.tgz";
path = fetchurl {
-
name = "detect_node___detect_node_2.0.4.tgz";
-
url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz";
-
sha1 = "014ee8f8f669c5c58023da64b8179c083a28c46c";
+
name = "detect_node___detect_node_2.0.5.tgz";
+
url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.5.tgz";
+
sha1 = "9d270aa7eaa5af0b72c4c9d9b814e7f4ce738b79";
};
···
};
-
name = "dom_serializer___dom_serializer_1.1.0.tgz";
-
path = fetchurl {
-
name = "dom_serializer___dom_serializer_1.1.0.tgz";
-
url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.1.0.tgz";
-
sha1 = "5f7c828f1bfc44887dc2a315ab5c45691d544b58";
-
};
-
}
-
{
-
name = "dom_serializer___dom_serializer_0.1.1.tgz";
+
name = "dom_serializer___dom_serializer_1.2.0.tgz";
path = fetchurl {
-
name = "dom_serializer___dom_serializer_0.1.1.tgz";
-
url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz";
-
sha1 = "1ec4059e284babed36eec2941d4a970a189ce7c0";
+
name = "dom_serializer___dom_serializer_1.2.0.tgz";
+
url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.2.0.tgz";
+
sha1 = "3433d9136aeb3c627981daa385fc7f32d27c48f1";
};
···
};
-
name = "domelementtype___domelementtype_2.0.2.tgz";
+
name = "domelementtype___domelementtype_2.1.0.tgz";
path = fetchurl {
-
name = "domelementtype___domelementtype_2.0.2.tgz";
-
url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz";
-
sha1 = "f3b6e549201e46f588b59463dd77187131fe6971";
+
name = "domelementtype___domelementtype_2.1.0.tgz";
+
url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz";
+
sha1 = "a851c080a6d1c3d94344aed151d99f669edf585e";
};
···
};
-
name = "domutils___domutils_1.5.1.tgz";
+
name = "domhandler___domhandler_4.0.0.tgz";
path = fetchurl {
-
name = "domutils___domutils_1.5.1.tgz";
-
url = "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz";
-
sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
+
name = "domhandler___domhandler_4.0.0.tgz";
+
url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz";
+
sha1 = "01ea7821de996d85f69029e81fa873c21833098e";
};
···
};
-
name = "domutils___domutils_2.4.2.tgz";
+
name = "domutils___domutils_2.5.0.tgz";
path = fetchurl {
-
name = "domutils___domutils_2.4.2.tgz";
-
url = "https://registry.yarnpkg.com/domutils/-/domutils-2.4.2.tgz";
-
sha1 = "7ee5be261944e1ad487d9aa0616720010123922b";
+
name = "domutils___domutils_2.5.0.tgz";
+
url = "https://registry.yarnpkg.com/domutils/-/domutils-2.5.0.tgz";
+
sha1 = "42f49cffdabb92ad243278b331fd761c1c2d3039";
};
-
name = "dot_case___dot_case_3.0.3.tgz";
+
name = "dot_case___dot_case_3.0.4.tgz";
path = fetchurl {
-
name = "dot_case___dot_case_3.0.3.tgz";
-
url = "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz";
-
sha1 = "21d3b52efaaba2ea5fda875bb1aa8124521cf4aa";
+
name = "dot_case___dot_case_3.0.4.tgz";
+
url = "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz";
+
sha1 = "9b2b670d00a431667a8a75ba29cd1b98809ce751";
};
···
};
-
name = "electron_to_chromium___electron_to_chromium_1.3.601.tgz";
+
name = "electron_to_chromium___electron_to_chromium_1.3.698.tgz";
path = fetchurl {
-
name = "electron_to_chromium___electron_to_chromium_1.3.601.tgz";
-
url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.601.tgz";
-
sha1 = "881824eaef0b2f97c89e1abb5835fdd224997d34";
+
name = "electron_to_chromium___electron_to_chromium_1.3.698.tgz";
+
url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.698.tgz";
+
sha1 = "5de813960f23581a268718a0058683dffa15d221";
};
-
name = "elliptic___elliptic_6.5.3.tgz";
+
name = "elliptic___elliptic_6.5.4.tgz";
path = fetchurl {
-
name = "elliptic___elliptic_6.5.3.tgz";
-
url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz";
-
sha1 = "cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6";
+
name = "elliptic___elliptic_6.5.4.tgz";
+
url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz";
+
sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb";
};
···
};
-
name = "emoji_regex___emoji_regex_9.2.0.tgz";
+
name = "emoji_regex___emoji_regex_9.2.2.tgz";
path = fetchurl {
-
name = "emoji_regex___emoji_regex_9.2.0.tgz";
-
url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.0.tgz";
-
sha1 = "a26da8e832b16a9753309f25e35e3c0efb9a066a";
+
name = "emoji_regex___emoji_regex_9.2.2.tgz";
+
url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz";
+
sha1 = "840c8803b0d8047f4ff0cf963176b32d4ef3ed72";
};
···
};
-
name = "enhanced_resolve___enhanced_resolve_4.3.0.tgz";
+
name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
path = fetchurl {
-
name = "enhanced_resolve___enhanced_resolve_4.3.0.tgz";
-
url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz";
-
sha1 = "3b806f3bfafc1ec7de69551ef93cca46c1704126";
+
name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
+
url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz";
+
sha1 = "2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec";
};
···
};
+
name = "entities___entities_2.2.0.tgz";
+
path = fetchurl {
+
name = "entities___entities_2.2.0.tgz";
+
url = "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz";
+
sha1 = "098dc90ebb83d8dffa089d55256b351d34c4da55";
+
};
+
}
+
{
name = "entities___entities_2.1.0.tgz";
path = fetchurl {
name = "entities___entities_2.1.0.tgz";
···
};
-
name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.15.5.tgz";
+
name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.15.6.tgz";
path = fetchurl {
-
name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.15.5.tgz";
-
url = "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.5.tgz";
-
sha1 = "7a6f0093d3edd2f7025b36e7fbf290695473ee04";
+
name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.15.6.tgz";
+
url = "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz";
+
sha1 = "fd677a658d62661ac5afd7f7f541f141f8085901";
};
-
name = "enzyme_adapter_utils___enzyme_adapter_utils_1.13.1.tgz";
+
name = "enzyme_adapter_utils___enzyme_adapter_utils_1.14.0.tgz";
path = fetchurl {
-
name = "enzyme_adapter_utils___enzyme_adapter_utils_1.13.1.tgz";
-
url = "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.1.tgz";
-
sha1 = "59c1b734b0927543e3d8dc477299ec957feb312d";
+
name = "enzyme_adapter_utils___enzyme_adapter_utils_1.14.0.tgz";
+
url = "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz";
+
sha1 = "afbb0485e8033aa50c744efb5f5711e64fbf1ad0";
};
···
};
-
name = "errno___errno_0.1.7.tgz";
+
name = "errno___errno_0.1.8.tgz";
path = fetchurl {
-
name = "errno___errno_0.1.7.tgz";
-
url = "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz";
-
sha1 = "4684d71779ad39af177e3f007996f7c67c852618";
+
name = "errno___errno_0.1.8.tgz";
+
url = "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz";
+
sha1 = "8bb3e9c7d463be4976ff888f76b4809ebc2e811f";
};
···
};
-
name = "es_abstract___es_abstract_1.17.7.tgz";
-
path = fetchurl {
-
name = "es_abstract___es_abstract_1.17.7.tgz";
-
url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz";
-
sha1 = "a4de61b2f66989fc7421676c1cb9787573ace54c";
-
};
-
}
-
{
-
name = "es_abstract___es_abstract_1.18.0_next.1.tgz";
+
name = "es_abstract___es_abstract_1.18.0.tgz";
path = fetchurl {
-
name = "es_abstract___es_abstract_1.18.0_next.1.tgz";
-
url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz";
-
sha1 = "6e3a0a4bda717e5023ab3b8e90bec36108d22c68";
+
name = "es_abstract___es_abstract_1.18.0.tgz";
+
url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz";
+
sha1 = "ab80b359eecb7ede4c298000390bc5ac3ec7b5a4";
};
···
};
+
name = "escodegen___escodegen_2.0.0.tgz";
+
path = fetchurl {
+
name = "escodegen___escodegen_2.0.0.tgz";
+
url = "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz";
+
sha1 = "5e32b12833e8aa8fa35e1bf0befa89380484c7dd";
+
};
+
}
+
{
name = "eslint_config_prettier___eslint_config_prettier_6.15.0.tgz";
path = fetchurl {
name = "eslint_config_prettier___eslint_config_prettier_6.15.0.tgz";
···
};
-
name = "eslint_plugin_prettier___eslint_plugin_prettier_3.1.4.tgz";
+
name = "eslint_plugin_prettier___eslint_plugin_prettier_3.3.1.tgz";
path = fetchurl {
-
name = "eslint_plugin_prettier___eslint_plugin_prettier_3.1.4.tgz";
-
url = "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz";
-
sha1 = "168ab43154e2ea57db992a2cd097c828171f75c2";
+
name = "eslint_plugin_prettier___eslint_plugin_prettier_3.3.1.tgz";
+
url = "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz";
+
sha1 = "7079cfa2497078905011e6f82e8dd8453d1371b7";
};
···
};
-
name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz";
+
name = "eslint_plugin_react___eslint_plugin_react_7.23.1.tgz";
path = fetchurl {
-
name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz";
-
url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz";
-
sha1 = "50b21a412b9574bfe05b21db176e8b7b3b15bff3";
+
name = "eslint_plugin_react___eslint_plugin_react_7.23.1.tgz";
+
url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.1.tgz";
+
sha1 = "f1a2e844c0d1967c822388204a8bc4dee8415b11";
};
···
};
-
name = "esquery___esquery_1.3.1.tgz";
+
name = "esquery___esquery_1.4.0.tgz";
path = fetchurl {
-
name = "esquery___esquery_1.3.1.tgz";
-
url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz";
-
sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57";
+
name = "esquery___esquery_1.4.0.tgz";
+
url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
+
sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
};
···
};
-
name = "events___events_3.2.0.tgz";
+
name = "events___events_3.3.0.tgz";
path = fetchurl {
-
name = "events___events_3.2.0.tgz";
-
url = "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz";
-
sha1 = "93b87c18f8efcd4202a461aec4dfc0556b639379";
+
name = "events___events_3.3.0.tgz";
+
url = "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz";
+
sha1 = "31a95ad0a924e2d2c419a813aeb2c4e878ea7400";
};
-
name = "eventsource___eventsource_1.0.7.tgz";
+
name = "eventsource___eventsource_1.1.0.tgz";
path = fetchurl {
-
name = "eventsource___eventsource_1.0.7.tgz";
-
url = "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz";
-
sha1 = "8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0";
+
name = "eventsource___eventsource_1.1.0.tgz";
+
url = "https://registry.yarnpkg.com/eventsource/-/eventsource-1.1.0.tgz";
+
sha1 = "00e8ca7c92109e94b0ddf32dac677d841028cfaf";
};
···
};
-
name = "exec_sh___exec_sh_0.3.4.tgz";
+
name = "exec_sh___exec_sh_0.3.6.tgz";
path = fetchurl {
-
name = "exec_sh___exec_sh_0.3.4.tgz";
-
url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz";
-
sha1 = "3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5";
+
name = "exec_sh___exec_sh_0.3.6.tgz";
+
url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz";
+
sha1 = "ff264f9e325519a60cb5e273692943483cca63bc";
};
···
};
-
name = "follow_redirects___follow_redirects_1.13.0.tgz";
+
name = "follow_redirects___follow_redirects_1.13.3.tgz";
+
path = fetchurl {
+
name = "follow_redirects___follow_redirects_1.13.3.tgz";
+
url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.3.tgz";
+
sha1 = "e5598ad50174c1bc4e872301e82ac2cd97f90267";
+
};
+
}
+
{
+
name = "for_each___for_each_0.3.3.tgz";
path = fetchurl {
-
name = "follow_redirects___follow_redirects_1.13.0.tgz";
-
url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz";
-
sha1 = "b42e8d93a2a7eea5ed88633676d6597bc8e384db";
+
name = "for_each___for_each_0.3.3.tgz";
+
url = "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz";
+
sha1 = "69b447e88a0a5d32c3e7084f3f1710034b21376e";
};
···
};
-
name = "fsevents___fsevents_2.1.3.tgz";
+
name = "fsevents___fsevents_2.3.2.tgz";
path = fetchurl {
-
name = "fsevents___fsevents_2.1.3.tgz";
-
url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz";
-
sha1 = "fb738703ae8d2f9fe900c33836ddebee8b97f23e";
+
name = "fsevents___fsevents_2.3.2.tgz";
+
url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz";
+
sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a";
};
···
};
-
name = "function.prototype.name___function.prototype.name_1.1.2.tgz";
+
name = "function.prototype.name___function.prototype.name_1.1.4.tgz";
path = fetchurl {
-
name = "function.prototype.name___function.prototype.name_1.1.2.tgz";
-
url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz";
-
sha1 = "5cdf79d7c05db401591dfde83e3b70c5123e9a45";
+
name = "function.prototype.name___function.prototype.name_1.1.4.tgz";
+
url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz";
+
sha1 = "e4ea839b9d3672ae99d0efd9f38d9191c5eaac83";
};
···
};
-
name = "functions_have_names___functions_have_names_1.2.1.tgz";
+
name = "functions_have_names___functions_have_names_1.2.2.tgz";
path = fetchurl {
-
name = "functions_have_names___functions_have_names_1.2.1.tgz";
-
url = "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz";
-
sha1 = "a981ac397fa0c9964551402cdc5533d7a4d52f91";
+
name = "functions_have_names___functions_have_names_1.2.2.tgz";
+
url = "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.2.tgz";
+
sha1 = "98d93991c39da9361f8e50b337c4f6e41f120e21";
};
···
};
-
name = "get_intrinsic___get_intrinsic_1.0.1.tgz";
+
name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
path = fetchurl {
-
name = "get_intrinsic___get_intrinsic_1.0.1.tgz";
-
url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz";
-
sha1 = "94a9768fcbdd0595a1c9273aacf4c89d075631be";
+
name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
+
url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
+
sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6";
};
···
};
-
name = "glob_parent___glob_parent_5.1.1.tgz";
+
name = "glob_parent___glob_parent_5.1.2.tgz";
path = fetchurl {
-
name = "glob_parent___glob_parent_5.1.1.tgz";
-
url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz";
-
sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229";
+
name = "glob_parent___glob_parent_5.1.2.tgz";
+
url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz";
+
sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4";
};
···
};
-
name = "graceful_fs___graceful_fs_4.2.4.tgz";
+
name = "graceful_fs___graceful_fs_4.2.6.tgz";
path = fetchurl {
-
name = "graceful_fs___graceful_fs_4.2.4.tgz";
-
url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz";
-
sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb";
+
name = "graceful_fs___graceful_fs_4.2.6.tgz";
+
url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz";
+
sha1 = "ff040b2b0853b23c3d31027523706f1885d76bee";
};
···
};
+
name = "has_bigints___has_bigints_1.0.1.tgz";
+
path = fetchurl {
+
name = "has_bigints___has_bigints_1.0.1.tgz";
+
url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz";
+
sha1 = "64fe6acb020673e3b78db035a5af69aa9d07b113";
+
};
+
}
+
{
name = "has_flag___has_flag_3.0.0.tgz";
path = fetchurl {
name = "has_flag___has_flag_3.0.0.tgz";
···
};
-
name = "has_symbols___has_symbols_1.0.1.tgz";
+
name = "has_symbols___has_symbols_1.0.2.tgz";
path = fetchurl {
-
name = "has_symbols___has_symbols_1.0.1.tgz";
-
url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz";
-
sha1 = "9f5214758a44196c406d9bd76cebf81ec2dd31e8";
+
name = "has_symbols___has_symbols_1.0.2.tgz";
+
url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz";
+
sha1 = "165d3070c00309752a1236a479331e3ac56f1423";
};
···
};
-
name = "html_element_map___html_element_map_1.2.0.tgz";
+
name = "html_element_map___html_element_map_1.3.0.tgz";
path = fetchurl {
-
name = "html_element_map___html_element_map_1.2.0.tgz";
-
url = "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz";
-
sha1 = "dfbb09efe882806af63d990cf6db37993f099f22";
+
name = "html_element_map___html_element_map_1.3.0.tgz";
+
url = "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.3.0.tgz";
+
sha1 = "fcf226985d7111e6c2b958169312ec750d02f0d3";
};
···
};
-
name = "html_entities___html_entities_1.3.1.tgz";
+
name = "html_entities___html_entities_1.4.0.tgz";
path = fetchurl {
-
name = "html_entities___html_entities_1.3.1.tgz";
-
url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz";
-
sha1 = "fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44";
+
name = "html_entities___html_entities_1.4.0.tgz";
+
url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz";
+
sha1 = "cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc";
};
···
};
+
name = "htmlparser2___htmlparser2_6.0.1.tgz";
+
path = fetchurl {
+
name = "htmlparser2___htmlparser2_6.0.1.tgz";
+
url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.0.1.tgz";
+
sha1 = "422521231ef6d42e56bd411da8ba40aa36e91446";
+
};
+
}
+
{
name = "http_deceiver___http_deceiver_1.2.7.tgz";
path = fetchurl {
name = "http_deceiver___http_deceiver_1.2.7.tgz";
···
};
-
name = "http_parser_js___http_parser_js_0.5.2.tgz";
+
name = "http_parser_js___http_parser_js_0.5.3.tgz";
path = fetchurl {
-
name = "http_parser_js___http_parser_js_0.5.2.tgz";
-
url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.2.tgz";
-
sha1 = "da2e31d237b393aae72ace43882dd7e270a8ff77";
+
name = "http_parser_js___http_parser_js_0.5.3.tgz";
+
url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz";
+
sha1 = "01d2709c79d41698bb01d4decc5e9da4e4a033d9";
};
···
};
-
name = "import_fresh___import_fresh_3.2.2.tgz";
+
name = "import_fresh___import_fresh_3.3.0.tgz";
path = fetchurl {
-
name = "import_fresh___import_fresh_3.2.2.tgz";
-
url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz";
-
sha1 = "fc129c160c5d68235507f4331a6baad186bdbc3e";
+
name = "import_fresh___import_fresh_3.3.0.tgz";
+
url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz";
+
sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b";
};
···
};
-
name = "ini___ini_1.3.5.tgz";
+
name = "ini___ini_1.3.8.tgz";
path = fetchurl {
-
name = "ini___ini_1.3.5.tgz";
-
url = "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz";
-
sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927";
+
name = "ini___ini_1.3.8.tgz";
+
url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz";
+
sha1 = "a29da425b48806f34767a4efce397269af28432c";
};
···
};
-
name = "internal_slot___internal_slot_1.0.2.tgz";
+
name = "internal_slot___internal_slot_1.0.3.tgz";
path = fetchurl {
-
name = "internal_slot___internal_slot_1.0.2.tgz";
-
url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz";
-
sha1 = "9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3";
+
name = "internal_slot___internal_slot_1.0.3.tgz";
+
url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz";
+
sha1 = "7347e307deeea2faac2ac6205d4bc7d34967f59c";
};
···
};
-
name = "is_arguments___is_arguments_1.0.4.tgz";
+
name = "is_arguments___is_arguments_1.1.0.tgz";
path = fetchurl {
-
name = "is_arguments___is_arguments_1.0.4.tgz";
-
url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz";
-
sha1 = "3faf966c7cba0ff437fb31f6250082fcf0448cf3";
+
name = "is_arguments___is_arguments_1.1.0.tgz";
+
url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz";
+
sha1 = "62353031dfbee07ceb34656a6bde59efecae8dd9";
};
···
};
+
name = "is_bigint___is_bigint_1.0.1.tgz";
+
path = fetchurl {
+
name = "is_bigint___is_bigint_1.0.1.tgz";
+
url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz";
+
sha1 = "6923051dfcbc764278540b9ce0e6b3213aa5ebc2";
+
};
+
}
+
{
name = "is_binary_path___is_binary_path_1.0.1.tgz";
path = fetchurl {
name = "is_binary_path___is_binary_path_1.0.1.tgz";
···
};
-
name = "is_boolean_object___is_boolean_object_1.0.1.tgz";
+
name = "is_boolean_object___is_boolean_object_1.1.0.tgz";
path = fetchurl {
-
name = "is_boolean_object___is_boolean_object_1.0.1.tgz";
-
url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz";
-
sha1 = "10edc0900dd127697a92f6f9807c7617d68ac48e";
+
name = "is_boolean_object___is_boolean_object_1.1.0.tgz";
+
url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz";
+
sha1 = "e2aaad3a3a8fca34c28f6eee135b156ed2587ff0";
};
···
};
-
name = "is_callable___is_callable_1.2.2.tgz";
+
name = "is_callable___is_callable_1.2.3.tgz";
path = fetchurl {
-
name = "is_callable___is_callable_1.2.2.tgz";
-
url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz";
-
sha1 = "c7c6715cd22d4ddb48d3e19970223aceabb080d9";
+
name = "is_callable___is_callable_1.2.3.tgz";
+
url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz";
+
sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e";
};
···
};
-
name = "is_core_module___is_core_module_2.1.0.tgz";
+
name = "is_core_module___is_core_module_2.2.0.tgz";
path = fetchurl {
-
name = "is_core_module___is_core_module_2.1.0.tgz";
-
url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz";
-
sha1 = "a4cc031d9b1aca63eecbd18a650e13cb4eeab946";
+
name = "is_core_module___is_core_module_2.2.0.tgz";
+
url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz";
+
sha1 = "97037ef3d52224d85163f5597b2b63d9afed981a";
};
···
};
-
name = "is_negative_zero___is_negative_zero_2.0.0.tgz";
+
name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
path = fetchurl {
-
name = "is_negative_zero___is_negative_zero_2.0.0.tgz";
-
url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz";
-
sha1 = "9553b121b0fac28869da9ed459e20c7543788461";
+
name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
+
url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
+
sha1 = "3de746c18dda2319241a53675908d8f766f11c24";
};
···
};
-
name = "is_regex___is_regex_1.1.1.tgz";
+
name = "is_regex___is_regex_1.1.2.tgz";
path = fetchurl {
-
name = "is_regex___is_regex_1.1.1.tgz";
-
url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz";
-
sha1 = "c6f98aacc546f6cec5468a07b7b153ab564a57b9";
+
name = "is_regex___is_regex_1.1.2.tgz";
+
url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz";
+
sha1 = "81c8ebde4db142f2cf1c53fc86d6a45788266251";
};
···
};
-
name = "jquery___jquery_3.5.1.tgz";
+
name = "jquery___jquery_3.6.0.tgz";
path = fetchurl {
-
name = "jquery___jquery_3.5.1.tgz";
-
url = "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz";
-
sha1 = "d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5";
+
name = "jquery___jquery_3.6.0.tgz";
+
url = "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz";
+
sha1 = "c72a09f15c1bdce142f49dbf1170bdf8adac2470";
};
···
};
-
name = "js_yaml___js_yaml_3.14.0.tgz";
+
name = "js_yaml___js_yaml_3.14.1.tgz";
path = fetchurl {
-
name = "js_yaml___js_yaml_3.14.0.tgz";
-
url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz";
-
sha1 = "a7a34170f26a21bb162424d8adacb4113a69e482";
+
name = "js_yaml___js_yaml_3.14.1.tgz";
+
url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
+
sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
};
···
};
-
name = "jsdom___jsdom_16.4.0.tgz";
+
name = "jsdom___jsdom_16.5.1.tgz";
path = fetchurl {
-
name = "jsdom___jsdom_16.4.0.tgz";
-
url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz";
-
sha1 = "36005bde2d136f73eee1a830c6d45e55408edddb";
+
name = "jsdom___jsdom_16.5.1.tgz";
+
url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.1.tgz";
+
sha1 = "4ced6bbd7b77d67fb980e64d9e3e6fb900f97dd6";
};
···
};
-
name = "json5___json5_2.1.3.tgz";
+
name = "json5___json5_2.2.0.tgz";
path = fetchurl {
-
name = "json5___json5_2.1.3.tgz";
-
url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz";
-
sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43";
+
name = "json5___json5_2.2.0.tgz";
+
url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz";
+
sha1 = "2dfefe720c6ba525d9ebd909950f0515316c89a3";
};
···
};
-
name = "jsx_ast_utils___jsx_ast_utils_3.1.0.tgz";
+
name = "jsx_ast_utils___jsx_ast_utils_3.2.0.tgz";
path = fetchurl {
-
name = "jsx_ast_utils___jsx_ast_utils_3.1.0.tgz";
-
url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz";
-
sha1 = "642f1d7b88aa6d7eb9d8f2210e166478444fa891";
+
name = "jsx_ast_utils___jsx_ast_utils_3.2.0.tgz";
+
url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz";
+
sha1 = "41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82";
};
···
};
+
name = "lezer_promql___lezer_promql_0.18.0.tgz";
+
path = fetchurl {
+
name = "lezer_promql___lezer_promql_0.18.0.tgz";
+
url = "https://registry.yarnpkg.com/lezer-promql/-/lezer-promql-0.18.0.tgz";
+
sha1 = "7eea8cb02f8203043560415d7a436e9903176ab2";
+
};
+
}
+
{
+
name = "lezer_tree___lezer_tree_0.13.2.tgz";
+
path = fetchurl {
+
name = "lezer_tree___lezer_tree_0.13.2.tgz";
+
url = "https://registry.yarnpkg.com/lezer-tree/-/lezer-tree-0.13.2.tgz";
+
sha1 = "00f4671309b15c27b131f637e430ce2d4d5f7065";
+
};
+
}
+
{
+
name = "lezer___lezer_0.13.4.tgz";
+
path = fetchurl {
+
name = "lezer___lezer_0.13.4.tgz";
+
url = "https://registry.yarnpkg.com/lezer/-/lezer-0.13.4.tgz";
+
sha1 = "f0396a3447c7a8f40391623f3f47a4d95559c42f";
+
};
+
}
+
{
name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
path = fetchurl {
name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
···
};
+
name = "loader_utils___loader_utils_2.0.0.tgz";
+
path = fetchurl {
+
name = "loader_utils___loader_utils_2.0.0.tgz";
+
url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz";
+
sha1 = "e4cace5b816d425a166b5f097e10cd12b36064b0";
+
};
+
}
+
{
name = "locate_path___locate_path_2.0.0.tgz";
path = fetchurl {
name = "locate_path___locate_path_2.0.0.tgz";
···
name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz";
url = "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
+
};
+
}
+
{
+
name = "lodash.debounce___lodash.debounce_4.0.8.tgz";
+
path = fetchurl {
+
name = "lodash.debounce___lodash.debounce_4.0.8.tgz";
+
url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
+
sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
};
···
};
-
name = "lodash___lodash_4.17.20.tgz";
+
name = "lodash___lodash_4.17.21.tgz";
path = fetchurl {
-
name = "lodash___lodash_4.17.20.tgz";
-
url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz";
-
sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52";
+
name = "lodash___lodash_4.17.21.tgz";
+
url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
+
sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
};
-
name = "loglevel___loglevel_1.7.0.tgz";
+
name = "loglevel___loglevel_1.7.1.tgz";
path = fetchurl {
-
name = "loglevel___loglevel_1.7.0.tgz";
-
url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz";
-
sha1 = "728166855a740d59d38db01cf46f042caa041bb0";
+
name = "loglevel___loglevel_1.7.1.tgz";
+
url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz";
+
sha1 = "005fde2f5e6e47068f935ff28573e125ef72f197";
};
···
};
-
name = "lower_case___lower_case_2.0.1.tgz";
+
name = "lower_case___lower_case_2.0.2.tgz";
path = fetchurl {
-
name = "lower_case___lower_case_2.0.1.tgz";
-
url = "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz";
-
sha1 = "39eeb36e396115cc05e29422eaea9e692c9408c7";
+
name = "lower_case___lower_case_2.0.2.tgz";
+
url = "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz";
+
sha1 = "6fa237c63dbdc4a82ca0fd882e4722dc5e634e28";
};
···
name = "lru_cache___lru_cache_5.1.1.tgz";
url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz";
sha1 = "1da27e6710271947695daf6848e847f01d84b920";
+
};
+
}
+
{
+
name = "lru_cache___lru_cache_6.0.0.tgz";
+
path = fetchurl {
+
name = "lru_cache___lru_cache_6.0.0.tgz";
+
url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz";
+
sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94";
};
···
};
-
name = "merge_deep___merge_deep_3.0.2.tgz";
+
name = "merge_deep___merge_deep_3.0.3.tgz";
path = fetchurl {
-
name = "merge_deep___merge_deep_3.0.2.tgz";
-
url = "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz";
-
sha1 = "f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2";
+
name = "merge_deep___merge_deep_3.0.3.tgz";
+
url = "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.3.tgz";
+
sha1 = "1a2b2ae926da8b2ae93a0ac15d90cd1922766003";
};
···
};
-
name = "mime_db___mime_db_1.44.0.tgz";
+
name = "mime_db___mime_db_1.46.0.tgz";
path = fetchurl {
-
name = "mime_db___mime_db_1.44.0.tgz";
-
url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz";
-
sha1 = "fa11c5eb0aca1334b4233cb4d52f10c5a6272f92";
+
name = "mime_db___mime_db_1.46.0.tgz";
+
url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz";
+
sha1 = "6267748a7f799594de3cbc8cde91def349661cee";
};
-
name = "mime_db___mime_db_1.45.0.tgz";
+
name = "mime_types___mime_types_2.1.29.tgz";
path = fetchurl {
-
name = "mime_db___mime_db_1.45.0.tgz";
-
url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz";
-
sha1 = "cceeda21ccd7c3a745eba2decd55d4b73e7879ea";
-
};
-
}
-
{
-
name = "mime_types___mime_types_2.1.27.tgz";
-
path = fetchurl {
-
name = "mime_types___mime_types_2.1.27.tgz";
-
url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz";
-
sha1 = "47949f98e279ea53119f5722e0f34e529bec009f";
+
name = "mime_types___mime_types_2.1.29.tgz";
+
url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz";
+
sha1 = "1d4ab77da64b91f5f72489df29236563754bb1b2";
};
···
};
-
name = "mime___mime_2.4.6.tgz";
+
name = "mime___mime_2.5.2.tgz";
path = fetchurl {
-
name = "mime___mime_2.4.6.tgz";
-
url = "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz";
-
sha1 = "e5b407c90db442f2beb5b162373d07b69affa4d1";
+
name = "mime___mime_2.5.2.tgz";
+
url = "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz";
+
sha1 = "6e3dc6cc2b9510643830e5f19d5cb753da5eeabe";
};
···
};
-
name = "moment_timezone___moment_timezone_0.5.32.tgz";
-
path = fetchurl {
-
name = "moment_timezone___moment_timezone_0.5.32.tgz";
-
url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.32.tgz";
-
sha1 = "db7677cc3cc680fd30303ebd90b0da1ca0dfecc2";
-
};
-
}
-
{
-
name = "moment_timezone___moment_timezone_0.4.1.tgz";
+
name = "moment_timezone___moment_timezone_0.5.33.tgz";
path = fetchurl {
-
name = "moment_timezone___moment_timezone_0.4.1.tgz";
-
url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.4.1.tgz";
-
sha1 = "81f598c3ad5e22cdad796b67ecd8d88d0f5baa06";
+
name = "moment_timezone___moment_timezone_0.5.33.tgz";
+
url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz";
+
sha1 = "b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c";
};
···
name = "moment___moment_2.29.1.tgz";
url = "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz";
sha1 = "b2be769fa31940be9eeea6469c075e35006fa3d3";
+
};
+
}
+
{
+
name = "moment___moment_2.24.0.tgz";
+
path = fetchurl {
+
name = "moment___moment_2.24.0.tgz";
+
url = "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz";
+
sha1 = "0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b";
};
···
};
+
name = "ms___ms_2.1.3.tgz";
+
path = fetchurl {
+
name = "ms___ms_2.1.3.tgz";
+
url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz";
+
sha1 = "574c8138ce1d2b5861f0b44579dbadd60c6615b2";
+
};
+
}
+
{
name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz";
path = fetchurl {
name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz";
···
};
+
name = "mutationobserver_shim___mutationobserver_shim_0.3.7.tgz";
+
path = fetchurl {
+
name = "mutationobserver_shim___mutationobserver_shim_0.3.7.tgz";
+
url = "https://registry.yarnpkg.com/mutationobserver-shim/-/mutationobserver-shim-0.3.7.tgz";
+
sha1 = "8bf633b0c0b0291a1107255ed32c13088a8c5bf3";
+
};
+
}
+
{
name = "mute_stream___mute_stream_0.0.8.tgz";
path = fetchurl {
name = "mute_stream___mute_stream_0.0.8.tgz";
···
};
-
name = "nearley___nearley_2.19.7.tgz";
+
name = "nearley___nearley_2.20.1.tgz";
path = fetchurl {
-
name = "nearley___nearley_2.19.7.tgz";
-
url = "https://registry.yarnpkg.com/nearley/-/nearley-2.19.7.tgz";
-
sha1 = "eafbe3e2d8ccfe70adaa5c026ab1f9709c116218";
+
name = "nearley___nearley_2.20.1.tgz";
+
url = "https://registry.yarnpkg.com/nearley/-/nearley-2.20.1.tgz";
+
sha1 = "246cd33eff0d012faf197ff6774d7ac78acdd474";
};
···
};
-
name = "nise___nise_4.0.4.tgz";
+
name = "nise___nise_4.1.0.tgz";
path = fetchurl {
-
name = "nise___nise_4.0.4.tgz";
-
url = "https://registry.yarnpkg.com/nise/-/nise-4.0.4.tgz";
-
sha1 = "d73dea3e5731e6561992b8f570be9e363c4512dd";
+
name = "nise___nise_4.1.0.tgz";
+
url = "https://registry.yarnpkg.com/nise/-/nise-4.1.0.tgz";
+
sha1 = "8fb75a26e90b99202fa1e63f448f58efbcdedaf6";
};
-
name = "no_case___no_case_3.0.3.tgz";
+
name = "no_case___no_case_3.0.4.tgz";
path = fetchurl {
-
name = "no_case___no_case_3.0.3.tgz";
-
url = "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz";
-
sha1 = "c21b434c1ffe48b39087e86cfb4d2582e9df18f8";
+
name = "no_case___no_case_3.0.4.tgz";
+
url = "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz";
+
sha1 = "d361fd5c9800f558551a8369fc0dcd4662b6124d";
};
···
};
-
name = "node_notifier___node_notifier_5.4.3.tgz";
+
name = "node_notifier___node_notifier_5.4.5.tgz";
path = fetchurl {
-
name = "node_notifier___node_notifier_5.4.3.tgz";
-
url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz";
-
sha1 = "cb72daf94c93904098e28b9c590fd866e464bd50";
+
name = "node_notifier___node_notifier_5.4.5.tgz";
+
url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.5.tgz";
+
sha1 = "0cbc1a2b0f658493b4025775a13ad938e96091ef";
};
-
name = "node_releases___node_releases_1.1.67.tgz";
+
name = "node_releases___node_releases_1.1.71.tgz";
path = fetchurl {
-
name = "node_releases___node_releases_1.1.67.tgz";
-
url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz";
-
sha1 = "28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12";
+
name = "node_releases___node_releases_1.1.71.tgz";
+
url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz";
+
sha1 = "cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb";
};
···
};
+
name = "nth_check___nth_check_2.0.0.tgz";
+
path = fetchurl {
+
name = "nth_check___nth_check_2.0.0.tgz";
+
url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz";
+
sha1 = "1bb4f6dac70072fc313e8c9cd1417b5074c0a125";
+
};
+
}
+
{
name = "num2fraction___num2fraction_1.2.2.tgz";
path = fetchurl {
name = "num2fraction___num2fraction_1.2.2.tgz";
···
};
-
name = "object_hash___object_hash_2.0.3.tgz";
+
name = "object_hash___object_hash_2.1.1.tgz";
path = fetchurl {
-
name = "object_hash___object_hash_2.0.3.tgz";
-
url = "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.3.tgz";
-
sha1 = "d12db044e03cd2ca3d77c0570d87225b02e1e6ea";
+
name = "object_hash___object_hash_2.1.1.tgz";
+
url = "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz";
+
sha1 = "9447d0279b4fcf80cff3259bf66a1dc73afabe09";
};
-
name = "object_inspect___object_inspect_1.8.0.tgz";
+
name = "object_inspect___object_inspect_1.9.0.tgz";
path = fetchurl {
-
name = "object_inspect___object_inspect_1.8.0.tgz";
-
url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz";
-
sha1 = "df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0";
+
name = "object_inspect___object_inspect_1.9.0.tgz";
+
url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz";
+
sha1 = "c90521d74e1127b67266ded3394ad6116986533a";
};
-
name = "object_is___object_is_1.1.3.tgz";
+
name = "object_is___object_is_1.1.5.tgz";
path = fetchurl {
-
name = "object_is___object_is_1.1.3.tgz";
-
url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.3.tgz";
-
sha1 = "2e3b9e65560137455ee3bd62aec4d90a2ea1cc81";
+
name = "object_is___object_is_1.1.5.tgz";
+
url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz";
+
sha1 = "b9deeaa5fc7f1846a0faecdceec138e5778f53ac";
};
···
name = "object_keys___object_keys_1.1.1.tgz";
url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz";
sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e";
-
};
-
}
-
{
-
name = "object_path___object_path_0.11.4.tgz";
-
path = fetchurl {
-
name = "object_path___object_path_0.11.4.tgz";
-
url = "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz";
-
sha1 = "370ae752fbf37de3ea70a861c23bba8915691949";
};
···
};
-
name = "object.entries___object.entries_1.1.2.tgz";
+
name = "object.entries___object.entries_1.1.3.tgz";
path = fetchurl {
-
name = "object.entries___object.entries_1.1.2.tgz";
-
url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz";
-
sha1 = "bc73f00acb6b6bb16c203434b10f9a7e797d3add";
+
name = "object.entries___object.entries_1.1.3.tgz";
+
url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz";
+
sha1 = "c601c7f168b62374541a07ddbd3e2d5e4f7711a6";
};
-
name = "object.fromentries___object.fromentries_2.0.2.tgz";
+
name = "object.fromentries___object.fromentries_2.0.4.tgz";
path = fetchurl {
-
name = "object.fromentries___object.fromentries_2.0.2.tgz";
-
url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz";
-
sha1 = "4a09c9b9bb3843dd0f89acdb517a794d4f355ac9";
+
name = "object.fromentries___object.fromentries_2.0.4.tgz";
+
url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz";
+
sha1 = "26e1ba5c4571c5c6f0890cef4473066456a120b8";
};
-
name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.0.tgz";
+
name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
path = fetchurl {
-
name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.0.tgz";
-
url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz";
-
sha1 = "369bf1f9592d8ab89d712dced5cb81c7c5352649";
+
name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz";
+
url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz";
+
sha1 = "1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7";
};
···
};
-
name = "object.values___object.values_1.1.1.tgz";
+
name = "object.values___object.values_1.1.3.tgz";
path = fetchurl {
-
name = "object.values___object.values_1.1.1.tgz";
-
url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz";
-
sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e";
+
name = "object.values___object.values_1.1.3.tgz";
+
url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz";
+
sha1 = "eaa8b1e17589f02f698db093f7c62ee1699742ee";
};
···
};
-
name = "open___open_7.3.0.tgz";
+
name = "open___open_7.4.2.tgz";
path = fetchurl {
-
name = "open___open_7.3.0.tgz";
-
url = "https://registry.yarnpkg.com/open/-/open-7.3.0.tgz";
-
sha1 = "45461fdee46444f3645b6e14eb3ca94b82e1be69";
+
name = "open___open_7.4.2.tgz";
+
url = "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz";
+
sha1 = "b8147e26dcf3e426316c730089fd71edd29c2321";
};
···
};
-
name = "param_case___param_case_3.0.3.tgz";
+
name = "param_case___param_case_3.0.4.tgz";
path = fetchurl {
-
name = "param_case___param_case_3.0.3.tgz";
-
url = "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz";
-
sha1 = "4be41f8399eff621c56eebb829a5e451d9801238";
+
name = "param_case___param_case_3.0.4.tgz";
+
url = "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz";
+
sha1 = "7d17fe4aa12bde34d4a77d91acfb6219caad01c5";
};
···
};
-
name = "parse_json___parse_json_5.1.0.tgz";
+
name = "parse_json___parse_json_5.2.0.tgz";
path = fetchurl {
-
name = "parse_json___parse_json_5.1.0.tgz";
-
url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz";
-
sha1 = "f96088cdf24a8faa9aea9a009f2d9d942c999646";
+
name = "parse_json___parse_json_5.2.0.tgz";
+
url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz";
+
sha1 = "c76fc66dee54231c962b22bcc8a72cf2f99753cd";
};
···
};
+
name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_6.0.1.tgz";
+
path = fetchurl {
+
name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_6.0.1.tgz";
+
url = "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz";
+
sha1 = "2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6";
+
};
+
}
+
{
name = "parse5___parse5_4.0.0.tgz";
path = fetchurl {
name = "parse5___parse5_4.0.0.tgz";
···
};
-
name = "parse5___parse5_5.1.1.tgz";
+
name = "parse5___parse5_6.0.1.tgz";
path = fetchurl {
-
name = "parse5___parse5_5.1.1.tgz";
-
url = "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz";
-
sha1 = "f68e4e5ba1852ac2cadc00f4555fff6c2abb6178";
-
};
-
}
-
{
-
name = "parse5___parse5_3.0.3.tgz";
-
path = fetchurl {
-
name = "parse5___parse5_3.0.3.tgz";
-
url = "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz";
-
sha1 = "042f792ffdd36851551cf4e9e066b3874ab45b5c";
+
name = "parse5___parse5_6.0.1.tgz";
+
url = "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz";
+
sha1 = "e1a1c085c569b3dc08321184f19a39cc27f7c30b";
};
···
};
-
name = "pascal_case___pascal_case_3.1.1.tgz";
+
name = "pascal_case___pascal_case_3.1.2.tgz";
path = fetchurl {
-
name = "pascal_case___pascal_case_3.1.1.tgz";
-
url = "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz";
-
sha1 = "5ac1975133ed619281e88920973d2cd1f279de5f";
+
name = "pascal_case___pascal_case_3.1.2.tgz";
+
url = "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz";
+
sha1 = "b48e0ef2b98e205e7c1dae747d0b1508237660eb";
};
···
};
-
name = "postcss_selector_not___postcss_selector_not_4.0.0.tgz";
+
name = "postcss_selector_not___postcss_selector_not_4.0.1.tgz";
path = fetchurl {
-
name = "postcss_selector_not___postcss_selector_not_4.0.0.tgz";
-
url = "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz";
-
sha1 = "c68ff7ba96527499e832724a2674d65603b645c0";
+
name = "postcss_selector_not___postcss_selector_not_4.0.1.tgz";
+
url = "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz";
+
sha1 = "263016eef1cf219e0ade9a913780fc1f48204cbf";
};
···
};
-
name = "pretty_bytes___pretty_bytes_5.4.1.tgz";
+
name = "pretty_bytes___pretty_bytes_5.6.0.tgz";
path = fetchurl {
-
name = "pretty_bytes___pretty_bytes_5.4.1.tgz";
-
url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz";
-
sha1 = "cd89f79bbcef21e3d21eb0da68ffe93f803e884b";
+
name = "pretty_bytes___pretty_bytes_5.6.0.tgz";
+
url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz";
+
sha1 = "356256f643804773c82f64723fe78c92c62beaeb";
};
···
};
-
name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.2.tgz";
+
name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.3.tgz";
path = fetchurl {
-
name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.2.tgz";
-
url = "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz";
-
sha1 = "d82a437e081e68dfca3761fbd57dbf2abdda1316";
+
name = "react_copy_to_clipboard___react_copy_to_clipboard_5.0.3.tgz";
+
url = "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.3.tgz";
+
sha1 = "2a0623b1115a1d8c84144e9434d3342b5af41ab4";
};
···
};
-
name = "react_error_overlay___react_error_overlay_6.0.8.tgz";
+
name = "react_error_overlay___react_error_overlay_6.0.9.tgz";
path = fetchurl {
-
name = "react_error_overlay___react_error_overlay_6.0.8.tgz";
-
url = "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.8.tgz";
-
sha1 = "474ed11d04fc6bda3af643447d85e9127ed6b5de";
+
name = "react_error_overlay___react_error_overlay_6.0.9.tgz";
+
url = "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz";
+
sha1 = "3c743010c9359608c375ecd6bc76f35d93995b0a";
};
···
};
-
name = "react_is___react_is_17.0.1.tgz";
+
name = "react_is___react_is_17.0.2.tgz";
path = fetchurl {
-
name = "react_is___react_is_17.0.1.tgz";
-
url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz";
-
sha1 = "5b3531bd76a645a4c9fb6e693ed36419e3301339";
+
name = "react_is___react_is_17.0.2.tgz";
+
url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz";
+
sha1 = "e691d4a8e9c789365655539ab372762b0efb54f0";
};
···
};
-
name = "react_popper___react_popper_1.3.7.tgz";
+
name = "react_popper___react_popper_1.3.11.tgz";
path = fetchurl {
-
name = "react_popper___react_popper_1.3.7.tgz";
-
url = "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz";
-
sha1 = "f6a3471362ef1f0d10a4963673789de1baca2324";
+
name = "react_popper___react_popper_1.3.11.tgz";
+
url = "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.11.tgz";
+
sha1 = "a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd";
};
···
};
-
name = "react_scripts___react_scripts_3.4.3.tgz";
+
name = "react_scripts___react_scripts_3.4.4.tgz";
path = fetchurl {
-
name = "react_scripts___react_scripts_3.4.3.tgz";
-
url = "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.4.3.tgz";
-
sha1 = "21de5eb93de41ee92cd0b85b0e1298d0bb2e6c51";
+
name = "react_scripts___react_scripts_3.4.4.tgz";
+
url = "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.4.4.tgz";
+
sha1 = "eef024ed5c566374005e3f509877350ba99d08a7";
};
···
};
-
name = "reactstrap___reactstrap_8.7.1.tgz";
+
name = "reactstrap___reactstrap_8.9.0.tgz";
path = fetchurl {
-
name = "reactstrap___reactstrap_8.7.1.tgz";
-
url = "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.7.1.tgz";
-
sha1 = "9631db8460a83a4d40fbee61abdd577b4f1a7069";
+
name = "reactstrap___reactstrap_8.9.0.tgz";
+
url = "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.9.0.tgz";
+
sha1 = "bca4afa3f5cd18899ef9b33d877a141886d5abae";
};
···
-
name = "regex_parser___regex_parser_2.2.10.tgz";
+
name = "regex_parser___regex_parser_2.2.11.tgz";
path = fetchurl {
-
name = "regex_parser___regex_parser_2.2.10.tgz";
-
url = "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz";
-
sha1 = "9e66a8f73d89a107616e63b39d4deddfee912b37";
+
name = "regex_parser___regex_parser_2.2.11.tgz";
+
url = "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz";
+
sha1 = "3b37ec9049e19479806e878cabe7c1ca83ccfe58";
-
name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz";
+
name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
path = fetchurl {
-
name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz";
-
url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz";
-
sha1 = "7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75";
+
name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
+
url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz";
+
sha1 = "7ef352ae8d159e758c0eadca6f8fcb4eef07be26";
···
-
name = "regjsparser___regjsparser_0.6.4.tgz";
+
name = "regjsparser___regjsparser_0.6.9.tgz";
path = fetchurl {
-
name = "regjsparser___regjsparser_0.6.4.tgz";
-
url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz";
-
sha1 = "a769f8684308401a66e9b529d2436ff4d0666272";
+
name = "regjsparser___regjsparser_0.6.9.tgz";
+
url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz";
+
sha1 = "b489eef7c9a2ce43727627011429cf833a7183e6";
···
-
name = "renderkid___renderkid_2.0.4.tgz";
+
name = "renderkid___renderkid_2.0.5.tgz";
path = fetchurl {
-
name = "renderkid___renderkid_2.0.4.tgz";
-
url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.4.tgz";
-
sha1 = "d325e532afb28d3f8796ffee306be8ffd6fc864c";
+
name = "renderkid___renderkid_2.0.5.tgz";
+
url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.5.tgz";
+
sha1 = "483b1ac59c6601ab30a7a596a5965cabccfdd0a5";
···
-
name = "resolve_url_loader___resolve_url_loader_3.1.1.tgz";
+
name = "resolve_url_loader___resolve_url_loader_3.1.2.tgz";
path = fetchurl {
-
name = "resolve_url_loader___resolve_url_loader_3.1.1.tgz";
-
url = "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz";
-
sha1 = "28931895fa1eab9be0647d3b2958c100ae3c0bf0";
+
name = "resolve_url_loader___resolve_url_loader_3.1.2.tgz";
+
url = "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz";
+
sha1 = "235e2c28e22e3e432ba7a5d4e305c59a58edfc08";
···
-
name = "resolve___resolve_1.19.0.tgz";
+
name = "resolve___resolve_1.20.0.tgz";
path = fetchurl {
-
name = "resolve___resolve_1.19.0.tgz";
-
url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz";
-
sha1 = "1af5bf630409734a067cae29318aac7fa29a267c";
+
name = "resolve___resolve_1.20.0.tgz";
+
url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz";
+
sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975";
+
};
+
}
+
{
+
name = "resolve___resolve_2.0.0_next.3.tgz";
+
path = fetchurl {
+
name = "resolve___resolve_2.0.0_next.3.tgz";
+
url = "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz";
+
sha1 = "d41016293d4a8586a39ca5d9b5f15cbea1f55e46";
···
-
name = "rxjs___rxjs_6.6.3.tgz";
+
name = "rxjs___rxjs_6.6.6.tgz";
path = fetchurl {
-
name = "rxjs___rxjs_6.6.3.tgz";
-
url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz";
-
sha1 = "8ca84635c4daa900c0d3967a6ee7ac60271ee552";
+
name = "rxjs___rxjs_6.6.6.tgz";
+
url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.6.tgz";
+
sha1 = "14d8417aa5a07c5e633995b525e1e3c0dec03b70";
···
-
name = "semver___semver_7.3.2.tgz";
+
name = "semver___semver_7.3.5.tgz";
path = fetchurl {
-
name = "semver___semver_7.3.2.tgz";
-
url = "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz";
-
sha1 = "604962b052b81ed0786aae84389ffba70ffd3938";
+
name = "semver___semver_7.3.5.tgz";
+
url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
+
sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
···
-
name = "side_channel___side_channel_1.0.3.tgz";
+
name = "side_channel___side_channel_1.0.4.tgz";
path = fetchurl {
-
name = "side_channel___side_channel_1.0.3.tgz";
-
url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.3.tgz";
-
sha1 = "cdc46b057550bbab63706210838df5d4c19519c3";
+
name = "side_channel___side_channel_1.0.4.tgz";
+
url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz";
+
sha1 = "efce5c8fdc104ee751b25c58d4290011fa5ea2cf";
···
-
name = "sinon___sinon_9.2.1.tgz";
+
name = "sinon___sinon_9.2.4.tgz";
path = fetchurl {
-
name = "sinon___sinon_9.2.1.tgz";
-
url = "https://registry.yarnpkg.com/sinon/-/sinon-9.2.1.tgz";
-
sha1 = "64cc88beac718557055bd8caa526b34a2231be6d";
+
name = "sinon___sinon_9.2.4.tgz";
+
url = "https://registry.yarnpkg.com/sinon/-/sinon-9.2.4.tgz";
+
sha1 = "e55af4d3b174a4443a8762fa8421c2976683752b";
···
-
name = "source_map_url___source_map_url_0.4.0.tgz";
+
name = "source_map_url___source_map_url_0.4.1.tgz";
path = fetchurl {
-
name = "source_map_url___source_map_url_0.4.0.tgz";
-
url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz";
-
sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
+
name = "source_map_url___source_map_url_0.4.1.tgz";
+
url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz";
+
sha1 = "0af66605a745a5a2f91cf1bbf8a7afbc283dec56";
···
-
name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz";
+
name = "spdx_license_ids___spdx_license_ids_3.0.7.tgz";
path = fetchurl {
-
name = "spdx_license_ids___spdx_license_ids_3.0.6.tgz";
-
url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz";
-
sha1 = "c80757383c28abf7296744998cbc106ae8b854ce";
+
name = "spdx_license_ids___spdx_license_ids_3.0.7.tgz";
+
url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz";
+
sha1 = "e9c18a410e5ed7e12442a549fbd8afa767038d65";
···
-
name = "stack_utils___stack_utils_1.0.3.tgz";
+
name = "stack_utils___stack_utils_1.0.4.tgz";
path = fetchurl {
-
name = "stack_utils___stack_utils_1.0.3.tgz";
-
url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.3.tgz";
-
sha1 = "db7a475733b5b8bf6521907b18891d29006f7751";
+
name = "stack_utils___stack_utils_1.0.4.tgz";
+
url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.4.tgz";
+
sha1 = "4b600971dcfc6aed0cbdf2a8268177cc916c87c8";
···
-
name = "string_width___string_width_4.2.0.tgz";
+
name = "string_width___string_width_4.2.2.tgz";
path = fetchurl {
-
name = "string_width___string_width_4.2.0.tgz";
-
url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz";
-
sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5";
+
name = "string_width___string_width_4.2.2.tgz";
+
url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz";
+
sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5";
-
name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz";
+
name = "string.prototype.matchall___string.prototype.matchall_4.0.4.tgz";
path = fetchurl {
-
name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz";
-
url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz";
-
sha1 = "48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e";
+
name = "string.prototype.matchall___string.prototype.matchall_4.0.4.tgz";
+
url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz";
+
sha1 = "608f255e93e072107f5de066f81a2dfb78cf6b29";
-
name = "string.prototype.trim___string.prototype.trim_1.2.2.tgz";
+
name = "string.prototype.trim___string.prototype.trim_1.2.4.tgz";
path = fetchurl {
-
name = "string.prototype.trim___string.prototype.trim_1.2.2.tgz";
-
url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.2.tgz";
-
sha1 = "f538d0bacd98fc4297f0bef645226d5aaebf59f3";
+
name = "string.prototype.trim___string.prototype.trim_1.2.4.tgz";
+
url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz";
+
sha1 = "6014689baf5efaf106ad031a5fa45157666ed1bd";
-
name = "string.prototype.trimend___string.prototype.trimend_1.0.2.tgz";
+
name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
path = fetchurl {
-
name = "string.prototype.trimend___string.prototype.trimend_1.0.2.tgz";
-
url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz";
-
sha1 = "6ddd9a8796bc714b489a3ae22246a208f37bfa46";
+
name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
+
url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
+
sha1 = "e75ae90c2942c63504686c18b287b4a0b1a45f80";
-
name = "string.prototype.trimstart___string.prototype.trimstart_1.0.2.tgz";
+
name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
path = fetchurl {
-
name = "string.prototype.trimstart___string.prototype.trimstart_1.0.2.tgz";
-
url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz";
-
sha1 = "22d45da81015309cd0cdd79787e8919fc5c613e7";
+
name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
+
url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
+
sha1 = "b36399af4ab2999b4c9c648bd7a3fb2bb26feeed";
···
+
name = "style_mod___style_mod_4.0.0.tgz";
+
path = fetchurl {
+
name = "style_mod___style_mod_4.0.0.tgz";
+
url = "https://registry.yarnpkg.com/style-mod/-/style-mod-4.0.0.tgz";
+
sha1 = "97e7c2d68b592975f2ca7a63d0dd6fcacfe35a01";
+
};
+
}
+
{
name = "stylehacks___stylehacks_4.0.3.tgz";
path = fetchurl {
name = "stylehacks___stylehacks_4.0.3.tgz";
···
-
name = "tempusdominus_bootstrap_4___tempusdominus_bootstrap_4_5.1.2.tgz";
+
name = "tempusdominus_bootstrap_4___tempusdominus_bootstrap_4_5.39.0.tgz";
path = fetchurl {
-
name = "tempusdominus_bootstrap_4___tempusdominus_bootstrap_4_5.1.2.tgz";
-
url = "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.1.2.tgz";
-
sha1 = "3c9906ca6e5d563faa0b81b2fdc6aa79cad9c0be";
+
name = "tempusdominus_bootstrap_4___tempusdominus_bootstrap_4_5.39.0.tgz";
+
url = "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.39.0.tgz";
+
sha1 = "f13dcfec6c41b37c5fe509f08bd513590c64411f";
-
name = "tempusdominus_core___tempusdominus_core_5.0.3.tgz";
+
name = "tempusdominus_core___tempusdominus_core_5.19.0.tgz";
path = fetchurl {
-
name = "tempusdominus_core___tempusdominus_core_5.0.3.tgz";
-
url = "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.0.3.tgz";
-
sha1 = "808642e47a83f45d7ef18c1597fd7b1d413d69e5";
+
name = "tempusdominus_core___tempusdominus_core_5.19.0.tgz";
+
url = "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.19.0.tgz";
+
sha1 = "ccbd2c35109b0a4b96c61513e53e0175ec4896bd";
···
-
name = "tough_cookie___tough_cookie_3.0.1.tgz";
+
name = "tough_cookie___tough_cookie_4.0.0.tgz";
path = fetchurl {
-
name = "tough_cookie___tough_cookie_3.0.1.tgz";
-
url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz";
-
sha1 = "9df4f57e739c26930a018184887f4adb7dca73b2";
+
name = "tough_cookie___tough_cookie_4.0.0.tgz";
+
url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz";
+
sha1 = "d822234eeca882f991f0f908824ad2622ddbece4";
···
-
name = "tsutils___tsutils_3.17.1.tgz";
+
name = "tslib___tslib_2.1.0.tgz";
path = fetchurl {
-
name = "tsutils___tsutils_3.17.1.tgz";
-
url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz";
-
sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759";
+
name = "tslib___tslib_2.1.0.tgz";
+
url = "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz";
+
sha1 = "da60860f1c2ecaa5703ab7d39bc05b6bf988b97a";
+
};
+
}
+
{
+
name = "tsutils___tsutils_3.21.0.tgz";
+
path = fetchurl {
+
name = "tsutils___tsutils_3.21.0.tgz";
+
url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz";
+
sha1 = "b48717d394cea6c1e096983eed58e9d61715b623";
···
-
name = "type___type_2.1.0.tgz";
+
name = "type___type_2.5.0.tgz";
path = fetchurl {
-
name = "type___type_2.1.0.tgz";
-
url = "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz";
-
sha1 = "9bdc22c648cf8cf86dd23d32336a41cfb6475e3f";
+
name = "type___type_2.5.0.tgz";
+
url = "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz";
+
sha1 = "0a2e78c2e77907b252abe5f298c1b01c63f0db3d";
···
-
name = "typescript___typescript_3.9.7.tgz";
+
name = "typescript___typescript_3.9.9.tgz";
path = fetchurl {
-
name = "typescript___typescript_3.9.7.tgz";
-
url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz";
-
sha1 = "98d600a5ebdc38f40cb277522f12dc800e9e25fa";
+
name = "typescript___typescript_3.9.9.tgz";
+
url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.9.tgz";
+
sha1 = "e69905c54bc0681d0518bd4d587cc6f2d0b1a674";
+
};
+
}
+
{
+
name = "unbox_primitive___unbox_primitive_1.0.0.tgz";
+
path = fetchurl {
+
name = "unbox_primitive___unbox_primitive_1.0.0.tgz";
+
url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.0.tgz";
+
sha1 = "eeacbc4affa28e9b3d36b5eaeccc50b3251b1d3f";
···
-
name = "uri_js___uri_js_4.4.0.tgz";
+
name = "uri_js___uri_js_4.4.1.tgz";
path = fetchurl {
-
name = "uri_js___uri_js_4.4.0.tgz";
-
url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz";
-
sha1 = "aa714261de793e8a82347a7bcc9ce74e86f28602";
+
name = "uri_js___uri_js_4.4.1.tgz";
+
url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz";
+
sha1 = "9b1a52595225859e55f669d928f88c6c57f2a77e";
···
-
name = "url_parse___url_parse_1.4.7.tgz";
+
name = "url_parse___url_parse_1.5.1.tgz";
path = fetchurl {
-
name = "url_parse___url_parse_1.4.7.tgz";
-
url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz";
-
sha1 = "a8a83535e8c00a316e403a5db4ac1b9b853ae278";
+
name = "url_parse___url_parse_1.5.1.tgz";
+
url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz";
+
sha1 = "d5fa9890af8a5e1f274a2c98376510f6425f6e3b";
···
+
name = "util.promisify___util.promisify_1.1.1.tgz";
+
path = fetchurl {
+
name = "util.promisify___util.promisify_1.1.1.tgz";
+
url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz";
+
sha1 = "77832f57ced2c9478174149cae9b96e9918cd54b";
+
};
+
}
+
{
name = "util.promisify___util.promisify_1.0.1.tgz";
path = fetchurl {
name = "util.promisify___util.promisify_1.0.1.tgz";
···
-
name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz";
+
name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
path = fetchurl {
-
name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz";
-
url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz";
-
sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132";
+
name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz";
+
url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz";
+
sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee";
···
+
name = "w3c_keyname___w3c_keyname_2.2.4.tgz";
+
path = fetchurl {
+
name = "w3c_keyname___w3c_keyname_2.2.4.tgz";
+
url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.4.tgz";
+
sha1 = "4ade6916f6290224cdbd1db8ac49eab03d0eef6b";
+
};
+
}
+
{
name = "w3c_xmlserializer___w3c_xmlserializer_1.1.2.tgz";
path = fetchurl {
name = "w3c_xmlserializer___w3c_xmlserializer_1.1.2.tgz";
···
-
name = "webpack_dev_middleware___webpack_dev_middleware_3.7.2.tgz";
+
name = "webpack_dev_middleware___webpack_dev_middleware_3.7.3.tgz";
path = fetchurl {
-
name = "webpack_dev_middleware___webpack_dev_middleware_3.7.2.tgz";
-
url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz";
-
sha1 = "0019c3db716e3fa5cecbf64f2ab88a74bab331f3";
+
name = "webpack_dev_middleware___webpack_dev_middleware_3.7.3.tgz";
+
url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz";
+
sha1 = "0639372b143262e2b84ab95d3b91a7597061c2c5";
···
-
name = "whatwg_fetch___whatwg_fetch_3.5.0.tgz";
+
name = "whatwg_fetch___whatwg_fetch_3.6.2.tgz";
path = fetchurl {
-
name = "whatwg_fetch___whatwg_fetch_3.5.0.tgz";
-
url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz";
-
sha1 = "605a2cd0a7146e5db141e29d1c62ab84c0c4c868";
+
name = "whatwg_fetch___whatwg_fetch_3.6.2.tgz";
+
url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz";
+
sha1 = "dced24f37f2624ed0281725d51d0e2e3fe677f8c";
···
+
name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
+
path = fetchurl {
+
name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz";
+
url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz";
+
sha1 = "13757bc89b209b049fe5d86430e21cf40a89a8e6";
+
};
+
}
+
{
name = "which_module___which_module_2.0.0.tgz";
path = fetchurl {
name = "which_module___which_module_2.0.0.tgz";
···
-
name = "ws___ws_7.4.0.tgz";
+
name = "ws___ws_7.4.4.tgz";
path = fetchurl {
-
name = "ws___ws_7.4.0.tgz";
-
url = "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz";
-
sha1 = "a5dd76a24197940d4a8bb9e0e152bb4503764da7";
+
name = "ws___ws_7.4.4.tgz";
+
url = "https://registry.yarnpkg.com/ws/-/ws-7.4.4.tgz";
+
sha1 = "383bc9742cb202292c9077ceab6f6047b17f2d59";
···
-
name = "xregexp___xregexp_4.4.0.tgz";
+
name = "xregexp___xregexp_4.4.1.tgz";
path = fetchurl {
-
name = "xregexp___xregexp_4.4.0.tgz";
-
url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.0.tgz";
-
sha1 = "29660f5d6567cd2ef981dd4a50cb05d22c10719d";
+
name = "xregexp___xregexp_4.4.1.tgz";
+
url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.1.tgz";
+
sha1 = "c84a88fa79e9ab18ca543959712094492185fe65";
···
-
name = "y18n___y18n_4.0.0.tgz";
+
name = "y18n___y18n_4.0.1.tgz";
path = fetchurl {
-
name = "y18n___y18n_4.0.0.tgz";
-
url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz";
-
sha1 = "95ef94f85ecc81d007c264e190a120f0a3c8566b";
+
name = "y18n___y18n_4.0.1.tgz";
+
url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz";
+
sha1 = "8db2b83c31c5d75099bb890b23f3094891e247d4";
···
-
name = "yaml___yaml_1.10.0.tgz";
+
name = "yaml___yaml_1.10.2.tgz";
path = fetchurl {
-
name = "yaml___yaml_1.10.0.tgz";
-
url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz";
-
sha1 = "3b593add944876077d4d683fee01081bd9fff31e";
+
name = "yaml___yaml_1.10.2.tgz";
+
url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz";
+
sha1 = "2301c5ffbf12b467de8da2333a459e29e7920e4b";
+3 -3
pkgs/servers/squid/default.nix
···
stdenv.mkDerivation rec {
pname = "squid";
-
version = "4.14";
+
version = "4.15";
src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${pname}-${version}.tar.xz";
-
sha256 = "sha256-8Ql9qmQ0iXwVm8EAl4tRNHwDOQQWEIRdCvoSgVFyn/w=";
+
sha256 = "sha256-tpOk5asoEaioVPYN4KYq+786lSux0EeVLJrgEyH4SiU=";
};
nativeBuildInputs = [ pkg-config ];
···
meta = with lib; {
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
homepage = "http://www.squid-cache.org";
-
license = licenses.gpl2;
+
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz raskin ];
};
+3 -23
pkgs/tools/admin/ansible/default.nix
···
rec {
ansible = ansible_2_10;
-
# The python module stays at v2.9.x until the related package set has caught up. Therefore v2.10 gets an override
-
# for now.
-
ansible_2_10 = python3Packages.toPythonApplication (python3Packages.ansible.overridePythonAttrs (old: rec {
-
pname = "ansible";
-
version = "2.10.0";
-
-
# TODO: migrate to fetchurl, when release becomes available on releases.ansible.com
-
src = fetchFromGitHub {
-
owner = pname;
-
repo = pname;
-
rev = "v${version}";
-
sha256 = "0k9rs5ajx0chaq0xr1cj4x7fr5n8kd4y856miss6k01iv2m7yx42";
-
};
-
}));
+
ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base;
+
# End of support 2021/10/02, End of life 2021/12/31
ansible_2_9 = python3Packages.toPythonApplication python3Packages.ansible;
-
ansible_2_8 = python3Packages.toPythonApplication (python3Packages.ansible.overridePythonAttrs (old: rec {
-
pname = "ansible";
-
version = "2.8.14";
-
-
src = fetchurl {
-
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
-
sha256 = "19ga0c9qs2b216qjg5k2yknz8ksjn8qskicqspg2d4b8x2nr1294";
-
};
-
}));
+
ansible_2_8 = throw "Ansible 2.8 went end of life on 2021/01/03 and has subsequently been dropped";
}
+5 -5
pkgs/tools/archivers/xarchiver/default.nix
···
coreutils, zip, unzip, p7zip, unrar, gnutar, bzip2, gzip, lhasa, wrapGAppsHook }:
stdenv.mkDerivation rec {
-
version = "0.5.4.14";
+
version = "0.5.4.17";
pname = "xarchiver";
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
rev = version;
-
sha256 = "1iklwgykgymrwcc5p1cdbh91v0ih1m58s3w9ndl5kyd44bwlb7px";
+
sha256 = "00adrjpxqlaccrwjf65w3vhxfswdj0as8aj263c6f9b85llypc5v";
};
-
nativeBuildInputs = [ pkg-config makeWrapper wrapGAppsHook ];
-
buildInputs = [ gtk3 intltool libxslt ];
+
nativeBuildInputs = [ intltool pkg-config makeWrapper wrapGAppsHook ];
+
buildInputs = [ gtk3 libxslt ];
postFixup = ''
wrapProgram $out/bin/xarchiver \
···
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
homepage = "https://github.com/ib/xarchiver";
maintainers = [ lib.maintainers.domenkozar ];
-
license = lib.licenses.gpl2;
+
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
};
}
+3 -3
pkgs/tools/misc/bat/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "bat";
-
version = "0.18.0";
+
version = "0.18.1";
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
-
sha256 = "113i11sgna82i4c4zk66qmbypmnmzh0lzp4kkgqnxxcdvyj00rb8";
+
sha256 = "sha256-kyl+clL/4uxVaDH/9zPDGQTir4/JVgtHo9kNQ31gXTo=";
};
-
cargoSha256 = "12z7y303fmga91daf2w356qiqdqa7b8dz6nrrpnjdf0slyz0w3x4";
+
cargoSha256 = "sha256-j9HbOXiwN4CWv9wMBrNxY3jehh+KRkXlwmDqChNy1Dk=";
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
+5 -4
pkgs/tools/misc/gparted/default.nix
···
-
{ lib, stdenv, fetchurl, intltool, gettext, makeWrapper, coreutils, gnused, gnome
+
{ lib, stdenv, fetchurl, intltool, gettext, coreutils, gnused, gnome
, gnugrep, parted, glib, libuuid, pkg-config, gtkmm3, libxml2
, gpart, hdparm, procps, util-linux, polkit, wrapGAppsHook, substituteAll
}:
stdenv.mkDerivation rec {
-
name = "gparted-1.2.0";
+
pname = "gparted";
+
version = "1.3.0";
src = fetchurl {
-
url = "mirror://sourceforge/gparted/${name}.tar.gz";
-
sha256 = "sha256-bJBxXSVNen7AIIspAHtkFg3Z+330xKp/jsLJ0jEUxxk=";
+
url = "mirror://sourceforge/gparted/${pname}-${version}.tar.gz";
+
sha256 = "sha256-jcGAJF3Z6kXm4vS8aVEvGH4Ivn95nJioJaCwTBYcvSo=";
};
# Tries to run `pkexec --version` to get version.
+3 -3
pkgs/tools/misc/topgrade/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "topgrade";
-
version = "6.9.0";
+
version = "6.9.1";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-FW0vGwMHUgFSMggZoT+koSkub4xSKeQ+PNlvFjGIy7o=";
+
sha256 = "sha256-FaN1/S/VzHnaQp+UOmvNGaWDEFijVEI7GWkAmnln3jE=";
};
-
cargoSha256 = "sha256-+JNQITHP5rwbfavBeb4/IUo5FThhKcKDRwGeT5m6k5k=";
+
cargoSha256 = "sha256-Vq2gorQJbLfxKWKbYYOVaHPN0uITbGs1CgkwBtPwSrk=";
buildInputs = lib.optional stdenv.isDarwin Foundation;
+4 -4
pkgs/top-level/all-packages.nix
···
tthsum = callPackage ../applications/misc/tthsum { };
+
ttp = with python3.pkgs; toPythonApplication ttp;
+
chaps = callPackage ../tools/security/chaps { };
trace-cmd = callPackage ../os-specific/linux/trace-cmd { };
···
beam_nox = callPackage ./beam-packages.nix { wxSupport = false; };
inherit (beam.interpreters)
-
erlang erlangR23 erlangR22 erlangR21 erlangR20 erlangR19 erlangR18
+
erlang erlangR24 erlangR23 erlangR22 erlangR21 erlangR20 erlangR19 erlangR18
erlang_odbc erlang_javac erlang_odbc_javac erlang_basho_R16B02
elixir elixir_1_11 elixir_1_10 elixir_1_9 elixir_1_8 elixir_1_7
elixir_ls;
···
postgresql_jdbc = callPackage ../development/java-modules/postgresql_jdbc { };
prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { };
-
prometheus = callPackage ../servers/monitoring/prometheus {
-
buildGoPackage = buildGo115Package;
-
};
+
prometheus = callPackage ../servers/monitoring/prometheus { };
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
prometheus-apcupsd-exporter = callPackage ../servers/monitoring/prometheus/apcupsd-exporter.nix { };
prometheus-artifactory-exporter = callPackage ../servers/monitoring/prometheus/artifactory-exporter.nix { };
+15
pkgs/top-level/beam-packages.nix
···
# Standard Erlang versions, using the generic builder.
+
# R24
+
erlangR24 = lib.callErlang ../development/interpreters/erlang/R24.nix {
+
wxGTK = wxGTK30;
+
# Can be enabled since the bug has been fixed in https://github.com/erlang/otp/pull/2508
+
parallelBuild = true;
+
autoconf = buildPackages.autoconf269;
+
inherit wxSupport;
+
};
+
erlangR24_odbc = erlangR24.override { odbcSupport = true; };
+
erlangR24_javac = erlangR24.override { javacSupport = true; };
+
erlangR24_odbc_javac = erlangR24.override {
+
javacSupport = true;
+
odbcSupport = true;
+
};
+
# R23
erlangR23 = lib.callErlang ../development/interpreters/erlang/R23.nix {
wxGTK = wxGTK30;
+15 -1
pkgs/top-level/python-packages.nix
···
ansi2html = callPackage ../development/python-modules/ansi2html { };
-
ansible = callPackage ../development/python-modules/ansible { };
+
ansible = callPackage ../development/python-modules/ansible/legacy.nix { };
+
+
ansible-base = callPackage ../development/python-modules/ansible/base.nix { };
+
+
ansible-collections = callPackage ../development/python-modules/ansible/collections.nix { };
ansible-kernel = callPackage ../development/python-modules/ansible-kernel { };
···
jupytext = callPackage ../development/python-modules/jupytext { };
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
+
+
jxmlease = callPackage ../development/python-modules/jxmlease { };
k5test = callPackage ../development/python-modules/k5test {
inherit (pkgs) krb5Full findutils which;
···
pynest2d = callPackage ../development/python-modules/pynest2d { };
+
pynetbox = callPackage ../development/python-modules/pynetbox { };
+
pynetdicom = callPackage ../development/python-modules/pynetdicom { };
pynisher = callPackage ../development/python-modules/pynisher { };
···
pyworld = callPackage ../development/python-modules/pyworld { };
pyx = callPackage ../development/python-modules/pyx { };
+
+
pyxb = callPackage ../development/python-modules/pyxb { };
pyxbe = callPackage ../development/python-modules/pyxbe { };
···
trytond = callPackage ../development/python-modules/trytond { };
+
ttp = callPackage ../development/python-modules/ttp { };
+
tunigo = callPackage ../development/python-modules/tunigo { };
tubeup = callPackage ../development/python-modules/tubeup { };
···
yamlordereddictloader = callPackage ../development/python-modules/yamlordereddictloader { };
yanc = callPackage ../development/python-modules/yanc { };
+
+
yangson = callPackage ../development/python-modules/yangson { };
yapf = callPackage ../development/python-modules/yapf { };