From ca45050d2e7e1e88b58aab3dbb5ece6f3337da6e Mon Sep 17 00:00:00 2001 From: Johannes Rosenberger Date: Sat, 20 Oct 2018 16:36:02 +0200 Subject: [PATCH 001/167] epson-workforce-635-nx625-series: init at 1.0.1 --- maintainers/maintainer-list.nix | 5 + .../default.nix | 98 +++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e60280f30ebe..d2736de0a03e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2060,6 +2060,11 @@ github = "joncojonathan"; name = "Jonathan Haddock"; }; + jorsn = { + name = "Johannes Rosenberger"; + email = "johannes@jorsn.eu"; + github = "jorsn"; + }; jpdoyle = { email = "joethedoyle@gmail.com"; github = "jpdoyle"; diff --git a/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix new file mode 100644 index 000000000000..654cb5537751 --- /dev/null +++ b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix @@ -0,0 +1,98 @@ +{ + autoreconfHook, cups, gzip, libjpeg, rpmextract, + fetchurl, lib, stdenv +}: + +let + srcdirs = { + filter = "epson-inkjet-printer-filter-1.0.0"; + driver = "epson-inkjet-printer-workforce-635-nx625-series-1.0.1"; + }; +in stdenv.mkDerivation rec { + name = "epson-inkjet-printer-workforce-635-nx625-series"; + version = "1.0.1"; + + src = builtins.fetchurl { + url = "https://download.ebz.epson.net/dsc/op/stable/SRPMS/${name}-${version}-1lsb3.2.src.rpm"; + sha256 = "19nb2h0y9rvv6rg7j262f8sqap9kjvz8kmisxnjg1w0v19zb9zf2"; + }; + sourceRoot = srcdirs.filter; + + nativeBuildInputs = [ autoreconfHook gzip rpmextract ]; + buildInputs = [ cups libjpeg ]; + + unpackPhase = '' + rpmextract "$src" + for i in ${lib.concatStringsSep " " (builtins.attrValues srcdirs)}; do + tar xvf "$i".tar.gz + done + ''; + + preConfigure = '' + chmod u+x configure + ''; + + installPhase = + let + filterdir = "$out/cups/lib/filter"; + docdir = "$out/share/doc"; + ppddir = "$out/share/cups/model/${name}"; + libdir = + if stdenv.system == "x86_64-linux" then "lib64" + else if stdenv.system == "i686_linux" then "lib" + else throw "other platforms than i686_linux and x86_64-linux are not yet supported"; + in '' + mkdir -p "$out" "${docdir}" "${filterdir}" "${ppddir}" + cp src/epson_inkjet_printer_filter "${filterdir}" + + cd ../${srcdirs.driver} + for ppd in ppds/*; do + substituteInPlace "$ppd" --replace '/opt/${name}' "$out" + gzip -c "$ppd" > "${ppddir}/''${ppd#*/}" + done + cp COPYING.EPSON README "${docdir}" + cp -r resource watermark ${libdir} "$out" + ''; + + meta = { + description = "Proprietary CUPS drivers for Epson inkjet printers"; + longDescription = '' + This software is a filter program used with Common UNIX Printing + System (CUPS) from the Linux. This can supply the high quality print + with Seiko Epson Color Ink Jet Printers. + + This printer driver is supporting the following printers. + + WorkForce 60 + WorkForce 625 + WorkForce 630 + WorkForce 633 + WorkForce 635 + WorkForce T42WD + Epson Stylus NX625 + Epson Stylus SX525WD + Epson Stylus SX620FW + Epson Stylus TX560WD + Epson Stylus Office B42WD + Epson Stylus Office BX525WD + Epson Stylus Office BX625FWD + Epson Stylus Office TX620FWD + Epson ME OFFICE 82WD + Epson ME OFFICE 85ND + Epson ME OFFICE 900WD + Epson ME OFFICE 960FWD + + License: LGPL and SEIKO EPSON CORPORATION SOFTWARE LICENSE AGREEMENT + + To use the driver adjust your configuration.nix file: + services.printing = { + enable = true; + drivers = [ pkgs.${name} ]; + }; + ''; + downloadPage = https://download.ebz.epson.net/dsc/du/02/DriverDownloadInfo.do?LG2=EN&CN2=&DSCMI=16857&DSCCHK=4334d3487503d7f916ccf5d58071b05b7687294f; + license = with licenses; [ lgpl21 epson ]; + maintainers = [ maintainers.jorsn ]; + platforms = [ "x86_64-linux" "i686-linux" ]; + }; +} From defd5087cd6eae62faa40d70030cfd251d1437d9 Mon Sep 17 00:00:00 2001 From: Johannes Rosenberger Date: Sat, 20 Oct 2018 17:05:19 +0200 Subject: [PATCH 002/167] epson-workforce-635-nx625-series: added to all-packages.nix --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dde941348c6b..6c121c6a76b9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21726,6 +21726,8 @@ with pkgs; epson_201207w = callPackage ../misc/drivers/epson_201207w { }; + epson-workforce-635-nx625-series = callPackage ../misc/drivers/epson-workforce-635-nx625-series { }; + gutenprint = callPackage ../misc/drivers/gutenprint { }; gutenprintBin = callPackage ../misc/drivers/gutenprint/bin.nix { }; From 238e9530f95d49fbf1d36c04ea9a0c519d6dd618 Mon Sep 17 00:00:00 2001 From: Johannes Rosenberger Date: Sat, 20 Oct 2018 17:20:56 +0200 Subject: [PATCH 003/167] epson-workforce-635-nx625-series: fixed build errors variables `maintainers` and `licenses` were invisible, leading to build errors; fixed this. --- .../misc/drivers/epson-workforce-635-nx625-series/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix index 654cb5537751..9b21645c0179 100644 --- a/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix +++ b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix @@ -91,8 +91,8 @@ in stdenv.mkDerivation rec { }; ''; downloadPage = https://download.ebz.epson.net/dsc/du/02/DriverDownloadInfo.do?LG2=EN&CN2=&DSCMI=16857&DSCCHK=4334d3487503d7f916ccf5d58071b05b7687294f; - license = with licenses; [ lgpl21 epson ]; - maintainers = [ maintainers.jorsn ]; + license = with lib.licenses; [ lgpl21 epson ]; + maintainers = [ lib.maintainers.jorsn ]; platforms = [ "x86_64-linux" "i686-linux" ]; }; } From e0809da91bae49b8bb560eaffc2b9e906c1a69b4 Mon Sep 17 00:00:00 2001 From: Johannes Rosenberger Date: Mon, 22 Oct 2018 00:05:26 +0200 Subject: [PATCH 004/167] epson-workforce-635-nx625-series: use lib.fetchurl builtins.fetchurl (was used) cannot access uris not in `allowed-uris` when built in restricted mode (like ofborg does) --- pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix index 9b21645c0179..15a7ba3cd3c4 100644 --- a/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix +++ b/pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix @@ -12,7 +12,7 @@ in stdenv.mkDerivation rec { name = "epson-inkjet-printer-workforce-635-nx625-series"; version = "1.0.1"; - src = builtins.fetchurl { + src = fetchurl { url = "https://download.ebz.epson.net/dsc/op/stable/SRPMS/${name}-${version}-1lsb3.2.src.rpm"; sha256 = "19nb2h0y9rvv6rg7j262f8sqap9kjvz8kmisxnjg1w0v19zb9zf2"; }; From 764f16461bd0046b1b264ba8bb700772a137b5a8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Braun Date: Fri, 7 Dec 2018 14:22:21 +0100 Subject: [PATCH 005/167] test: set machines fqdn in /etc/hosts --- nixos/lib/build-vms.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/lib/build-vms.nix b/nixos/lib/build-vms.nix index 024f4414ebeb..a5580f4712eb 100644 --- a/nixos/lib/build-vms.nix +++ b/nixos/lib/build-vms.nix @@ -83,6 +83,8 @@ rec { (m': let config = (getAttr m' nodes).config; in optionalString (config.networking.primaryIPAddress != "") ("${config.networking.primaryIPAddress} " + + optionalString (config.networking.domain != null) + "${config.networking.hostName}.${config.networking.domain} " + "${config.networking.hostName}\n")); virtualisation.qemu.options = From 2581d044fb06675ad28bce9c76c48c1010afa2a6 Mon Sep 17 00:00:00 2001 From: "nagato.pain" Date: Fri, 21 Dec 2018 13:29:47 -0800 Subject: [PATCH 006/167] maintainers: update psyanticy's github --- maintainers/maintainer-list.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5d77f75c65c9..4f8167f0a009 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3505,7 +3505,7 @@ }; psyanticy = { email = "iuns@outlook.fr"; - github = "Assassinkin"; + github = "PsyanticY"; name = "Psyanticy"; }; puffnfresh = { From 2922ae9ee74f3b3d2499ab87e35139db45f1ecc6 Mon Sep 17 00:00:00 2001 From: tilpner Date: Tue, 1 Jan 2019 16:47:40 +0100 Subject: [PATCH 007/167] abduco: 0.6 -> 2018-05-16 --- pkgs/tools/misc/abduco/default.nix | 38 ++++++++++++++---------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/pkgs/tools/misc/abduco/default.nix b/pkgs/tools/misc/abduco/default.nix index 4fc254b76b40..8545d86427a4 100644 --- a/pkgs/tools/misc/abduco/default.nix +++ b/pkgs/tools/misc/abduco/default.nix @@ -1,29 +1,27 @@ -{ stdenv, fetchurl, writeText, conf? null}: +{ stdenv, fetchFromGitHub, writeText, conf ? null }: with stdenv.lib; stdenv.mkDerivation rec { - name = "abduco-0.6"; + name = "abduco-2018-05-16"; - meta = { - homepage = http://brain-dump.org/projects/abduco; - license = licenses.isc; - description = "Allows programs to be run independently from its controlling terminal"; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; - }; + src = fetchFromGitHub { + owner = "martanne"; + repo = "abduco"; + rev = "8f80aa8044d7ecf0e43a0294a09007d056b20e4c"; + sha256 = "0wqcif633nbgnznn46j0sng9l0wncppw1x1c42f75b4p9hrph203"; + }; - CFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE"; + configFile = optionalString (conf!=null) (writeText "config.def.h" conf); + preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h"; - src = fetchurl { - url = "http://www.brain-dump.org/projects/abduco/${name}.tar.gz"; - sha256 = "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"; - }; + CFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE"; - configFile = optionalString (conf!=null) (writeText "config.def.h" conf); - preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h"; - - installPhase = '' - make PREFIX=$out install - ''; + meta = { + homepage = http://brain-dump.org/projects/abduco; + license = licenses.isc; + description = "Allows programs to be run independently from its controlling terminal"; + maintainers = with maintainers; [ pSub ]; + platforms = platforms.unix; + }; } From eeee97b6fc22c0da0673ad422f2b8305d0b777e3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 1 Jan 2019 20:23:31 -0800 Subject: [PATCH 008/167] unclutter-xfixes: 1.4 -> 1.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/unclutter-xfixes/versions --- pkgs/tools/misc/unclutter-xfixes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/unclutter-xfixes/default.nix b/pkgs/tools/misc/unclutter-xfixes/default.nix index 5e1661a6a299..8e2342f4269e 100644 --- a/pkgs/tools/misc/unclutter-xfixes/default.nix +++ b/pkgs/tools/misc/unclutter-xfixes/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { pname = "unclutter-xfixes"; - version = "1.4"; + version = "1.5"; src = fetchFromGitHub { owner = "Airblader"; repo = "unclutter-xfixes"; rev = "v${version}"; - sha256 = "0anny6hvwf5nh7ghgi4gdcywhwyhgfvqvp7fjhm59kjc3qxnwf96"; + sha256 = "148m4wx8v57s3l2wb69y9imb00y8ca2li27hsxibwnl1wrkb7z4b"; }; nativeBuildInputs = [ pkgconfig asciidoc libxslt docbook_xsl ]; From 2745ab0dcf2c6e8832ae51437310093f8a511cf6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 2 Jan 2019 00:27:03 -0800 Subject: [PATCH 009/167] shotcut: 18.11.18 -> 18.12.23 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/shotcut/versions --- pkgs/applications/video/shotcut/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index 877d1a7525f5..bbb11c497668 100644 --- a/pkgs/applications/video/shotcut/default.nix +++ b/pkgs/applications/video/shotcut/default.nix @@ -8,13 +8,13 @@ assert stdenv.lib.versionAtLeast mlt.version "6.8.0"; stdenv.mkDerivation rec { name = "shotcut-${version}"; - version = "18.11.18"; + version = "18.12.23"; src = fetchFromGitHub { owner = "mltframework"; repo = "shotcut"; rev = "v${version}"; - sha256 = "0yhrjqc5cby9vc81z5zh5xg34mvh6q8dd896p2izfcqcdhdz7cs3"; + sha256 = "1i6gkqvg31q7g5s3zgqzg4i5kyas7k4svclgbk459i5h1ar3v5vn"; }; enableParallelBuilding = true; From b473f5f7370fefb5e0d0fc0caf47dff44e8adeb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20T=C3=B6tterman?= Date: Wed, 2 Jan 2019 15:15:36 +0200 Subject: [PATCH 010/167] weechat-matrix-bridge: 2018-05-29 -> 2018-11-19 --- .../irc/weechat/scripts/weechat-matrix-bridge/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix index d2960ae93a99..137a32f9364f 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix @@ -1,12 +1,12 @@ { stdenv, curl, fetchFromGitHub, cjson, olm, luaffi }: stdenv.mkDerivation { - name = "weechat-matrix-bridge-2018-05-29"; + name = "weechat-matrix-bridge-2018-11-19"; src = fetchFromGitHub { owner = "torhve"; repo = "weechat-matrix-protocol-script"; - rev = "ace3fefc0e35a627f8a528032df2e3111e41eb1b"; - sha256 = "1snf8vn5n9wzrnqnvdrcli4199s5p114jbjlgrj5c27i53173wqw"; + rev = "8d32e90d864a8f3f09ecc2857cd5dd6e39a8c3f7"; + sha256 = "0qqd6qmkrdc0r3rnl53c3yp93fbcz7d3mdw3vq5gmdqxyym4s9lj"; }; patches = [ From da00ec4b45f5cfc5b47825818b57db1d1950757d Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 4 Jan 2019 16:34:59 +0900 Subject: [PATCH 011/167] Add a failing test for mkAliasOptionModule. --- lib/tests/modules.sh | 3 ++ lib/tests/modules/alias-with-priority.nix | 52 +++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 lib/tests/modules/alias-with-priority.nix diff --git a/lib/tests/modules.sh b/lib/tests/modules.sh index b83e1eb7d82d..45f391785228 100755 --- a/lib/tests/modules.sh +++ b/lib/tests/modules.sh @@ -149,6 +149,9 @@ checkConfigOutput "1 2 3 4 5 6 7 8 9 10" config.result ./loaOf-with-long-list.ni # Check loaOf with many merges of lists. checkConfigOutput "1 2 3 4 5 6 7 8 9 10" config.result ./loaOf-with-many-list-merges.nix +# Check mkAliasOptionModuleWithPriority. +checkConfigOutput "true" config.enable ./alias-with-priority.nix + cat < Date: Thu, 3 Jan 2019 23:15:01 +0900 Subject: [PATCH 012/167] lib/modules: Add a function to create an option alias that respects the priority This commit adds a function `mkAliasOptionModuleWithPriority`. This function will make an alias to an existing option and copy over the priority. This functionality is needed for PRs like #53041. In that case `nixos-generate-config` added an option to `hardware-configuration.nix` with `mkDefault`. That option was then changed and an alias created for the old name. The end user should be able to set the non-alias option in their `configuration.nix` and have everything work correctly. Without this function, the priority for the option won't be copied over correctly and the end-user will get a message saying they have the same option set to two different values. --- lib/default.nix | 2 +- lib/modules.nix | 30 ++++++++++++++++++++--- lib/tests/modules/alias-with-priority.nix | 2 +- 3 files changed, 29 insertions(+), 5 deletions(-) diff --git a/lib/default.nix b/lib/default.nix index 916f6e05190b..17a74cd21355 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -109,7 +109,7 @@ let mkFixStrictness mkOrder mkBefore mkAfter mkAliasDefinitions mkAliasAndWrapDefinitions fixMergeModules mkRemovedOptionModule mkRenamedOptionModule mkMergedOptionModule mkChangedOptionModule - mkAliasOptionModule doRename filterModules; + mkAliasOptionModule mkAliasOptionModuleWithPriority doRename filterModules; inherit (options) isOption mkEnableOption mkSinkUndeclaredOptions mergeDefaultOption mergeOneOption mergeEqualOption getValues getFiles optionAttrSetToDocList optionAttrSetToDocList' diff --git a/lib/modules.nix b/lib/modules.nix index 5fb83a4a538c..4e259cce2ba4 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -556,8 +556,21 @@ rec { # mkAliasDefinitions = mkAliasAndWrapDefinitions id; mkAliasAndWrapDefinitions = wrap: option: - mkIf (isOption option && option.isDefined) (wrap (mkMerge option.definitions)); + mkAliasIfDef option (wrap (mkMerge option.definitions)); + # Similar to mkAliasAndWrapDefinitions but copies over the priority from the + # option as well. + # + # If a priority is not set, it assumes a priority of 100. + mkAliasAndWrapDefsWithPriority = wrap: option: + let + defaultPrio = 100; + prio = option.highestPrio or defaultPrio; + defsWithPrio = map (mkOverride prio) option.definitions; + in mkAliasIfDef option (wrap (mkMerge defsWithPrio)); + + mkAliasIfDef = option: + mkIf (isOption option && option.isDefined); /* Compatibility. */ fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; @@ -690,7 +703,16 @@ rec { use = id; }; - doRename = { from, to, visible, warn, use }: + /* Like ‘mkAliasOptionModule’, but copy over the priority of the option as well. */ + mkAliasOptionModuleWithPriority = from: to: doRename { + inherit from to; + visible = true; + warn = false; + use = id; + withPriority = true; + }; + + doRename = { from, to, visible, warn, use, withPriority ? false }: { config, options, ... }: let fromOpt = getAttrFromPath from options; @@ -708,7 +730,9 @@ rec { warnings = optional (warn && fromOpt.isDefined) "The option `${showOption from}' defined in ${showFiles fromOpt.files} has been renamed to `${showOption to}'."; } - (mkAliasAndWrapDefinitions (setAttrByPath to) fromOpt) + (if withPriority + then mkAliasAndWrapDefsWithPriority (setAttrByPath to) fromOpt + else mkAliasAndWrapDefinitions (setAttrByPath to) fromOpt) ]; }; diff --git a/lib/tests/modules/alias-with-priority.nix b/lib/tests/modules/alias-with-priority.nix index ba25b527aa2d..923483684cb1 100644 --- a/lib/tests/modules/alias-with-priority.nix +++ b/lib/tests/modules/alias-with-priority.nix @@ -32,7 +32,7 @@ with lib; imports = [ # Create an alias for the "enable" option. - (mkAliasOptionModule [ "enableAlias" ] [ "enable" ]) + (mkAliasOptionModuleWithPriority [ "enableAlias" ] [ "enable" ]) # Disable the aliased option, but with a default (low) priority so it # should be able to be overridden by the next import. From 16a0eba3f422cd602b1586718e1ff82494306ab6 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Fri, 4 Jan 2019 14:03:44 -0600 Subject: [PATCH 013/167] pasystray: 0.7.0 -> 0.7.1, cleanup --- pkgs/tools/audio/pasystray/default.nix | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/pkgs/tools/audio/pasystray/default.nix b/pkgs/tools/audio/pasystray/default.nix index 57896fd7f637..41b3b15738d6 100644 --- a/pkgs/tools/audio/pasystray/default.nix +++ b/pkgs/tools/audio/pasystray/default.nix @@ -1,38 +1,26 @@ -{ stdenv, fetchFromGitHub, autoconf, automake, makeWrapper, pkgconfig +{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, wrapGAppsHook , gnome3, avahi, gtk3, libappindicator-gtk3, libnotify, libpulseaudio , xlibsWrapper }: stdenv.mkDerivation rec { name = "pasystray-${version}"; - version = "0.7.0"; + version = "0.7.1"; src = fetchFromGitHub { owner = "christophgysin"; repo = "pasystray"; rev = name; - sha256 = "0cc9hjyw4gr4ip4lw74pzb1l9sxs3ffhf0xn0m1fhmyfbjyixwkh"; + sha256 = "0xx1bm9kimgq11a359ikabdndqg5q54pn1d1dyyjnrj0s41168fk"; }; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig autoreconfHook wrapGAppsHook ]; buildInputs = [ - autoconf automake makeWrapper gnome3.defaultIconTheme avahi gtk3 libappindicator-gtk3 libnotify libpulseaudio xlibsWrapper + gnome3.gsettings-desktop-schemas ]; - preConfigure = '' - aclocal - autoconf - autoheader - automake --add-missing - ''; - - preFixup = '' - wrapProgram "$out/bin/pasystray" \ - --prefix XDG_DATA_DIRS : "${gnome3.defaultIconTheme}/share:$GSETTINGS_SCHEMAS_PATH" - ''; - meta = with stdenv.lib; { description = "PulseAudio system tray"; homepage = https://github.com/christophgysin/pasystray; From 0c2ed51f134f45a377c19eeb324f19d9258b0e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 4 Jan 2019 23:30:13 +0100 Subject: [PATCH 014/167] cloud-print-connector: 1.11 -> 1.16 --- .../servers/cloud-print-connector/default.nix | 27 +++++- pkgs/servers/cloud-print-connector/deps.nix | 85 ++++++++++--------- 2 files changed, 67 insertions(+), 45 deletions(-) diff --git a/pkgs/servers/cloud-print-connector/default.nix b/pkgs/servers/cloud-print-connector/default.nix index 3db3d9327031..76d925418550 100644 --- a/pkgs/servers/cloud-print-connector/default.nix +++ b/pkgs/servers/cloud-print-connector/default.nix @@ -1,24 +1,45 @@ -# This file was generated by https://github.com/kamilchm/go2nix v1.2.0 { stdenv, buildGoPackage, fetchFromGitHub, avahi, cups }: # TODO: Add a service for gcp-cups-connector and perhaps some other # kind of configuration for the same thing that gcp-connector-util # provides. +# Mic92 has an example module: +# - https://github.com/Mic92/dotfiles/blob/ba2a01144cfdc71c829d872a3fc816c64663ad7f/nixos/vms/matchbox/modules/cloud-print-connector.nix + buildGoPackage rec { name = "cloud-print-connector-unstable-${version}"; - version = "1.11"; + version = "1.16"; rev = "481ad139cc023a3ba65e769f08f277368fa8a5de"; goPackagePath = "github.com/google/cloud-print-connector"; + subPackages = [ + "gcp-connector-util" + "gcp-cups-connector" + ]; + src = fetchFromGitHub { owner = "google"; repo = "cloud-print-connector"; - sha256 = "1vryhhv92bsncy1bsx9j4graz3sz9ddmizakv2fdrns09mmcgchm"; + sha256 = "0z2xad4wsv962rc1rspghfcfkz4nj2j5l5cm7xyn6qmsag0m8y2x"; rev = "v${version}"; }; + # To compute a new go2nix deps.go file, + # change to the gcp-connector-util directory and create a nix-shell with avahi and + # cups in it. + + # manually mirrored from launchpad because cloning failed due insecure http protocol + # { + # goPackagePath = "launchpad.net/go-xdg/v0"; + # fetch = { + # type = "git"; + # url = "https://github.com/Mic92/go-xdg"; + # rev = "b3fc6b3106d78701853b0caf62ebedae42769af2"; + # sha256 = "0fd68kkxzxjanpgannpys962bxzqdf8c1qvzk687hv504a3dp76f"; + # }; + # } goDeps = ./deps.nix; buildInputs = [ avahi cups ]; diff --git a/pkgs/servers/cloud-print-connector/deps.nix b/pkgs/servers/cloud-print-connector/deps.nix index 67901bdffeef..0547d48ea87e 100644 --- a/pkgs/servers/cloud-print-connector/deps.nix +++ b/pkgs/servers/cloud-print-connector/deps.nix @@ -1,48 +1,12 @@ -# This file was generated by https://github.com/kamilchm/go2nix v1.2.0 +# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 [ { goPackagePath = "github.com/coreos/go-systemd"; fetch = { type = "git"; url = "https://github.com/coreos/go-systemd"; - rev = "1f9909e51b2dab2487c26d64c8f2e7e580e4c9f5"; - sha256 = "1cc76wcmnyhhhi03dsc11lmxjwkzy09k3zx3h78bg05z8lhry4vn"; - }; - } - { - goPackagePath = "github.com/urfave/cli"; - fetch = { - type = "git"; - url = "https://github.com/urfave/cli"; - rev = "d70f47eeca3afd795160003bc6e28b001d60c67c"; - sha256 = "1xm203qp4sdlvffcbag7v6mc2d6q61i25iiz3y9yqpy25jpcpgif"; - }; - } - { - goPackagePath = "golang.org/x/net"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/net"; - rev = "513929065c19401a1c7b76ecd942f9f86a0c061b"; - sha256 = "19ziin0k3n45nccjbk094f61hr198wzqnas93cmcxdja8f8fz27q"; - }; - } - { - goPackagePath = "golang.org/x/oauth2"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/oauth2"; - rev = "f047394b6d14284165300fd82dad67edb3a4d7f6"; - sha256 = "1l1a2iz1nmfmzzbjj1h8066prag4jvjqh13iv1jdlh05fgv6769i"; - }; - } - { - goPackagePath = "launchpad.net/go-xdg/v0"; - fetch = { - type = "bzr"; - url = "http://bazaar.launchpad.net/~chipaca/go-xdg/v0/"; - rev = "10"; - sha256 = "0fd68kkxzxjanpgannpys962bxzqdf8c1qvzk687hv504a3dp76f"; + rev = "9002847aa1425fb6ac49077c0a630b3b67e0fbfd"; + sha256 = "0d7xpcinzj18qc91rb6fjjrf9jnlzn775dqhp0n00n0gjg5rfksj"; }; } { @@ -50,8 +14,45 @@ fetch = { type = "git"; url = "https://github.com/satori/go.uuid"; - rev = "879c5887cd475cd7864858769793b2ceb0d44feb"; - sha256 = "1nbydsmjr60904kz5d46nib0zid5kcv4gk9wayi44gn5wlzz80zp"; + rev = "b2ce2384e17bbe0c6d34077efa39dbab3e09123b"; + sha256 = "1yz4cx02377ijlf8mnn84j1dcmlwh8ncx7y3kw1zg2qw0z4x119c"; }; } - ] + { + goPackagePath = "github.com/urfave/cli"; + fetch = { + type = "git"; + url = "https://github.com/urfave/cli"; + rev = "b67dcf995b6a7b7f14fad5fcb7cc5441b05e814b"; + sha256 = "0n5vq4nydlhb7w12jiwphvxqdy4jwpxc3zwlxyhf05lq1nxfb56h"; + }; + } + { + goPackagePath = "golang.org/x/net"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/net"; + rev = "927f97764cc334a6575f4b7a1584a147864d5723"; + sha256 = "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5"; + }; + } + { + goPackagePath = "golang.org/x/oauth2"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/oauth2"; + rev = "d668ce993890a79bda886613ee587a69dd5da7a6"; + sha256 = "17m8d02fazil0dwvk33vpwvsb91asgbmmpqy05751csrfqhhdqna"; + }; + } + # manually mirrored from launchpad because cloning failed due insecure http protocol + { + goPackagePath = "launchpad.net/go-xdg/v0"; + fetch = { + type = "git"; + url = "https://github.com/Mic92/go-xdg"; + rev = "b3fc6b3106d78701853b0caf62ebedae42769af2"; + sha256 = "0fd68kkxzxjanpgannpys962bxzqdf8c1qvzk687hv504a3dp76f"; + }; + } +] From f24e2d0721c99acf84220d8ba56c66e422687669 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sun, 6 Jan 2019 17:48:37 +0900 Subject: [PATCH 015/167] Pull out defaultPriority to a top-level definition. --- lib/modules.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/modules.nix b/lib/modules.nix index 4e259cce2ba4..9f8e196ee0f7 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -450,8 +450,7 @@ rec { filterOverrides' = defs: let - defaultPrio = 100; - getPrio = def: if def.value._type or "" == "override" then def.value.priority else defaultPrio; + getPrio = def: if def.value._type or "" == "override" then def.value.priority else defaultPriority; highestPrio = foldl' (prio: def: min (getPrio def) prio) 9999 defs; strip = def: if def.value._type or "" == "override" then def // { value = def.value.content; } else def; in { @@ -534,6 +533,8 @@ rec { mkBefore = mkOrder 500; mkAfter = mkOrder 1500; + # The default priority for things that don't have a priority specified. + defaultPriority = 100; # Convenient property used to transfer all definitions and their # properties from one option to another. This property is useful for @@ -561,11 +562,10 @@ rec { # Similar to mkAliasAndWrapDefinitions but copies over the priority from the # option as well. # - # If a priority is not set, it assumes a priority of 100. + # If a priority is not set, it assumes a priority of defaultPriority. mkAliasAndWrapDefsWithPriority = wrap: option: let - defaultPrio = 100; - prio = option.highestPrio or defaultPrio; + prio = option.highestPrio or defaultPriority; defsWithPrio = map (mkOverride prio) option.definitions; in mkAliasIfDef option (wrap (mkMerge defsWithPrio)); From 7314d885a1547d3db6b0447fbeb3bcb1ff7f13de Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sun, 6 Jan 2019 18:10:03 +0900 Subject: [PATCH 016/167] Add test that shows that the aliases are able to override options. --- lib/tests/modules.sh | 3 ++ .../alias-with-priority-can-override.nix | 52 +++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 lib/tests/modules/alias-with-priority-can-override.nix diff --git a/lib/tests/modules.sh b/lib/tests/modules.sh index 45f391785228..a72777cbf2a6 100755 --- a/lib/tests/modules.sh +++ b/lib/tests/modules.sh @@ -151,6 +151,9 @@ checkConfigOutput "1 2 3 4 5 6 7 8 9 10" config.result ./loaOf-with-many-list-me # Check mkAliasOptionModuleWithPriority. checkConfigOutput "true" config.enable ./alias-with-priority.nix +checkConfigOutput "true" config.enableAlias ./alias-with-priority.nix +checkConfigOutput "false" config.enable ./alias-with-priority-can-override.nix +checkConfigOutput "false" config.enableAlias ./alias-with-priority-can-override.nix cat < Date: Sun, 6 Jan 2019 12:38:18 -0800 Subject: [PATCH 017/167] twa: 1.6.2 -> 1.7.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/twa/versions --- pkgs/tools/networking/twa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/twa/default.nix b/pkgs/tools/networking/twa/default.nix index 8f462dc41b49..9154e95c744e 100644 --- a/pkgs/tools/networking/twa/default.nix +++ b/pkgs/tools/networking/twa/default.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { name = "twa-${version}"; - version = "1.6.2"; + version = "1.7.0"; src = fetchFromGitHub { owner = "trailofbits"; repo = "twa"; rev = version; - sha256 = "0b3wg6ia4dbf47baz3c6jinsi31n8iq7jrlsq86jr2ncggq7hlhj"; + sha256 = "01si4i2xnb1ii4c28b2hh946xljkvskap0pc46s52zzl5hldv9sm"; }; dontBuild = true; From 03072036937c250976f0522b070eefe96e8ab0f1 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Mon, 7 Jan 2019 16:15:27 -0600 Subject: [PATCH 018/167] mingw: use current package set for headers gccCrossStageStatic should not need targetPackages. Fixes #53587. --- pkgs/os-specific/windows/mingw-w64/default.nix | 2 +- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/windows/mingw-w64/default.nix b/pkgs/os-specific/windows/mingw-w64/default.nix index a7d4f09b90e9..61a7fb149427 100644 --- a/pkgs/os-specific/windows/mingw-w64/default.nix +++ b/pkgs/os-specific/windows/mingw-w64/default.nix @@ -21,6 +21,6 @@ in stdenv.mkDerivation { patches = [ ./osvi.patch ]; meta = { - platforms = stdenv.lib.platforms.windows; + platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index adf85fa0a6ec..4469a62f98ed 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6790,7 +6790,7 @@ in # built with, and use, that cross-compiled libc. gccCrossStageStatic = assert stdenv.targetPlatform != stdenv.hostPlatform; let libcCross1 = - if stdenv.targetPlatform.libc == "msvcrt" then targetPackages.windows.mingw_w64_headers + if stdenv.targetPlatform.libc == "msvcrt" then windows.mingw_w64_headers else if stdenv.targetPlatform.libc == "libSystem" then darwin.xcode else null; binutils1 = wrapBintoolsWith { From 9f1ff9976fa0452f87a21902b38cc2c28e307272 Mon Sep 17 00:00:00 2001 From: taku0 Date: Tue, 8 Jan 2019 21:12:29 +0900 Subject: [PATCH 019/167] flashplayer: 32.0.0.101 -> 32.0.0.114 --- .../networking/browsers/chromium/plugins.nix | 4 ++-- .../browsers/mozilla-plugins/flashplayer/default.nix | 10 +++++----- .../mozilla-plugins/flashplayer/standalone.nix | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index 54e7216544e4..814a5117ae0e 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -100,11 +100,11 @@ let flash = stdenv.mkDerivation rec { name = "flashplayer-ppapi-${version}"; - version = "32.0.0.101"; + version = "32.0.0.114"; src = fetchzip { url = "https://fpdownload.adobe.com/pub/flashplayer/pdc/${version}/flash_player_ppapi_linux.x86_64.tar.gz"; - sha256 = "1bmmjraqzdz03jzbgs1l932gka1zhiyiis06r4yi4f93mdy31w72"; + sha256 = "11b47w14hgvp7lpis39a9vkncla7lvqrgc717v4mwj6p741z7v78"; stripRoot = false; }; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix index 96db22ecaba8..663c38466ff1 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix @@ -74,7 +74,7 @@ let in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "32.0.0.101"; + version = "32.0.0.114"; src = fetchurl { url = @@ -85,14 +85,14 @@ stdenv.mkDerivation rec { sha256 = if debug then if arch == "x86_64" then - "0383r5pl1jrspy06mpxq50kkip5q5v052kz9aymk4qylgy1dwpn2" + "199dd2fkjfcavfzfd2d38y21155yxvj9yl838i8y63v9i5j5nhfj" else - "1vx2map0wlj6bj8dqyxxaymmz9awjjfhi6097knpmqp6j8dj7l5g" + "1b7g92ywwxrzfdj8acqx2r8k19y84ci2nhwwghjc7276q95gpzj8" else if arch == "x86_64" then - "003mr9mqkg0agj3zlmci5a1m3lnhj27mnvqswjaffdg5rlihvxyi" + "17nzchmacyqnb184d23caz52w7sy5sr7d081iwc46wic0px78m3m" else - "1smmdsnnlsssakzqas5268svyv3rk717zr7kwpkj4rd5d1pqwcps"; + "16slvhyqq0i7rlh2s5kpy78whkh57r129kva14wradx9yv8bqr7h"; }; nativeBuildInputs = [ unzip ]; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix index 9713f7d69718..63708934fee7 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { name = "flashplayer-standalone-${version}"; - version = "32.0.0.101"; + version = "32.0.0.114"; src = fetchurl { url = @@ -60,9 +60,9 @@ stdenv.mkDerivation rec { "https://fpdownload.macromedia.com/pub/flashplayer/updaters/32/flash_player_sa_linux.x86_64.tar.gz"; sha256 = if debug then - "1i59vfhxrlksxwmr3kj3dfbasfjgnx9aimmv400z07fw3zmdrbpw" + "0wlzqdnl8lhbc428gcahld842bhia4aygy1k5vyyg27fwmskxhy7" else - "0fz9zhp0qn9xda5pg37dfnvx04n8d7156h1qayf2l3la94apsacq"; + "01a1dwrgw7lc098vp4ifkf5bj2qvv0pmdyibjhzzrx3387d1pd2l"; }; nativeBuildInputs = [ unzip ]; From bc77c644ea07da80100a149b392b17abb31d1853 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 7 Jan 2019 16:26:53 -0600 Subject: [PATCH 020/167] libunwind: 1.2.1 -> 1.3.0 https://github.com/libunwind/libunwind/blob/v1.3.0/NEWS Keep backtrace patch (still needed), but drop the other. --- pkgs/development/libraries/libunwind/default.nix | 9 +++------ .../libraries/libunwind/version-1.2.1.patch | 13 ------------- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 pkgs/development/libraries/libunwind/version-1.2.1.patch diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix index 2453484cb9c4..ed23aff3c27a 100644 --- a/pkgs/development/libraries/libunwind/default.nix +++ b/pkgs/development/libraries/libunwind/default.nix @@ -2,17 +2,14 @@ stdenv.mkDerivation rec { name = "libunwind-${version}"; - version = "1.2.1"; + version = "1.3.0"; src = fetchurl { url = "mirror://savannah/libunwind/${name}.tar.gz"; - sha256 = "1jsslwkilwrsj959dc8b479qildawz67r8m4lzxm7glcwa8cngiz"; + sha256 = "06jn720nk4qg1nyswlxdq1swn6kbx5a85kc8jw9dw84aqqvxa1zc"; }; - patches = [ - ./version-1.2.1.patch - ./backtrace-only-with-glibc.patch - ]; + patches = [ ./backtrace-only-with-glibc.patch ]; nativeBuildInputs = [ autoreconfHook ]; diff --git a/pkgs/development/libraries/libunwind/version-1.2.1.patch b/pkgs/development/libraries/libunwind/version-1.2.1.patch deleted file mode 100644 index 63202937084c..000000000000 --- a/pkgs/development/libraries/libunwind/version-1.2.1.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index a254bbe..fe0247b 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1,6 +1,6 @@ - define(pkg_major, 1) --define(pkg_minor, 2.1) --define(pkg_extra, ) -+define(pkg_minor, 2) -+define(pkg_extra, 1) - define(pkg_maintainer, libunwind-devel@nongnu.org) - define(mkvers, $1.$2$3) - dnl Process this file with autoconf to produce a configure script. From 7757e43fcb15f3b3e21187787edaad54614ec7e6 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 8 Jan 2019 12:11:10 -0600 Subject: [PATCH 021/167] poppler: 0.72.0 -> 0.73.0 --- pkgs/development/libraries/poppler/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index 30f8044f32b5..eee9a813c742 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -8,7 +8,7 @@ }: let # beware: updates often break cups-filters build - version = "0.72.0"; + version = "0.73.0"; mkFlag = optset: flag: "-DENABLE_${flag}=${if optset then "on" else "off"}"; in stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/poppler-${version}.tar.xz"; - sha256 = "0lfs1b1jfamxl13zbl5n448dqvl9n8frbv8180y7b7kfyaw7wx61"; + sha256 = "00yv7011y40jc5iw9b7zjyg8ij5wsfbjm32kli5qha1ij11majz4"; }; outputs = [ "out" "dev" ]; @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++14"; cmakeFlags = [ - (mkFlag true "XPDF_HEADERS") + (mkFlag true "UNSTABLE_API_ABI_HEADERS") # previously "XPDF_HEADERS" (mkFlag (!minimal) "GLIB") (mkFlag (!minimal) "CPP") (mkFlag (!minimal) "LIBCURL") From 33b9ddc0a39decd148a200fa6a6b2b433125a049 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 8 Jan 2019 12:58:30 -0600 Subject: [PATCH 022/167] texlive: fix w/poppler 0.73.0 --- pkgs/tools/typesetting/tex/texlive/bin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index 209cc45eee95..4845c3703dc3 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -56,7 +56,7 @@ let cp -pv texk/web2c/pdftexdir/pdftoepdf{-poppler0.70.0,}.cc cp -pv texk/web2c/pdftexdir/pdftosrc{-newpoppler,}.cc # fix build with poppler 0.71 - find texk/web2c/{lua,pdf}texdir -type f | xargs sed -e 's|gTrue|true|g' -e 's|gFalse|false|g' -e 's|GBool|bool|g' -e 's|getCString|c_str|g' -i + find texk/web2c/{lua,pdf}texdir -type f | xargs sed -e 's|gTrue|true|g' -e 's|gFalse|false|g' -e 's|GBool|bool|g' -e 's|getCString|c_str|g' -e 's|Gulong|unsigned long|g' -e 's|Guint|unsigned int|g' -e 's|Gushort|unsigned short|g' -e 's|Guchar|unsigned char|g' -i ''; # remove when removing synctex-missing-header.patch From 8ec4bcf1f0bab4277959768f99b206ab875caf8a Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 9 Jan 2019 12:37:56 -0600 Subject: [PATCH 023/167] libunwind: 1.3.0 -> 1.3.1 single-commit release: workaround issue with clang + static alias https://github.com/libunwind/libunwind/commits/v1.3.1 --- pkgs/development/libraries/libunwind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix index ed23aff3c27a..9bea14bd8e85 100644 --- a/pkgs/development/libraries/libunwind/default.nix +++ b/pkgs/development/libraries/libunwind/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libunwind-${version}"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { url = "mirror://savannah/libunwind/${name}.tar.gz"; - sha256 = "06jn720nk4qg1nyswlxdq1swn6kbx5a85kc8jw9dw84aqqvxa1zc"; + sha256 = "1y0l08k6ak1mqbfj6accf9s5686kljwgsl4vcqpxzk5n74wpm6a3"; }; patches = [ ./backtrace-only-with-glibc.patch ]; From c0174f715a455f78066e7376cc84074864e6bba1 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 9 Jan 2019 21:04:17 -0500 Subject: [PATCH 024/167] shadowsocks-libev: 3.2.0 -> 3.2.3 --- pkgs/tools/networking/shadowsocks-libev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/shadowsocks-libev/default.nix b/pkgs/tools/networking/shadowsocks-libev/default.nix index ca744d7b0d0a..de4fbbd365db 100644 --- a/pkgs/tools/networking/shadowsocks-libev/default.nix +++ b/pkgs/tools/networking/shadowsocks-libev/default.nix @@ -5,14 +5,14 @@ stdenv.mkDerivation rec { name = "shadowsocks-libev-${version}"; - version = "3.2.0"; + version = "3.2.3"; # Git tag includes CMake build files which are much more convenient. src = fetchFromGitHub { owner = "shadowsocks"; repo = "shadowsocks-libev"; rev = "refs/tags/v${version}"; - sha256 = "0i9vz5b2c2bkdl2k9kqzvqyrlpdl94lf7k7rzxds8hn2kk0jizhb"; + sha256 = "1nj2z3j41lqd6gvj6j7xc8g7jbn2f8b75phlkgwvw0j3zsqnbq30"; fetchSubmodules = true; }; From a019087ef483c6b96f237447f9887029316d9813 Mon Sep 17 00:00:00 2001 From: taku0 Date: Thu, 10 Jan 2019 19:49:22 +0900 Subject: [PATCH 025/167] flashplayer-standalone: mark broken --- .../browsers/mozilla-plugins/flashplayer/standalone.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix index 63708934fee7..81553a74e9f4 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix @@ -99,5 +99,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.unfree; maintainers = []; platforms = [ "x86_64-linux" ]; + # Application crashed with an unhandled SIGSEGV + broken = true; }; } From 395dbf0d9a9894107b2c05c957662e9374ead287 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Thu, 10 Jan 2019 20:36:35 +0100 Subject: [PATCH 026/167] youtube-dl: 2019.01.02 -> 2019.01.10 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 1505fa37ea89..6d6d20f59659 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.01.02"; + version = "2019.01.10"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "0iw8cfzghhkx2q7m3rwnhm3xyyh88qd2553fb287shkxyg9kz96b"; + sha256 = "07r1y06697vhbkbf8pix4cnybaqmlf1wb2df5glj2xv8nl6f51gd"; }; nativeBuildInputs = [ makeWrapper ]; From ab341a18ad6cf6bf9c90966151da2eb6e234061f Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Thu, 10 Jan 2019 21:22:04 +0100 Subject: [PATCH 027/167] php72: 7.2.13 -> 7.2.14 Changelog: http://php.net/ChangeLog-7.php#7.2.14 --- pkgs/development/interpreters/php/default.nix | 8 +++--- .../interpreters/php/fix-bug-71041.patch | 25 ------------------- 2 files changed, 3 insertions(+), 30 deletions(-) delete mode 100644 pkgs/development/interpreters/php/fix-bug-71041.patch diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index d890b1862d3b..7040e5883942 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -253,13 +253,11 @@ in { }; php72 = generic { - version = "7.2.13"; - sha256 = "0bg9nfc250p24hxn4bdjz7ngcw75h8rpf4qjxqzcs6s9fvxlcjjv"; + version = "7.2.14"; + sha256 = "15v5gbdxi6jkgdflpj5rqqzzfvwdb55hls4azh71xgy793934qgm"; - # https://bugs.php.net/bug.php?id=71041 # https://bugs.php.net/bug.php?id=76826 - extraPatches = [ ./fix-bug-71041.patch ] - ++ optional stdenv.isDarwin ./php72-darwin-isfinite.patch; + extraPatches = optional stdenv.isDarwin ./php72-darwin-isfinite.patch; }; php73 = generic { diff --git a/pkgs/development/interpreters/php/fix-bug-71041.patch b/pkgs/development/interpreters/php/fix-bug-71041.patch deleted file mode 100644 index 350b635bdf36..000000000000 --- a/pkgs/development/interpreters/php/fix-bug-71041.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/Zend/zend_signal.c b/Zend/zend_signal.c -index 24d454d..6307620 100644 ---- a/Zend/zend_signal.c -+++ b/Zend/zend_signal.c -@@ -399,7 +399,7 @@ void zend_signal_init(void) /* {{{ */ - - /* {{{ zend_signal_startup - * alloc zend signal globals */ --void zend_signal_startup(void) -+ZEND_API void zend_signal_startup(void) - { - - #ifdef ZTS -diff --git a/Zend/zend_signal.h b/Zend/zend_signal.h -index e8ee7d6..462d06f 100644 ---- a/Zend/zend_signal.h -+++ b/Zend/zend_signal.h -@@ -89,7 +89,7 @@ ZEND_API void zend_signal_handler_unblock(void); - void zend_signal_activate(void); - void zend_signal_deactivate(void); - BEGIN_EXTERN_C() --void zend_signal_startup(void); -+ZEND_API void zend_signal_startup(void); - END_EXTERN_C() - void zend_signal_init(void); From 49538f6b3abde8c329477edc857a405f67ba299a Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Thu, 10 Jan 2019 21:23:01 +0100 Subject: [PATCH 028/167] php71: 7.1.25 -> 7.1.26 Changelog: http://php.net/ChangeLog-7.php#7.1.26 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 7040e5883942..3d9235757c6e 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -245,8 +245,8 @@ let in { php71 = generic { - version = "7.1.25"; - sha256 = "1b5az5vhap593ggjxirs1zdlg20hcv9h94iq5kgaxky71a4dqb00"; + version = "7.1.26"; + sha256 = "1riaaizyl0jv9p6b8sm8xxj8iqz4p4dddwdag03n1r67dfl1qdav"; # https://bugs.php.net/bug.php?id=76826 extraPatches = optional stdenv.isDarwin ./php71-darwin-isfinite.patch; From fd1de3e5772192e889b3d7b2abe2f1ec66e36f9c Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 10 Jan 2019 17:53:00 -0600 Subject: [PATCH 029/167] aminal: 0.7.12 -> 0.8.5 --- pkgs/applications/misc/aminal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/aminal/default.nix b/pkgs/applications/misc/aminal/default.nix index e80921f46ebd..49b6de4352ce 100644 --- a/pkgs/applications/misc/aminal/default.nix +++ b/pkgs/applications/misc/aminal/default.nix @@ -12,7 +12,7 @@ buildGoPackage rec { name = "aminal-${version}"; - version = "0.7.12"; + version = "0.8.5"; goPackagePath = "github.com/liamg/aminal"; @@ -36,7 +36,7 @@ buildGoPackage rec { owner = "liamg"; repo = "aminal"; rev = "v${version}"; - sha256 = "1ak5g2i4ggi00b4q7qigfwsrwb5rvswjjbr2hp9kyxd45nycb0g4"; + sha256 = "1m4wz08jz9lffzfm3ddmmqdj8nh05f2bxi4pfxy216637r9mr0lq"; }; preBuild = '' From e40bfa4d850ed5973bdfd965fc331feb545a5e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 11 Jan 2019 10:39:26 +0000 Subject: [PATCH 030/167] nixos-rebuild: allow to override builders Since nix 2.0 the no-build-hook option was replaced by the builders options that allows to override remote builders ad-hoc. Since it is useful to disable remote builders updating nixos without network, this commit reintroduces the option. --- nixos/doc/manual/man-nixos-rebuild.xml | 53 ++++++++++++++----- .../modules/installer/tools/nixos-rebuild.sh | 4 +- 2 files changed, 41 insertions(+), 16 deletions(-) diff --git a/nixos/doc/manual/man-nixos-rebuild.xml b/nixos/doc/manual/man-nixos-rebuild.xml index 551a65f5e96b..5e66946aa5be 100644 --- a/nixos/doc/manual/man-nixos-rebuild.xml +++ b/nixos/doc/manual/man-nixos-rebuild.xml @@ -13,35 +13,35 @@ - nixos-rebuild + nixos-rebuild - + - + - + - + - + - + - + @@ -50,29 +50,33 @@ - + - + - + - + + + + builder-spec + - + - + @@ -315,6 +319,27 @@ $ ./result/bin/run-*-vm + + + + builder-spec + + + + Allow to specify remote builders ad-hoc for building the new system. + This requires the user executing nixos-rebuild (usually + root) to be configured as a trusted user in the Nix daemon. This can be + achived by using the nix.trustedUsers NixOS option. + Examples values for that option are described in the + Remote builds chapter in the Nix manual, + (i.e. --builders "ssh://bigbrother x86_64-linux"). + By specifying an empty string existing builders specified in + /etc/nix/machines can be ignored: + --builders "" for example when they are not + reachable due to network connectivity. + + + diff --git a/nixos/modules/installer/tools/nixos-rebuild.sh b/nixos/modules/installer/tools/nixos-rebuild.sh index 2af73519bc52..361c2e49e05c 100644 --- a/nixos/modules/installer/tools/nixos-rebuild.sh +++ b/nixos/modules/installer/tools/nixos-rebuild.sh @@ -53,11 +53,11 @@ while [ "$#" -gt 0 ]; do repair=1 extraBuildFlags+=("$i") ;; - --max-jobs|-j|--cores|-I) + --max-jobs|-j|--cores|-I|--builders) j="$1"; shift 1 extraBuildFlags+=("$i" "$j") ;; - --show-trace|--no-build-hook|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*) + --show-trace|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*) extraBuildFlags+=("$i") ;; --option) From 06c08984ae03b3f37c3cee2e47ad6ec98e4fb34d Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Fri, 11 Jan 2019 11:16:36 +0100 Subject: [PATCH 031/167] pythonPackages.pysaml2: 3.0.2 -> 4.6.5 Also run tests and hardcode path to xmlsec1. --- .../python-modules/pysaml2/default.nix | 66 +++++++------------ .../pysaml2/hardcode-xmlsec1-path.patch | 39 +++++++++++ pkgs/top-level/python-packages.nix | 4 +- 3 files changed, 65 insertions(+), 44 deletions(-) create mode 100644 pkgs/development/python-modules/pysaml2/hardcode-xmlsec1-path.patch diff --git a/pkgs/development/python-modules/pysaml2/default.nix b/pkgs/development/python-modules/pysaml2/default.nix index 1e9ce18afb9a..04d0d1c34a54 100644 --- a/pkgs/development/python-modules/pysaml2/default.nix +++ b/pkgs/development/python-modules/pysaml2/default.nix @@ -1,62 +1,42 @@ { stdenv , buildPythonPackage -, fetchPypi -, fetchpatch -, repoze_who -, paste -, cryptography -, pycrypto -, pyopenssl -, ipaddress -, six -, cffi -, idna -, enum34 -, pytz -, setuptools -, zope_interface -, dateutil -, requests -, pyasn1 -, webob -, decorator -, pycparser -, defusedxml -, Mako -, pytest -, memcached -, pymongo -, mongodict -, pkgs +, fetchFromGitHub +, substituteAll +, xmlsec +, cryptography, defusedxml, future, pyopenssl, dateutil, pytz, requests, six +, mock, pyasn1, pymongo, pytest, responses }: buildPythonPackage rec { pname = "pysaml2"; - version = "3.0.2"; + version = "4.6.5"; - src = fetchPypi { - inherit pname version; - sha256 = "0y2iw1dddcvi13xjh3l52z1mvnrbc41ik9k4nn7lwj8x5kimnk9n"; + # No tests in PyPI tarball + src = fetchFromGitHub { + owner = "IdentityPython"; + repo = pname; + rev = "v${version}"; + sha256 = "0xlbr52vzx1j9sg65jhqv01vp4a49afjy03lc2zb0ggx0xxzngvb"; }; patches = [ - (fetchpatch { - name = "CVE-2016-10127.patch"; - url = "https://sources.debian.net/data/main/p/python-pysaml2/3.0.0-5/debian/patches/fix-xxe-in-xml-parsing.patch"; - sha256 = "184lkwdayjqiahzsn4yp15parqpmphjsb1z7zwd636jvarxqgs2q"; + (substituteAll { + src = ./hardcode-xmlsec1-path.patch; + inherit xmlsec; }) ]; - propagatedBuildInputs = [ repoze_who paste cryptography pycrypto pyopenssl ipaddress six cffi idna enum34 pytz setuptools zope_interface dateutil requests pyasn1 webob decorator pycparser defusedxml ]; - buildInputs = [ Mako pytest memcached pymongo mongodict pkgs.xmlsec ]; + propagatedBuildInputs = [ cryptography defusedxml future pyopenssl dateutil pytz requests six ]; - preConfigure = '' - sed -i 's/pymongo==3.0.1/pymongo/' setup.py + checkInputs = [ mock pyasn1 pymongo pytest responses ]; + + # Disabled tests try to access the network + checkPhase = '' + py.test -k "not test_load_extern_incommon \ + and not test_load_remote_encoding \ + and not test_load_external" ''; - # 16 failed, 427 passed, 17 error in 88.85 seconds - doCheck = false; - meta = with stdenv.lib; { homepage = "https://github.com/rohe/pysaml2"; description = "Python implementation of SAML Version 2 Standard"; diff --git a/pkgs/development/python-modules/pysaml2/hardcode-xmlsec1-path.patch b/pkgs/development/python-modules/pysaml2/hardcode-xmlsec1-path.patch new file mode 100644 index 000000000000..d984c55a8a7f --- /dev/null +++ b/pkgs/development/python-modules/pysaml2/hardcode-xmlsec1-path.patch @@ -0,0 +1,39 @@ +diff --git a/src/saml2/sigver.py b/src/saml2/sigver.py +index 59fe2dee..0c24fbcc 100644 +--- a/src/saml2/sigver.py ++++ b/src/saml2/sigver.py +@@ -165,33 +165,7 @@ def get_xmlsec_binary(paths=None): + :return: full name of the xmlsec1 binary found. If no binaries are + found then an exception is raised. + """ +- if os.name == 'posix': +- bin_name = ['xmlsec1'] +- elif os.name == 'nt': +- bin_name = ['xmlsec.exe', 'xmlsec1.exe'] +- else: # Default !? +- bin_name = ['xmlsec1'] +- +- if paths: +- for bname in bin_name: +- for path in paths: +- fil = os.path.join(path, bname) +- try: +- if os.lstat(fil): +- return fil +- except OSError: +- pass +- +- for path in os.environ['PATH'].split(os.pathsep): +- for bname in bin_name: +- fil = os.path.join(path, bname) +- try: +- if os.lstat(fil): +- return fil +- except OSError: +- pass +- +- raise SigverError('Cannot find {binary}'.format(binary=bin_name)) ++ return '@xmlsec@/bin/xmlsec1' + + + def _get_xmlsec_cryptobackend(path=None, search_paths=None): diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 77ee88cc3fcb..4d6c3ca4622d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3528,7 +3528,9 @@ in { pysam = callPackage ../development/python-modules/pysam { }; - pysaml2 = callPackage ../development/python-modules/pysaml2 { }; + pysaml2 = callPackage ../development/python-modules/pysaml2 { + inherit (pkgs) xmlsec; + }; python-pushover = callPackage ../development/python-modules/pushover {}; From bc561526d119d6faf6edf0582a78474580713910 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Fri, 11 Jan 2019 10:33:07 +0100 Subject: [PATCH 032/167] matrix-synapse: 0.34.0.1 -> 0.34.1.1 Also correctly run tests. --- pkgs/servers/matrix-synapse/default.nix | 28 ++++++------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 85794d2b6ee3..e9d6ab235a8c 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -5,20 +5,6 @@ with python2.pkgs; let - matrix-angular-sdk = buildPythonPackage rec { - pname = "matrix-angular-sdk"; - version = "0.6.8"; - - src = fetchPypi { - inherit pname version; - sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2"; - }; - - # no checks from Pypi but as this is abandonware, there will be no - # new version anyway - doCheck = false; - }; - matrix-synapse-ldap3 = buildPythonPackage rec { pname = "matrix-synapse-ldap3"; version = "0.1.3"; @@ -37,11 +23,11 @@ let in buildPythonApplication rec { pname = "matrix-synapse"; - version = "0.34.0.1"; + version = "0.34.1.1"; src = fetchPypi { inherit pname version; - sha256 = "00mj8gb8yx43frzni7xqxr52xix0vizydbmcnhjb6mnr5w6jafb7"; + sha256 = "13jmbcabll3gk0b6yqwfwpc7aymqhpv6iririzskhm4pgbjcp3yk"; }; patches = [ @@ -58,7 +44,6 @@ in buildPythonApplication rec { jinja2 jsonschema lxml - matrix-angular-sdk matrix-synapse-ldap3 msgpack-python netaddr @@ -88,12 +73,11 @@ in buildPythonApplication rec { unpaddedbase64 ] ++ lib.optional enableSystemd systemd; - # tests fail under py3 for now, but version 0.34.0 will use py3 by default - # https://github.com/matrix-org/synapse/issues/4036 - doCheck = true; - checkPhase = "python -m twisted.trial test"; + checkInputs = [ mock ]; - checkInputs = [ mock setuptoolsTrial ]; + checkPhase = '' + PYTHONPATH=".:$PYTHONPATH" trial tests + ''; meta = with stdenv.lib; { homepage = https://matrix.org; From b720ecb9ee5a2d56d9b416bc78736b0c1a65bb16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 11 Jan 2019 15:59:03 +0100 Subject: [PATCH 033/167] matrix-synapse: use python3 --- pkgs/servers/matrix-synapse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index e9d6ab235a8c..ee52b838aea9 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -1,8 +1,8 @@ -{ lib, stdenv, python2 +{ lib, stdenv, python3 , enableSystemd ? true }: -with python2.pkgs; +with python3.pkgs; let matrix-synapse-ldap3 = buildPythonPackage rec { From bb1cb2a332d75c4065d90583270a8ef0172762e9 Mon Sep 17 00:00:00 2001 From: Yegor Timoshenko Date: Fri, 11 Jan 2019 20:06:22 +0300 Subject: [PATCH 034/167] ghc844: update hash for d8495549ba9d194815c2d0eaee6797fc7c00756a patch --- pkgs/development/compilers/ghc/8.4.4.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ghc/8.4.4.nix b/pkgs/development/compilers/ghc/8.4.4.nix index c5fe3c925f00..874580c87aab 100644 --- a/pkgs/development/compilers/ghc/8.4.4.nix +++ b/pkgs/development/compilers/ghc/8.4.4.nix @@ -112,7 +112,7 @@ stdenv.mkDerivation (rec { ++ stdenv.lib.optional stdenv.isDarwin ./backport-dylib-command-size-limit.patch ++ stdenv.lib.optional (targetPlatform.isAarch32 || targetPlatform.isAarch64) (fetchpatch { url = "https://git.haskell.org/ghc.git/patch/d8495549ba9d194815c2d0eaee6797fc7c00756a"; - sha256 = "1czx12qcl088vjn7mqxvyja4b2ia2n09c28br8c777fd0xk069pm"; + sha256 = "1yjcma507c609bcim4rnxq0gaj2dg4d001jklmbpbqpzqzxkn5sz"; }); postPatch = "patchShebangs ."; From 3bdcbd8cb9baa7584e98c89611a6c1f7d0d51ca0 Mon Sep 17 00:00:00 2001 From: "Andy Chun @noneucat" Date: Fri, 11 Jan 2019 15:58:01 -0800 Subject: [PATCH 035/167] polar-bookshelf: 1.7.0 -> 1.8.0 --- pkgs/applications/misc/polar-bookshelf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/polar-bookshelf/default.nix b/pkgs/applications/misc/polar-bookshelf/default.nix index 2088f59adfac..9625c07bc016 100644 --- a/pkgs/applications/misc/polar-bookshelf/default.nix +++ b/pkgs/applications/misc/polar-bookshelf/default.nix @@ -10,12 +10,12 @@ stdenv.mkDerivation rec { name = "polar-bookshelf-${version}"; - version = "1.7.0"; + version = "1.8.0"; # fetching a .deb because there's no easy way to package this Electron app src = fetchurl { url = "https://github.com/burtonator/polar-bookshelf/releases/download/v${version}/polar-bookshelf-${version}-amd64.deb"; - sha256 = "14xpjm5bw1jl74shnpn5pm3p1hdpf6c3wl9pkjvz90g7w8wjc942"; + sha256 = "0zbk8msc5p6ivldkznab8klzsgd31hd4hs5kkjzw1iy082cmrjv5"; }; buildInputs = [ From 93369a1b342329645b677020f9f6be579a8c2291 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 6 Jan 2019 11:51:29 -0500 Subject: [PATCH 036/167] pythonPackages.pytest-rerunfailures: 4.2 -> 6.0 --- .../python-modules/pytest-rerunfailures/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index 756bd19933dd..aeea977ad338 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -2,24 +2,23 @@ buildPythonPackage rec { pname = "pytest-rerunfailures"; - version = "4.2"; + version = "6.0"; src = fetchPypi { inherit pname version; - sha256 = "97216f8a549f74da3cc786236d9093fbd43150a6fbe533ba622cb311f7431774"; + sha256 = "978349ae00687504fd0f9d0970c37199ccd89cbdb0cb8c4ed7ee417ede582b40"; }; checkInputs = [ mock ]; propagatedBuildInputs = [ pytest ]; - # disable tests that fail with pytest 3.7.4 checkPhase = '' - py.test test_pytest_rerunfailures.py -k 'not test_reruns_with_delay' + py.test test_pytest_rerunfailures.py ''; meta = with stdenv.lib; { - description = "pytest plugin to re-run tests to eliminate flaky failures."; + description = "pytest plugin to re-run tests to eliminate flaky failures"; homepage = https://github.com/pytest-dev/pytest-rerunfailures; license = licenses.mpl20; maintainers = with maintainers; [ jgeerds ]; From 1fe0018df81a423a3b85faa09b2f8fdabfe143c3 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 8 Jan 2019 21:18:27 -0500 Subject: [PATCH 037/167] test-driver: Adds time it took to connect to guest in logs This will make it possible to track whether the time is generous or not when ran on hydra. --- nixos/lib/test-driver/Machine.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm index a00fe25c2b8e..8b1f00020cb2 100644 --- a/nixos/lib/test-driver/Machine.pm +++ b/nixos/lib/test-driver/Machine.pm @@ -10,6 +10,7 @@ use Cwd; use File::Basename; use File::Path qw(make_path); use File::Slurp; +use Time::HiRes qw(clock_gettime CLOCK_MONOTONIC); my $showGraphics = defined $ENV{'DISPLAY'}; @@ -249,12 +250,15 @@ sub connect { $self->start; + my $now = clock_gettime(CLOCK_MONOTONIC); local $SIG{ALRM} = sub { die "timed out waiting for the VM to connect\n"; }; alarm 300; readline $self->{socket} or die "the VM quit before connecting\n"; alarm 0; $self->log("connected to guest root shell"); + # We're interested in tracking how close we are to `alarm`. + $self->log(sprintf("(connecting took %.2f seconds)", clock_gettime(CLOCK_MONOTONIC) - $now)); $self->{connected} = 1; }); From 5d93e2c01cc422d386cb00a011e11757edbd1500 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 8 Jan 2019 21:27:20 -0500 Subject: [PATCH 038/167] test-driver: Logs time taken for nests --- nixos/lib/test-driver/Logger.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/lib/test-driver/Logger.pm b/nixos/lib/test-driver/Logger.pm index 3fe5ef67c144..080310ea34e0 100644 --- a/nixos/lib/test-driver/Logger.pm +++ b/nixos/lib/test-driver/Logger.pm @@ -4,6 +4,7 @@ use strict; use Thread::Queue; use XML::Writer; use Encode qw(decode encode); +use Time::HiRes qw(clock_gettime CLOCK_MONOTONIC); sub new { my ($class) = @_; @@ -46,10 +47,12 @@ sub nest { print STDERR maybePrefix("$msg\n", $attrs); $self->{log}->startTag("nest"); $self->{log}->dataElement("head", $msg, %{$attrs}); + my $now = clock_gettime(CLOCK_MONOTONIC); $self->drainLogQueue(); eval { &$coderef }; my $res = $@; $self->drainLogQueue(); + $self->log(sprintf("(%.2f seconds)", clock_gettime(CLOCK_MONOTONIC) - $now)); $self->{log}->endTag("nest"); die $@ if $@; } From b28b37eb00768da86b9be8f4a61e3a46cdb604d6 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 11 Jan 2019 22:40:19 -0500 Subject: [PATCH 039/167] tests: Wait for shell for twice as long (10m) See #49441 for an earlier attempt, which was subsequently reverted. I am assuming that doubling the time will be sufficient if the machine is overloaded since so many of the tests already pass at 5 minutes, while still not holding back failures for needlessly long. --- nixos/lib/test-driver/Machine.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm index a00fe25c2b8e..af076cf5ab0c 100644 --- a/nixos/lib/test-driver/Machine.pm +++ b/nixos/lib/test-driver/Machine.pm @@ -250,7 +250,7 @@ sub connect { $self->start; local $SIG{ALRM} = sub { die "timed out waiting for the VM to connect\n"; }; - alarm 300; + alarm 600; readline $self->{socket} or die "the VM quit before connecting\n"; alarm 0; From 3e7fa939f4cd9f5fd07769d99fd0b538e096ef65 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 12 Jan 2019 10:02:38 +0100 Subject: [PATCH 040/167] sile: 0.9.4 -> 0.9.5 --- pkgs/tools/typesetting/sile/default.nix | 11 ++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/typesetting/sile/default.nix b/pkgs/tools/typesetting/sile/default.nix index 18ab2d1f9c7c..609c782667e3 100644 --- a/pkgs/tools/typesetting/sile/default.nix +++ b/pkgs/tools/typesetting/sile/default.nix @@ -1,5 +1,5 @@ { stdenv, darwin, fetchurl, makeWrapper, pkgconfig -, harfbuzz, icu, lpeg, luaexpat, luazlib, luafilesystem +, harfbuzz, icu, lpeg, luaexpat, luazlib, luafilesystem, luasocket, luasec , fontconfig, lua, libiconv }: @@ -7,7 +7,7 @@ with stdenv.lib; let - libs = [lpeg luaexpat luazlib luafilesystem]; + libs = [ lpeg luaexpat luazlib luafilesystem luasocket luasec ]; getPath = lib : type : "${lib}/lib/lua/${lua.luaversion}/?.${type};${lib}/share/lua/${lua.luaversion}/?.${type}"; getLuaPath = lib : getPath lib "lua"; getLuaCPath = lib : getPath lib "so"; @@ -18,15 +18,16 @@ in stdenv.mkDerivation rec { name = "sile-${version}"; - version = "0.9.4"; + version = "0.9.5"; src = fetchurl { url = "https://github.com/simoncozens/sile/releases/download/v${version}/${name}.tar.bz2"; - sha256 = "1mald727hy9bi17rcaph8q400yn5xqkn5f2xf1408g94wmwncs8w"; + sha256 = "0m80rkbkma11xsr7bbrmq5mdwi5k79clsrmc75blbnsf9wqil8dp"; }; nativeBuildInputs = [pkgconfig makeWrapper]; - buildInputs = [ harfbuzz icu lua lpeg luaexpat luazlib luafilesystem fontconfig libiconv ] + buildInputs = [ harfbuzz icu lua fontconfig libiconv ] + ++ libs ++ optional stdenv.isDarwin darwin.apple_sdk.frameworks.AppKit ; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 246e6200dbca..676a570bcadf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5432,7 +5432,7 @@ in silc_server = callPackage ../servers/silc-server { }; sile = callPackage ../tools/typesetting/sile { - inherit (lua52Packages) lua luaexpat luazlib luafilesystem lpeg; + inherit (lua52Packages) lua luaexpat luazlib luafilesystem lpeg luasocket luasec; }; silver-searcher = callPackage ../tools/text/silver-searcher { }; From 41ee7073dff052be731afa12d2b80a690b3d212c Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Sat, 12 Jan 2019 12:52:16 +0100 Subject: [PATCH 041/167] irssi: 1.1.1 -> 1.1.2 Fixes CVE-2019-5882 [1] and a few minor changes [2]. [1] https://irssi.org/security/html/irssi_sa_2019_01/ [2] https://irssi.org/2019/01/09/irssi-1.1.2-released/ --- pkgs/applications/networking/irc/irssi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/irc/irssi/default.nix b/pkgs/applications/networking/irc/irssi/default.nix index ff80df6523cb..7802a898d4c7 100644 --- a/pkgs/applications/networking/irc/irssi/default.nix +++ b/pkgs/applications/networking/irc/irssi/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl }: stdenv.mkDerivation rec { - version = "1.1.1"; + version = "1.1.2"; name = "irssi-${version}"; src = fetchurl { url = "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz"; - sha256 = "09a9p1yfg0m3w7n2a4axvn8874002ly8x0b543sxihzqk29radpa"; + sha256 = "0jbhd4aad3bn61svnb2rwa4dwj8qyrb2dmzribi2hfn1f719wzfv"; }; nativeBuildInputs = [ pkgconfig ]; From 15c629334d8fc83bed9e0b683556fbfd4defb622 Mon Sep 17 00:00:00 2001 From: ajs124 Date: Sat, 12 Jan 2019 13:17:12 +0100 Subject: [PATCH 042/167] powerdns: fix ecdsa support add libressl, drop patch neither openssl 1.0 (headers not found) nor openssl 1.1 (configuration failed when trying to test constants) work, but libressl does --- pkgs/servers/dns/powerdns/default.nix | 10 +++------- pkgs/servers/dns/powerdns/skip-sha384-test.patch | 14 -------------- 2 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 pkgs/servers/dns/powerdns/skip-sha384-test.patch diff --git a/pkgs/servers/dns/powerdns/default.nix b/pkgs/servers/dns/powerdns/default.nix index f9f94f002a36..7e8775a2e2c6 100644 --- a/pkgs/servers/dns/powerdns/default.nix +++ b/pkgs/servers/dns/powerdns/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig -, boost, libyamlcpp, libsodium, sqlite, protobuf, botan2 +, boost, libyamlcpp, libsodium, sqlite, protobuf, botan2, libressl , mysql57, postgresql, lua, openldap, geoip, curl, opendbx, unixODBC }: @@ -15,12 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ boost mysql57.connector-c postgresql lua openldap sqlite protobuf geoip - libyamlcpp libsodium curl opendbx unixODBC botan2 - ]; - - patches = [ - # checksum type not found, maybe a dependency is to old? - ./skip-sha384-test.patch + libyamlcpp libsodium curl opendbx unixODBC botan2 libressl ]; # nix destroy with-modules arguments, when using configureFlags @@ -29,6 +24,7 @@ stdenv.mkDerivation rec { "--with-modules=bind gmysql geoip godbc gpgsql gsqlite3 ldap lua mydns opendbx pipe random remote" --with-sqlite3 --with-socketdir=/var/lib/powerdns + --with-libcrypto=${libressl.dev} --enable-libsodium --enable-botan --enable-tools diff --git a/pkgs/servers/dns/powerdns/skip-sha384-test.patch b/pkgs/servers/dns/powerdns/skip-sha384-test.patch deleted file mode 100644 index 3fafb38c48fb..000000000000 --- a/pkgs/servers/dns/powerdns/skip-sha384-test.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- pdns-4.1.1.org/pdns/test-signers.cc 2018-02-17 11:43:15.953228279 +0000 -+++ pdns-4.1.1/pdns/test-signers.cc 2018-02-17 11:44:21.089516393 +0000 -@@ -212,11 +212,6 @@ - BOOST_CHECK_EQUAL(ds2.getZoneRepresentation(), signer.dsSHA256); - } - -- auto ds4 = makeDSFromDNSKey(name, drc, DNSSECKeeper::SHA384); -- if (!signer.dsSHA384.empty()) { -- BOOST_CHECK_EQUAL(ds4.getZoneRepresentation(), signer.dsSHA384); -- } -- - auto signature = dcke->sign(message); - BOOST_CHECK(dcke->verify(message, signature)); - From 9536ada45736d287f48d115380b13874e0d50876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 10 Jan 2019 23:22:45 -0200 Subject: [PATCH 043/167] haskellPackages.HaTeX: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index 6190dd9ab931..80033c11062c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -48,6 +48,7 @@ self: super: { cereal = dontCheck super.cereal; data-clist = doJailbreak super.data-clist; # won't cope with QuickCheck 2.12.x Diff = dontCheck super.Diff; + HaTeX = doJailbreak super.HaTeX; # containers >=0.4 && <0.6 is too tight; https://github.com/Daniel-Diaz/HaTeX/issues/126 hpc-coveralls = doJailbreak super.hpc-coveralls; # https://github.com/guillaume-nargeot/hpc-coveralls/issues/82 http-api-data = doJailbreak super.http-api-data; persistent-sqlite = dontCheck super.persistent-sqlite; From baf62522757b5495e406717991e3c5a1b3509491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 12 Jan 2019 14:56:40 +0100 Subject: [PATCH 044/167] python3.pkgs.aiohttp: 3.5.3 -> 3.5.4 --- pkgs/development/python-modules/aiohttp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix index 558530e5a85a..90bd7521ea41 100644 --- a/pkgs/development/python-modules/aiohttp/default.nix +++ b/pkgs/development/python-modules/aiohttp/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { pname = "aiohttp"; - version = "3.5.3"; + version = "3.5.4"; src = fetchPypi { inherit pname version; - sha256 = "7967b760d0e96eb7ac6b20a9143112ce5c03a00b4f74d8a5ee66c8e88e6b6800"; + sha256 = "9c4c83f4fa1938377da32bc2d59379025ceeee8e24b89f72fcbccd8ca22dc9bf"; }; disabled = pythonOlder "3.5"; From b54d9e27cb06a1ffb54587abd016d48a2874b7eb Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 12 Jan 2019 15:08:21 +0100 Subject: [PATCH 045/167] python.pkgs.pygal: fix build (#53833) `pytestrunner` is a required build input. Also we need to explicitly set the locale to pass the tests on darwin. --- .../python-modules/pygal/default.nix | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pygal/default.nix b/pkgs/development/python-modules/pygal/default.nix index 8336640443bc..b0d533f5d68d 100644 --- a/pkgs/development/python-modules/pygal/default.nix +++ b/pkgs/development/python-modules/pygal/default.nix @@ -5,6 +5,7 @@ , flask , pyquery , pytest +, pytestrunner , cairosvg , tinycss , cssselect @@ -22,7 +23,24 @@ buildPythonPackage rec { sha256 = "9204f05380b02a8a32f9bf99d310b51aa2a932cba5b369f7a4dc3705f0a4ce83"; }; - buildInputs = [ flask pyquery pytest ]; + buildInputs = [ + flask + pyquery + + # Should be a check input, but upstream lists it under "setup_requires". + # https://github.com/Kozea/pygal/issues/430 + pytestrunner + ]; + + checkInputs = [ + pytest + ]; + + preCheck = '' + # necessary on darwin to pass the testsuite + export LANG=en_US.UTF-8 + ''; + propagatedBuildInputs = [ cairosvg tinycss cssselect ] ++ stdenv.lib.optionals (!isPyPy) [ lxml ]; From 37e43909719560725851554d5fa9077872f3eb69 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sat, 12 Jan 2019 09:20:42 -0500 Subject: [PATCH 046/167] qt5: use 5.11 on darwin until it's fixed Fixes: 8e811ec29 ('qt5: 5.11 -> 5.12') Resolves: #53841 --- pkgs/top-level/all-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fd1df25b4e13..29ac72535226 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12226,8 +12226,9 @@ in libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5); - qt5 = qt512; - libsForQt5 = libsForQt512; + # TODO bump to 5.12 on darwin once it's not broken + qt5 = if stdenv.isDarwin then qt511 else qt512; + libsForQt5 = if stdenv.isDarwin then libsForQt511 else libsForQt512; qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { }; From 7feee4d81fa33045de63c6b6d84fb648b0eeb0cd Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 1 Nov 2018 15:50:11 -0500 Subject: [PATCH 047/167] retdec: remove pycache from install dir --- pkgs/development/tools/analysis/retdec/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/analysis/retdec/default.nix b/pkgs/development/tools/analysis/retdec/default.nix index 3e64e91d1300..fec127178f9e 100644 --- a/pkgs/development/tools/analysis/retdec/default.nix +++ b/pkgs/development/tools/analysis/retdec/default.nix @@ -221,6 +221,8 @@ in stdenv.mkDerivation rec { doInstallCheck = true; installCheckPhase = '' ${python3.interpreter} "$out/bin/retdec-tests-runner.py" + + rm -rf $out/bin/__pycache__ ''; meta = with lib; { From 2c48580be12f6b8ca3f09c491c4a3226a380afef Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 12 Jan 2019 12:30:20 -0500 Subject: [PATCH 048/167] flow: 0.89.0 -> 0.90.0 --- pkgs/development/tools/analysis/flow/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index f3a5905c14e9..0827807afef3 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -1,18 +1,19 @@ { stdenv, fetchFromGitHub, ocamlPackages, cf-private, CoreServices }: stdenv.mkDerivation rec { - version = "0.89.0"; + version = "0.90.0"; name = "flow-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "refs/tags/v${version}"; - sha256 = "1p2ix39h4g9hcsq2bm08ip9ivw5bh4w7am403mh7h6yrnanc9djv"; + sha256 = "12y34l4nhcmdcv91gzdrxw0cvd8w0cg69c5km1nkydgayk82a3x2"; }; installPhase = '' - install -Dm755 -t $out/bin bin/flow + install -Dm755 bin/flow $out/bin/flow + install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow ''; buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ]) From f45195fb443666c1bc347dbe3559636f92b81f2e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Jan 2019 18:25:52 +0000 Subject: [PATCH 049/167] Update nixos/doc/manual/man-nixos-rebuild.xml Co-Authored-By: Mic92 --- nixos/doc/manual/man-nixos-rebuild.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/man-nixos-rebuild.xml b/nixos/doc/manual/man-nixos-rebuild.xml index 5e66946aa5be..68d3233606f6 100644 --- a/nixos/doc/manual/man-nixos-rebuild.xml +++ b/nixos/doc/manual/man-nixos-rebuild.xml @@ -326,7 +326,7 @@ $ ./result/bin/run-*-vm - Allow to specify remote builders ad-hoc for building the new system. + Allow ad-hoc remote builders for building the new system. This requires the user executing nixos-rebuild (usually root) to be configured as a trusted user in the Nix daemon. This can be achived by using the nix.trustedUsers NixOS option. From 9f827d66f58267df8d8f15b5bfc162b6ec33ab32 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Jan 2019 18:26:00 +0000 Subject: [PATCH 050/167] Update nixos/doc/manual/man-nixos-rebuild.xml Co-Authored-By: Mic92 --- nixos/doc/manual/man-nixos-rebuild.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/man-nixos-rebuild.xml b/nixos/doc/manual/man-nixos-rebuild.xml index 68d3233606f6..7b964280d6a6 100644 --- a/nixos/doc/manual/man-nixos-rebuild.xml +++ b/nixos/doc/manual/man-nixos-rebuild.xml @@ -329,7 +329,7 @@ $ ./result/bin/run-*-vm Allow ad-hoc remote builders for building the new system. This requires the user executing nixos-rebuild (usually root) to be configured as a trusted user in the Nix daemon. This can be - achived by using the nix.trustedUsers NixOS option. + achieved by using the nix.trustedUsers NixOS option. Examples values for that option are described in the Remote builds chapter in the Nix manual, (i.e. --builders "ssh://bigbrother x86_64-linux"). From ad23ea312d37b8086ea62bd6be33c2c07e5a9963 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 5 Jan 2019 18:11:07 +0100 Subject: [PATCH 051/167] =?UTF-8?q?ocamlPackages.lablgtk3:=203.0.=CE=B22?= =?UTF-8?q?=20=E2=86=92=203.0.=CE=B23?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/lablgtk3/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/lablgtk3/default.nix b/pkgs/development/ocaml-modules/lablgtk3/default.nix index e8e890bd85ad..9f2227327e49 100644 --- a/pkgs/development/ocaml-modules/lablgtk3/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk3/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, pkgconfig, ocaml, findlib, gtk3, gtkspell3, gtksourceview }: -if !stdenv.lib.versionAtLeast ocaml.version "4.03" +if !stdenv.lib.versionAtLeast ocaml.version "4.05" then throw "lablgtk3 is not available for OCaml ${ocaml.version}" else stdenv.mkDerivation rec { - version = "3.0.beta2"; + version = "3.0.beta3"; name = "ocaml${ocaml.version}-lablgtk3-${version}"; src = fetchurl { - url = https://forge.ocamlcore.org/frs/download.php/1774/lablgtk-3.0.beta2.tar.gz; - sha256 = "1v4qj07l75hqis4j9bx8x1cfn7scqi6nmp4j5jx41x94ws7hp2ch"; + url = https://forge.ocamlcore.org/frs/download.php/1775/lablgtk-3.0.beta3.tar.gz; + sha256 = "174mwwdz1s91a6ycbas7nc0g87c2l6zqv68zi5ab33yb76l46a6w"; }; nativeBuildInputs = [ pkgconfig ]; From 3f7d94c8e0cc555e1e269e07542bd1fd4688faac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 10 Jan 2019 23:08:33 -0200 Subject: [PATCH 052/167] haskellPackages.wl-pprint-extras: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index 6190dd9ab931..64c267bf271b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -54,6 +54,7 @@ self: super: { psqueues = dontCheck super.psqueues; # won't cope with QuickCheck 2.12.x system-fileio = dontCheck super.system-fileio; # avoid dependency on broken "patience" unicode-transforms = dontCheck super.unicode-transforms; + wl-pprint-extras = doJailbreak super.wl-pprint-extras; # containers >=0.4 && <0.6 is too tight; https://github.com/ekmett/wl-pprint-extras/issues/17 RSA = dontCheck super.RSA; # https://github.com/GaloisInc/RSA/issues/14 monad-par = dontCheck super.monad-par; # https://github.com/simonmar/monad-par/issues/66 github = dontCheck super.github; # hspec upper bound exceeded; https://github.com/phadej/github/pull/341 From a38cfed9744690c37ca38f7b80ef92e6969b2138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 10 Jan 2019 23:41:30 -0200 Subject: [PATCH 053/167] haskellPackages.dates: jailbreak --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index 6190dd9ab931..97a340b0acfe 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -47,6 +47,7 @@ self: super: { # Test suite does not compile. cereal = dontCheck super.cereal; data-clist = doJailbreak super.data-clist; # won't cope with QuickCheck 2.12.x + dates = doJailbreak super.dates; # base >=4.9 && <4.12 Diff = dontCheck super.Diff; hpc-coveralls = doJailbreak super.hpc-coveralls; # https://github.com/guillaume-nargeot/hpc-coveralls/issues/82 http-api-data = doJailbreak super.http-api-data; From 58af931a5754c684cc9a9540b9068a76c3753635 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 12 Jan 2019 22:13:23 +0100 Subject: [PATCH 054/167] nextcloud: 15.0.0 -> 15.0.2 --- pkgs/servers/nextcloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nextcloud/default.nix b/pkgs/servers/nextcloud/default.nix index 0d9533b30f25..68f1374bbdc0 100644 --- a/pkgs/servers/nextcloud/default.nix +++ b/pkgs/servers/nextcloud/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "nextcloud-${version}"; - version = "15.0.0"; + version = "15.0.2"; src = fetchurl { url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2"; - sha256 = "0y7bk1588n5rmmranmmrkajh50074460hr4v052ahg9mf60wbc2v"; + sha256 = "1shgr81hhxr2k45hqlx06qhyayhbqdi0ndvpcyzdv54rwcrwrx61"; }; installPhase = '' From 8b5e6b7711b19baded1e972f98386d1dd4bb7b14 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 15:29:35 -0600 Subject: [PATCH 055/167] icestorm: minor cleanup with pythonPkg.interpreter [NFC] Suggested cleanup by @dotlambda. See: https://github.com/NixOS/nixpkgs/commit/18839e1cc1a0c2ee787a8990809141cf43e1848c#commitcomment-31917295 Signed-off-by: Austin Seipp --- pkgs/development/tools/icestorm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/icestorm/default.nix b/pkgs/development/tools/icestorm/default.nix index 0d96ec02c4ca..5cec122950f0 100644 --- a/pkgs/development/tools/icestorm/default.nix +++ b/pkgs/development/tools/icestorm/default.nix @@ -6,7 +6,7 @@ let pypyCompatible = stdenv.isx86_64; /* pypy3 seems broken on i686 */ pythonPkg = if pypyCompatible then pypy3 else python3; - pythonInterp = if pypyCompatible then "pypy3" else "python3"; + pythonInterp = pythonPkg.interpreter; in stdenv.mkDerivation rec { @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { for x in $(find . -type f -iname '*.py'); do substituteInPlace "$x" \ - --replace '/usr/bin/env python3' '${pythonPkg}/bin/${pythonInterp}' + --replace '/usr/bin/env python3' '${pythonInterp}' done ''; From 3d36ea6a051c1c4e2f37011ad8f4ff1b9ce0e2dc Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 15:31:17 -0600 Subject: [PATCH 056/167] nextpnr: with GUI support, be sure to set QT_PLUGIN_PATH This is to help QT find all the necessary plugin libraries at startup time, otherwise it freaks out when run out of 'nix-env' environment or run directly, e.g. `./result/bin/nextpnr-ice40 --gui`. The reason for this is that none of the traditional paths it looks for are available. The workarounds for this are to otherwise: - Install e.g. into environment.systemPackages (presumably it will then pick up QT libraries in /run/current-system/sw/lib/qt-*) - Install 'qtbase' into your user environment (qt will also try to load dependent libraries out of ~/.nix-profile/lib/qt-*) However, this QT_PLUGIN_PATH wrapping hack is used elsewhere in the tree, presumably to mitigate these (poor) workarounds, especially for non-NixOS users. There seems to be no downside to this. With this, I have been able to run NextPNR's GUI on an Ubuntu 16.04 system using the 'nixGL' hack by simply running the resulting binary from anywhere (though there seems to be some glitching artifacts in the floorplan UI, I suspect this is due to a buggy OpenGL stack rather than any direct problem with NextPNR or the QT libraries themselves). This does not mark the GUI build as non-broken yet, though. That will happen in the future after a bit more testing and splitting nextpnr into separate minimal/GUI attributes. Signed-off-by: Austin Seipp --- pkgs/development/compilers/nextpnr/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/nextpnr/default.nix b/pkgs/development/compilers/nextpnr/default.nix index cbd4d0b9f4ee..156657d61d6b 100644 --- a/pkgs/development/compilers/nextpnr/default.nix +++ b/pkgs/development/compilers/nextpnr/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake +{ stdenv, fetchFromGitHub, cmake, makeWrapper , boost, python3 , icestorm, trellis @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { sha256 = "082ac03s6164s7dwz1l9phshl8m1lizn45jykabrhks5jcccchbh"; }; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ cmake makeWrapper ]; buildInputs = [ boostPython python3 ] ++ (stdenv.lib.optional enableGui qtbase); @@ -55,6 +55,13 @@ stdenv.mkDerivation rec { --replace 'git log -1 --format=%h' 'echo ${substring 0 11 src.rev}' ''; + postInstall = stdenv.lib.optionalString enableGui '' + for x in generic ice40 ecp5; do + wrapProgram $out/bin/nextpnr-$x \ + --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtbase.qtCompatVersion}/plugins + done + ''; + meta = with stdenv.lib; { description = "Place and route tool for FPGAs"; homepage = https://github.com/yosyshq/nextpnr; From 6ca8443c3be92457ecd4f81532687f99281cbcae Mon Sep 17 00:00:00 2001 From: Jean-Philippe Cugnet Date: Sun, 13 Jan 2019 00:01:05 +0100 Subject: [PATCH 057/167] scribus: Add an icon (#53456) * scribus: Add an icon * scribus: Put the icon SVG in a Gist --- pkgs/applications/office/scribus/default.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/office/scribus/default.nix b/pkgs/applications/office/scribus/default.nix index 76bf7ac6893e..434b4e64ee67 100644 --- a/pkgs/applications/office/scribus/default.nix +++ b/pkgs/applications/office/scribus/default.nix @@ -1,8 +1,13 @@ { stdenv, fetchurl, pkgconfig, freetype, lcms, libtiff, libxml2 , libart_lgpl, qt4, python2, cups, fontconfig, libjpeg -, zlib, libpng, xorg, cairo, podofo, aspell, boost, cmake }: +, zlib, libpng, xorg, cairo, podofo, aspell, boost, cmake, imagemagick }: let + icon = fetchurl { + url = "https://gist.githubusercontent.com/ejpcmac/a74b762026c9bc4000be624c3d085517/raw/18edc497c5cb6fdeef1c8aede37a0ee68413f9d3/scribus-icon-centered.svg"; + sha256 = "0hq3i7c2l50445an9glhhg47kj26y16svfajc6naqn307ph9vzc3"; + }; + pythonEnv = python2.withPackages(ps: [ps.tkinter]); in stdenv.mkDerivation rec { name = "scribus-1.4.7"; @@ -21,8 +26,16 @@ in stdenv.mkDerivation rec { boost # for internal 2geom library libXaw libXext libX11 libXtst libXi libXinerama libpthreadstubs libXau libXdmcp + imagemagick # To build the icon ]; + postInstall = '' + for i in 16 24 48 64 96 128 256 512; do + mkdir -p $out/share/icons/hicolor/''${i}x''${i}/apps + convert -background none -resize ''${i}x''${i} ${icon} $out/share/icons/hicolor/''${i}x''${i}/apps/scribus.png + done + ''; + meta = { maintainers = [ stdenv.lib.maintainers.marcweber ]; platforms = stdenv.lib.platforms.linux; From 53fb3bb3ef297314141fd0041922846d63e05925 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 18:37:30 -0600 Subject: [PATCH 058/167] compcert: clean up expression - Require Coq 8.6.1+ - Split substituteInPlace call into patchPhase - Constrain platforms correctly to x86_64 Linux/Darwin, which was all it supported anyway (there was no way to properly configure i686 builds, nor cross builds. In the future there might be) - Minor stylistic cleanups - Add new 'man' and 'doc' outputs (the previous attempt to move the build artifact outputs into $lib no longer worked correctly and they were installed into 'out' instead, this fixes it completely). - Clean up weird binary artifacts left in $out (that were already in $lib) - Wrap ccomp to undefine _FORTIFY_SOURCE; otherwise it causes annoying warnings on every invocation Signed-off-by: Austin Seipp --- .../compilers/compcert/default.nix | 50 ++++++++++++++----- 1 file changed, 37 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/compcert/default.nix b/pkgs/development/compilers/compcert/default.nix index a0058242bad8..4a9f585b2524 100644 --- a/pkgs/development/compilers/compcert/default.nix +++ b/pkgs/development/compilers/compcert/default.nix @@ -1,10 +1,15 @@ -{ stdenv, lib, fetchurl, fetchpatch +{ stdenv, lib, fetchurl, fetchpatch, makeWrapper , coq, ocamlPackages, coq2html , tools ? stdenv.cc }: assert lib.versionAtLeast ocamlPackages.ocaml.version "4.02"; +assert lib.versionAtLeast coq.coq-version "8.6.1"; +let + ocaml-pkgs = with ocamlPackages; [ ocaml findlib menhir ]; + ccomp-platform = if stdenv.isDarwin then "x86_64-macosx" else "x86_64-linux"; +in stdenv.mkDerivation rec { name = "compcert-${version}"; version = "3.4"; @@ -14,34 +19,53 @@ stdenv.mkDerivation rec { sha256 = "12gchwvkzhd2bhrnwzfb4a06wc4hgv98z987k06vj7ga31ii763h"; }; - buildInputs = [ coq coq2html ] - ++ (with ocamlPackages; [ ocaml findlib menhir ]); - + nativeBuildInputs = [ makeWrapper ]; + buildInputs = ocaml-pkgs ++ [ coq coq2html ]; enableParallelBuilding = true; + patchPhase = '' + substituteInPlace ./configure \ + --replace '{toolprefix}gcc' '{toolprefix}cc' + ''; + configurePhase = '' - substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc' - ./configure -clightgen -prefix $out -toolprefix ${tools}/bin/ '' + - (if stdenv.isDarwin then "x86_64-macosx" else "x86_64-linux"); + ./configure -clightgen \ + -prefix $out \ + -toolprefix ${tools}/bin/ \ + ${ccomp-platform} + ''; installTargets = "documentation install"; - postInstall = '' - mkdir -p $lib/share/doc/compcert - mv doc/html $lib/share/doc/compcert/ + # move man into place + mkdir -p $man/share + mv $out/share/man/ $man/share/ + + # move docs into place + mkdir -p $doc/share/doc/compcert + mv doc/html $doc/share/doc/compcert/ + + # install compcert lib files; remove copy from $out, too mkdir -p $lib/lib/coq/${coq.coq-version}/user-contrib/compcert/ mv backend cfrontend common cparser driver flocq x86 x86_64 lib \ $lib/lib/coq/${coq.coq-version}/user-contrib/compcert/ + rm -rf $out/lib/compcert/coq + + # wrap ccomp to undefine _FORTIFY_SOURCE; ccomp invokes cc1 which sets + # _FORTIFY_SOURCE=2 by default, but undefines __GNUC__ (as it should), + # which causes a warning in libc. this suppresses it. + for x in ccomp clightgen; do + wrapProgram $out/bin/$x --add-flags "-U_FORTIFY_SOURCE" + done ''; - outputs = [ "out" "lib" ]; + outputs = [ "out" "lib" "doc" "man" ]; meta = with stdenv.lib; { description = "Formally verified C compiler"; homepage = "http://compcert.inria.fr"; license = licenses.inria-compcert; - platforms = platforms.linux ++ - platforms.darwin; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ]; }; } From b5c6156062789adb83bf77e15b7bb28b3a6ab750 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 20:12:08 -0600 Subject: [PATCH 059/167] firecracker: 0.12.0 -> 0.13.0 Signed-off-by: Austin Seipp --- pkgs/applications/virtualization/firecracker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/firecracker/default.nix b/pkgs/applications/virtualization/firecracker/default.nix index 7d8772da73d7..e1696fc15a56 100644 --- a/pkgs/applications/virtualization/firecracker/default.nix +++ b/pkgs/applications/virtualization/firecracker/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv }: let - version = "0.12.0"; + version = "0.13.0"; baseurl = "https://github.com/firecracker-microvm/firecracker/releases/download"; fetchbin = name: sha256: fetchurl { @@ -9,8 +9,8 @@ let inherit sha256; }; - firecracker-bin = fetchbin "firecracker" "0jk9w5kagqp3w668c1x0g4yyahmy7696pm0bkhv066rrdpcqpw66"; - jailer-bin = fetchbin "jailer" "1fcxzpnapnccklgbi4bis3f6c9fki2daxvzg9l7433vfqz2zbyjl"; + firecracker-bin = fetchbin "firecracker" "1wdcy4vmnx216jnza7bz6czlqpsjrnpqfsb5d322ld4gzbylm718"; + jailer-bin = fetchbin "jailer" "0k0sc5138bh35ciim2l78ma9g5x18dw098f2ar5y31ybr8i4q60y"; in stdenv.mkDerivation { name = "firecracker-${version}"; From 62c68890181699b2b6419f47daa1e5ea8299c03d Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sun, 13 Jan 2019 03:15:12 +0100 Subject: [PATCH 060/167] skawarePackages.utmps: 0.0.1.3 -> 0.0.2.0 --- pkgs/development/libraries/utmps/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/utmps/default.nix b/pkgs/development/libraries/utmps/default.nix index 859d152072fb..881e58ae61e5 100644 --- a/pkgs/development/libraries/utmps/default.nix +++ b/pkgs/development/libraries/utmps/default.nix @@ -4,8 +4,8 @@ with skawarePackages; buildPackage { pname = "utmps"; - version = "0.0.1.3"; - sha256 = "0dwskdclac4afmh7f7zn6jdiydgaf59a65q43r6b813mghczjvvd"; + version = "0.0.2.0"; + sha256 = "0fzq3qm88sm5ibl9k9k6ns6jd7iw72vh9k10bsfl5dxd2yi6iqyr"; description = "A secure utmpx and wtmp implementation"; From 3c33db1e2c0cd3aa21931c794b854d93e78aae2b Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sun, 13 Jan 2019 03:15:50 +0100 Subject: [PATCH 061/167] skawarePackages.s6: 2.7.2.0 -> 2.7.2.2 --- pkgs/tools/system/s6/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/s6/default.nix b/pkgs/tools/system/s6/default.nix index 031439d56d5c..4389755bc4c1 100644 --- a/pkgs/tools/system/s6/default.nix +++ b/pkgs/tools/system/s6/default.nix @@ -4,8 +4,8 @@ with skawarePackages; buildPackage { pname = "s6"; - version = "2.7.2.0"; - sha256 = "02canrzmhr66gi16ldyylk378jlmyfl73vn72ayr12h2wyxgqm5g"; + version = "2.7.2.2"; + sha256 = "0psjmfidjdciswakw9agzzniqfmhrr21765m0q77kwxg7iisgpsq"; description = "skarnet.org's small & secure supervision software suite"; From 94de11a8e85c4cbd429e22ef4d76a88fc0a5d117 Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Sat, 12 Jan 2019 17:25:32 +0800 Subject: [PATCH 062/167] pythonPackages.pyment: init at 0.3.3 --- .../python-modules/pyment/default.nix | 22 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/python-modules/pyment/default.nix diff --git a/pkgs/development/python-modules/pyment/default.nix b/pkgs/development/python-modules/pyment/default.nix new file mode 100644 index 000000000000..bb27e5b3c3dd --- /dev/null +++ b/pkgs/development/python-modules/pyment/default.nix @@ -0,0 +1,22 @@ +{ lib, buildPythonPackage, fetchPypi }: + +buildPythonPackage rec { + pname = "pyment"; + version = "0.3.3"; + + src = fetchPypi { + pname = "Pyment"; + inherit version; + sha256 = "951a4c52d6791ccec55bc739811169eed69917d3874f5fe722866623a697f39d"; + }; + + # Tests are not included in PyPI tarball + doCheck = false; + + meta = with lib; { + homepage = https://github.com/dadadel/pyment; + description = "Create, update or convert docstrings in existing Python files, managing several styles"; + license = licenses.gpl3; + maintainers = with maintainers; [ jethro ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 77ee88cc3fcb..482ce9b84cb3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3608,6 +3608,8 @@ in { pygpgme = callPackage ../development/python-modules/pygpgme { }; + pyment = callPackage ../development/python-modules/pyment { }; + pylint = if isPy3k then callPackage ../development/python-modules/pylint { } else callPackage ../development/python-modules/pylint/1.9.nix { }; From 532c8f954cb444fe983c746c2590916d856e7341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 13 Jan 2019 06:10:19 +0000 Subject: [PATCH 063/167] check_ssl_cert: update non-determinism patch --- .../monitoring/nagios/plugins/check_ssl_cert.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix index 3d811c394cf9..cdfd8ab9beeb 100644 --- a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix +++ b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, file, openssl, makeWrapper, which, curl }: +{ stdenv, fetchFromGitHub, file, openssl, makeWrapper, which, curl, fetchpatch }: stdenv.mkDerivation rec { name = "check_ssl_cert-${version}"; @@ -11,10 +11,13 @@ stdenv.mkDerivation rec { sha256 = "1jkwii45hynil1jail9gmz4bak066rdi8zfcczicjsa6npbz50w4"; }; - postPatch = '' - substituteInPlace Makefile \ - --replace 'YEAR=`date +"%Y"`' 'YEAR=2018' - ''; + patches = [ + # https://github.com/matteocorti/check_ssl_cert/pull/114 + (fetchpatch { + url = "https://github.com/matteocorti/check_ssl_cert/commit/2b7aad583d507a70605dd44d918739a65b267bfd.patch"; + sha256 = "1jk872jgm6k3qc1ks1h3v6p804spjlnxcj2wc8v0hkmwfwiwd2k4"; + }) + ]; nativeBuildInputs = [ makeWrapper ]; From bac3e2ada9f3a6094a0c3d31fc028d03eea8da09 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 13 Jan 2019 02:46:10 -0500 Subject: [PATCH 064/167] cozy: 0.6.3 -> 0.6.7 --- pkgs/applications/audio/cozy-audiobooks/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/audio/cozy-audiobooks/default.nix b/pkgs/applications/audio/cozy-audiobooks/default.nix index 3d7d63c4be6d..b7b8a4410b7f 100644 --- a/pkgs/applications/audio/cozy-audiobooks/default.nix +++ b/pkgs/applications/audio/cozy-audiobooks/default.nix @@ -21,14 +21,14 @@ python3Packages.buildPythonApplication rec { format = "other"; # no setup.py - name = "cozy-${version}"; - version = "0.6.3"; + pname = "cozy"; + version = "0.6.7"; src = fetchFromGitHub { owner = "geigi"; - repo = "cozy"; + repo = pname; rev = version; - sha256 = "0xs6vzvmx0nvybpjqlrngggv2x8b2ky073slh760iirs1p0dclbc"; + sha256 = "0f8dyqj6111czn8spgsnic1fqs3kimjwl1b19mw55fa924b9bhsa"; }; nativeBuildInputs = [ @@ -71,9 +71,7 @@ python3Packages.buildPythonApplication rec { ''; meta = with stdenv.lib; { - description = '' - A modern audio book player for Linux using GTK+ 3 - ''; + description = "A modern audio book player for Linux using GTK+ 3"; homepage = https://cozy.geigi.de/; maintainers = [ maintainers.makefu ]; license = licenses.gpl3; From ee32fa9b0df0e346fa78a48ce1d2fb5b284f1a7a Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Tue, 20 Nov 2018 17:25:58 -0500 Subject: [PATCH 065/167] nvidia_x11: 410.78 -> 415.25 --- .../linux/nvidia-x11/atomic64_t.patch | 12 +++++++++++ pkgs/os-specific/linux/nvidia-x11/builder.sh | 10 ++++++++-- pkgs/os-specific/linux/nvidia-x11/default.nix | 20 +++++++++++-------- 3 files changed, 32 insertions(+), 10 deletions(-) create mode 100644 pkgs/os-specific/linux/nvidia-x11/atomic64_t.patch diff --git a/pkgs/os-specific/linux/nvidia-x11/atomic64_t.patch b/pkgs/os-specific/linux/nvidia-x11/atomic64_t.patch new file mode 100644 index 000000000000..18fcca314a86 --- /dev/null +++ b/pkgs/os-specific/linux/nvidia-x11/atomic64_t.patch @@ -0,0 +1,12 @@ +diff --git a/kernel/conftest.sh b/kernel/conftest.sh +index e8de161..6c284e9 100755 +--- a/kernel/conftest.sh ++++ b/kernel/conftest.sh +@@ -1784,7 +1784,6 @@ compile_test() { + atomic64_t data; + atomic64_read(&data); + atomic64_set(&data, 0); +- atomic64_inc(&data); + }" + + compile_check_conftest "$CODE" "NV_ATOMIC64_PRESENT" "" "types" diff --git a/pkgs/os-specific/linux/nvidia-x11/builder.sh b/pkgs/os-specific/linux/nvidia-x11/builder.sh index 8882ffdd45e7..46ea5a55aa5b 100755 --- a/pkgs/os-specific/linux/nvidia-x11/builder.sh +++ b/pkgs/os-specific/linux/nvidia-x11/builder.sh @@ -33,11 +33,17 @@ installPhase() { # since version 391, 32bit libraries are bundled in the 32/ sub-directory if [ "$i686bundled" = "1" ]; then mkdir -p "$lib32/lib" - cp -prd 32/*.so.* 32/tls "$lib32/lib/" + cp -prd 32/*.so.* "$lib32/lib/" + if [ -d 32/tls ]; then + cp -prd 32/tls "$lib32/lib/" + fi fi mkdir -p "$out/lib" - cp -prd *.so.* tls "$out/lib/" + cp -prd *.so.* "$out/lib/" + if [ -d tls ]; then + cp -prd tls "$out/lib/" + fi for i in $lib32 $out; do rm -f $i/lib/lib{glx,nvidia-wfb}.so.* # handled separately diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index 90efb9bda52f..12dfe6137c7d 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -16,18 +16,22 @@ let in rec { # Policy: use the highest stable version as the default (on our master). - stable = if stdenv.hostPlatform.system != "x86_64-linux" - then legacy_390 - else generic { - version = "410.78"; - sha256_64bit = "1ciabnmvh95gsfiaakq158x2yws3m9zxvnxws3p32lz9riblpdjx"; - settingsSha256 = "1677g7rcjbcs5fja1s4p0syhhz46g9x2qqzyn3wwwrjsj7rwaz77"; - persistencedSha256 = "01kvd3zp056i4n8vazj7gx1xw0h4yjdlpazmspnsmwg24ijb82x4"; - }; + stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_410 else legacy_390; # No active beta right now beta = stable; + stable_410 = generic { + version = "415.25"; + sha256_64bit = "0jck3sjhkdf9j40fqa6hpm2m9i11bfka9diaxmk2apni4f4mpdk4"; + settingsSha256 = "0x5a9dhr29g67rbgl1w973fzgjfg1lyn3dpq7fpc7chfp91vxzrp"; + persistencedSha256 = "0z1d7hrz7zvi4x3ir1c3gcfpsj57wdr5pylvmjhdi3x47cb1w34f"; + + patches = lib.optional (kernel.meta.branch == "4.20") [ + ./atomic64_t.patch + ]; + }; + # Last one supporting x86 legacy_390 = generic { version = "390.87"; From f8d3a0d55cc06fa4615c249fa9f883e79d557c62 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 8 Jan 2019 03:11:23 -0800 Subject: [PATCH 066/167] cfr: 0.137 -> 0.138 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cfr/versions --- pkgs/development/tools/java/cfr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/java/cfr/default.nix b/pkgs/development/tools/java/cfr/default.nix index 9534201d095a..6371e2499036 100644 --- a/pkgs/development/tools/java/cfr/default.nix +++ b/pkgs/development/tools/java/cfr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cfr-${version}"; - version = "0.137"; + version = "0.138"; src = fetchurl { url = "http://www.benf.org/other/cfr/cfr_${version}.jar"; - sha256 = "1z704b31riyr3kv9cb2vqhd5gcha849g5k4zbvsh4yr9cdx226rz"; + sha256 = "1v0agc3d26jvgxmskh2pl0sq0nr2czl7g0dckya4l6af4lxp9x7q"; }; buildInputs = [ makeWrapper ]; From 955a9959ac8789999662b7c247f34bb391e16755 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 8 Jan 2019 03:06:21 -0800 Subject: [PATCH 067/167] catch2: 2.4.2 -> 2.5.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/catch2/versions --- pkgs/development/libraries/catch2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/catch2/default.nix b/pkgs/development/libraries/catch2/default.nix index 073736ce66d9..5a9815208d25 100644 --- a/pkgs/development/libraries/catch2/default.nix +++ b/pkgs/development/libraries/catch2/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "catch2-${version}"; - version = "2.4.2"; + version = "2.5.0"; src = fetchFromGitHub { owner = "catchorg"; repo = "Catch2"; rev = "v${version}"; - sha256="1105bxbvh1xxl4yxjjp6l6w6hgsh8xbdiwlnga9di5y2x92b9bjd"; + sha256="0pmkqx5b3vy2ppz0h3ijd8v1387yfgykpw2kz0zzwr9mdv9adw7a"; }; nativeBuildInputs = [ cmake ]; From b3687441aa3b8527a436a971f113fecea9ccf71b Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 13 Jan 2019 03:40:57 -0500 Subject: [PATCH 068/167] geary: fix build Apply upstream patch that adapts to changes in latest vala. Closes https://github.com/NixOS/nixpkgs/issues/53864 --- pkgs/desktops/gnome-3/misc/geary/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/desktops/gnome-3/misc/geary/default.nix b/pkgs/desktops/gnome-3/misc/geary/default.nix index 0841fa13a73f..8f1080ccc2e0 100644 --- a/pkgs/desktops/gnome-3/misc/geary/default.nix +++ b/pkgs/desktops/gnome-3/misc/geary/default.nix @@ -30,6 +30,12 @@ stdenv.mkDerivation rec { url = https://gitlab.gnome.org/GNOME/geary/commit/e091f24b00ec421e1aadd5e360d1550e658ad5ef.patch; sha256 = "0d5hc4h9c1hnn2sk18nkpmzdvwm3h746n2zj8n22ax9rj6lxl38l"; }) + # Fix build with vala 0.40.12 + # See: https://gitlab.gnome.org/GNOME/vala/blob/0.40.12/NEWS#L22 + (fetchpatch { + url = "https://gitlab.gnome.org/GNOME/geary/commit/088cb2c0aa35ad4b54ea5a0a2edaf0ff96c64b45.patch"; + sha256 = "0cnjmbd3snm8ggmprqa32f7i3w86gs3ylab9p5ffj921dcpvvlb2"; + }) ]; nativeBuildInputs = [ vala_0_40 intltool pkgconfig wrapGAppsHook cmake ninja desktop-file-utils gnome-doc-utils gobject-introspection ]; From d85b6275cd348ae5020538a2147f32cef44a8279 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 7 Jan 2019 20:55:51 -0800 Subject: [PATCH 069/167] fasm-bin: 1.73.04 -> 1.73.05 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fasm-bin/versions --- pkgs/development/compilers/fasm/bin.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/fasm/bin.nix b/pkgs/development/compilers/fasm/bin.nix index 5205792561b8..62e9d76966ff 100644 --- a/pkgs/development/compilers/fasm/bin.nix +++ b/pkgs/development/compilers/fasm/bin.nix @@ -3,11 +3,11 @@ stdenvNoCC.mkDerivation rec { name = "fasm-bin-${version}"; - version = "1.73.04"; + version = "1.73.05"; src = fetchurl { url = "https://flatassembler.net/fasm-${version}.tgz"; - sha256 = "0y0xkf9fzcm5gklhdi61wjpd1p8islpbcnkv5k16aqci3qsd0ia1"; + sha256 = "0qpj6cs9rp1bg2rqxg1k8j71918rh86hplyw4n82n11ndwk23ni5"; }; installPhase = '' From 9802509dd7e7055438a0e93a8c5f63383a04c90b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 7 Jan 2019 16:39:25 -0800 Subject: [PATCH 070/167] graylog: 2.4.6 -> 2.5.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/graylog/versions --- pkgs/tools/misc/graylog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/graylog/default.nix b/pkgs/tools/misc/graylog/default.nix index bcc4674ac0f0..2f7d5e2a82cf 100644 --- a/pkgs/tools/misc/graylog/default.nix +++ b/pkgs/tools/misc/graylog/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre_headless }: stdenv.mkDerivation rec { - version = "2.4.6"; + version = "2.5.1"; name = "graylog-${version}"; src = fetchurl { url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz"; - sha256 = "07bm5zz6b58ig082l6rwvvryh7svkv8nxp0d6izjka5f7x6g9ypw"; + sha256 = "1n7s6j36rs4dj27fz5n7gvxagx6w4lhi1z2xhryc41pz77mjrnkb"; }; dontBuild = true; From 2d7f1c0224caef8975738f7acbed4c0d6a90081c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 7 Jan 2019 14:42:09 -0800 Subject: [PATCH 071/167] lbdb: 0.47 -> 0.48 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lbdb/versions --- pkgs/tools/misc/lbdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/lbdb/default.nix b/pkgs/tools/misc/lbdb/default.nix index abffd6c70d5a..0aadfa580154 100644 --- a/pkgs/tools/misc/lbdb/default.nix +++ b/pkgs/tools/misc/lbdb/default.nix @@ -7,7 +7,7 @@ }: let - version = "0.47"; + version = "0.48"; in with stdenv.lib; with perlPackages; @@ -15,7 +15,7 @@ stdenv.mkDerivation { name = "lbdb-${version}"; src = fetchurl { url = "http://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz"; - sha256 = "06zgj03q75gc6ri4cw3jdmi01f22anwchlv2kw4zp9nbm5swv36b"; + sha256 = "1j1ac0nnf6j5mwb6rh61ax9aidj4lvv2vrj5b1p71d4d1m3g180z"; }; buildInputs = [ goobook makeWrapper perl ConvertASN1 perlldap AuthenSASL ] From e7eac8a220ad178f9159fdbc89eda42955cfe1d2 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 6 Jan 2019 23:37:12 -0800 Subject: [PATCH 072/167] python37Packages.fonttools: 3.33.0 -> 3.34.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-fonttools/versions --- pkgs/development/python-modules/fonttools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fonttools/default.nix b/pkgs/development/python-modules/fonttools/default.nix index d435cae94194..4fd2db014bab 100644 --- a/pkgs/development/python-modules/fonttools/default.nix +++ b/pkgs/development/python-modules/fonttools/default.nix @@ -8,11 +8,11 @@ buildPythonPackage rec { pname = "fonttools"; - version = "3.33.0"; + version = "3.34.2"; src = fetchPypi { inherit pname version; - sha256 = "196yl6m3fycrbsclcmg550821j18ga6dpghmk5nb1xi4j4yb62gq"; + sha256 = "1ahs82jnc8f7gksh51asg9dcifhslyfdz9dry9sxq424q1p5k9lz"; extension = "zip"; }; From c169f233e6d8d938f6c796637df6c1aa0256832b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 6 Jan 2019 08:49:04 -0800 Subject: [PATCH 073/167] yoshimi: 1.5.9 -> 1.5.10 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/yoshimi/versions --- pkgs/applications/audio/yoshimi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix index d35c7b05a893..9d57095a26aa 100644 --- a/pkgs/applications/audio/yoshimi/default.nix +++ b/pkgs/applications/audio/yoshimi/default.nix @@ -6,11 +6,11 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { name = "yoshimi-${version}"; - version = "1.5.9"; + version = "1.5.10"; src = fetchurl { url = "mirror://sourceforge/yoshimi/${name}.tar.bz2"; - sha256 = "1nqwxwq6814m860zrh33r85vdyi2bgkvjg5372h3ngcdmxnb7wr0"; + sha256 = "0mazzn5pc4xnjci3yy1yfsx9l05gkxqzkmscaq1h75jpa7qfsial"; }; buildInputs = [ From 2b183a448c5ae51e22d3cd7a2e8d4d76ca9ac6e6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 2 Jan 2019 16:54:28 -0800 Subject: [PATCH 074/167] pgroonga: 2.1.6 -> 2.1.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pgroonga/versions --- pkgs/servers/sql/postgresql/pgroonga/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/pgroonga/default.nix b/pkgs/servers/sql/postgresql/pgroonga/default.nix index aca5eb1f4ee7..8a185990725f 100644 --- a/pkgs/servers/sql/postgresql/pgroonga/default.nix +++ b/pkgs/servers/sql/postgresql/pgroonga/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "pgroonga-${version}"; - version = "2.1.6"; + version = "2.1.7"; src = fetchurl { url = "https://packages.groonga.org/source/pgroonga/${name}.tar.gz"; - sha256 = "1scybfmmlz5p4xgkhfx7pzdiqj5cd60kvbk8m4xa6k3avz0p1sw9"; + sha256 = "1mpns28f5hk528i5x7rkj9jp3qdhxmicmz13aj4lzlwa8yssx9ws"; }; nativeBuildInputs = [ pkgconfig ]; From 5d60c8c19c10f55a69516813a53b72acfa32c100 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 2 Jan 2019 14:06:43 -0800 Subject: [PATCH 075/167] privoxy: 3.0.26 -> 3.0.28 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/privoxy/versions --- pkgs/tools/networking/privoxy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/privoxy/default.nix b/pkgs/tools/networking/privoxy/default.nix index 48a803268bed..56bd46427d86 100644 --- a/pkgs/tools/networking/privoxy/default.nix +++ b/pkgs/tools/networking/privoxy/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec{ name = "privoxy-${version}"; - version = "3.0.26"; + version = "3.0.28"; src = fetchurl { url = "mirror://sourceforge/ijbswa/Sources/${version}%20%28stable%29/${name}-stable-src.tar.gz"; - sha256 = "1n4wpxmahl8m2y3d1azxa8lrdbpaad007k458skxrpz57ss1br2p"; + sha256 = "0jl2yav1qzqnaqnnx8i6i53ayckkimcrs3l6ryvv7bda6v08rmxm"; }; hardeningEnable = [ "pie" ]; From 80b7eadb9f2666bdfcda1665ad9645caffc8a52b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 25 Dec 2018 11:45:24 -0800 Subject: [PATCH 076/167] kcgi: 0.10.7 -> 0.10.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kcgi/versions --- pkgs/development/web/kcgi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/kcgi/default.nix b/pkgs/development/web/kcgi/default.nix index 597b9ab34608..485c4026afae 100644 --- a/pkgs/development/web/kcgi/default.nix +++ b/pkgs/development/web/kcgi/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { pname = "kcgi"; - version = "0.10.7"; + version = "0.10.8"; underscoreVersion = stdenv.lib.replaceChars ["."] ["_"] version; name = "${pname}-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { owner = "kristapsdz"; repo = pname; rev = "VERSION_${underscoreVersion}"; - sha256 = "1z8gfj1v69hhkiyybr41qw7yv3cdxahgk45nipxfb9nmn18p0k8n"; + sha256 = "0ha6r7bcgf6pcn5gbd2sl7835givhda1jql49c232f1iair1yqyp"; }; patchPhase = ''substituteInPlace configure \ --replace /usr/local / From c3679eaa186a99ed7646408809c5df83b4d512da Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 25 Dec 2018 10:29:53 -0800 Subject: [PATCH 077/167] leatherman: 1.5.3 -> 1.5.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/leatherman/versions --- pkgs/development/libraries/leatherman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix index 26e2bd0811c0..ad59674b3ed7 100644 --- a/pkgs/development/libraries/leatherman/default.nix +++ b/pkgs/development/libraries/leatherman/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "leatherman-${version}"; - version = "1.5.3"; + version = "1.5.4"; src = fetchFromGitHub { - sha256 = "04b2wii5d0ypar8wrk0msybdq01z1r23xsvnn67bi2mffvczi5l2"; + sha256 = "08hd6j8w4mgnxj84y26vip1vgrg668jnil5jzq2dk4pfapigfz8l"; rev = version; repo = "leatherman"; owner = "puppetlabs"; From 6cc5f1e7d743c26cd69f5e66af7b6acdc3f3f097 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 3 Jan 2019 14:08:34 -0800 Subject: [PATCH 078/167] enyo-doom: 1.05 -> 1.06 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/enyo-doom/versions --- pkgs/games/enyo-doom/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/enyo-doom/default.nix b/pkgs/games/enyo-doom/default.nix index 6bbb58c1a18c..573190ab8257 100644 --- a/pkgs/games/enyo-doom/default.nix +++ b/pkgs/games/enyo-doom/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "enyo-doom-${version}"; - version = "1.05"; + version = "1.06"; src = fetchFromGitLab { owner = "sdcofer70"; repo = "enyo-doom"; rev = version; - sha256 = "1bmpgqwcp7640dbq1w8bkbk6mkn4nj5yxkvmjrl5wnlg0m1g0jr7"; + sha256 = "17f9qq8gnim6glqlrg7189my4d5y40v76cbpaqgpvrhpyc7z9vf6"; }; nativeBuildInputs = [ cmake ]; From e2a36dde4b01df5694ab993699e3a2bd1df90594 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 2 Jan 2019 20:04:22 -0800 Subject: [PATCH 079/167] pacman: 5.1.1 -> 5.1.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pacman/versions --- pkgs/tools/package-management/pacman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/pacman/default.nix b/pkgs/tools/package-management/pacman/default.nix index b4383fde3409..b0b288b276a8 100644 --- a/pkgs/tools/package-management/pacman/default.nix +++ b/pkgs/tools/package-management/pacman/default.nix @@ -3,11 +3,11 @@ zlib, bzip2, lzma }: stdenv.mkDerivation rec { name = "pacman-${version}"; - version = "5.1.1"; + version = "5.1.2"; src = fetchurl { url = "https://git.archlinux.org/pacman.git/snapshot/pacman-${version}.tar.gz"; - sha256 = "17g497q6ylq73rql9k2ji2l2b2bj3dd4am30z8i6khnhc0x8s2il"; + sha256 = "19fr60h0ffxzjxmlmhrfcq8447l0bkxnh64fwjagqn133d3dgd5x"; }; configureFlags = [ From 61b8c03a78caa35a52ac6364106a8d3a46960294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 13 Jan 2019 10:31:02 +0100 Subject: [PATCH 080/167] metrics job: update for nix-2.2 Fixes https://github.com/NixOS/nixpkgs/issues/53858 I think I managed to keep all numbers the same as before nix-2.2. --- pkgs/top-level/metrics.nix | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/top-level/metrics.nix b/pkgs/top-level/metrics.nix index a199f61020c6..c4253973cbbc 100644 --- a/pkgs/top-level/metrics.nix +++ b/pkgs/top-level/metrics.nix @@ -3,7 +3,7 @@ with pkgs; runCommand "nixpkgs-metrics" - { buildInputs = [ nix time ]; + { nativeBuildInputs = with pkgs.lib; map getBin [ nix time jq ]; requiredSystemFeatures = [ "benchmark" ]; } '' @@ -19,23 +19,26 @@ runCommand "nixpkgs-metrics" shift echo "running $@" - NIX_SHOW_STATS=1 time "$@" 2>&1 > /dev/null | tee stats + NIX_SHOW_STATS=1 time -o stats-time "$@" 2>stats-nix + sed '/^warning:/d' -i stats-nix - cat stats + cat stats-nix; echo; cat stats-time; echo - x=$(sed -e 's/.*time elapsed: \([0-9\.]\+\).*/\1/ ; t ; d' stats) + x=$(jq '.cpuTime' < stats-nix) [[ -n $x ]] || exit 1 echo "$name.time $x s" >> $out/nix-support/hydra-metrics - x=$(sed -e 's/.* \([0-9]\+\)maxresident.*/\1/ ; t ; d' stats) + x=$(sed -e 's/.* \([0-9]\+\)maxresident.*/\1/ ; t ; d' < stats-time) [[ -n $x ]] || exit 1 echo "$name.maxresident $x KiB" >> $out/nix-support/hydra-metrics - x=$(sed -e 's/.*total allocations: \([0-9]\+\) bytes.*/\1/ ; t ; d' stats) + # nix-2.2 also outputs .symbols.bytes but that wasn't summed originally + # https://github.com/NixOS/nix/pull/2392/files#diff-8e6ba8c21672fc1a5f6f606e1e101c74L1762 + x=$(jq '[.envs,.list,.values,.sets] | map(.bytes) | add' < stats-nix) [[ -n $x ]] || exit 1 echo "$name.allocations $x B" >> $out/nix-support/hydra-metrics - x=$(sed -e 's/.*values allocated count: \([0-9]\+\).*/\1/ ; t ; d' stats) + x=$(jq '.values.number' < stats-nix) [[ -n $x ]] || exit 1 echo "$name.values $x" >> $out/nix-support/hydra-metrics } @@ -52,7 +55,9 @@ runCommand "nixpkgs-metrics" num=$(nix-env -f ${nixpkgs} -qa | wc -l) echo "nix-env.qaCount $num" >> $out/nix-support/hydra-metrics - export GC_INITIAL_HEAP_SIZE=128k + # TODO: this has been ignored for some time + # GC Warning: Bad initial heap size 128k - ignoring it. + #export GC_INITIAL_HEAP_SIZE=128k run nix-env.qaAggressive nix-env -f ${nixpkgs} -qa run nix-env.qaDrvAggressive nix-env -f ${nixpkgs} -qa --drv-path --meta --xml From 626233eee6ea309733d2d98625750cca904799a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 13 Jan 2019 10:38:32 +0100 Subject: [PATCH 081/167] linuxPackages.virtualboxGuestAdditions: fix build after xorg 1.20 We still need to force the ABI version to 118 it seems. Close https://github.com/NixOS/nixpkgs/pull/53867 --- .../virtualization/virtualbox/guest-additions/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix index 2ed0fb5cabd4..259f2b268fe3 100644 --- a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix +++ b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix @@ -11,7 +11,7 @@ let # (not via videoDrivers = ["vboxvideo"]). # It's likely to work again in some future update. xserverABI = let abi = xserverVListFunc 0 + xserverVListFunc 1; - in if abi == "119" then "118" else abi; + in if abi == "119" || abi == "120" then "118" else abi; in stdenv.mkDerivation { From 7720c31a20b05eac4b984f3a333a3cf016f4277c Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Sun, 13 Jan 2019 01:39:57 -0800 Subject: [PATCH 082/167] fmt: 5.2.1 -> 5.3.0 Signed-off-by: Cole Mickens --- pkgs/development/libraries/fmt/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/fmt/default.nix b/pkgs/development/libraries/fmt/default.nix index 6c535c3b51f3..6974adf74cec 100644 --- a/pkgs/development/libraries/fmt/default.nix +++ b/pkgs/development/libraries/fmt/default.nix @@ -1,23 +1,16 @@ { stdenv, fetchFromGitHub, fetchpatch, cmake, enableShared ? true }: stdenv.mkDerivation rec { - version = "5.2.1"; + version = "5.3.0"; name = "fmt-${version}"; src = fetchFromGitHub { owner = "fmtlib"; repo = "fmt"; rev = "${version}"; - sha256 = "1cd8yq8va457iir1hlf17ksx11fx2hlb8i4jml8gj1875pizm0pk"; + sha256 = "1hl9s69a5ql5nckc0ifh2fzlgsgv1wsn6yhqkpnrhasqkhj0hgv4"; }; - patches = [ - (fetchpatch { - url = "https://github.com/fmtlib/fmt/commit/9d0c9c4bb145a286f725cd38c90331eee7addc7f.patch"; - sha256 = "1gy93mb1s1mq746kxj4c564k2mppqp5khqdfa6im88rv29cvrl4y"; - }) - ]; - outputs = [ "out" "dev" ]; nativeBuildInputs = [ cmake ]; From 8a8bf886b5df5520de8ccf9e745df3f8a0a855c4 Mon Sep 17 00:00:00 2001 From: elseym Date: Fri, 11 Jan 2019 19:50:15 +0100 Subject: [PATCH 083/167] nixos/containers: explicitly set link up on host for extraVeths --- nixos/modules/virtualisation/containers.nix | 2 ++ nixos/tests/containers-extra_veth.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix index 3dd36f9b12e1..c2e6e9f6a136 100644 --- a/nixos/modules/virtualisation/containers.nix +++ b/nixos/modules/virtualisation/containers.nix @@ -188,6 +188,8 @@ let '' else '' + echo "Bring ${name} up" + ip link set dev ${name} up # Set IPs and routes for ${name} ${optionalString (cfg.hostAddress != null) '' ip addr add ${cfg.hostAddress} dev ${name} diff --git a/nixos/tests/containers-extra_veth.nix b/nixos/tests/containers-extra_veth.nix index b4c48afe48ba..b3d3bce87579 100644 --- a/nixos/tests/containers-extra_veth.nix +++ b/nixos/tests/containers-extra_veth.nix @@ -13,6 +13,7 @@ import ./make-test.nix ({ pkgs, ...} : { virtualisation.memorySize = 768; virtualisation.vlans = []; + networking.useDHCP = false; networking.bridges = { br0 = { interfaces = []; From d88fd61a421564d1d751340ac7036ed971efd557 Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Sun, 13 Jan 2019 19:46:58 +0800 Subject: [PATCH 084/167] pythonPackages.css-parser: init at 1.0.4 --- .../python-modules/css-parser/default.nix | 22 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/python-modules/css-parser/default.nix diff --git a/pkgs/development/python-modules/css-parser/default.nix b/pkgs/development/python-modules/css-parser/default.nix new file mode 100644 index 000000000000..8b2fe0929c7b --- /dev/null +++ b/pkgs/development/python-modules/css-parser/default.nix @@ -0,0 +1,22 @@ +{ lib, buildPythonPackage, fetchPypi }: + +buildPythonPackage rec { + pname = "css-parser"; + version = "1.0.4"; + + src = fetchPypi { + inherit pname version; + sha256 = "c7ab355512ae51334ba6791a7e4d553f87bef17ba2026f1cc9bf3b17a7779d44"; + }; + + # Test suite not included in tarball yet + # See https://github.com/ebook-utils/css-parser/pull/2 + doCheck = false; + + meta = with lib; { + description = "A CSS Cascading Style Sheets library for Python"; + homepage = https://github.com/ebook-utils/css-parser; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ jethro ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b7eb692c4ab8..4232a167782d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1519,6 +1519,8 @@ in { cssutils = callPackage ../development/python-modules/cssutils { }; + css-parser = callPackage ../development/python-modules/css-parser { }; + darcsver = callPackage ../development/python-modules/darcsver { }; dask = callPackage ../development/python-modules/dask { }; From 4e1fb4f3a23e2781a9d3c3702dcd7f82f895998a Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Sun, 13 Jan 2019 19:47:18 +0800 Subject: [PATCH 085/167] calibre: fix altered dependency Calibre has changed its dependency from cssutils to css-parser in https://github.com/kovidgoyal/calibre/commit/dd7d8ea3c4f47e315623d882d6b68339da959ab9 --- pkgs/applications/misc/calibre/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index a9e047170e2a..9b1c99c3eedd 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { poppler_utils libpng imagemagick libjpeg fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils wrapGAppsHook ] ++ (with python2Packages; [ - apsw cssselect cssutils dateutil dnspython html5-parser lxml mechanize netifaces pillow + apsw cssselect css-parser dateutil dnspython html5-parser lxml mechanize netifaces pillow python pyqt5_with_qtwebkit sip regex msgpack # the following are distributed with calibre, but we use upstream instead From c8c53fcb1154999dabac350bebe12611a0f75024 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 9 Apr 2018 15:39:58 +0200 Subject: [PATCH 086/167] modules/profiles/minimal: sound is disabled by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The option is `false` by default since e349ccc77febd45abbd14be14f7de123ec4a4da2, so we don’t need to mention it explicitely in these minimal configs. --- nixos/modules/profiles/headless.nix | 1 - nixos/modules/profiles/minimal.nix | 2 +- nixos/modules/virtualisation/container-config.nix | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/modules/profiles/headless.nix b/nixos/modules/profiles/headless.nix index 131ee272859a..46a9b6a7d8d5 100644 --- a/nixos/modules/profiles/headless.nix +++ b/nixos/modules/profiles/headless.nix @@ -6,7 +6,6 @@ with lib; { - sound.enable = false; boot.vesa = false; # Don't start a tty on the serial consoles. diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix index 138eda117c74..809bedc588f2 100644 --- a/nixos/modules/profiles/minimal.nix +++ b/nixos/modules/profiles/minimal.nix @@ -13,5 +13,5 @@ with lib; documentation.enable = mkDefault false; - sound.enable = mkDefault false; + services.nixosManual.enable = mkDefault false; } diff --git a/nixos/modules/virtualisation/container-config.nix b/nixos/modules/virtualisation/container-config.nix index 78c59d98a5eb..604fb8a75932 100644 --- a/nixos/modules/virtualisation/container-config.nix +++ b/nixos/modules/virtualisation/container-config.nix @@ -7,7 +7,6 @@ with lib; config = mkIf config.boot.isContainer { # Disable some features that are not useful in a container. - sound.enable = mkDefault false; services.udisks2.enable = mkDefault false; powerManagement.enable = mkDefault false; From 0f5b4ecbeadaf26aeded2eb791a5739d9db18fba Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 6 Jan 2019 22:12:38 -0800 Subject: [PATCH 087/167] python37Packages.django_2_1: 2.1.4 -> 2.1.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-django/versions --- pkgs/development/python-modules/django/2_1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/django/2_1.nix b/pkgs/development/python-modules/django/2_1.nix index 57a3198b4d1f..ab2e83e33705 100644 --- a/pkgs/development/python-modules/django/2_1.nix +++ b/pkgs/development/python-modules/django/2_1.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "Django"; - version = "2.1.4"; + version = "2.1.5"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "1mxbrqdzim3xcy18dmd08xh2am0q7whbf0nf6bmnrl43802m3386"; + sha256 = "1hwqqsfg8jgnn039yxrq6xrksk11y7vwpfvba6lk01c3v8c3jffn"; }; patches = stdenv.lib.optionals withGdal [ From 3197cd5d639da20045a31a7e8fbb476723deeb2c Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 13 Jan 2019 15:24:54 +0100 Subject: [PATCH 088/167] now-cli: 12.1.14 -> 13.0.4 --- pkgs/development/web/now-cli/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/web/now-cli/default.nix b/pkgs/development/web/now-cli/default.nix index c82566a17408..d512d5570332 100644 --- a/pkgs/development/web/now-cli/default.nix +++ b/pkgs/development/web/now-cli/default.nix @@ -1,12 +1,12 @@ { stdenv, lib, fetchurl }: stdenv.mkDerivation rec { name = "now-cli-${version}"; - version = "12.1.14"; + version = "13.0.4"; # TODO: switch to building from source, if possible src = fetchurl { url = "https://github.com/zeit/now-cli/releases/download/${version}/now-linux.gz"; - sha256 = "1nmwhb75bqlw7166vr2mwv88mhs940a9lhgw257449d5kgxwqfd1"; + sha256 = "0qiykqrdd1yv6n1kzkzp300j32g682rv4p0l39rgnczdaiqcv9w5"; }; sourceRoot = "."; @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { # ^-- grep points here # # var_* are as described above - # shift_by seems to be safe so long as all patchelf adjustments occur + # shift_by seems to be safe so long as all patchelf adjustments occur # before any locations pointed to by hardcoded offsets var_skip=20 @@ -84,4 +84,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; maintainers = [ maintainers.bhall ]; }; -} \ No newline at end of file +} From 6c909de29a98ab205fd4b55fc5582255895c17c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 13 Jan 2019 15:24:24 +0100 Subject: [PATCH 089/167] python3.pkgs.slixmpp: fix build Also hardcode path to gnupg and correctly run tests. --- .../python-modules/slixmpp/default.nix | 22 +++++++++++----- .../slixmpp/hardcode-gnupg-path.patch | 26 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 4 ++- 3 files changed, 44 insertions(+), 8 deletions(-) create mode 100644 pkgs/development/python-modules/slixmpp/hardcode-gnupg-path.patch diff --git a/pkgs/development/python-modules/slixmpp/default.nix b/pkgs/development/python-modules/slixmpp/default.nix index 7d6d786e6d23..ed90291ba8a0 100644 --- a/pkgs/development/python-modules/slixmpp/default.nix +++ b/pkgs/development/python-modules/slixmpp/default.nix @@ -1,22 +1,30 @@ -{ lib, buildPythonPackage, fetchPypi, pythonOlder, fetchurl, aiodns, pyasn1, pyasn1-modules, gnupg }: +{ lib, buildPythonPackage, fetchPypi, isPy3k, substituteAll, aiodns, pyasn1, pyasn1-modules, aiohttp, gnupg, nose }: buildPythonPackage rec { pname = "slixmpp"; version = "1.4.1"; - disabled = pythonOlder "3.4"; + disabled = !isPy3k; src = fetchPypi { inherit pname version; sha256 = "020acd4507fd00c38835b78b5f338db60d3df840187623e0d41ab2ca89d7ae57"; }; - patchPhase = '' - substituteInPlace slixmpp/thirdparty/gnupg.py \ - --replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'" - ''; + patches = [ + (substituteAll { + src = ./hardcode-gnupg-path.patch; + inherit gnupg; + }) + ]; - propagatedBuildInputs = [ aiodns pyasn1 pyasn1-modules gnupg ]; + propagatedBuildInputs = [ aiodns pyasn1 pyasn1-modules aiohttp ]; + + checkInputs = [ nose ]; + + checkPhase = '' + nosetests --where=tests --exclude=live -i slixtest.py + ''; meta = { description = "Elegant Python library for XMPP"; diff --git a/pkgs/development/python-modules/slixmpp/hardcode-gnupg-path.patch b/pkgs/development/python-modules/slixmpp/hardcode-gnupg-path.patch new file mode 100644 index 000000000000..4bb3b7c73490 --- /dev/null +++ b/pkgs/development/python-modules/slixmpp/hardcode-gnupg-path.patch @@ -0,0 +1,26 @@ +diff --git a/slixmpp/plugins/xep_0027/gpg.py b/slixmpp/plugins/xep_0027/gpg.py +index a0b1df4..7cfb3bd 100644 +--- a/slixmpp/plugins/xep_0027/gpg.py ++++ b/slixmpp/plugins/xep_0027/gpg.py +@@ -41,7 +41,7 @@ class XEP_0027(BasePlugin): + dependencies = set() + stanza = stanza + default_config = { +- 'gpg_binary': 'gpg', ++ 'gpg_binary': '@gnupg@/bin/gpg', + 'gpg_home': '', + 'use_agent': True, + 'keyring': None, +diff --git a/slixmpp/thirdparty/gnupg.py b/slixmpp/thirdparty/gnupg.py +index a89289f..46dd9b7 100644 +--- a/slixmpp/thirdparty/gnupg.py ++++ b/slixmpp/thirdparty/gnupg.py +@@ -468,7 +468,7 @@ class GPG(object): + } + + "Encapsulate access to the gpg executable" +- def __init__(self, gpgbinary='gpg', gnupghome=None, verbose=False, ++ def __init__(self, gpgbinary='@gnupg@/bin/gpg', gnupghome=None, verbose=False, + use_agent=False, keyring=None): + """Initialize a GPG process wrapper. Options are: + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f46c94674612..749878f4e2e3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3151,7 +3151,9 @@ in { sleekxmpp = callPackage ../development/python-modules/sleekxmpp { }; - slixmpp = callPackage ../development/python-modules/slixmpp { }; + slixmpp = callPackage ../development/python-modules/slixmpp { + inherit (pkgs) gnupg; + }; netaddr = callPackage ../development/python-modules/netaddr { }; From 63fbdaf447c5813731f25f616ef2f6bb9995d5b5 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 06:30:49 -0800 Subject: [PATCH 090/167] python37Packages.pycares: 2.3.0 -> 2.4.0 (#53545) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pycares/versions --- pkgs/development/python-modules/pycares/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pycares/default.nix b/pkgs/development/python-modules/pycares/default.nix index 4755bf908fda..341e9519d80c 100644 --- a/pkgs/development/python-modules/pycares/default.nix +++ b/pkgs/development/python-modules/pycares/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "pycares"; - version = "2.3.0"; + version = "2.4.0"; src = fetchPypi { inherit pname version; - sha256 = "0h4fxw5drrhfyslzmfpljk0qnnpbhhb20hnnndzahhbwylyw1x1n"; + sha256 = "15pwsxsj1nr33n6x2918bfbzdnqv1qkwd2d5jgvxsm81zxnvgk0f"; }; propagatedBuildInputs = [ pkgs.c-ares ]; From 15eb4c361c749939a76ba0bf78a8fa9e6d2607ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 13 Jan 2019 15:34:01 +0100 Subject: [PATCH 091/167] python.pkgs.pyfakefs: 3.5.5 -> 3.5.6 --- .../python-modules/pyfakefs/default.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/pyfakefs/default.nix b/pkgs/development/python-modules/pyfakefs/default.nix index c05299d418fa..3ec5998cadd7 100644 --- a/pkgs/development/python-modules/pyfakefs/default.nix +++ b/pkgs/development/python-modules/pyfakefs/default.nix @@ -1,16 +1,12 @@ -{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }: +{ stdenv, buildPythonPackage, fetchPypi, python, pytest, glibcLocales }: buildPythonPackage rec { - version = "3.5.5"; + version = "3.5.6"; pname = "pyfakefs"; - # no tests in PyPI tarball - # https://github.com/jmcgeheeiv/pyfakefs/pull/361 - src = fetchFromGitHub { - owner = "jmcgeheeiv"; - repo = pname; - rev = "v${version}"; - sha256 = "1pww444ih4bf84a0jgl1r446mjywhlls890mnw76flx8maahlik1"; + src = fetchPypi { + inherit pname version; + sha256 = "efe9c318b2a37ae498a555889684c30ccb6a1b06bd391cb3baf0eb5ba68e9062"; }; postPatch = '' From aca17ae8491d72a30640e1125a8650fb4929da10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 13 Jan 2019 15:46:17 +0100 Subject: [PATCH 092/167] pythonPackages.pivy: provide libs missed by the linker It builds again now, though it seems outdated. I suspect this is needed after the large X update. --- pkgs/development/python-modules/pivy/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pivy/default.nix b/pkgs/development/python-modules/pivy/default.nix index ee02f2cb5d23..4619400b6e35 100644 --- a/pkgs/development/python-modules/pivy/default.nix +++ b/pkgs/development/python-modules/pivy/default.nix @@ -16,7 +16,10 @@ buildPythonPackage rec { sha256 = "18n14ha2d3j3ghg2f2aqnf2mks94nn7ma9ii7vkiwcay93zm82cf"; }; - buildInputs = [ pkgs.swig1 pkgs.coin3d pkgs.soqt pkgs.libGLU_combined pkgs.xorg.libXi ]; + buildInputs = with pkgs; with xorg; [ + swig1 coin3d soqt libGLU_combined + libXi libXext libSM libICE libX11 + ]; meta = with stdenv.lib; { homepage = http://pivy.coin3d.org/; From 6a1f20918739b798e58e5a22a89713a876b16b46 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Sun, 13 Jan 2019 15:13:10 +0100 Subject: [PATCH 093/167] python: scikitlearn: 0.20.0 -> 0.20.2 --- pkgs/development/python-modules/scikitlearn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scikitlearn/default.nix b/pkgs/development/python-modules/scikitlearn/default.nix index c6cd2efcc2fe..5ec207c55950 100644 --- a/pkgs/development/python-modules/scikitlearn/default.nix +++ b/pkgs/development/python-modules/scikitlearn/default.nix @@ -5,13 +5,13 @@ buildPythonPackage rec { pname = "scikit-learn"; - version = "0.20.0"; + version = "0.20.2"; # UnboundLocalError: local variable 'message' referenced before assignment disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534 src = fetchPypi { inherit pname version; - sha256 = "064cbxsis6m7l6pr09ijjwqdv0c0yrfnazabwq8p09gcz1qxklcp"; + sha256 = "1ri9kx0yrn85h6ivkaja35afbyhimxn8lsairgns2wi5xv3wfnxw"; }; buildInputs = [ pillow gfortran glibcLocales ]; From 3a16083fe077cca4a20deafdacbbd1d29c6fe5e6 Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Sun, 7 Oct 2018 08:32:08 +0200 Subject: [PATCH 094/167] gnome3.nautilus-python: init at 1.2.2 --- pkgs/desktops/gnome-3/default.nix | 2 + .../gnome-3/misc/nautilus-python/default.nix | 62 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 pkgs/desktops/gnome-3/misc/nautilus-python/default.nix diff --git a/pkgs/desktops/gnome-3/default.nix b/pkgs/desktops/gnome-3/default.nix index 75c474faea0d..71401c8ead36 100644 --- a/pkgs/desktops/gnome-3/default.nix +++ b/pkgs/desktops/gnome-3/default.nix @@ -338,6 +338,8 @@ lib.makeScope pkgs.newScope (self: with self; { metacity = callPackage ./misc/metacity { }; + nautilus-python = callPackage ./misc/nautilus-python { }; + pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { }; gtkhtml = callPackage ./misc/gtkhtml { }; diff --git a/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix b/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix new file mode 100644 index 000000000000..4aec5ba4d848 --- /dev/null +++ b/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix @@ -0,0 +1,62 @@ +{ stdenv +, fetchurl +, pkgconfig +, which +, gtk-doc +, docbook_xsl +, docbook_xml_dtd_412 +, python3 +, ncurses +, nautilus +, gtk3 +, gnome3 +}: + +stdenv.mkDerivation rec { + pname = "nautilus-python"; + version = "1.2.2"; + + outputs = [ "out" "dev" "doc" ]; + + src = fetchurl { + url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; + sha256 = "04pib6fan6cq8x0fhf5gll2f5d2dh5pxrhj79qhi5l1yc7ys7kch"; + }; + + nativeBuildInputs = [ + pkgconfig + which + gtk-doc + docbook_xsl + docbook_xml_dtd_412 + ]; + + buildInputs = [ + python3 + ncurses # required by python3 + python3.pkgs.pygobject3 + nautilus + gtk3 # required by libnautilus-extension + ]; + + makeFlags = [ + "PYTHON_LIB_LOC=${python3}/lib" + ]; + + PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/lib/nautilus/extensions-3.0"; + + passthru = { + updateScript = gnome3.updateScript { + packageName = pname; + attrPath = "gnome3.${pname}"; + }; + }; + + meta = with stdenv.lib; { + description = "Python bindings for the Nautilus Extension API"; + homepage = https://wiki.gnome.org/Projects/NautilusPython; + license = licenses.gpl2Plus; + maintainers = gnome3.maintainers; + platforms = platforms.unix; + }; +} From 538d1a0e0e519407d8719d3adb6535a073bcd575 Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Thu, 20 Sep 2018 22:31:51 +0200 Subject: [PATCH 095/167] gnomeExtensions.gsconnect: init at 20 --- .../gnome-3/extensions/gsconnect/default.nix | 91 +++++++++++++++++++ .../extensions/gsconnect/fix-paths.patch | 44 +++++++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 136 insertions(+) create mode 100644 pkgs/desktops/gnome-3/extensions/gsconnect/default.nix create mode 100644 pkgs/desktops/gnome-3/extensions/gsconnect/fix-paths.patch diff --git a/pkgs/desktops/gnome-3/extensions/gsconnect/default.nix b/pkgs/desktops/gnome-3/extensions/gsconnect/default.nix new file mode 100644 index 000000000000..9c2f72cce664 --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/gsconnect/default.nix @@ -0,0 +1,91 @@ +{ stdenv, fetchFromGitHub, substituteAll, python3, openssl +, meson, ninja, libxml2, pkgconfig, gobject-introspection, wrapGAppsHook +, glib, gtk3, at-spi2-core, upower, openssh, gnome3 }: + +stdenv.mkDerivation rec { + name = "gnome-shell-gsconnect-${version}"; + version = "20"; + + src = fetchFromGitHub { + owner = "andyholmes"; + repo = "gnome-shell-extension-gsconnect"; + rev = "v${version}"; + sha256 = "1x5lrb4hdw482hr5dh4ki0p1651w1s0ijs96vs65vrh15cd60h02"; + }; + + patches = [ + # Make typelibs available in the extension + (substituteAll { + src = ./fix-paths.patch; + gapplication = "${glib.bin}/bin/gapplication"; + mutter_gsettings_path = "${gnome3.mutter}/share/gsettings-schemas/${gnome3.mutter.name}/glib-2.0/schemas"; + }) + ]; + + nativeBuildInputs = [ + meson ninja pkgconfig + gobject-introspection # for locating typelibs + wrapGAppsHook # for wrapping daemons + libxml2 # xmllint + ]; + + buildInputs = [ + (python3.withPackages (pkgs: [ python3.pkgs.pygobject3 ])) # for folks.py + glib # libgobject + gtk3 + at-spi2-core # atspi + gnome3.folks # libfolks + gnome3.nautilus # TODO: this contaminates the package with nautilus and gnome-autoar typelibs but it is only needed for the extension + gnome3.nautilus-python + gnome3.gsound + upower + gnome3.caribou + gnome3.gjs # for running daemon + gnome3.evolution-data-server # folks.py requires org.gnome.Evolution.DefaultSources gsettings; TODO: hardcode the schema path to the library (similarly to https://github.com/NixOS/nixpkgs/issues/47226) + ]; + + mesonFlags = [ + "-Dgnome_shell_libdir=${gnome3.gnome-shell}/lib" + "-Dgsettings_schemadir=${placeholder "out"}/share/gsettings-schemas/${name}/glib-2.0/schemas" + "-Dchrome_nmhdir=${placeholder "out"}/etc/opt/chrome/native-messaging-hosts" + "-Dchromium_nmhdir=${placeholder "out"}/etc/chromium/native-messaging-hosts" + "-Dopenssl_path=${openssl}/bin/openssl" + "-Dsshadd_path=${openssh}/bin/ssh-add" + "-Dsshkeygen_path=${openssh}/bin/ssh-keygen" + "-Dpost_install=true" + ]; + + postPatch = '' + patchShebangs meson/nmh.sh + patchShebangs meson/post-install.sh + + # TODO: do not include every typelib everywhere + # for example, we definitely do not need nautilus + for file in src/extension.js src/prefs.js; do + substituteInPlace "$file" \ + --subst-var-by typelibPath "$GI_TYPELIB_PATH" + done + ''; + + preFixup = '' + # TODO: figure out why folks GIR does not contain shared-library attribute + # https://github.com/NixOS/nixpkgs/issues/47226 + gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ gnome3.folks ]}") + ''; + + postFixup = '' + # Let’s wrap the daemons + for file in $out/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/{{daemon,nativeMessagingHost}.js,components/folks.py}; do + echo "Wrapping program ''${file}" + wrapProgram "''${file}" "''${gappsWrapperArgs[@]}" + done + ''; + + meta = with stdenv.lib; { + description = "KDE Connect implementation for Gnome Shell"; + homepage = https://github.com/andyholmes/gnome-shell-extension-gsconnect/wiki; + license = licenses.gpl2; + maintainers = with maintainers; [ etu ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/extensions/gsconnect/fix-paths.patch b/pkgs/desktops/gnome-3/extensions/gsconnect/fix-paths.patch new file mode 100644 index 000000000000..b32d0af32721 --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/gsconnect/fix-paths.patch @@ -0,0 +1,44 @@ +--- a/data/org.gnome.Shell.Extensions.GSConnect.desktop ++++ b/data/org.gnome.Shell.Extensions.GSConnect.desktop +@@ -1,7 +1,7 @@ + [Desktop Entry] + Type=Application + Name=GSConnect +-Exec=gapplication launch org.gnome.Shell.Extensions.GSConnect %U ++Exec=@gapplication@ launch org.gnome.Shell.Extensions.GSConnect %U + Terminal=false + NoDisplay=true + Icon=org.gnome.Shell.Extensions.GSConnect +--- a/src/extension.js ++++ b/src/extension.js +@@ -1,5 +1,7 @@ + 'use strict'; + ++'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path)); ++ + const Gio = imports.gi.Gio; + const GLib = imports.gi.GLib; + const Gtk = imports.gi.Gtk; +--- a/src/prefs.js ++++ b/src/prefs.js +@@ -1,5 +1,7 @@ + 'use strict'; + ++'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path)); ++ + const Gio = imports.gi.Gio; + const GLib = imports.gi.GLib; + const Gtk = imports.gi.Gtk; +--- a/src/service/__init__.js ++++ b/src/service/__init__.js +@@ -600,7 +600,9 @@ + /** + * Convenience functions for saving/restoring window geometry + */ +-const _mutter = new Gio.Settings({schema_id: 'org.gnome.mutter'}); ++const _schema_source = Gio.SettingsSchemaSource.new_from_directory('@mutter_gsettings_path@', Gio.SettingsSchemaSource.get_default(), true); ++const _schema = _schema_source.lookup('org.gnome.mutter', false); ++const _mutter = new Gio.Settings({settings_schema: _schema}); + + Gtk.Window.prototype.restore_geometry = function() { + let [width, height] = this.settings.get_value('window-size').deep_unpack(); diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dc50e9d44672..8c64951dfe51 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21245,6 +21245,7 @@ in clipboard-indicator = callPackage ../desktops/gnome-3/extensions/clipboard-indicator { }; dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { }; dash-to-panel = callPackage ../desktops/gnome-3/extensions/dash-to-panel { }; + gsconnect = callPackage ../desktops/gnome-3/extensions/gsconnect { }; icon-hider = callPackage ../desktops/gnome-3/extensions/icon-hider { }; impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix { }; mediaplayer = callPackage ../desktops/gnome-3/extensions/mediaplayer { }; From e35acd7f1cbaef4cdcebef4f694a4f3b006eda35 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 7 Jan 2019 05:45:52 +0100 Subject: [PATCH 096/167] gnome3: link nautilus-python paths to environment --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index ba6d333b534e..1f005b2cf044 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -179,7 +179,10 @@ in { networkmanager-iodine networkmanager-l2tp; }; # Needed for themes and backgrounds - environment.pathsToLink = [ "/share" ]; + environment.pathsToLink = [ + "/share" + "/share/nautilus-python/extensions" + ]; }; From 041ff813f424e96d4e3581bb33df217cabed6db3 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sun, 13 Jan 2019 19:37:32 +0100 Subject: [PATCH 097/167] inxi: init at 3.0.30-1 --- pkgs/tools/system/inxi/default.nix | 30 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/system/inxi/default.nix diff --git a/pkgs/tools/system/inxi/default.nix b/pkgs/tools/system/inxi/default.nix new file mode 100644 index 000000000000..02379bcfe5c8 --- /dev/null +++ b/pkgs/tools/system/inxi/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchFromGitHub, perl }: + +stdenv.mkDerivation rec { + name = "inxi-${version}"; + version = "3.0.30-1"; + + src = fetchFromGitHub { + owner = "smxi"; + repo = "inxi"; + rev = version; + sha256 = "04dkws3716clscl6iq3sy6m822rqzwdg5mn03l0vhcdbqcng46s6"; + }; + + buildInputs = [ perl ]; + + installPhase = '' + mkdir -p $out/bin + cp inxi $out/bin/ + mkdir -p $out/share/man/man1 + cp inxi.1 $out/share/man/man1/ + ''; + + meta = with stdenv.lib; { + description = "A full featured CLI system information tool"; + homepage = https://smxi.org/docs/inxi.htm; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ primeos ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8c64951dfe51..524741a0da04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3485,6 +3485,8 @@ in invoice2data = callPackage ../tools/text/invoice2data { }; + inxi = callPackage ../tools/system/inxi { }; + iodine = callPackage ../tools/networking/iodine { }; ioping = callPackage ../tools/system/ioping { }; From 303490dec5dead7f1cf84026bac60b260a516916 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 6 Jan 2019 21:01:34 -0800 Subject: [PATCH 098/167] python37Packages.pysmi: 0.3.2 -> 0.3.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pysmi/versions --- pkgs/development/python-modules/pysmi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysmi/default.nix b/pkgs/development/python-modules/pysmi/default.nix index 329daf693b0b..723d95b89a57 100644 --- a/pkgs/development/python-modules/pysmi/default.nix +++ b/pkgs/development/python-modules/pysmi/default.nix @@ -5,12 +5,12 @@ }: buildPythonPackage rec { - version = "0.3.2"; + version = "0.3.3"; pname = "pysmi"; src = fetchPypi { inherit pname version; - sha256 = "309039ab9bd458cc721692ffff10b4ad2c4a8e731e6507c34866ca2727323353"; + sha256 = "0bzhmi4691rf306n4y82js52532h3fp1sy6phvh6hnms6nww4daf"; }; propagatedBuildInputs = [ ply ]; From f9bd1533773e5fd3576b07cd7a39215b0cb3dad9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 6 Jan 2019 22:32:51 -0800 Subject: [PATCH 099/167] python37Packages.numpy-stl: 2.7.0 -> 2.9.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-numpy-stl/versions --- pkgs/development/python-modules/numpy-stl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/numpy-stl/default.nix b/pkgs/development/python-modules/numpy-stl/default.nix index e4a9aa67dfda..0776e4fd792f 100644 --- a/pkgs/development/python-modules/numpy-stl/default.nix +++ b/pkgs/development/python-modules/numpy-stl/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "numpy-stl"; - version = "2.7.0"; + version = "2.9.0"; src = fetchPypi { inherit pname version; - sha256 = "ede911118cfee5a8fd4c341b418fc55bfcd70a557686febc4efb6693297e3aa2"; + sha256 = "0mh7p19rhx800dd54ij1pgln5ny03fdyvadyhrsb380fgjby2nh3"; }; checkInputs = [ pytest pytestrunner ]; From 6d3a653f10489158e9b3c223f16c8db9b0e7bc50 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Sun, 13 Jan 2019 21:26:05 +0100 Subject: [PATCH 100/167] openssh: apply CVE-2018-20685 patch --- pkgs/tools/networking/openssh/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 7b3c00894667..6ce574b9cdc4 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -41,6 +41,15 @@ stdenv.mkDerivation rec { # See discussion in https://github.com/NixOS/nixpkgs/pull/16966 ./dont_create_privsep_path.patch + + # CVE-2018-20685, can probably be dropped with next version bump + # See https://sintonen.fi/advisories/scp-client-multiple-vulnerabilities.txt + # for details + (fetchpatch { + name = "CVE-2018-20685.patch"; + url = https://github.com/openssh/openssh-portable/commit/6010c0303a422a9c5fa8860c061bf7105eb7f8b2.patch; + sha256 = "0q27i9ymr97yb628y44qi4m11hk5qikb1ji1vhvax8hp18lwskds"; + }) ] ++ optional withGssapiPatches (assert withKerberos; gssapiPatch); From c88c0538eae5e01a7735ed3b3d2ad5cf38cc1b38 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 13 Jan 2019 15:49:04 -0500 Subject: [PATCH 101/167] linux: 4.4.169 -> 4.4.170 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 2e83e73df2e6..7f5be8957aff 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,11 +1,11 @@ { stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.4.169"; + version = "4.4.170"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1aah2qmifj15kcck4m6p00zz0d80afs22bg44y3n4l926f0b1w86"; + sha256 = "04fia71k7hi9kmxmrqsdsi4nl6jw7vn1wkmdyh63hm89yz8dmy64"; }; } // (args.argsOverride or {})) From 887fd04623b4aea16cd9326fec76a76f8fa793ee Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 13 Jan 2019 15:49:10 -0500 Subject: [PATCH 102/167] linux: 4.9.149 -> 4.9.150 --- pkgs/os-specific/linux/kernel/linux-4.9.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix index 2b2d3647c21d..5001b063e334 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.9.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix @@ -1,11 +1,11 @@ { stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.9.149"; + version = "4.9.150"; extraMeta.branch = "4.9"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "10yp6pf91h927bxnb32qd6y13m0a230d44gp70ifd6cg5ssd6nqn"; + sha256 = "1r0pf44j523a142skgcy97ia32r46gg3ivzg1ziy8cxll9xigk4l"; }; } // (args.argsOverride or {})) From 0a8b109e810df58454db66ff67b2434adbb2bffd Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 13 Jan 2019 15:49:23 -0500 Subject: [PATCH 103/167] linux: 4.14.92 -> 4.14.93 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index d97b921dbae3..6b314195bf88 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.14.92"; + version = "4.14.93"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1ba5sx66b4wlxz4ix5qm2vhla7fl01dd81xjx5nl0zm4m6miz7sz"; + sha256 = "1b8v4962b0j9fkipqldp0agss2hgvlhn24krw619f27p0jr5y4mv"; }; } // (args.argsOverride or {})) From bbc1f0c452750393bad4bbb73a8f7453933ec7f4 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 13 Jan 2019 15:49:34 -0500 Subject: [PATCH 104/167] linux: 4.19.14 -> 4.19.15 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 89c9e7207226..bb3850e5a6d0 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.14"; + version = "4.19.15"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0ihwywjz2jddrcd1883sy27b43mz212asrdiimnih82ivm4nhci4"; + sha256 = "0v9nbkxc017ydcah5q0yhrlq1f7awc33m6w4gpif2f0wvxfimxkq"; }; } // (args.argsOverride or {})) From bddaa4bc16ad66423d772610c02714f2ab2744ad Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 13 Jan 2019 15:49:47 -0500 Subject: [PATCH 105/167] linux: 4.20.1 -> 4.20.2 --- pkgs/os-specific/linux/kernel/linux-4.20.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.20.nix b/pkgs/os-specific/linux/kernel/linux-4.20.nix index 042afd732946..d21f5ed4c8c5 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.20.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.20.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.20.1"; + version = "4.20.2"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "13qrsbfmhjjn97cd0pv40i7m7gxbgv5adkzfyvpcvd7vzcgny2a5"; + sha256 = "0sc60xj10r4pmlxisc57fy4f5pr7wgkgc96qc46cyj656fcbhjgb"; }; } // (args.argsOverride or {})) From 27609af22044d0f9d32e97dc24b53cbc82196f22 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 13:05:01 -0800 Subject: [PATCH 106/167] meld: 3.18.3 -> 3.20.0 (#53595) Update and enable tests --- .../version-management/meld/default.nix | 73 ++++++++++--------- 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix index bc45d8bb7528..6456dd75b522 100644 --- a/pkgs/applications/version-management/meld/default.nix +++ b/pkgs/applications/version-management/meld/default.nix @@ -1,48 +1,53 @@ -{ stdenv, fetchurl, itstool, python3Packages, intltool, wrapGAppsHook -, libxml2, gobject-introspection, gtk3, gnome3, cairo, file +{ stdenv, fetchurl, itstool, python3, intltool, wrapGAppsHook +, libxml2, gobject-introspection, gtk3, gtksourceview, gnome3 +, dbus, xvfb_run }: - -let +python3.pkgs.buildPythonApplication rec { pname = "meld"; - version = "3.18.3"; - inherit (python3Packages) python buildPythonApplication pycairo pygobject3; -in buildPythonApplication rec { - name = "${pname}-${version}"; + version = "3.20.0"; src = fetchurl { - url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "0vn1qx60f8113x8wh7f4bflhzir1vx7p0wdfi7nbip6fh8gaf3ln"; + url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; + sha256 = "11khi1sg02k3b9qdag3r939cwi27cql4kjim7jhxf9ckfhpzwh6b"; }; - buildInputs = [ - intltool wrapGAppsHook itstool libxml2 - gnome3.gtksourceview gnome3.gsettings-desktop-schemas pycairo cairo - gnome3.defaultIconTheme gnome3.dconf file + nativeBuildInputs = [ + intltool itstool libxml2 gobject-introspection wrapGAppsHook ]; - propagatedBuildInputs = [ gobject-introspection pygobject3 gtk3 ]; + buildInputs = [ + gtk3 gtksourceview gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme + ]; + propagatedBuildInputs = with python3.pkgs; [ pygobject3 pycairo ]; + checkInputs = [ xvfb_run python3.pkgs.pytest dbus ]; installPhase = '' - mkdir -p "$out/lib/${python.libPrefix}/site-packages" - - export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH" - - ${python}/bin/${python.executable} setup.py install \ - --install-lib=$out/lib/${python.libPrefix}/site-packages \ - --prefix="$out" - - mkdir -p $out/share/gsettings-schemas/$name - mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name/ + runHook preInstall + ${python3.interpreter} setup.py install --prefix=$out + runHook postInstall ''; - patchPhase = '' - patchShebangs bin/meld + checkPhase = '' + runHook preCheck + + # Unable to create user data directory '/homeless-shelter/.local/share' for storing the recently used files list: Permission denied + mkdir test-home + export HOME=$(pwd)/test-home + + # GLib.GError: gtk-icon-theme-error-quark: Icon 'meld-change-apply-right' not present in theme Adwaita + export XDG_DATA_DIRS="$out/share:$XDG_DATA_DIRS" + + # ModuleNotFoundError: No module named 'meld' + export PYTHONPATH=$out/${python3.sitePackages}:$PYTHONPATH + + # Gtk-CRITICAL **: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed + xvfb-run -s '-screen 0 800x600x24' dbus-run-session \ + --config-file=${dbus.daemon}/share/dbus-1/session.conf \ + py.test + + runHook postCheck ''; - pythonPath = [ gtk3 ]; - - doCheck = false; - passthru = { updateScript = gnome3.updateScript { packageName = pname; @@ -52,8 +57,8 @@ in buildPythonApplication rec { meta = with stdenv.lib; { description = "Visual diff and merge tool"; homepage = http://meldmerge.org/; - license = stdenv.lib.licenses.gpl2; - platforms = platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = [ maintainers.mimadrid ]; + license = licenses.gpl2; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ jtojnar mimadrid ]; }; } From 036ee02fa38ee4100019e574986bc0704afc5312 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 13:30:23 -0800 Subject: [PATCH 107/167] jackett: 0.10.504 -> 0.10.566 (#53313) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jackett/versions --- pkgs/servers/jackett/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index 41da87d4065c..c35a8f22320b 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jackett-${version}"; - version = "0.10.504"; + version = "0.10.566"; src = fetchurl { url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; - sha256 = "1nqci6a9is0kf0vn8wlbfbynllf0pkndcb1z49d1n3wwc8dhji86"; + sha256 = "10rfddwbvf6qrf217vrvn3rjbmlffl86c0v63yi32fv8vchc12b0"; }; buildInputs = [ makeWrapper ]; From b1957d6428eac4d0a469ab4d161659954f29f68f Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 13 Jan 2019 16:31:10 -0500 Subject: [PATCH 108/167] detect-secrets: 0.11.0 -> 0.11.4 (#53893) --- pkgs/development/tools/detect-secrets/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/detect-secrets/default.nix b/pkgs/development/tools/detect-secrets/default.nix index c341e2eb7101..76bdb6bb6ba4 100644 --- a/pkgs/development/tools/detect-secrets/default.nix +++ b/pkgs/development/tools/detect-secrets/default.nix @@ -2,20 +2,20 @@ buildPythonApplication rec { pname = "detect-secrets"; - version = "0.11.0"; + version = "0.11.4"; # PyPI tarball doesn't ship tests src = fetchFromGitHub { owner = "Yelp"; repo = "detect-secrets"; rev = "v${version}"; - sha256 = "11r11q6d8aajqqnhhz4lsa93qf1x745331kl9jd3z4y4w91l4gdz"; + sha256 = "1ydigridkjirrfhyfr8barw0yrd4hw6w0k9g7mbd0gdqng6gpmgc"; }; - propagatedBuildInputs = [ pyyaml unidiff ] + propagatedBuildInputs = [ pyyaml ] ++ lib.optionals isPy27 [ configparser enum34 future functools32 ]; - checkInputs = [ mock pytest ]; + checkInputs = [ mock pytest unidiff ]; # deselect tests which require git setup checkPhase = '' From 26b492b2072ac6e5e7202fa8931eceefac16ab1e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 13:34:45 -0800 Subject: [PATCH 109/167] minimap2: 2.10 -> 2.14 (#52845) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/minimap2/versions --- pkgs/applications/science/biology/minimap2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/biology/minimap2/default.nix b/pkgs/applications/science/biology/minimap2/default.nix index ae278f76792b..f8a0de562cfa 100644 --- a/pkgs/applications/science/biology/minimap2/default.nix +++ b/pkgs/applications/science/biology/minimap2/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; pname = "minimap2"; - version = "2.10"; + version = "2.14"; src = fetchFromGitHub { repo = pname; owner = "lh3"; rev = "v${version}"; - sha256 = "0b35w14j9h2q9qbh3sxc518mcx0ifsvwqr1nv70rv6mgy1cqqkw0"; + sha256 = "0743qby7ghyqbka5c1z3bi4kr5whm07jasw2pg8gikyibz6q4lih"; }; buildInputs = [ zlib ]; From df3ebbea60ec9052dc29bb0ae17c83e972937abc Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 13:39:03 -0800 Subject: [PATCH 110/167] libdsk: 1.5.8 -> 1.5.9 (#52849) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdsk/versions --- pkgs/misc/emulators/libdsk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/libdsk/default.nix b/pkgs/misc/emulators/libdsk/default.nix index 9a99c6ddb6f9..a3177b07f08b 100644 --- a/pkgs/misc/emulators/libdsk/default.nix +++ b/pkgs/misc/emulators/libdsk/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libdsk-${version}"; - version = "1.5.8"; + version = "1.5.9"; src = fetchurl { url = "https://www.seasip.info/Unix/LibDsk/${name}.tar.gz"; - sha256 = "1fdypk6gjkb4i2ghnbn3va50y69pdym51jx3iz9jns4636z4sfqd"; + sha256 = "1r0y07qd3zixi53vql5yqakvv77qm86s6qjwypk9ckggrp5r3w60"; }; meta = with stdenv.lib; { From ac38750e32c4085d5b33c1a091ff20dc3b5f6dd3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 13:39:55 -0800 Subject: [PATCH 111/167] ocamlPackages.rope: 0.6 -> 0.6.1 (#52829) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocaml4.06.1-rope/versions --- pkgs/development/ocaml-modules/rope/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/rope/default.nix b/pkgs/development/ocaml-modules/rope/default.nix index 4353c606d618..b797af0a702a 100644 --- a/pkgs/development/ocaml-modules/rope/default.nix +++ b/pkgs/development/ocaml-modules/rope/default.nix @@ -3,9 +3,9 @@ let param = if stdenv.lib.versionAtLeast ocaml.version "4.03" then { - version = "0.6"; - url = " https://github.com/Chris00/ocaml-rope/releases/download/0.6/rope-0.6.tbz"; - sha256 = "06pkbnkad2ck50jn59ggwv154yd9vb01abblihvam6p27m4za1pc"; + version = "0.6.1"; + url = " https://github.com/Chris00/ocaml-rope/releases/download/0.6.1/rope-0.6.1.tbz"; + sha256 = "1zqh28jz1zjb0l354wi1046qpkwmk582ssz0gsqh6d44wpspdxk2"; buildInputs = [ dune ]; extra = { buildPhase = "dune build -p rope"; From a4badf3a30799f4aec2ef46a0d8b428a9db01465 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 13 Jan 2019 15:59:11 -0600 Subject: [PATCH 112/167] trilium: 0.27.3 -> 0.27.4 (#53784) https://github.com/zadam/trilium/releases/tag/v0.27.4 --- pkgs/applications/office/trilium/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/trilium/default.nix b/pkgs/applications/office/trilium/default.nix index df93f00dfa26..00d8bb0d275b 100644 --- a/pkgs/applications/office/trilium/default.nix +++ b/pkgs/applications/office/trilium/default.nix @@ -13,11 +13,11 @@ let in stdenv.mkDerivation rec { name = "trilium-${version}"; - version = "0.27.3"; + version = "0.27.4"; src = fetchurl { url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.7z"; - sha256 = "07r4gwf4l76x1m6xlvrfad075kmmpdr4n6vd36vrxsf475rhlmsp"; + sha256 = "1qb11axaifw5xjycrc6qsyd8h36rgjd7rjql8895v8agckf3g2c1"; }; nativeBuildInputs = [ From 2e03f923f737063d8ba45783b9599aa9f41923a8 Mon Sep 17 00:00:00 2001 From: Vladyslav Mykhailichenko Date: Mon, 14 Jan 2019 00:06:21 +0200 Subject: [PATCH 113/167] tokei: 8.0.0 -> 9.0.0 --- pkgs/development/tools/misc/tokei/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix index 831a9ec62780..66d9d521b058 100644 --- a/pkgs/development/tools/misc/tokei/default.nix +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -2,19 +2,19 @@ rustPlatform.buildRustPackage rec { name = "tokei-${version}"; - version = "8.0.0"; + version = "9.0.0"; src = fetchFromGitHub { owner = "Aaronepower"; repo = "tokei"; rev = "v${version}"; - sha256 = "1sfwmjlvjrd8r0ynnayw7g3514mfiky2j30byphaagdw4jkxbd7c"; + sha256 = "04d32w3yc98f6swxap19d6vrv8vi3w843cgnmf28mxcy4nbnls1n"; }; - cargoSha256 = "0v29gych757h7vv5jsg7rpl705gpqn0ya8ai53582qd2cc6yz4c3"; + cargoSha256 = "0vjb4j8qwlmvw55i2jif1a7hwv928h90dzwlpcqb0h6nlv812fav"; meta = with stdenv.lib; { - description = "Count code, quickly"; + description = "Program that displays statistics about your code"; homepage = https://github.com/Aaronepower/tokei; license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ gebner ]; From d6fc1163e874a766de1b7fc03da107229182ab5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Rauscher?= Date: Sun, 13 Jan 2019 22:17:16 +0000 Subject: [PATCH 114/167] bloop: 1.1.2 -> 1.2.1 (#53093) --- pkgs/development/tools/build-managers/bloop/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/bloop/default.nix b/pkgs/development/tools/build-managers/bloop/default.nix index db337137bb1a..671498eec7c9 100644 --- a/pkgs/development/tools/build-managers/bloop/default.nix +++ b/pkgs/development/tools/build-managers/bloop/default.nix @@ -2,7 +2,7 @@ let baseName = "bloop"; - version = "1.1.2"; + version = "1.2.1"; deps = stdenv.mkDerivation { name = "${baseName}-deps-${version}"; buildCommand = '' @@ -16,14 +16,14 @@ let ''; outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "0ki4xh8z31nv42jik998r7gvsxcm0vysx83w0nyvbhi18cah1qh6"; + outputHash = "1hr9d9fzp1vd60iqxbn316vzgayhsx9cffl1jclmdycqv0yzgfx3"; }; in stdenv.mkDerivation rec { name = "${baseName}-${version}"; # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py - nailgunCommit = "dc1dd806"; + nailgunCommit = "933f482b"; buildInputs = [ jdk makeWrapper deps ]; From 487d2a7ccdf520e60b77809681e4ca377a7b741d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 13 Jan 2019 22:18:29 +0000 Subject: [PATCH 115/167] Revert "rambox: update node deps hash" This reverts commit bf5f85ea2e38284ef2c23bdd211ebfb7c80a002b. See https://github.com/NixOS/nixpkgs/commit/bf5f85ea2e38284ef2c23bdd211ebfb7c80a002b#commitcomment-31923547 --- pkgs/applications/networking/instant-messengers/rambox/bare.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/rambox/bare.nix b/pkgs/applications/networking/instant-messengers/rambox/bare.nix index 0dece5856bb3..29ed30dd27f6 100644 --- a/pkgs/applications/networking/instant-messengers/rambox/bare.nix +++ b/pkgs/applications/networking/instant-messengers/rambox/bare.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { inherit src; nodejs = nodejs-8_x; - sha256 = "1m883gjxcihnik88fyj54f4z4m786pwl3a90k151v9bnbslf3k6i"; + sha256 = "03h1kfiaflwbrvcd8v0bsymn7n2dxi3yj4pxkwcigqg4jgcf56k6"; }; patches = [ ./isDev.patch ]; From a0f0687fbf819283e25f397d159dbfaeea6c11e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9-Paul=20D?= <44802527+godelized@users.noreply.github.com> Date: Sun, 13 Jan 2019 23:21:29 +0100 Subject: [PATCH 116/167] zoom-us: 2.6.146750.1204 -> 2.6.149990.1216 (#53145) --- .../networking/instant-messengers/zoom-us/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index f8232f053eb1..f402e075e067 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -13,11 +13,11 @@ assert pulseaudioSupport -> libpulseaudio != null; let inherit (stdenv.lib) concatStringsSep makeBinPath optional; - version = "2.6.146750.1204"; + version = "2.6.149990.1216"; srcs = { x86_64-linux = fetchurl { url = "https://zoom.us/client/${version}/zoom_x86_64.tar.xz"; - sha256 = "18cpl1ggyw6nf9r85jqn0cq9j7qrhxfy6nah2qqs5bqj84dqhsrg"; + sha256 = "0bs5kx2601lwwr9lgdd3hlbrrwsf0dai766zrca907dl400pmzyd"; }; }; From bebf305c1ba77e6b2f5582cbb864f6ba27aa31cc Mon Sep 17 00:00:00 2001 From: Johannes Frankenau Date: Sun, 13 Jan 2019 22:22:55 +0000 Subject: [PATCH 117/167] gurobi: 8.0.1 -> 8.1 (#53884) --- pkgs/applications/science/math/gurobi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/gurobi/default.nix b/pkgs/applications/science/math/gurobi/default.nix index d4a4133d06e8..be14d1411285 100644 --- a/pkgs/applications/science/math/gurobi/default.nix +++ b/pkgs/applications/science/math/gurobi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gurobi-${version}"; - version = "8.0.1"; + version = "8.1.0"; src = with stdenv.lib; fetchurl { url = "http://packages.gurobi.com/${versions.majorMinor version}/gurobi${version}_linux64.tar.gz"; - sha256 = "0y3lb0mngnyn7ql4s2n8qxnr1d2xcjdpdhpdjdxc4sc8f2w2ih18"; + sha256 = "1yjqbzqnq4jjkjm616d36bgd3rmqr0a1ii17n0prpdjzmdlq63dz"; }; sourceRoot = "gurobi${builtins.replaceStrings ["."] [""] version}/linux64"; From 9d16949d42588539d81c8fd818ed78a4a99c0c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 13 Jan 2019 23:21:54 +0100 Subject: [PATCH 118/167] nixos manual: fix a typo that made it invalid XML The problem was merge to master in the bfbadab4 commit. --- nixos/doc/manual/man-nixos-rebuild.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/man-nixos-rebuild.xml b/nixos/doc/manual/man-nixos-rebuild.xml index 7b964280d6a6..b6a247286d4b 100644 --- a/nixos/doc/manual/man-nixos-rebuild.xml +++ b/nixos/doc/manual/man-nixos-rebuild.xml @@ -331,7 +331,7 @@ $ ./result/bin/run-*-vm root) to be configured as a trusted user in the Nix daemon. This can be achieved by using the nix.trustedUsers NixOS option. Examples values for that option are described in the - Remote builds chapter in the Nix manual, + Remote builds chapter in the Nix manual, (i.e. --builders "ssh://bigbrother x86_64-linux"). By specifying an empty string existing builders specified in /etc/nix/machines can be ignored: From ffbe5aff5723dcfe326054689d0754349ba4679a Mon Sep 17 00:00:00 2001 From: gnidorah Date: Mon, 14 Jan 2019 01:25:47 +0300 Subject: [PATCH 119/167] reaper: 5.961 -> 5.965 (#53880) --- pkgs/applications/audio/reaper/default.nix | 51 +++++++--------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index 749163893905..cabebb6f18e9 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -1,68 +1,47 @@ { stdenv, fetchurl, autoPatchelfHook, makeWrapper , alsaLib, xorg -, fetchFromGitHub, pkgconfig, gnome3 -, gnome2, gdk_pixbuf, cairo, glib, freetype -, libpulseaudio +, gnome3, pango, gdk_pixbuf, cairo, glib, freetype +, libpulseaudio, xdg_utils }: -let - libSwell = stdenv.mkDerivation { - name = "libSwell"; - - src = fetchFromGitHub { - owner = "justinfrankel"; - repo = "WDL"; - rev = "cb89dc81dc5cbc13a8f1b3cda38a204e356d4014"; - sha256 = "0m19dy4r0i21ckypzfhpfjm6sh00v9i088pva7hhhr4mmrbqd0ms"; - }; - - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ gnome3.gtk ]; - - buildPhase = '' - cd WDL/swell - make - ''; - - installPhase = '' - mv libSwell.so $out - ''; - }; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "reaper-${version}"; - version = "5.961"; + version = "5.965"; src = fetchurl { url = "https://www.reaper.fm/files/${stdenv.lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz"; - sha256 = "0lnpdnxnwn7zfn8slivkp971ll9qshgq7y9gcfrk5829z94df06i"; + sha256 = "05fn7r3v4qcb1b31g8layzvqilrwdr0s8yskr61yvbhx2dnjp9iw"; }; nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; buildInputs = [ alsaLib - stdenv.cc.cc.lib xorg.libX11 xorg.libXi - gnome3.gtk gdk_pixbuf - gnome2.pango + pango cairo glib freetype + + xdg_utils + ]; + + runtimeDependencies = [ + gnome3.gtk ]; dontBuild = true; installPhase = '' - ./install-reaper.sh --install $out/opt + XDG_DATA_HOME="$out/share" ./install-reaper.sh \ + --install $out/opt \ + --integrate-user-desktop rm $out/opt/REAPER/uninstall-reaper.sh - cp ${libSwell.out} $out/opt/REAPER/libSwell.so - wrapProgram $out/opt/REAPER/reaper \ --prefix LD_LIBRARY_PATH : ${libpulseaudio}/lib From 22b7449aacb9bd064537d230176154292a2f2fec Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 13 Jan 2019 14:30:50 -0800 Subject: [PATCH 120/167] python37Packages.memory_profiler: 0.54.0 -> 0.55.0 (#53541) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-memory_profiler/versions --- pkgs/development/python-modules/memory_profiler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/memory_profiler/default.nix b/pkgs/development/python-modules/memory_profiler/default.nix index cf976f06ff08..e0367e6c5051 100644 --- a/pkgs/development/python-modules/memory_profiler/default.nix +++ b/pkgs/development/python-modules/memory_profiler/default.nix @@ -4,11 +4,11 @@ python.pkgs.buildPythonPackage rec { pname = "memory_profiler"; - version = "0.54.0"; + version = "0.55.0"; src = python.pkgs.fetchPypi { inherit pname version; - sha256 = "06ld8h8mhm8pk0sv7fxgx0y2q8nri65qlh4vjbs0bq9j7yi44hyn"; + sha256 = "1hdgh5f59bya079w4ahx4l0hf4gc5yvaz44irp5x57cj9hkpp92z"; }; propagatedBuildInputs = with python.pkgs; [ From 5285526b0fd58474de11b32eaa5e836dd2369189 Mon Sep 17 00:00:00 2001 From: gnidorah Date: Mon, 14 Jan 2019 01:55:40 +0300 Subject: [PATCH 121/167] pakcs: fix build (#53281) --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 524741a0da04..527c52bc145b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4712,7 +4712,9 @@ in pagmo2 = callPackage ../development/libraries/pagmo2 { }; - pakcs = callPackage ../development/compilers/pakcs {}; + pakcs = callPackage ../development/compilers/pakcs { + haskellPackages = haskell.packages.ghc844; + }; pal = callPackage ../tools/misc/pal { }; From a3585a6ab961b91602910450566b947784e74c6d Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 13 Jan 2019 15:44:05 -0600 Subject: [PATCH 122/167] direnv: 2.18.2 -> 2.19.0 --- pkgs/tools/misc/direnv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/direnv/default.nix b/pkgs/tools/misc/direnv/default.nix index 089ed6ce5166..2a02b0391aeb 100644 --- a/pkgs/tools/misc/direnv/default.nix +++ b/pkgs/tools/misc/direnv/default.nix @@ -2,14 +2,14 @@ buildGoPackage rec { name = "direnv-${version}"; - version = "2.18.2"; + version = "2.19.0"; goPackagePath = "github.com/direnv/direnv"; src = fetchFromGitHub { owner = "direnv"; repo = "direnv"; rev = "v${version}"; - sha256 = "011isxsc3byg8jd4jhi4pdfqrxa1acnzirhcv7lvw3jl0v7xnma8"; + sha256 = "0v5r07b5r0wmmf8wndi0z1fp979pyqg6xpx7w847bkyn4pvgpscm"; }; postConfigure = '' From a611560b26fda9e2d98e230c59a1dc26fef15b41 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 13 Jan 2019 16:25:12 -0600 Subject: [PATCH 123/167] asciinema: 2.0.1 -> 2.0.2 https://github.com/asciinema/asciinema/blob/v2.0.2/CHANGELOG.md#202-2019-01-12 --- pkgs/tools/misc/asciinema/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index daaffbf080fd..f3fe081eeae6 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -2,7 +2,7 @@ python3Packages.buildPythonApplication rec { pname = "asciinema"; - version = "2.0.1"; + version = "2.0.2"; buildInputs = with python3Packages; [ nose ]; propagatedBuildInputs = with python3Packages; [ requests ]; @@ -11,14 +11,9 @@ python3Packages.buildPythonApplication rec { owner = "asciinema"; repo = "asciinema"; rev = "v${version}"; - sha256 = "09m9agkslrbm36y8pjqhg5nmyz9hppjyhafhzpglnadhfgwqzznr"; + sha256 = "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4"; }; - patchPhase = '' - # disable one test which is failing with -> OSError: out of pty devices - rm tests/pty_recorder_test.py - ''; - checkInputs = [ glibcLocales ]; checkPhase = '' From a075573115888e6e60aa423f139577afd71acab3 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 13 Jan 2019 20:10:38 -0600 Subject: [PATCH 124/167] ocrad: 0.26 -> 0.27 https://lists.gnu.org/archive/html/bug-ocrad/2019-01/msg00000.html --- pkgs/applications/graphics/ocrad/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/ocrad/default.nix b/pkgs/applications/graphics/ocrad/default.nix index 2ff62cc9eef2..80f592681110 100644 --- a/pkgs/applications/graphics/ocrad/default.nix +++ b/pkgs/applications/graphics/ocrad/default.nix @@ -1,14 +1,16 @@ { fetchurl, stdenv, lzip, texinfo }: stdenv.mkDerivation rec { - name = "ocrad-0.26"; + pname = "ocrad"; + version = "0.27"; src = fetchurl { - url = "mirror://gnu/ocrad/${name}.tar.lz"; - sha256 = "0g4fq7maybdnd1471kd05a3f5sb7spa3d26k706rk85sd5wd70y3"; + url = "mirror://gnu/ocrad/${pname}-${version}.tar.lz"; + sha256 = "0divffvcaim89g4pvqs8kslbcxi475bcl3b4ynphf284k9zfdgx9"; }; - buildInputs = [ lzip texinfo ]; + nativeBuildInputs = [ lzip /* unpack */ ]; + buildInputs = [ texinfo ]; doCheck = true; From c6c38b61a8293b2127ceda0bbf754755cd22ba61 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 13 Jan 2019 20:24:53 -0600 Subject: [PATCH 125/167] bcachefs-tools: 2018-10-12 -> 2019-01-13 (fix w/attr bump, touchups) --- pkgs/tools/filesystems/bcachefs-tools/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/filesystems/bcachefs-tools/default.nix b/pkgs/tools/filesystems/bcachefs-tools/default.nix index 75737e2da7fc..9f81db437134 100644 --- a/pkgs/tools/filesystems/bcachefs-tools/default.nix +++ b/pkgs/tools/filesystems/bcachefs-tools/default.nix @@ -2,22 +2,24 @@ , liburcu, zlib, libaio, zstd, lz4 }: stdenv.mkDerivation rec { - name = "bcachefs-tools-unstable-2018-10-12"; + pname = "bcachefs-tools"; + version = "2019-01-13"; src = fetchgit { url = "https://evilpiepirate.org/git/bcachefs-tools.git"; - rev = "55fbb25501330038e1714905b9ddeb25d875c11c"; - sha256 = "0cwzbyf133jc0fkc8nmjcvv3wmglqhyxda1hh10hgxrbq5vm39wx"; + rev = "47bd483d27ec13418978b24ec5951661d564ba35"; + sha256 = "0h0mi68f8hxjplh0f8yw9h1ax9y6cz9c9hlvl95nqhs352lkdrfj"; }; enableParallelBuilding = true; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ attr libuuid libscrypt libsodium keyutils liburcu zlib libaio zstd lz4 ]; - installFlags = [ "PREFIX=$(out)" ]; + installFlags = [ "PREFIX=${placeholder "out"}" ]; preInstall = '' - sed -i \ - "s,INITRAMFS_DIR=/etc/initramfs-tools,INITRAMFS_DIR=$out/etc/initramfs-tools,g" Makefile + substituteInPlace Makefile \ + --replace "INITRAMFS_DIR=/etc/initramfs-tools" \ + "INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools" ''; meta = with stdenv.lib; { From 512bdb02f24e3c7b2a167bbb2466ccfc48c6b0e3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 10 Jan 2019 16:43:00 +0100 Subject: [PATCH 126/167] LTS Haskell 13.2 This update was generated by hackage2nix v2.13-1-gda47f40 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/e5010211f9b8906d6a42815eec6fabbcf436c1da. --- .../configuration-hackage2nix.yaml | 53 +- .../haskell-modules/hackage-packages.nix | 2192 +++++++++++------ 2 files changed, 1420 insertions(+), 825 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 1a8113e61c17..757300f3479e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -46,7 +46,7 @@ default-package-overrides: # Newer versions don't work in LTS-12.x - alsa-mixer < 0.3 - cassava-megaparsec < 2 - # LTS Haskell 13.1 + # LTS Haskell 13.2 - abstract-deque ==0.3 - abstract-deque-tests ==0.3 - abstract-par ==0.3.3 @@ -238,7 +238,7 @@ default-package-overrides: - avers ==0.0.17.1 - avers-api ==0.1.0 - avers-server ==0.1.0.1 - - avro ==0.4.1.1 + - avro ==0.4.1.2 - avwx ==0.3.0.2 - axel ==0.0.9 - backprop ==0.2.6.1 @@ -721,7 +721,7 @@ default-package-overrides: - first-class-patterns ==0.3.2.4 - fitspec ==0.4.7 - fixed ==0.2.1.1 - - fixed-length ==0.2 + - fixed-length ==0.2.1 - fixed-vector ==1.2.0.0 - fixed-vector-hetero ==0.5.0.0 - flac ==0.1.2 @@ -748,7 +748,7 @@ default-package-overrides: - forkable-monad ==0.2.0.3 - forma ==1.1.0 - format-numbers ==0.1.0.0 - - formatting ==6.3.6 + - formatting ==6.3.7 - foundation ==0.0.21 - free ==5.1 - freenect ==1.2.1 @@ -820,11 +820,11 @@ default-package-overrides: - gi-atk ==2.0.15 - gi-cairo ==1.0.17 - gi-gdk ==3.0.16 - - gi-gdkpixbuf ==2.0.16 + - gi-gdkpixbuf ==2.0.18 - gi-gio ==2.0.18 - gi-glib ==2.0.17 - gi-gobject ==2.0.16 - - gi-gtk ==3.0.26 + - gi-gtk ==3.0.27 - gi-gtk-hs ==0.3.6.3 - gi-gtksource ==3.0.16 - gi-javascriptcore ==4.0.16 @@ -860,7 +860,7 @@ default-package-overrides: - graph-wrapper ==0.2.5.2 - gravatar ==0.8.0 - graylog ==0.1.0.1 - - greskell ==0.2.2.0 + - greskell ==0.2.3.0 - greskell-core ==0.1.2.4 - greskell-websocket ==0.1.1.2 - groom ==0.1.2.1 @@ -869,6 +869,7 @@ default-package-overrides: - groundhog-postgresql ==0.10 - groundhog-sqlite ==0.10.0 - groups ==0.4.1.0 + - guarded-allocation ==0.0 - gym-http-api ==0.1.0.1 - h2c ==1.0.0 - hackage-db ==2.0.1 @@ -973,8 +974,8 @@ default-package-overrides: - hsdns ==1.7.1 - hsebaysdk ==0.4.0.0 - hsemail ==2 - - HSet ==0.0.1 - hset ==2.2.0 + - HSet ==0.0.1 - hsexif ==0.6.1.6 - hs-functors ==0.1.3.0 - hs-GeoIP ==0.3 @@ -982,18 +983,18 @@ default-package-overrides: - hsinstall ==2.2 - HSlippyMap ==3.0.1 - hslogger ==1.2.12 - - hslua ==1.0.1 + - hslua ==1.0.2 - hslua-aeson ==1.0.0 - hslua-module-text ==0.2.0 - HsOpenSSL ==0.11.4.15 - HsOpenSSL-x509-system ==0.1.0.3 - hsp ==0.10.0 - - hspec ==2.6.0 + - hspec ==2.6.1 - hspec-attoparsec ==0.1.0.2 - hspec-checkers ==0.1.0.2 - hspec-contrib ==0.5.1 - - hspec-core ==2.6.0 - - hspec-discover ==2.6.0 + - hspec-core ==2.6.1 + - hspec-discover ==2.6.1 - hspec-expectations ==0.8.2 - hspec-expectations-lifted ==0.10.0 - hspec-expectations-pretty-diff ==0.7.2.4 @@ -1010,7 +1011,7 @@ default-package-overrides: - hstatsd ==0.1 - HStringTemplate ==0.8.7 - HSvm ==0.1.0.3.22 - - HsYAML ==0.1.1.2 + - HsYAML ==0.1.1.3 - hsyslog ==5.0.1 - htaglib ==1.2.0 - HTF ==0.13.2.5 @@ -1051,7 +1052,7 @@ default-package-overrides: - hw-fingertree-strict ==0.1.1.1 - hw-hspec-hedgehog ==0.1.0.4 - hw-int ==0.0.0.3 - - hw-ip ==2.0.0.0 + - hw-ip ==2.0.1.0 - hw-json ==0.9.0.1 - hw-mquery ==0.1.0.3 - hw-packed-vector ==0.0.0.1 @@ -1059,7 +1060,7 @@ default-package-overrides: - hw-prim ==0.6.2.22 - hw-rankselect ==0.12.0.4 - hw-rankselect-base ==0.3.2.1 - - hw-streams ==0.0.0.9 + - hw-streams ==0.0.0.10 - hw-string-parse ==0.0.0.4 - hw-succinct ==0.1.0.1 - hxt ==9.3.1.16 @@ -1263,7 +1264,7 @@ default-package-overrides: - markdown-unlit ==0.5.0 - markov-chain ==0.0.3.4 - massiv ==0.2.6.0 - - massiv-io ==0.1.4.0 + - massiv-io ==0.1.5.0 - mathexpr ==0.3.0.0 - math-functions ==0.3.1.0 - matrices ==0.4.5 @@ -1289,7 +1290,7 @@ default-package-overrides: - microbench ==0.1 - microformats2-parser ==1.0.1.9 - microlens ==0.4.10 - - microlens-aeson ==2.3.0 + - microlens-aeson ==2.3.0.1 - microlens-contra ==0.1.0.2 - microlens-ghc ==0.4.10 - microlens-mtl ==0.1.11.1 @@ -1386,7 +1387,7 @@ default-package-overrides: - natural-transformation ==0.4 - ndjson-conduit ==0.1.0.5 - neat-interpolation ==0.3.2.4 - - netlib-ffi ==0.1 + - netlib-ffi ==0.1.1 - netpbm ==1.0.2 - nettle ==0.3.0 - netwire ==5.0.3 @@ -1482,7 +1483,7 @@ default-package-overrides: - parsec-numbers ==0.1.0 - parsec-numeric ==0.1.0.0 - ParsecTools ==0.0.2.0 - - parser-combinators ==1.0.0 + - parser-combinators ==1.0.1 - parsers ==0.12.9 - partial-handler ==1.0.3 - partial-isomorphisms ==0.2.2.1 @@ -1507,7 +1508,7 @@ default-package-overrides: - pem ==0.2.4 - percent-format ==0.0.1 - perfect-hash-generator ==0.2.0.6 - - persist ==0.1.1.0 + - persist ==0.1.1.1 - persistable-record ==0.6.0.4 - persistable-types-HDBC-pg ==0.0.3.5 - persistent ==2.9.0 @@ -1718,7 +1719,7 @@ default-package-overrides: - rot13 ==0.2.0.1 - rounded ==0.1.0.1 - rpmbuild-order ==0.2.1 - - RSA ==2.3.0 + - RSA ==2.3.1 - runmemo ==1.0.0.1 - rvar ==0.2.0.3 - s3-signer ==0.5.0.0 @@ -1737,7 +1738,7 @@ default-package-overrides: - sampling ==0.3.3 - sandman ==0.2.0.1 - say ==0.1.0.1 - - sbp ==2.4.0 + - sbp ==2.4.6 - sbv ==7.13 - scalpel ==0.5.1 - scalpel-core ==0.5.1 @@ -1757,7 +1758,7 @@ default-package-overrides: - selda-postgresql ==0.1.7.3 - selda-sqlite ==0.1.6.1 - semigroupoid-extras ==5 - - semigroupoids ==5.3.1 + - semigroupoids ==5.3.2 - semigroups ==0.18.5 - semirings ==0.2.1.1 - semiring-simple ==1.0.0.1 @@ -1924,7 +1925,7 @@ default-package-overrides: - sundown ==0.6 - superbuffer ==0.3.1.1 - sv-cassava ==0.3 - - sv-core ==0.3 + - sv-core ==0.3.1 - svg-builder ==0.1.1 - SVGFonts ==1.7 - svg-tree ==0.6.2.3 @@ -2006,7 +2007,7 @@ default-package-overrides: - text-printer ==0.5 - text-region ==0.3.1.0 - text-short ==0.1.2 - - tfp ==1.0.0.2 + - tfp ==1.0.1.1 - tf-random ==0.5 - th-abstraction ==0.2.10.0 - th-data-compat ==0.0.2.7 @@ -2210,7 +2211,7 @@ default-package-overrides: - webrtc-vad ==0.1.0.3 - websockets ==0.12.5.2 - websockets-snap ==0.10.3.0 - - weigh ==0.0.12 + - weigh ==0.0.13 - wide-word ==0.1.0.7 - wikicfp-scraper ==0.1.0.9 - wild-bind ==0.1.2.3 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d6796741eb49..2ac7481cfd75 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -3398,8 +3398,8 @@ self: { ({ mkDerivation, base, HUnit, mtl, old-locale, QuickCheck, time }: mkDerivation { pname = "Craft3e"; - version = "0.1.1.0"; - sha256 = "1r81jr1lsx3jyjqybbbdnynh5sh36nn7mp8a0zzjzkmmrqm405bk"; + version = "0.1.1.1"; + sha256 = "0p5cdayl6j25pk7ab857bf3mcdp73464z56d98apnsb94j0d3whg"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -6040,6 +6040,8 @@ self: { pname = "GLFW-b"; version = "3.2.1.0"; sha256 = "19mngkprzlm322pfyljvm4lyk1j7j8ss50m5kzzmkwk3mph25h1i"; + revision = "2"; + editedCabalFile = "0xlby7483dv33c13f44kkvmai186g72jhxmcq8749s1hyxi6fqnb"; libraryHaskellDepends = [ base bindings-GLFW deepseq ]; testHaskellDepends = [ base bindings-GLFW deepseq HUnit test-framework @@ -6300,12 +6302,15 @@ self: { pname = "Gamgine"; version = "0.5.3"; sha256 = "08awl1f1310ifx9gzjrinsv37n7k2yaxvmjaymjh01pawlp3w4gc"; + revision = "1"; + editedCabalFile = "1i14r4r8814l8cilp24ypcsbac284m6pvib5037sypgqv72wn044"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base bytestring composition cpphs data-lens directory filepath GLFW-b ListZipper mtl OpenGLRaw parsec pretty-show StateVar time unordered-containers utility-ht Vec zlib ]; + libraryToolDepends = [ cpphs ]; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -10046,25 +10051,6 @@ self: { }) {}; "HsYAML" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, mtl, parsec - , text - }: - mkDerivation { - pname = "HsYAML"; - version = "0.1.1.2"; - sha256 = "1100yzyxbvin48q3dgmzpnhz1gbqaxnkpnwy7ywzj2wrvwrr8hjx"; - revision = "2"; - editedCabalFile = "0kxfvp899l06x3y6zhnnfjx7kw1mjb3c7g0flnkllndp9i9a3pkl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dlist mtl parsec text - ]; - description = "Pure Haskell YAML 1.2 parser"; - license = stdenv.lib.licenses.gpl2; - }) {}; - - "HsYAML_0_1_1_3" = callPackage ({ mkDerivation, base, bytestring, containers, mtl, parsec, text }: mkDerivation { pname = "HsYAML"; @@ -10077,7 +10063,6 @@ self: { ]; description = "Pure Haskell YAML 1.2 parser"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsed" = callPackage @@ -13864,6 +13849,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) libGL;}; + "OpenGLRaw_3_3_2_0" = callPackage + ({ mkDerivation, base, bytestring, containers, fixed, half, libGL + , text, transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "3.3.2.0"; + sha256 = "1qy41qpqmksvgy7j73b46ksvm00mh6amgy9n9wkal4czkaj26kpj"; + libraryHaskellDepends = [ + base bytestring containers fixed half text transformers + ]; + librarySystemDepends = [ libGL ]; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libGL;}; + "OpenGLRaw21" = callPackage ({ mkDerivation, OpenGLRaw }: mkDerivation { @@ -14127,10 +14129,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "PSQueue"; - version = "1.1"; - sha256 = "1k291bh8j5vpcrn6vycww2blwg7jxx9yrfmrqdanz48gs4d8gq58"; - revision = "1"; - editedCabalFile = "0gpx33bkhpwya7prnqzwpbnylm4v4nm4x8m02ggmj7d6rkklb2qq"; + version = "1.1.0.1"; + sha256 = "1cik7sw10sacsijmfhghzy54gm1qcyxw14shlp86lx8z89kcnkza"; libraryHaskellDepends = [ base ]; description = "Priority Search Queue"; license = stdenv.lib.licenses.bsd3; @@ -15456,26 +15456,6 @@ self: { }) {}; "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, DRBG, QuickCheck, SHA, tagged - , test-framework, test-framework-quickcheck2 - }: - mkDerivation { - pname = "RSA"; - version = "2.3.0"; - sha256 = "0csk933gb2ayijxx6ar110lmsbvgyn7p5bqln3g2qbfxz73nvrzf"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - testHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types DRBG - QuickCheck SHA tagged test-framework test-framework-quickcheck2 - ]; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "RSA_2_3_1" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -15493,7 +15473,6 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSolve" = callPackage @@ -21540,6 +21519,8 @@ self: { pname = "adict"; version = "0.4.1"; sha256 = "07w3595cwlicvwg04w9i5sg1x9d3r8c64pq0yi5pmnza7jpd5vgq"; + revision = "1"; + editedCabalFile = "07aigsviy51b7hhp1nikvx620s6b8i8j98cvm0rp04pp90n1jqf8"; libraryHaskellDepends = [ array base binary containers dawg PSQueue vector ]; @@ -22153,6 +22134,8 @@ self: { pname = "aeson-options"; version = "0.1.0"; sha256 = "0d5wfcgsjrpmangknmrr2lxvr3h96d65y3vkkas6m9aqi1rrkqv4"; + revision = "1"; + editedCabalFile = "0sibi1vhgkx0v082iffpqxg1mshrwd1d1s3xnpaqn0rdpfpja31d"; libraryHaskellDepends = [ aeson base ]; description = "Options to derive FromJSON/ToJSON instances"; license = stdenv.lib.licenses.mit; @@ -27066,6 +27049,8 @@ self: { pname = "ansigraph"; version = "0.3.0.5"; sha256 = "03ks75ik0jyfz55iz3gcccxgg73v1dw2nn0myl40c2rc31mwz39f"; + revision = "1"; + editedCabalFile = "047pnpd9sviia1wxx9czidz2in6jq7jgbln7l6dy2j157vyqi93k"; libraryHaskellDepends = [ ansi-terminal base ]; testHaskellDepends = [ base hspec QuickCheck ]; description = "Terminal-based graphing via ANSI and Unicode"; @@ -30590,8 +30575,8 @@ self: { }: mkDerivation { pname = "ats-pkg"; - version = "3.2.4.4"; - sha256 = "0qnhxx4xfh40g1gh108rqcxam3zdm6qwz4h3mh8kw9lq9bnman46"; + version = "3.2.4.5"; + sha256 = "0nn43pzj57sjhsngidp47pacdi40sngdmfh47iwppgnn1anc7crp"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -31658,34 +31643,6 @@ self: { }) {}; "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors - , binary, bytestring, containers, data-binary-ieee754, directory - , entropy, extra, fail, hashable, hspec, lens, lens-aeson, mtl - , pure-zlib, QuickCheck, scientific, semigroups, tagged - , template-haskell, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "avro"; - version = "0.4.1.1"; - sha256 = "150pzq5yfvd8vgmrgcdw4kww2jgs0c6hyw7z9wsk7fhjbvrz570k"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers data-binary-ieee754 entropy fail hashable mtl pure-zlib - scientific semigroups tagged template-haskell text - unordered-containers vector - ]; - testHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers directory entropy extra fail hashable hspec lens - lens-aeson mtl pure-zlib QuickCheck scientific semigroups tagged - template-haskell text transformers unordered-containers vector - ]; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "avro_0_4_1_2" = callPackage ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors , binary, bytestring, containers, data-binary-ieee754, directory , extra, fail, hashable, hspec, lens, lens-aeson, mtl, pure-zlib @@ -31710,7 +31667,6 @@ self: { ]; description = "Avro serialization support for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avwx" = callPackage @@ -36728,6 +36684,40 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "birch-beer" = callPackage + ({ mkDerivation, aeson, base, bytestring, cassava, colour + , containers, deepseq, diagrams, diagrams-cairo, diagrams-graphviz + , diagrams-gtk, diagrams-lib, diversity, fgl, foldl, graphviz, gtk + , hierarchical-clustering, hierarchical-spectral-clustering, lens + , matrix-market-attoparsec, mtl, optparse-generic, palette, plots + , safe, scientific, sparse-linear-algebra, spectral-clustering + , split, statistics, SVGFonts, temporary, text, text-show + , typed-spreadsheet, vector + }: + mkDerivation { + pname = "birch-beer"; + version = "0.1.0.0"; + sha256 = "11f1lf19a78795id30hdxa6h52jwcmjq4jbmm1qaw6lgjfkzfg6a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring cassava colour containers deepseq diagrams + diagrams-cairo diagrams-graphviz diagrams-gtk diagrams-lib + diversity fgl foldl graphviz gtk hierarchical-clustering + hierarchical-spectral-clustering lens matrix-market-attoparsec mtl + palette plots safe scientific sparse-linear-algebra + spectral-clustering split statistics SVGFonts temporary text + text-show typed-spreadsheet vector + ]; + executableHaskellDepends = [ + aeson base cassava colour diagrams diagrams-cairo diagrams-lib + hierarchical-spectral-clustering lens optparse-generic + sparse-linear-algebra text text-show vector + ]; + description = "Plot a colorful tree"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "bird" = callPackage ({ mkDerivation, base, bytestring, containers, data-default, hack , hack-handler-happstack, haskell98, MissingH, mtl, parsec, process @@ -37470,8 +37460,8 @@ self: { }: mkDerivation { pname = "bizzlelude"; - version = "1.5.0"; - sha256 = "1mjy5hlszj85wvxwr7fza5wa004xjcg434kwzxzjmmlcvkgh2ybr"; + version = "1.6.0"; + sha256 = "16wkwrkvz12n1wq2q1ch8b9dwqsm011v26d03pj5lk0ms6g0c9qb"; libraryHaskellDepends = [ base-noprelude containers directory regexpr text ]; @@ -41369,8 +41359,8 @@ self: { }: mkDerivation { pname = "c-mosquitto"; - version = "0.1.5.0"; - sha256 = "07pqy6809lma8b69s91m93ibkag7irma07axnhkhsswkhd2kf5im"; + version = "0.1.6.0"; + sha256 = "16rx690qgjg219l1zkdrlx0gb2ihxd6jhgnh53v0v9hrqlxn35cd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -41777,10 +41767,8 @@ self: { }: mkDerivation { pname = "cabal-file-th"; - version = "0.2.4"; - sha256 = "076rprsnb9nyhm97ky4vzfcvirl8wx4g3f68lx7k5inhmkzxfm8b"; - revision = "1"; - editedCabalFile = "0qbhrpn23vrqyh71vkbbs5yxwlb8m6nzfpwn6mqz2xi0wwzvl9s6"; + version = "0.2.6"; + sha256 = "0kam97xbmsn0alqyw709fpvj7j5dhdi90n98dmg1sfr5i54gh1nw"; libraryHaskellDepends = [ base Cabal directory pretty template-haskell ]; @@ -43360,6 +43348,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cantor-pairing" = callPackage + ({ mkDerivation, arithmoi, base, containers, hspec, hspec-discover + , integer-gmp + }: + mkDerivation { + pname = "cantor-pairing"; + version = "0.1.0.0"; + sha256 = "110iq8fldw4rk46lxq1b78mfpbp5dxcjc2vg89996j95xd88xkjp"; + libraryHaskellDepends = [ arithmoi base containers integer-gmp ]; + testHaskellDepends = [ base hspec ]; + testToolDepends = [ hspec-discover ]; + description = "Convert data to and from a natural number representation"; + license = stdenv.lib.licenses.mit; + }) {}; + "cao" = callPackage ({ mkDerivation, alex, array, base, cmdargs, ConfigFile, containers , directory, dlist, filepath, happy, language-c, mtl, pretty @@ -44925,6 +44928,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cereal_0_5_8_0" = callPackage + ({ mkDerivation, array, base, bytestring, containers, ghc-prim + , QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "cereal"; + version = "0.5.8.0"; + sha256 = "10j205g4w311ypk24ds2nmv1816s8645788s6a1vrfippa56dlrp"; + libraryHaskellDepends = [ + array base bytestring containers ghc-prim + ]; + testHaskellDepends = [ + base bytestring QuickCheck test-framework + test-framework-quickcheck2 + ]; + description = "A binary serialization library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cereal-conduit" = callPackage ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl , resourcet, transformers @@ -45474,6 +45497,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "char-decode" = callPackage + ({ mkDerivation, base, bytestring, QuickCheck, tasty + , tasty-quickcheck, text + }: + mkDerivation { + pname = "char-decode"; + version = "0.0.1"; + sha256 = "0cr0pp83mfnjnlwywig930bx2vcvwh579g0qic4w6jknsrn54w38"; + libraryHaskellDepends = [ base bytestring text ]; + testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + description = "Convert legacy byte encodings to and from Unicode"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "charade" = callPackage ({ mkDerivation, base, configurator, containers, filepath, heist , lens, mtl, QuickCheck, random, snap, snap-core, snap-extras @@ -45708,6 +45745,8 @@ self: { pname = "cheapskate"; version = "0.1.1.1"; sha256 = "0qnyd8bni2rby6b02ff4bvfdhm1hwc8vzpmnms84jgrlg1lly3fm"; + revision = "1"; + editedCabalFile = "0mf6qdpgh56n0ynyy272vhkk2bjrdhppks2vrw79gk0kzn29fggh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -48500,10 +48539,8 @@ self: { }: mkDerivation { pname = "clustering"; - version = "0.4.0"; - sha256 = "16zhg2jb4a823gf8pdbm9y9yknpf1w6l3983563vk3wjna3ypfcn"; - revision = "1"; - editedCabalFile = "1zyjjzbq8049jgkn8nl8aphfkmgn0912c8nw24r79vfmw8ad7mgq"; + version = "0.4.1"; + sha256 = "0p9hbnisqqlsb6239y8rprwvwa3zmkgdbqqkq9rfgsnr0azf8rwm"; libraryHaskellDepends = [ base binary containers matrices mwc-random parallel primitive unordered-containers vector @@ -51551,6 +51588,8 @@ self: { pname = "concurrent-utilities"; version = "0.2.0.2"; sha256 = "1phc9a90nvx6dk741hmg3w5m9y8ra5a7zsgmzw173ibaapr2yhqi"; + revision = "1"; + editedCabalFile = "1phqnmgq7mj7751d4g599jy3brz4fmlm1z7qd88gkyr94mn5pm23"; libraryHaskellDepends = [ base ]; description = "More utilities and broad-used datastructures for concurrency"; license = stdenv.lib.licenses.bsd3; @@ -51755,6 +51794,42 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit-algorithms_0_0_9_0" = callPackage + ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit + , conduit-combinators, conduit-extra, conduit-zstd, containers + , criterion, deepseq, directory, exceptions, HUnit, lzma-conduit + , monad-control, mtl, pqueue, resourcet, stm, stm-conduit + , streaming-commons, test-framework, test-framework-hunit + , test-framework-th, transformers, unliftio-core, vector + }: + mkDerivation { + pname = "conduit-algorithms"; + version = "0.0.9.0"; + sha256 = "1d2d9ak3mn77lklxr80xw9xpay31f71h5hd66mgrixk48bfr9p8i"; + libraryHaskellDepends = [ + async base bytestring bzlib-conduit conduit conduit-combinators + conduit-extra conduit-zstd containers deepseq exceptions + lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit + streaming-commons transformers unliftio-core vector + ]; + testHaskellDepends = [ + async base bytestring bzlib-conduit conduit conduit-combinators + conduit-extra conduit-zstd containers deepseq directory exceptions + HUnit lzma-conduit monad-control mtl pqueue resourcet stm + stm-conduit streaming-commons test-framework test-framework-hunit + test-framework-th transformers unliftio-core vector + ]; + benchmarkHaskellDepends = [ + async base bytestring bzlib-conduit conduit conduit-combinators + conduit-extra conduit-zstd containers criterion deepseq exceptions + lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit + streaming-commons transformers unliftio-core vector + ]; + description = "Conduit-based algorithms"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conduit-audio" = callPackage ({ mkDerivation, base, conduit, vector }: mkDerivation { @@ -52188,6 +52263,42 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "confcrypt_0_2_0_0" = callPackage + ({ mkDerivation, amazonka, amazonka-kms, base, base64-bytestring + , bytestring, conduit, containers, crypto-pubkey-openssh + , crypto-pubkey-types, cryptonite, deepseq, HUnit, lens, megaparsec + , memory, mtl, optparse-applicative, parser-combinators, QuickCheck + , tasty, tasty-hunit, tasty-quickcheck, text, transformers + }: + mkDerivation { + pname = "confcrypt"; + version = "0.2.0.0"; + sha256 = "0gg1p06lmv7rs143am5kak6n7777f1ccf36xlscxwsyza5j1gi57"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + amazonka amazonka-kms base base64-bytestring bytestring conduit + containers crypto-pubkey-openssh crypto-pubkey-types cryptonite + deepseq lens megaparsec mtl optparse-applicative parser-combinators + text transformers + ]; + executableHaskellDepends = [ + amazonka amazonka-kms base base64-bytestring bytestring conduit + containers crypto-pubkey-openssh crypto-pubkey-types cryptonite + deepseq lens megaparsec mtl optparse-applicative parser-combinators + text transformers + ]; + testHaskellDepends = [ + amazonka amazonka-kms base base64-bytestring bytestring conduit + containers crypto-pubkey-openssh crypto-pubkey-types cryptonite + deepseq HUnit lens megaparsec memory mtl optparse-applicative + parser-combinators QuickCheck tasty tasty-hunit tasty-quickcheck + text transformers + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "confetti" = callPackage ({ mkDerivation, base, cmdargs, directory, filepath, MissingH , tasty, tasty-hunit, tasty-smallcheck, text, time, unix, yaml @@ -55693,6 +55804,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "crypto-enigma_0_1_1_5" = callPackage + ({ mkDerivation, ansi-terminal, base, containers, HUnit + , optparse-applicative, QuickCheck, split, text + }: + mkDerivation { + pname = "crypto-enigma"; + version = "0.1.1.5"; + sha256 = "001kl84ngfwr644v7dyk5shkqfw606bpza8b61bv4p4lqyfk96l2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers split text ]; + executableHaskellDepends = [ + ansi-terminal base containers optparse-applicative split text + ]; + testHaskellDepends = [ base HUnit QuickCheck ]; + description = "An Enigma machine simulator with display"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "crypto-multihash" = callPackage ({ mkDerivation, base, base58-bytestring, bytestring, containers , cryptonite, hspec, memory, QuickCheck, string-conversions @@ -55803,6 +55934,8 @@ self: { pname = "crypto-random"; version = "0.0.9"; sha256 = "0139kbbb2h7vshf68y3fvjda29lhj7jjwl4vq78w4y8k8hc7l2hp"; + revision = "1"; + editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; libraryHaskellDepends = [ base bytestring securemem unix vector ]; description = "Simple cryptographic random related types"; license = stdenv.lib.licenses.bsd3; @@ -60715,8 +60848,8 @@ self: { }: mkDerivation { pname = "debian"; - version = "3.93.2"; - sha256 = "1a1brh07lvrchdll0aabmzikv7inlbaspx0nv3xa94cmzkgvr30l"; + version = "3.93.3"; + sha256 = "0wjkk6dnps837pnsh75cf1093587r6yxg8fhjz8jrw06y2g85fzn"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -62485,6 +62618,8 @@ self: { pname = "dhall"; version = "1.20.1"; sha256 = "1p5whphy666q0h22yq3jb4aipb5bkqp45bp86m7dp12ljksfhxz0"; + revision = "1"; + editedCabalFile = "1km0zbbahhq24s84s9gcck1javhplqjg51q4qf8i19iahnxkl3rq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -62893,6 +63028,8 @@ self: { pname = "diagrams-cairo"; version = "1.4.1"; sha256 = "0n368gv7jjnynp7gfbnaywnd4x65956qqifcxpi3gsy8yi0zsr6z"; + revision = "1"; + editedCabalFile = "0irrv1mf7lz3n4dy5pz9y6kw00v1rly47g2g6hi95nj6a6hib3z0"; libraryHaskellDepends = [ array base bytestring cairo colour containers data-default-class diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl @@ -63622,6 +63759,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "differential" = callPackage + ({ mkDerivation, aeson, base, bytestring, cassava, containers + , deepseq, foldl, inline-r, lens, lens-aeson, optparse-generic + , scientific, sparse-linear-algebra, statistics, text, text-show + , vector + }: + mkDerivation { + pname = "differential"; + version = "0.1.1.0"; + sha256 = "0h6w082zq4f4p7j61bdi3jzpb42wwgh1d3067jywlnx2qwa0ijhp"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers deepseq foldl inline-r lens + lens-aeson scientific sparse-linear-algebra statistics text + text-show vector + ]; + executableHaskellDepends = [ + base bytestring cassava containers inline-r optparse-generic text + text-show vector + ]; + description = "Finds out whether an entity comes from different distributions (statuses)"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "diffmap" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -66595,6 +66757,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dovin" = callPackage + ({ mkDerivation, base, Cabal, containers, directory, filepath + , hashable, lens, mtl, parsec, tasty, tasty-discover, tasty-hunit + , tasty-quickcheck, unordered-containers + }: + mkDerivation { + pname = "dovin"; + version = "0.1.0.1"; + sha256 = "1imllaywr647vkgwk7j3ha1zv3h4bks64jpjn0y3q15mlzmrcdws"; + isLibrary = true; + isExecutable = true; + setupHaskellDepends = [ base Cabal directory filepath ]; + libraryHaskellDepends = [ + base containers hashable lens mtl parsec unordered-containers + ]; + executableHaskellDepends = [ + base containers hashable lens mtl parsec unordered-containers + ]; + testHaskellDepends = [ + base containers hashable lens mtl parsec tasty tasty-discover + tasty-hunit tasty-quickcheck unordered-containers + ]; + testToolDepends = [ tasty-discover ]; + description = "A proof assistant for Magic: The Gathering puzzles"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dow" = callPackage ({ mkDerivation, array, base, directory, elerea, GLFW , mersenne-random, OpenGL @@ -67831,6 +68020,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "dynamic-graphs" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, criterion + , deepseq, hashable, hashtables, mwc-random, primitive, QuickCheck + , semigroups, test-framework, test-framework-quickcheck2 + , test-framework-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "dynamic-graphs"; + version = "0.1.0.2"; + sha256 = "0fy64gfkg6vhhyzay0wh2dis423j8xbcdjzfl06h8hbrb0gb8p7r"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers hashable hashtables mwc-random primitive semigroups + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers deepseq hashable mwc-random + primitive QuickCheck test-framework test-framework-quickcheck2 + test-framework-th text unordered-containers + ]; + benchmarkHaskellDepends = [ base criterion primitive ]; + description = "Dynamic graph algorithms"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dynamic-linker-template" = callPackage ({ mkDerivation, base, containers, template-haskell, unix }: mkDerivation { @@ -72500,6 +72715,42 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "eventstore_1_2_1" = callPackage + ({ mkDerivation, aeson, array, async, base, bifunctors, bytestring + , cereal, clock, connection, containers, dns, dotnet-timespan + , ekg-core, exceptions, fast-logger, hashable, http-client + , interpolate, lifted-async, lifted-base, machines, monad-control + , monad-logger, mono-traversable, mtl, protobuf, random, safe + , safe-exceptions, semigroups, stm, stm-chans, streaming, tasty + , tasty-hspec, tasty-hunit, text, time, transformers-base + , unordered-containers, uuid + }: + mkDerivation { + pname = "eventstore"; + version = "1.2.1"; + sha256 = "1yya52bk3sgfgrarf88a3n7i0jdwr1hd615a17ixxbb1vc9v44y8"; + libraryHaskellDepends = [ + aeson array base bifunctors bytestring cereal clock connection + containers dns dotnet-timespan ekg-core exceptions fast-logger + hashable http-client interpolate lifted-async lifted-base machines + monad-control monad-logger mono-traversable mtl protobuf random + safe safe-exceptions semigroups stm stm-chans streaming text time + transformers-base unordered-containers uuid + ]; + testHaskellDepends = [ + aeson async base bytestring cereal connection containers + dotnet-timespan exceptions fast-logger hashable lifted-async + lifted-base monad-control mono-traversable protobuf safe + safe-exceptions semigroups stm stm-chans streaming tasty + tasty-hspec tasty-hunit text time transformers-base + unordered-containers uuid + ]; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "every" = callPackage ({ mkDerivation, async, base, stm }: mkDerivation { @@ -73998,6 +74249,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "failable" = callPackage + ({ mkDerivation, base, mtl, transformers }: + mkDerivation { + pname = "failable"; + version = "0.1.0.3"; + sha256 = "1kmp5xgsj5yv4h9q3h1r73z6pb9cj6kb4i458rb322l6w88ci0rf"; + libraryHaskellDepends = [ base mtl transformers ]; + description = "A 'Failable' error monad class to unify failure across monads that can fail"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "failable-list" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -74276,8 +74538,8 @@ self: { }: mkDerivation { pname = "fast-downward"; - version = "0.1.0.1"; - sha256 = "1js78083c6813sm1hcycii95c3yya58r4kfdfvgbzzvvklwcxb3y"; + version = "0.1.1.0"; + sha256 = "1c4qsihjf6wjmmh4nm088pxaj7xc1mm9di8jq124zgllf85j1lfl"; libraryHaskellDepends = [ base containers list-t mtl process temporary text transformers ]; @@ -76490,6 +76752,8 @@ self: { pname = "first-class-families"; version = "0.3.0.1"; sha256 = "07291dj197230kq8vxqdgs52zl428w12sgy18y0n5lk18g5isxib"; + revision = "1"; + editedCabalFile = "1gybi18yw6dzp3r82x0xq9364m3isqq31gvaa1agf6hk9c9szfl2"; libraryHaskellDepends = [ base ]; description = "First class type families"; license = stdenv.lib.licenses.mit; @@ -76501,6 +76765,8 @@ self: { pname = "first-class-families"; version = "0.4.0.0"; sha256 = "1hkvk4vhx8zanx7sc8a7nsz4h38nsfhr1rdn1ky1fim328fi4gx6"; + revision = "1"; + editedCabalFile = "1nrcbznpzbfxlk29f8q2zsn11h5zf67w84np25z9bc907d0xljiw"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "First class type families"; @@ -76668,17 +76934,6 @@ self: { }) {}; "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, tfp, utility-ht }: - mkDerivation { - pname = "fixed-length"; - version = "0.2"; - sha256 = "16rqls3zhrm757brz7zkw7m58nvxbj03af9vff98w6hp8gag4w9i"; - libraryHaskellDepends = [ base non-empty tfp utility-ht ]; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "fixed-length_0_2_1" = callPackage ({ mkDerivation, base, non-empty, storable-record, tfp, utility-ht }: mkDerivation { @@ -76690,7 +76945,6 @@ self: { ]; description = "Lists with statically known length based on non-empty package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-list" = callPackage @@ -78716,26 +78970,6 @@ self: { }) {}; "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim, hspec - , integer-gmp, old-locale, scientific, semigroups, text, time - , transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.6"; - sha256 = "06nkm9scy3a41v4m7npgkl9lvy5py6v7chsx0yhdy4pr4mvdna3a"; - revision = "1"; - editedCabalFile = "0vw77ji2d7rhwhq2g7dmln9ifsghgzdlnxg4wjipb128f6gwclh7"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - testHaskellDepends = [ base hspec semigroups ]; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "formatting_6_3_7" = callPackage ({ mkDerivation, array, base, bytestring, clock, ghc-prim, hspec , integer-gmp, old-locale, scientific, semigroups, text, time , transformers @@ -78751,7 +78985,6 @@ self: { testHaskellDepends = [ base hspec semigroups text ]; description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forml" = callPackage @@ -81098,6 +81331,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fused-effects-lens" = callPackage + ({ mkDerivation, base, fused-effects, hspec, lens }: + mkDerivation { + pname = "fused-effects-lens"; + version = "0.1.0.0"; + sha256 = "010gavgbv5zvszvn6gizz7sx405fclfh6ik58a2sd0kf8mvsgzs8"; + libraryHaskellDepends = [ base fused-effects lens ]; + testHaskellDepends = [ base fused-effects hspec lens ]; + description = "Monadic lens combinators for fused-effects"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "fusion" = callPackage ({ mkDerivation, base, directory, doctest, filepath, pipes-safe , transformers, void @@ -83017,6 +83262,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "genvalidity-hspec_0_6_2_2" = callPackage + ({ mkDerivation, base, doctest, genvalidity, genvalidity-property + , hspec, hspec-core, QuickCheck, transformers, validity + }: + mkDerivation { + pname = "genvalidity-hspec"; + version = "0.6.2.2"; + sha256 = "1npy88slf7immafk1vgl6w9gp526xdlvhr96qnrc8phf7b7bfkrf"; + libraryHaskellDepends = [ + base genvalidity genvalidity-property hspec hspec-core QuickCheck + transformers validity + ]; + testHaskellDepends = [ + base doctest genvalidity genvalidity-property hspec hspec-core + QuickCheck validity + ]; + description = "Standard spec's for GenValidity instances"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "genvalidity-hspec-aeson" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, doctest , genvalidity, genvalidity-aeson, genvalidity-hspec @@ -83393,15 +83659,15 @@ self: { "geodetics" = callPackage ({ mkDerivation, array, base, checkers, dimensional, HUnit - , QuickCheck, test-framework, test-framework-hunit + , QuickCheck, semigroups, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "geodetics"; - version = "0.0.6"; - sha256 = "0hp5p6m6szj1h5hzmrs3pyj4cfvcvkgdc95s5xa0lcxc3z8bn7g2"; + version = "0.1.0"; + sha256 = "1yq5d5k4p1vzql37q9a5c37riz87mh94rk0xv67xiaa4f8vpchqm"; enableSeparateDataOutput = true; - libraryHaskellDepends = [ array base dimensional ]; + libraryHaskellDepends = [ array base dimensional semigroups ]; testHaskellDepends = [ array base checkers dimensional HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 @@ -85141,6 +85407,38 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) cairo;}; + "gi-cairo-connector" = callPackage + ({ mkDerivation, base, gi-cairo, gi-cairo-render, haskell-gi-base + , mtl + }: + mkDerivation { + pname = "gi-cairo-connector"; + version = "0.0.1"; + sha256 = "0lhaki2qjk8f6bn78sag4g38g549sjzbjbah27j2i46xj7j08png"; + libraryHaskellDepends = [ + base gi-cairo gi-cairo-render haskell-gi-base mtl + ]; + description = "GI friendly Binding to the Cairo library"; + license = stdenv.lib.licenses.lgpl21; + }) {}; + + "gi-cairo-render" = callPackage + ({ mkDerivation, array, base, bytestring, c2hs, cairo + , haskell-gi-base, mtl, text, utf8-string + }: + mkDerivation { + pname = "gi-cairo-render"; + version = "0.0.1"; + sha256 = "0arbynn7ilrc3shddff1rxcvlg6k3m617lrq4fdsqfas3amxarm4"; + libraryHaskellDepends = [ + array base bytestring haskell-gi-base mtl text utf8-string + ]; + libraryPkgconfigDepends = [ cairo ]; + libraryToolDepends = [ c2hs ]; + description = "GI friendly Binding to the Cairo library"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) cairo;}; + "gi-dbusmenu" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading @@ -85205,26 +85503,6 @@ self: { }) {gtk3 = pkgs.gnome3.gtk;}; "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.16"; - sha256 = "0vqnskshbfp9nsgyfg4pifrh007rb7k176ci8niik96kxh95zfzx"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - - "gi-gdkpixbuf_2_0_18" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers @@ -85242,7 +85520,6 @@ self: { doHaddock = false; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gdkx11" = callPackage @@ -85489,27 +85766,6 @@ self: { }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.26"; - sha256 = "1b0sfjcjxm0kzqyhrvl4wbxqa7zdpwv13xzrpb1k1k9rijjf1anf"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {gtk3 = pkgs.gnome3.gtk;}; - - "gi-gtk_3_0_27" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject , gi-pango, gtk3, haskell-gi, haskell-gi-base @@ -85528,7 +85784,6 @@ self: { libraryPkgconfigDepends = [ gtk3 ]; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome3.gtk;}; "gi-gtk-declarative" = callPackage @@ -86610,6 +86865,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "githash_0_1_3_1" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, hspec + , process, template-haskell, temporary, unliftio + }: + mkDerivation { + pname = "githash"; + version = "0.1.3.1"; + sha256 = "0vpwzbhnr0xwc7vkg3l5qy4awgsr1fkxj58lz6m56jayaad6hn7a"; + libraryHaskellDepends = [ + base bytestring directory filepath process template-haskell + ]; + testHaskellDepends = [ + base bytestring directory filepath hspec process template-haskell + temporary unliftio + ]; + description = "Compile git revision info into Haskell projects"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "github" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , binary, binary-orphans, byteable, bytestring, containers @@ -91518,27 +91793,6 @@ self: { }) {}; "greskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, doctest, doctest-discover - , exceptions, greskell-core, hint, hspec, semigroups, text - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "greskell"; - version = "0.2.2.0"; - sha256 = "1ka4iqfyr03dj2kw22h1gik70cfhhvn870w9q9fd42n2k794snbz"; - libraryHaskellDepends = [ - aeson base exceptions greskell-core semigroups text transformers - unordered-containers vector - ]; - testHaskellDepends = [ - aeson base bytestring doctest doctest-discover greskell-core hint - hspec text unordered-containers - ]; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "greskell_0_2_3_0" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, doctest-discover , exceptions, greskell-core, hint, hspec, semigroups, text , transformers, unordered-containers, vector @@ -91557,7 +91811,6 @@ self: { ]; description = "Haskell binding for Gremlin graph query language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greskell-core" = callPackage @@ -92431,23 +92684,25 @@ self: { }) {}; "gtk-sni-tray" = callPackage - ({ mkDerivation, base, bytestring, cairo, containers, dbus - , dbus-hslogger, directory, enclosed-exceptions, filepath, gi-cairo - , gi-dbusmenugtk3, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gtk, gtk-strut - , gtk3, haskell-gi, haskell-gi-base, hslogger, optparse-applicative + ({ mkDerivation, base, bytestring, containers, dbus, dbus-hslogger + , directory, enclosed-exceptions, filepath, gi-cairo + , gi-cairo-connector, gi-cairo-render, gi-dbusmenugtk3, gi-gdk + , gi-gdkpixbuf, gi-glib, gi-gtk, gtk-strut, gtk3, haskell-gi + , haskell-gi-base, hslogger, optparse-applicative , status-notifier-item, text, transformers, transformers-base, unix }: mkDerivation { pname = "gtk-sni-tray"; - version = "0.1.5.0"; - sha256 = "0vfxskzhcm1a3i7kvqxfvmqdvx7xk6hnbpsnqymrzjaj11w9r9x0"; + version = "0.1.6.0"; + sha256 = "0i8k6jk6jq97cahlgbj8acqdqw4zkh0cyy8i6clznbknl02qqp2i"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring cairo containers dbus directory enclosed-exceptions - filepath gi-cairo gi-dbusmenugtk3 gi-gdk gi-gdkpixbuf gi-glib - gi-gtk gtk-strut haskell-gi haskell-gi-base hslogger - status-notifier-item text transformers transformers-base unix + base bytestring containers dbus directory enclosed-exceptions + filepath gi-cairo gi-cairo-connector gi-cairo-render + gi-dbusmenugtk3 gi-gdk gi-gdkpixbuf gi-glib gi-gtk gtk-strut + haskell-gi haskell-gi-base hslogger status-notifier-item text + transformers transformers-base unix ]; libraryPkgconfigDepends = [ gtk3 ]; executableHaskellDepends = [ @@ -95118,8 +95373,8 @@ self: { }: mkDerivation { pname = "hakyll"; - version = "4.12.4.0"; - sha256 = "0kflvb86maqn15h0dh2r2p415q9k351gl9mpb3vnbmfn0nhvg1x1"; + version = "4.12.5.0"; + sha256 = "097i49pg3wcy2407ysakhrlm67jj68wl9bm5f807gq9pi5qisa06"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -95480,13 +95735,15 @@ self: { }: mkDerivation { pname = "hal"; - version = "0.1.0"; - sha256 = "10n68y9vva9hdvnag48vjnbrdrwv6cirbqgx74cvj4qhlzsvwa7k"; + version = "0.1.2"; + sha256 = "0fflx0xism12cfdifwpiv0caxkm4f46yqhcwyrdwrdmq6q0pxdk2"; + revision = "1"; + editedCabalFile = "09ng464s88dsfdwk4zdzi0yagy5mm41035p4glwiyhdqxc5n60yg"; libraryHaskellDepends = [ aeson base bytestring containers envy exceptions http-conduit http-types mtl text time ]; - description = "Please see the README.md file for this project."; + description = "A runtime environment for Haskell applications running on AWS Lambda"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96147,6 +96404,36 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hapistrano_0_3_9_0" = callPackage + ({ mkDerivation, aeson, async, base, directory, filepath + , formatting, gitrev, hspec, mtl, optparse-applicative, path + , path-io, process, QuickCheck, silently, stm, temporary, time + , transformers, typed-process, yaml + }: + mkDerivation { + pname = "hapistrano"; + version = "0.3.9.0"; + sha256 = "11b4aq2qpjnsvzcir9sldv4qpccipfffvcf4q8z6ji84hyf3zb3y"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base filepath formatting gitrev mtl path process stm time + transformers typed-process + ]; + executableHaskellDepends = [ + aeson async base formatting gitrev optparse-applicative path + path-io stm yaml + ]; + testHaskellDepends = [ + base directory filepath hspec mtl path path-io process QuickCheck + silently temporary + ]; + description = "A deployment library for Haskell applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "happindicator" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib, gtk , gtk2hs-buildtools, libappindicator-gtk2, mtl @@ -98263,8 +98550,10 @@ self: { }: mkDerivation { pname = "haskell-dap"; - version = "0.0.10.0"; - sha256 = "1d2jma4gly0bh1a114a7pm6xq13y5py3p1hkkn24755mi4b0ykqa"; + version = "0.0.10.1"; + sha256 = "187blp0s8grabi11qpv06ckrys84ia51chf9h01449jxcw53fa76"; + revision = "1"; + editedCabalFile = "16kxaa0b9law55c3v9m664wpb8zafldh2wpl0brznq5bjwg1pqz5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -98485,6 +98774,19 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; + "haskell-gi-base_0_21_5" = callPackage + ({ mkDerivation, base, bytestring, containers, glib, text }: + mkDerivation { + pname = "haskell-gi-base"; + version = "0.21.5"; + sha256 = "1pxnwljicxyxr83c7d8xvla7zbp2krv1n6fp4i2zh8bqwln3fkgh"; + libraryHaskellDepends = [ base bytestring containers text ]; + libraryPkgconfigDepends = [ glib ]; + description = "Foundation for libraries generated by haskell-gi"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) glib;}; + "haskell-gi-overloading_0_0" = callPackage ({ mkDerivation }: mkDerivation { @@ -99386,8 +99688,8 @@ self: { }: mkDerivation { pname = "haskell-tools-ast"; - version = "1.1.0.2"; - sha256 = "0j81dmg2mgxlc4wy054a13bvx549xs19fr729rirdj2illdgbw1c"; + version = "1.1.1.0"; + sha256 = "022d1jj3afgjjzfmv99ilcmqckk8p7njfg1r7byjbl8rq9wqnhg7"; libraryHaskellDepends = [ base classyplate ghc mtl pretty references template-haskell uniplate @@ -99455,8 +99757,8 @@ self: { }: mkDerivation { pname = "haskell-tools-backend-ghc"; - version = "1.1.0.2"; - sha256 = "0c054gvnn38r5vlpka5jsvq3n8lcn3j77jg45g1zl1az0099mzhl"; + version = "1.1.1.0"; + sha256 = "0gppj0k99iqxd54m81s8h9dhq9gqj2sadi54swijd67pyq31vnn1"; libraryHaskellDepends = [ base bytestring containers ghc ghc-boot-th haskell-tools-ast mtl references safe split template-haskell transformers uniplate @@ -99477,8 +99779,8 @@ self: { }: mkDerivation { pname = "haskell-tools-builtin-refactorings"; - version = "1.1.0.2"; - sha256 = "1wm7c63cw4izg6vlrm2xdyrfvf4cwcqs2n144y8k0zf442xaq5l9"; + version = "1.1.1.0"; + sha256 = "0n8sydhcdl71kvf765kxc4ldg3gy8rk7i0jzagsj95k58c6mc8f6"; libraryHaskellDepends = [ aeson base Cabal classyplate containers deepseq directory filepath ghc ghc-paths haskell-tools-ast haskell-tools-backend-ghc @@ -99507,8 +99809,8 @@ self: { }: mkDerivation { pname = "haskell-tools-cli"; - version = "1.1.0.2"; - sha256 = "0222qiyjncfyvcizsjx8qv4j8pjfrqb1mi18566fg689bhwl8x7z"; + version = "1.1.1.0"; + sha256 = "1ii9vdmmf2ncdzvlhsiv6afawkdlp5gyc369p2dxkg1nfi0d2px5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99544,8 +99846,8 @@ self: { }: mkDerivation { pname = "haskell-tools-daemon"; - version = "1.1.0.2"; - sha256 = "048k4pa26z3b3m83km8wbhr7nx2z3zmg4gyp1ga15idv73fis3kl"; + version = "1.1.1.0"; + sha256 = "1q8wfib72b4kiiwrz5hr5kzl2lbsff46gbzjidscv90z7c8niv2m"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99577,8 +99879,8 @@ self: { }: mkDerivation { pname = "haskell-tools-debug"; - version = "1.1.0.2"; - sha256 = "1lnv9j4h45g0z1s9pf86py39p2bs8dbz3xybg0bwz89yix8h7nhl"; + version = "1.1.1.0"; + sha256 = "1y0hikwcns6dghr1pvbqv2hk4hgsnpwimaa32yxplwafnghcrcaj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99603,8 +99905,8 @@ self: { }: mkDerivation { pname = "haskell-tools-demo"; - version = "1.1.0.2"; - sha256 = "0c2m6xqcl22x9ay3n9j64lphmsvxsgcwymvbxscwpki9mv7wbvkx"; + version = "1.1.1.0"; + sha256 = "0n03yk99fwk6fxkf3zvcxgr1aikq32d7jysy6cvw2lbwym12rxci"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99634,8 +99936,8 @@ self: { }: mkDerivation { pname = "haskell-tools-experimental-refactorings"; - version = "1.1.0.2"; - sha256 = "1kqiblwc0dp3p7yx10jqxflsgybc0vvgrvi0ylxhgkmn6cpmnkqv"; + version = "1.1.1.0"; + sha256 = "0xmz5fs0hqk27mgi70ipl41wxjgw8swz9z9q1yw9yj00f046q9ia"; libraryHaskellDepends = [ base Cabal containers directory filepath ghc ghc-paths haskell-tools-ast haskell-tools-backend-ghc @@ -99661,8 +99963,8 @@ self: { }: mkDerivation { pname = "haskell-tools-prettyprint"; - version = "1.1.0.2"; - sha256 = "01j212inqx7hq24kcw7n0619bgz7bj576xrh06h10n0wqhd6qfbq"; + version = "1.1.1.0"; + sha256 = "09cg9g8ihq2c5c5wlfnfqvjj9cg2nbak0xxc1mdqlg2cnrdif6rs"; libraryHaskellDepends = [ base containers ghc haskell-tools-ast mtl references split text uniplate @@ -99682,8 +99984,8 @@ self: { }: mkDerivation { pname = "haskell-tools-refactor"; - version = "1.1.0.2"; - sha256 = "12gkmji62kvnqjih9845hmsdj2f52hvmqgrz7s5wclpn3b5fhczq"; + version = "1.1.1.0"; + sha256 = "0lbwyzc4ngd6sjgalw3w47c1r7x2af93rhrcdwncldfd98q4gaif"; libraryHaskellDepends = [ aeson base Cabal containers directory filepath ghc ghc-paths haskell-tools-ast haskell-tools-backend-ghc @@ -99709,8 +100011,8 @@ self: { }: mkDerivation { pname = "haskell-tools-rewrite"; - version = "1.1.0.2"; - sha256 = "1az7924bsiapn7g8gj75vdi47alrlly0wnwhcd7p8a24kh1hj055"; + version = "1.1.1.0"; + sha256 = "0m90f0vqy5iqj7b6a8lgzp5dxpvfnlz7zdsi8f0d2xqg6w8rgv24"; libraryHaskellDepends = [ base containers ghc haskell-tools-ast haskell-tools-prettyprint mtl references @@ -101232,14 +101534,15 @@ self: { }: mkDerivation { pname = "haskus-binary"; - version = "1.1"; - sha256 = "1kva6wsxybd9hj9ml2ykzcfcsh83fcwqdv3gyp702rnk53q9r8r5"; + version = "1.2"; + sha256 = "0wk9hh7snj6spadivikx5w1val076ngkca908z64z5yqqfiq0pcg"; libraryHaskellDepends = [ base bytestring cereal haskus-utils haskus-utils-data haskus-utils-types mtl ]; testHaskellDepends = [ - base bytestring haskus-utils QuickCheck tasty tasty-quickcheck + base bytestring haskus-utils haskus-utils-data QuickCheck tasty + tasty-quickcheck ]; benchmarkHaskellDepends = [ base criterion ]; description = "Haskus binary format manipulation"; @@ -101268,20 +101571,19 @@ self: { }) {}; "haskus-utils" = callPackage - ({ mkDerivation, base, containers, extra, file-embed + ({ mkDerivation, base, containers, extra, file-embed, hashable , haskus-utils-data, haskus-utils-types, haskus-utils-variant - , list-t, mtl, recursion-schemes, stm, stm-containers, tasty - , tasty-quickcheck, template-haskell, transformers, vector + , list-t, mtl, stm, stm-containers, tasty, tasty-quickcheck + , template-haskell, transformers, vector }: mkDerivation { pname = "haskus-utils"; - version = "1.3"; - sha256 = "0gcwnhh3s3cmn7rwd31rs9rqmdpdhwk1la1pf56pcr10dy5iqbs4"; + version = "1.4"; + sha256 = "1d18q6yd4gy80qa6w1s9c4z7fyn9fqdvnvxdm4mhzi2bwx51yzfg"; libraryHaskellDepends = [ - base containers extra file-embed haskus-utils-data - haskus-utils-types haskus-utils-variant list-t mtl - recursion-schemes stm stm-containers template-haskell transformers - vector + base containers extra file-embed hashable haskus-utils-data + haskus-utils-types haskus-utils-variant list-t mtl stm + stm-containers template-haskell transformers vector ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; description = "Haskus utility modules"; @@ -101295,10 +101597,8 @@ self: { }: mkDerivation { pname = "haskus-utils-data"; - version = "1.1"; - sha256 = "1001apph6i956rkb6dpfhg8cgk870s44jgaaiv8ccxivkv45y7di"; - revision = "2"; - editedCabalFile = "0ahwmqlbpvgsd6c5rzq97q00ygsw69k4hvs46f5v20100cdj3496"; + version = "1.1.1"; + sha256 = "1igwlprfknz3aydls849a3l7agm5zqn8c90aqw547bc0asjcsnll"; libraryHaskellDepends = [ base containers extra haskus-utils-types mtl recursion-schemes transformers @@ -101312,26 +101612,28 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "haskus-utils-types"; - version = "1.3"; - sha256 = "06zfc5ivj7zx1c6inc3xkw9b3p62b2x7dr24fp1s59c9yfrihg1a"; + version = "1.3.1"; + sha256 = "1qsji8pcncwqj7dgww7azlfk4vdjbalsspkj53cbwxfcib1nmcsw"; libraryHaskellDepends = [ base ]; description = "Haskus utility modules"; license = stdenv.lib.licenses.bsd3; }) {}; "haskus-utils-variant" = callPackage - ({ mkDerivation, base, haskus-utils-data, haskus-utils-types, tasty + ({ mkDerivation, base, criterion, deepseq, doctest, exceptions + , haskus-utils-data, haskus-utils-types, QuickCheck, tasty , tasty-quickcheck, template-haskell, transformers }: mkDerivation { pname = "haskus-utils-variant"; - version = "2.4"; - sha256 = "13yqyz1jb4qkdzjxwkpc9s2636disxldja49wmah7h71kd2sqn9r"; + version = "2.5"; + sha256 = "1nbaq2f33a2q2qpxalvq52sqn47bil41klkp84qdan3rfzh8a7rh"; libraryHaskellDepends = [ - base haskus-utils-data haskus-utils-types template-haskell - transformers + base deepseq exceptions haskus-utils-data haskus-utils-types + template-haskell transformers ]; - testHaskellDepends = [ base tasty tasty-quickcheck ]; + testHaskellDepends = [ base doctest tasty tasty-quickcheck ]; + benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Variant and EADT"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -104930,8 +105232,8 @@ self: { }: mkDerivation { pname = "hexpat-lens"; - version = "0.1.7"; - sha256 = "0r9psvrgwkg8y9xvgc3rkay828ri5xbp2z5jjf6b52v99j8aipd8"; + version = "0.1.8"; + sha256 = "05c5pjxxsivcbppbl2n8dwyv6zh7azc3l998s2rhgjja55cpfmg0"; libraryHaskellDepends = [ base bytestring deepseq hexpat hexpat-tagsoup lens ]; @@ -105908,6 +106210,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hierarchical-spectral-clustering" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cassava + , clustering, containers, eigen, fgl, filepath + , hierarchical-clustering, hmatrix, lens, managed, modularity, mtl + , optparse-generic, safe, sparse-linear-algebra + , spectral-clustering, streaming, streaming-bytestring + , streaming-cassava, streaming-with, text, text-show, tree-fun + , vector + }: + mkDerivation { + pname = "hierarchical-spectral-clustering"; + version = "0.2.1.0"; + sha256 = "1vgvpa9il2pmcwjq0nnq93ppbanrs5yaxdcs9skbwz1r6gx0k64y"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base cassava clustering containers eigen fgl + hierarchical-clustering hmatrix managed modularity mtl safe + sparse-linear-algebra spectral-clustering streaming + streaming-bytestring streaming-cassava streaming-with text tree-fun + vector + ]; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring cassava containers filepath + hmatrix lens optparse-generic safe text text-show vector + ]; + description = "Hierarchical spectral clustering of a graph"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "hierarchy" = callPackage ({ mkDerivation, base, directory, doctest, exceptions, filepath , free, mmorph, monad-control, mtl, transformers, transformers-base @@ -106558,8 +106890,8 @@ self: { }: mkDerivation { pname = "hinterface"; - version = "0.8.1"; - sha256 = "1qpdapvxy03jqrvn4p45pi2zhiy888k8acysb0fqzi3f8mypqm1c"; + version = "0.8.2"; + sha256 = "02vm78bmmvsiz9iwma3398j91dhs3fnwfnacqg40wv3dypd3x3h1"; libraryHaskellDepends = [ array async base binary bytestring containers cryptonite deepseq exceptions lifted-async lifted-base memory monad-control @@ -110624,8 +110956,8 @@ self: { }: mkDerivation { pname = "hpqtypes-extras"; - version = "1.6.3.0"; - sha256 = "13360sw1nmcgvhmj2inh8v4yccrfbs5b83jfsx1q0s6cfx6z7s37"; + version = "1.7.0.0"; + sha256 = "07cfmaai4d2wb37qqir4apxfbad9n1hb5yj4zpx5aappl213d96f"; libraryHaskellDepends = [ base base16-bytestring bytestring containers cryptohash data-default exceptions fields-json hpqtypes lifted-base log-base @@ -110798,6 +111130,35 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hpython" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, containers + , criterion, deepseq, deriving-compat, digit, dlist, filepath + , fingertree, generic-lens, hedgehog, lens, megaparsec, mtl + , parsers, parsers-megaparsec, semigroupoids, text, these + , validation + }: + mkDerivation { + pname = "hpython"; + version = "0.2"; + sha256 = "1c9ryyfm3cdhl3n5vqhzsxi31jl0vg5qaq1n8li1cy843bjgl63a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bifunctors bytestring containers deriving-compat digit dlist + fingertree generic-lens lens megaparsec mtl parsers + parsers-megaparsec semigroupoids text these validation + ]; + executableHaskellDepends = [ base lens text ]; + testHaskellDepends = [ + base filepath hedgehog lens megaparsec text validation + ]; + benchmarkHaskellDepends = [ + base criterion deepseq megaparsec text validation + ]; + description = "Python language tools"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hquantlib" = callPackage ({ mkDerivation, base, containers, hmatrix, hmatrix-gsl , hmatrix-special, hquantlib-time, HUnit, mersenne-random-pure64 @@ -113187,29 +113548,6 @@ self: { }) {}; "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, criterion, deepseq - , exceptions, fail, lua5_3, mtl, QuickCheck, quickcheck-instances - , tasty, tasty-hunit, tasty-quickcheck, text - }: - mkDerivation { - pname = "hslua"; - version = "1.0.1"; - sha256 = "185izqlvxn406y6frhjr4sk3lq2hcmfm11hyyrxqf5v9pnxp8kna"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - testHaskellDepends = [ - base bytestring containers exceptions fail mtl QuickCheck - quickcheck-instances tasty tasty-hunit tasty-quickcheck text - ]; - benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; - description = "Bindings to Lua, an embeddable scripting language"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - - "hslua_1_0_2" = callPackage ({ mkDerivation, base, bytestring, containers, criterion, deepseq , exceptions, fail, lua5_3, mtl, QuickCheck, quickcheck-instances , tasty, tasty-hunit, tasty-quickcheck, text @@ -113230,7 +113568,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; description = "Bindings to Lua, an embeddable scripting language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) lua5_3;}; "hslua-aeson" = callPackage @@ -113633,21 +113970,6 @@ self: { }) {}; "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck - }: - mkDerivation { - pname = "hspec"; - version = "2.6.0"; - sha256 = "0qwla0bff2q52v27rxjgcp8g3yw0r2iyggp8ggmmabxkk983db6i"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - - "hspec_2_6_1" = callPackage ({ mkDerivation, base, hspec-core, hspec-discover , hspec-expectations, QuickCheck }: @@ -113660,7 +113982,6 @@ self: { ]; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-attoparsec" = callPackage @@ -113737,33 +114058,6 @@ self: { }) {}; "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, hspec-meta - , HUnit, process, QuickCheck, quickcheck-io, random, setenv - , silently, stm, temporary, tf-random, transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.6.0"; - sha256 = "0f3fb6cgfp0yywxi9ii2vzmkrj669nprphcs1piad7bacsk12y6r"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - testHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations hspec-meta HUnit process QuickCheck - quickcheck-io random setenv silently stm temporary tf-random - transformers - ]; - testToolDepends = [ hspec-meta ]; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - - "hspec-core_2_6_1" = callPackage ({ mkDerivation, ansi-terminal, array, base, call-stack, clock , deepseq, directory, filepath, hspec-expectations, hspec-meta , HUnit, process, QuickCheck, quickcheck-io, random, setenv @@ -113788,7 +114082,6 @@ self: { testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-dirstream" = callPackage @@ -113829,25 +114122,6 @@ self: { }) {}; "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, hspec-meta, QuickCheck - }: - mkDerivation { - pname = "hspec-discover"; - version = "2.6.0"; - sha256 = "17q5g5z7pylw8ghx1jbwk5qrafcg2cblpckvkwla1y3dzry43nc2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - testHaskellDepends = [ - base directory filepath hspec-meta QuickCheck - ]; - testToolDepends = [ hspec-meta ]; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - - "hspec-discover_2_6_1" = callPackage ({ mkDerivation, base, directory, filepath, hspec-meta, QuickCheck }: mkDerivation { @@ -113864,7 +114138,6 @@ self: { testToolDepends = [ hspec-meta ]; description = "Automatically discover and run Hspec tests"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-expectations" = callPackage @@ -115965,6 +116238,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "http-client_0_6_0" = callPackage + ({ mkDerivation, array, async, base, blaze-builder, bytestring + , case-insensitive, containers, cookie, deepseq, directory + , exceptions, filepath, ghc-prim, hspec, http-types, memory + , mime-types, monad-control, network, network-uri, random, stm + , streaming-commons, text, time, transformers, zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.6.0"; + sha256 = "1z38v6vgs5hzd42ljkwxdxs1j3ixwsj9klyxd2ng3pxdnb8wyvvk"; + libraryHaskellDepends = [ + array base blaze-builder bytestring case-insensitive containers + cookie deepseq exceptions filepath ghc-prim http-types memory + mime-types network network-uri random stm streaming-commons text + time transformers + ]; + testHaskellDepends = [ + async base blaze-builder bytestring case-insensitive containers + deepseq directory hspec http-types monad-control network + network-uri streaming-commons text time transformers zlib + ]; + doCheck = false; + description = "An HTTP client engine"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-client-auth" = callPackage ({ mkDerivation, base, base64-string, blaze-builder, bytestring , case-insensitive, conduit, crypto-conduit, http-client @@ -116211,6 +116512,8 @@ self: { pname = "http-conduit"; version = "2.3.4"; sha256 = "03si9ymgnv1252q3wyj8cblbzx56shcvmi1hx51p90a2aiqbhj15"; + revision = "1"; + editedCabalFile = "1c0cz9qxq3a0avcccqx07knnnxjjxgq81fp5wlxb6z5q6r3cpxag"; libraryHaskellDepends = [ aeson base bytestring conduit conduit-extra http-client http-client-tls http-types mtl resourcet transformers unliftio-core @@ -117750,8 +118053,8 @@ self: { }: mkDerivation { pname = "hw-dsv"; - version = "0.3.3"; - sha256 = "008za7xcqnmkypbv9s1bkzrzap2h11vagpjqyqfymvanzwj1bv2h"; + version = "0.3.4"; + sha256 = "0bp9c2023iyalsgf5ih9aray1ifbmarqkl88whwrkh333lys946f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -117916,8 +118219,8 @@ self: { pname = "hw-hspec-hedgehog"; version = "0.1.0.5"; sha256 = "0kznqpliqnahyayi1q08mfz4qwhqvz54hb8cv6r2ps3lyjnpmlfk"; - revision = "1"; - editedCabalFile = "05fg0d89652yhsji35ckh9qiiy4y7c04i6zya9hrkgwl2jaq55fv"; + revision = "2"; + editedCabalFile = "0rnmwi88yj0xdnywwzswhcwgs6pj5s1m3vpgvbz31r4jpz8mvfkh"; libraryHaskellDepends = [ base call-stack hedgehog hspec HUnit transformers ]; @@ -117939,26 +118242,6 @@ self: { }) {}; "hw-ip" = callPackage - ({ mkDerivation, appar, base, containers, generic-lens, hedgehog - , hspec, hw-bits, hw-hspec-hedgehog, iproute, text - }: - mkDerivation { - pname = "hw-ip"; - version = "2.0.0.0"; - sha256 = "04hb06rbkipm21fji9n5v56wm2jvdnr7w42ndp9x2hyp3m1i9sm0"; - libraryHaskellDepends = [ - appar base containers generic-lens hw-bits iproute text - ]; - testHaskellDepends = [ - appar base generic-lens hedgehog hspec hw-bits hw-hspec-hedgehog - text - ]; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "hw-ip_2_0_1_0" = callPackage ({ mkDerivation, appar, base, containers, generic-lens, hedgehog , hspec, hw-bits, hw-hspec-hedgehog, iproute, text }: @@ -118321,35 +118604,6 @@ self: { }) {}; "hw-streams" = callPackage - ({ mkDerivation, base, bytestring, criterion, directory, exceptions - , ghc-prim, hedgehog, hspec, hspec-discover, hw-bits - , hw-hspec-hedgehog, hw-prim, mmap, primitive, QuickCheck - , semigroups, transformers, vector - }: - mkDerivation { - pname = "hw-streams"; - version = "0.0.0.9"; - sha256 = "05fhixjndgz26gf3kl8nzynzrs93ra61rbnps4bgd3ikg07njrjn"; - libraryHaskellDepends = [ - base bytestring ghc-prim hw-bits hw-prim mmap primitive semigroups - transformers vector - ]; - testHaskellDepends = [ - base bytestring directory exceptions ghc-prim hedgehog hspec - hw-bits hw-hspec-hedgehog hw-prim mmap primitive QuickCheck - semigroups transformers vector - ]; - testToolDepends = [ hspec-discover ]; - benchmarkHaskellDepends = [ - base bytestring criterion ghc-prim hw-bits hw-prim mmap primitive - semigroups transformers vector - ]; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "hw-streams_0_0_0_10" = callPackage ({ mkDerivation, base, bytestring, criterion, directory, exceptions , ghc-prim, hedgehog, hspec, hspec-discover, hw-bits , hw-hspec-hedgehog, hw-prim, mmap, primitive, QuickCheck @@ -119626,6 +119880,30 @@ self: { license = "(BSD-3-Clause OR Apache-2.0)"; }) {}; + "hyraxAbif_0_2_3_15" = callPackage + ({ mkDerivation, base, binary, bytestring, directory, filepath + , hedgehog, hscolour, pretty-show, protolude, text + }: + mkDerivation { + pname = "hyraxAbif"; + version = "0.2.3.15"; + sha256 = "1wfmlqgk751ij30x0dkyc9fyc6j1a96l0s7fjj1sywdvawd8cfh1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring directory filepath protolude text + ]; + executableHaskellDepends = [ + base bytestring hscolour pretty-show protolude text + ]; + testHaskellDepends = [ + base binary bytestring hedgehog protolude text + ]; + description = "Modules for parsing, generating and manipulating AB1 files"; + license = "(BSD-3-Clause OR Apache-2.0)"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hzaif" = callPackage ({ mkDerivation, aeson, base, bytestring, http-conduit, text }: mkDerivation { @@ -121975,6 +122253,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "influxdb_1_6_1_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal + , cabal-doctest, clock, containers, doctest, foldl, http-client + , http-types, lens, network, optional-args, QuickCheck, scientific + , tagged, template-haskell, text, time, unordered-containers + , vector + }: + mkDerivation { + pname = "influxdb"; + version = "1.6.1.1"; + sha256 = "0cmhy4v00jvz1n4xfa0pcxgld7mc6idj4jl2b3n01jfhjff22ryi"; + isLibrary = true; + isExecutable = true; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clock containers foldl http-client + http-types lens network optional-args scientific tagged text time + unordered-containers vector + ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + description = "Haskell client library for InfluxDB"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "informative" = callPackage ({ mkDerivation, base, containers, csv, highlighting-kate , http-conduit, monad-logger, pandoc, persistent @@ -122839,8 +123142,8 @@ self: { }: mkDerivation { pname = "intero"; - version = "0.1.37"; - sha256 = "15vpmqdadc179cnzzc6rp86mwc2bak4g260jz7mkv7m5hzm5d846"; + version = "0.1.38"; + sha256 = "1s7si6rw6xlgczismyj9wh40ym39fcskpbyf1ldab6krwxykf65v"; isLibrary = false; isExecutable = true; enableSeparateDataOutput = true; @@ -133035,6 +133338,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lens-regex_0_1_1" = callPackage + ({ mkDerivation, array, base, directory, doctest, filepath, lens + , regex-base, regex-posix, template-haskell + }: + mkDerivation { + pname = "lens-regex"; + version = "0.1.1"; + sha256 = "0c673v6k6y7dng6qmi4jbh3jlx803mg5g1911bz54r785fm6p50d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base lens regex-base template-haskell + ]; + testHaskellDepends = [ + base directory doctest filepath regex-posix + ]; + description = "Lens powered regular expression"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lens-simple" = callPackage ({ mkDerivation, base, lens-family, lens-family-core , lens-family-th, mtl, transformers @@ -133191,8 +133515,10 @@ self: { }: mkDerivation { pname = "lentil"; - version = "1.1.0.1"; - sha256 = "1psb3ywbzg6k0cir5bxphjqmbzd0n1l2w3skkr31px79haa4wbm7"; + version = "1.1.1.1"; + sha256 = "00ydjvvpqil044wjb52cf804qn8fdqvf3rn3jghinb10y8i4a62k"; + revision = "1"; + editedCabalFile = "1vamkgjrngsdq8k820xkr0h613ly2s3lpf0hdqkvqkynywmd2ing"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -140726,22 +141052,6 @@ self: { }) {}; "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq, directory - , filepath, JuicyPixels, massiv, netpbm, process, vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.4.0"; - sha256 = "0yah1g7cm959kzzlqkgbzrx5aswd697518v89z7r5380f6hqq4cc"; - libraryHaskellDepends = [ - base bytestring data-default deepseq directory filepath JuicyPixels - massiv netpbm process vector - ]; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "massiv-io_0_1_5_0" = callPackage ({ mkDerivation, base, bytestring, data-default, deepseq, directory , filepath, JuicyPixels, massiv, netpbm, process, vector }: @@ -140755,7 +141065,6 @@ self: { ]; description = "Import/export of Image files into massiv Arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "master-plan" = callPackage @@ -140812,6 +141121,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "matchable-th" = callPackage + ({ mkDerivation, base, containers, matchable, template-haskell + , th-abstraction + }: + mkDerivation { + pname = "matchable-th"; + version = "0.1.0.0"; + sha256 = "1381zpnpzgng7iwx326bjwi1i3300a0aa0hhp1j5wr0mxad8hyr3"; + libraryHaskellDepends = [ + base matchable template-haskell th-abstraction + ]; + testHaskellDepends = [ base containers matchable ]; + description = "Generates Matchable instances using TemplateHaskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "matcher" = callPackage ({ mkDerivation, base, base-prelude, profunctors, success, text , transformers @@ -141490,6 +141815,32 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "mbug_1_3_2" = callPackage + ({ mkDerivation, base, bytestring, directory, extra, formatting + , http-client, http-client-tls, mtl, optparse-applicative, process + , scalpel-core, tagsoup, text, time, xdg-basedir + }: + mkDerivation { + pname = "mbug"; + version = "1.3.2"; + sha256 = "05cyznwvwjc1ajjkr28h8dawlk10nx60ybx30g6vs5h68zlq43nd"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory extra formatting http-client + http-client-tls mtl optparse-applicative process scalpel-core + tagsoup text time xdg-basedir + ]; + executableHaskellDepends = [ + base bytestring directory extra formatting http-client + http-client-tls mtl optparse-applicative process scalpel-core + tagsoup text time xdg-basedir + ]; + description = "download bugs mailboxes"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mcl" = callPackage ({ mkDerivation, base, binary, bytestring, Cabal, criterion , deepseq, ghc-prim, gmpxx, groups, integer-gmp, mcl, openssl @@ -142457,6 +142808,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mercury-api_0_1_0_2" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, clock, directory + , hashable, HUnit, optparse-applicative, text, unordered-containers + }: + mkDerivation { + pname = "mercury-api"; + version = "0.1.0.2"; + sha256 = "0ybpc1kai85rflgdr80jd8cvwxaxmbphv82nz2p17502jrmdfkhg"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base bytestring clock hashable text + unordered-containers + ]; + executableHaskellDepends = [ + ansi-terminal base bytestring optparse-applicative text + ]; + testHaskellDepends = [ + base bytestring directory HUnit optparse-applicative text + ]; + description = "Haskell binding to Mercury API for ThingMagic RFID readers"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "merge-bash-history" = callPackage ({ mkDerivation, attoparsec, base, data-ordlist, errors , optparse-applicative, text @@ -142570,8 +142946,8 @@ self: { pname = "messagepack"; version = "0.5.4"; sha256 = "0z2xbfqg9x8ymbr0j81br610ja8f0wd2wvvrnjrk222vbp0915ck"; - revision = "1"; - editedCabalFile = "0p13in70gvxl8d8hjl1dcxczfpcfyffy2lxbdy1d21h742ks1zjb"; + revision = "2"; + editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; libraryHaskellDepends = [ base bytestring cereal containers deepseq ]; @@ -143054,33 +143430,6 @@ self: { }) {}; "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion - , deepseq, hashable, lens, lens-aeson, microlens, scientific, tasty - , tasty-hunit, text, unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0"; - sha256 = "1iahlh505jrlpd9ndkr5asfnzdpp6m6m2lm44ds15461py485wpj"; - revision = "2"; - editedCabalFile = "1ri98vr3bbx0l9b4vpmcwhf8fm5lgj92kw4g0v3jx6xajwwc5dc8"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - testHaskellDepends = [ - aeson base bytestring deepseq hashable microlens tasty tasty-hunit - text unordered-containers vector - ]; - benchmarkHaskellDepends = [ - aeson base bytestring criterion deepseq hashable lens lens-aeson - microlens text unordered-containers vector - ]; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - - "microlens-aeson_2_3_0_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , hashable, microlens, scientific, tasty, tasty-hunit, text , unordered-containers, vector @@ -143101,7 +143450,6 @@ self: { ]; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-contra" = callPackage @@ -144354,6 +144702,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "mixed-types-num_0_3_2" = callPackage + ({ mkDerivation, base, convertible, hspec, hspec-smallcheck + , QuickCheck, smallcheck, template-haskell + }: + mkDerivation { + pname = "mixed-types-num"; + version = "0.3.2"; + sha256 = "1jr9kdsrv90laspiy5l99apd1rd197jzlvlsz8xdgcm8rpffizs9"; + libraryHaskellDepends = [ + base convertible hspec hspec-smallcheck QuickCheck smallcheck + template-haskell + ]; + testHaskellDepends = [ base hspec hspec-smallcheck QuickCheck ]; + description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mixpanel-client" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring, hspec , hspec-discover, http-client, http-client-tls, markdown-unlit @@ -144830,6 +145196,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "modularity" = callPackage + ({ mkDerivation, base, eigen, hmatrix, sparse-linear-algebra + , spectral-clustering, vector + }: + mkDerivation { + pname = "modularity"; + version = "0.2.0.3"; + sha256 = "1w1w9fcsh758wnnq3i1c4bklpg5m622lh3qybddacs65gvih64sy"; + libraryHaskellDepends = [ + base eigen hmatrix sparse-linear-algebra spectral-clustering vector + ]; + description = "Find the modularity of a network"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "module-management" = callPackage ({ mkDerivation, applicative-extras, base, bytestring, Cabal , cmdargs, containers, data-default, directory, filepath, haskeline @@ -147000,19 +147381,30 @@ self: { ({ mkDerivation, morphisms }: mkDerivation { pname = "morphisms-functors"; - version = "0.1.5"; - sha256 = "101irp13zrwpvbdzg891nmf633ssqpff5aaq6ikxmmk18hyy7aiy"; + version = "0.1.6"; + sha256 = "103mg7pdykmiyx4xygrrygamj1d26v3xlph14l3w1hh02i6w4x4h"; libraryHaskellDepends = [ morphisms ]; description = "Functors, theirs compositions and transformations"; license = stdenv.lib.licenses.mit; }) {}; + "morphisms-functors-inventory" = callPackage + ({ mkDerivation, morphisms, morphisms-functors }: + mkDerivation { + pname = "morphisms-functors-inventory"; + version = "0.1.0"; + sha256 = "16p5wj9yq6qsbzaqsx0p33fkginkf5mbqg4y7pak2wx1v7aqll2m"; + libraryHaskellDepends = [ morphisms morphisms-functors ]; + description = "Inventory is state and store"; + license = stdenv.lib.licenses.mit; + }) {}; + "morphisms-objects" = callPackage ({ mkDerivation, morphisms }: mkDerivation { pname = "morphisms-objects"; - version = "0.1.2"; - sha256 = "0r41zjrazdcs4q04b0rik0g1hwskl7hzwklihb8yziybg7v5wqwm"; + version = "0.1.3"; + sha256 = "1d5jbjp8ih1fsna8w2mkw217ybsxdhyh7acq0r7b9iwngh52jj6b"; libraryHaskellDepends = [ morphisms ]; description = "Algebraic structures"; license = stdenv.lib.licenses.mit; @@ -147986,19 +148378,21 @@ self: { "mulang" = callPackage ({ mkDerivation, aeson, alex, base, bytestring, containers, happy , hashable, haskell-src, hspec, inflections, language-java - , language-javascript, neat-interpolation, parsec, ParsecTools - , process, scientific, split, text, unordered-containers, vector + , language-javascript, language-python, monad-loops, mtl + , neat-interpolation, parsec, ParsecTools, process, scientific + , split, text, unordered-containers, vector }: mkDerivation { pname = "mulang"; - version = "3.6.1"; - sha256 = "0phpy2dickbam17n6ppq10qlfjxmhf1c7jb67qjk7672rxyrqfzb"; + version = "4.4.0"; + sha256 = "14fyiphg02f3q0li19fkya5l52xj60a1mpjryaxwx9cg47qi95hs"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base bytestring containers hashable haskell-src inflections - language-java language-javascript parsec ParsecTools process - scientific split text unordered-containers vector + language-java language-javascript language-python monad-loops mtl + parsec ParsecTools process scientific split text + unordered-containers vector ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ @@ -148006,11 +148400,11 @@ self: { ]; executableToolDepends = [ alex happy ]; testHaskellDepends = [ - aeson base bytestring hspec neat-interpolation text + aeson base bytestring containers hspec neat-interpolation text ]; testToolDepends = [ alex happy ]; description = "An intermediate language designed to perform advanced code analysis"; - license = "GPL"; + license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -149869,34 +150263,34 @@ self: { , base, bytestring, classy-prelude, conduit, conduit-extra , containers, exceptions, fast-logger, hashable, http-client , http-client-tls, http-conduit, http-types, iso8601-time, lens - , lens-aeson, monad-control, monad-logger, mtl, random, resourcet - , retry, safe-exceptions, say, scientific, split, stm, stm-chans - , stm-conduit, tasty, tasty-hunit, template-haskell, text, time - , transformers, transformers-base, unliftio, unliftio-core - , unordered-containers, uuid, vector, wai, warp + , lens-aeson, modern-uri, monad-control, monad-logger, mtl, random + , resourcet, retry, safe-exceptions, say, scientific, split, stm + , stm-chans, stm-conduit, tasty, tasty-hunit, template-haskell + , text, time, transformers, transformers-base, unliftio + , unliftio-core, unordered-containers, uuid, vector, wai, warp }: mkDerivation { pname = "nakadi-client"; - version = "0.6.1.0"; - sha256 = "0y6mvw10cbiqib309v38ldjq14xryccs8mhi41zkwpnqldmkyd1x"; + version = "0.7.0.0"; + sha256 = "16d7ffbm3zrc8kwx1vy0xjxiiv0lxnpxvk93ixhiqyhfddych89x"; libraryHaskellDepends = [ aeson aeson-casing async async-timer base bytestring conduit conduit-extra containers exceptions hashable http-client http-client-tls http-conduit http-types iso8601-time lens - monad-control monad-logger mtl resourcet retry safe-exceptions - scientific split stm stm-chans template-haskell text time - transformers transformers-base unliftio unliftio-core + modern-uri monad-control monad-logger mtl resourcet retry + safe-exceptions scientific split stm stm-chans template-haskell + text time transformers transformers-base unliftio unliftio-core unordered-containers uuid vector ]; testHaskellDepends = [ aeson aeson-casing aeson-qq async async-timer base bytestring classy-prelude conduit conduit-extra containers exceptions fast-logger hashable http-client http-client-tls http-conduit - http-types iso8601-time lens lens-aeson monad-control monad-logger - mtl random resourcet retry safe-exceptions say scientific split stm - stm-chans stm-conduit tasty tasty-hunit template-haskell text time - transformers transformers-base unliftio unliftio-core - unordered-containers uuid vector wai warp + http-types iso8601-time lens lens-aeson modern-uri monad-control + monad-logger mtl random resourcet retry safe-exceptions say + scientific split stm stm-chans stm-conduit tasty tasty-hunit + template-haskell text time transformers transformers-base unliftio + unliftio-core unordered-containers uuid vector wai warp ]; description = "Client library for the Nakadi Event Broker"; license = stdenv.lib.licenses.bsd3; @@ -150402,8 +150796,8 @@ self: { }: mkDerivation { pname = "natural"; - version = "0.3.0.3"; - sha256 = "18ycqn164kl203wmvrdyfbwfgbbyzyl38i86sllmkwpqq2ciarwi"; + version = "0.3.0.4"; + sha256 = "0c5z5msb2nx648m07cjv9hwaycdhcwis9ac6n7qbyvhxsis84jlg"; libraryHaskellDepends = [ base lens semigroupoids ]; testHaskellDepends = [ base checkers hedgehog lens QuickCheck tasty tasty-hedgehog @@ -150965,8 +151359,8 @@ self: { }: mkDerivation { pname = "net-mqtt"; - version = "0.1.0.0"; - sha256 = "0gh2c83n0dc0f9878kmac94l074c9rd24yyrsid2s52qqv1j953j"; + version = "0.2.1.0"; + sha256 = "177w50gcjj7n44y9q4q5xb3gh42ivx7ld7ha3mqg8ik803q523y9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -151096,17 +151490,6 @@ self: { }) {}; "netlib-ffi" = callPackage - ({ mkDerivation, base, storable-complex, transformers }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1"; - sha256 = "0ckwa5r8fx2j7qb5phy6gm3xbg9crr9amglcicdxgnzgjd8aap2h"; - libraryHaskellDepends = [ base storable-complex transformers ]; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "netlib-ffi_0_1_1" = callPackage ({ mkDerivation, base, guarded-allocation, storable-complex , transformers }: @@ -151119,7 +151502,6 @@ self: { ]; description = "Helper modules for FFI to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -153894,8 +154276,8 @@ self: { }: mkDerivation { pname = "notmuch"; - version = "0.1.0.0"; - sha256 = "100kqfyw5aan07ywynqrpmgvsv1cma1v7sl2a8zvlwnhva39nz3b"; + version = "0.2.0.0"; + sha256 = "1w3g4747q02m0r0n8l5bkfp8icwwnvkp4bf9amkh7h80vidzmspy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155390,8 +155772,8 @@ self: { }: mkDerivation { pname = "oeis2"; - version = "1.0.0"; - sha256 = "0rrzdv5ida7vlvrpchzsjq3r8pnkrjxn8c6413qxnz2q512igi9l"; + version = "1.0.1"; + sha256 = "0vw0k1lvh8fq4ivr7dq14ilydyaps010cz7wxk2m9sc6i2qq4jbf"; libraryHaskellDepends = [ aeson base containers http-conduit lens lens-aeson text vector ]; @@ -160032,17 +160414,6 @@ self: { }) {}; "parser-combinators" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "parser-combinators"; - version = "1.0.0"; - sha256 = "1pwfdsklqwvaynwpdzmx1bs35mp6dpsyaqdnzxnqcrxwf5h8sk75"; - libraryHaskellDepends = [ base ]; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "parser-combinators_1_0_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "parser-combinators"; @@ -160051,7 +160422,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Lightweight package providing commonly useful parser combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser-helper" = callPackage @@ -161535,6 +161905,8 @@ self: { pname = "pedestrian-dag"; version = "0.2.0"; sha256 = "075m58nmls893vis3l55dix8mrciwl2r8kz1s18mgwhxvadm4gdp"; + revision = "1"; + editedCabalFile = "1434n6ncyyryjqzn3xcg73nwvcr6si7cnf2k8g2qrp0xmrq0nx8b"; libraryHaskellDepends = [ array base binary containers ]; description = "A pedestrian implementation of directed acyclic graphs"; license = stdenv.lib.licenses.bsd3; @@ -162036,23 +162408,6 @@ self: { }) {}; "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, QuickCheck - , test-framework, test-framework-quickcheck2, text - }: - mkDerivation { - pname = "persist"; - version = "0.1.1.0"; - sha256 = "1rk0pgy3dk9aq17p1kn2pzhppvpjzcs9righ3n7xchmsmiqqs2ji"; - libraryHaskellDepends = [ base bytestring containers text ]; - testHaskellDepends = [ - base bytestring QuickCheck test-framework - test-framework-quickcheck2 text - ]; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "persist_0_1_1_1" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , test-framework, test-framework-quickcheck2, text }: @@ -162067,7 +162422,6 @@ self: { ]; description = "Minimal serialization library with focus on performance"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persist2er" = callPackage @@ -163737,8 +164091,8 @@ self: { }: mkDerivation { pname = "pinboard"; - version = "0.10.1.2"; - sha256 = "1ifpp00wqacylmbba88r82rfygwj2c28nc5mxn7l6flxw698afnx"; + version = "0.10.1.3"; + sha256 = "1shn877lirnbbhk6wzbypv5j5cqh8wyvgg0333h7mhkmvkm0v569"; libraryHaskellDepends = [ aeson base bytestring containers http-client http-client-tls http-types monad-logger mtl network profunctors random text time @@ -163800,8 +164154,8 @@ self: { }: mkDerivation { pname = "ping"; - version = "0.1.0.0"; - sha256 = "1vaqpb0p7vqpfl1qdyyaj1hlrmqskcsawsjw9rnmd6q76f67i6n6"; + version = "0.1.0.1"; + sha256 = "0zrs98927wfnxw00125pssgw8i8yz7hlrd9043dmw7fviajay6n0"; libraryHaskellDepends = [ base cpu ip posix-api primitive primitive-containers stm transformers @@ -164442,6 +164796,8 @@ self: { pname = "pipes-http"; version = "1.0.5"; sha256 = "0m9hy9j6nnq2zngz1axbarjc1cwyxw7z36x40qw8yqz1dm39d8a9"; + revision = "1"; + editedCabalFile = "015psgj5wl67p0qdc00nrn717gv354gii70c57n1px5j81b0z5cl"; libraryHaskellDepends = [ base bytestring http-client http-client-tls pipes ]; @@ -165043,21 +165399,23 @@ self: { }) {}; "pixela" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, http-client - , http-client-tls, http-types, split, text, unordered-containers - , uri-encode, vector + ({ mkDerivation, aeson, base, bytestring, data-default-class + , http-client, http-client-tls, http-types, split, text, time + , unordered-containers, uri-encode, vector }: mkDerivation { pname = "pixela"; - version = "0.2.1.0"; - sha256 = "15bzvwd1dh27p1gs6kfilk34gfkbczz43w70xagk60hvf1mdlcxl"; + version = "0.3.1.0"; + sha256 = "0kjv5536hakbxxgj3jfzmxlgxnwx7jk0izf4gly14l4yr8fbv4s1"; libraryHaskellDepends = [ - aeson base bytestring data-default http-client http-client-tls - http-types split text unordered-containers uri-encode vector + aeson base bytestring data-default-class http-client + http-client-tls http-types split text time unordered-containers + uri-encode vector ]; testHaskellDepends = [ - aeson base bytestring data-default http-client http-client-tls - http-types split text unordered-containers uri-encode vector + aeson base bytestring data-default-class http-client + http-client-tls http-types split text time unordered-containers + uri-encode vector ]; description = "Pixela client"; license = stdenv.lib.licenses.bsd3; @@ -169264,8 +169622,8 @@ self: { }: mkDerivation { pname = "primitive-maybe"; - version = "0.1.1"; - sha256 = "00p9xrvv32wcj3ln9z1dk31bb47r95y4w4ny4y28wl6vyc6vl0ln"; + version = "0.1.1.1"; + sha256 = "1sclcw9shl88sbc5nrr4m43mkhxm9j3jw0cc497n9fhi6x46kjw2"; libraryHaskellDepends = [ base primitive ]; testHaskellDepends = [ base primitive QuickCheck quickcheck-classes tagged tasty @@ -170182,8 +170540,8 @@ self: { }: mkDerivation { pname = "project-m36"; - version = "0.5.1"; - sha256 = "1i3g6x3447hy1df6kzh8afpp366lzi9jspqzwi7gjkhkqhxxc94q"; + version = "0.6"; + sha256 = "0ajxsgzbscg45c1dzhqassnga9k3i22f2l2w5kciina5q43ihla4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -171343,6 +171701,8 @@ self: { pname = "psqueues"; version = "0.2.7.0"; sha256 = "1sjgc9bxh63kkdp59nbirx3xazr02ia5yhp4f4a0jnq1hj465wsc"; + revision = "1"; + editedCabalFile = "0ncag4p7v41x5disbvkwzmv0c7ifc85lmjljzvf8d33arh7b08bj"; libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; testHaskellDepends = [ array base deepseq ghc-prim hashable HUnit QuickCheck tagged @@ -171356,6 +171716,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "psqueues_0_2_7_1" = callPackage + ({ mkDerivation, array, base, containers, criterion, deepseq + , fingertree-psqueue, ghc-prim, hashable, HUnit, mtl, PSQueue + , QuickCheck, random, tagged, test-framework, test-framework-hunit + , test-framework-quickcheck2, unordered-containers + }: + mkDerivation { + pname = "psqueues"; + version = "0.2.7.1"; + sha256 = "1hcfxb977lzxsmd47z0snjj4xdhiwnqzif8xkpwzw28dspn44zh4"; + revision = "1"; + editedCabalFile = "0336d9ckixv4n23vy5l3xk0wavfn3z9xk105gig0zv70b3jh3r3y"; + libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; + testHaskellDepends = [ + array base deepseq ghc-prim hashable HUnit QuickCheck tagged + test-framework test-framework-hunit test-framework-quickcheck2 + ]; + benchmarkHaskellDepends = [ + base containers criterion deepseq fingertree-psqueue ghc-prim + hashable mtl PSQueue random unordered-containers + ]; + description = "Pure priority search queues"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pstemmer" = callPackage ({ mkDerivation, base, text }: mkDerivation { @@ -171935,8 +172321,8 @@ self: { }: mkDerivation { pname = "purescript"; - version = "0.12.1"; - sha256 = "0m1460p8kllcbbk2ppp9hcf1jbzfnlim0nnkapj4wpm8jklngaw1"; + version = "0.12.2"; + sha256 = "1y7bcfj6fdlwmisdd75xcdkz7grch0pcmb9xsh6zwyvi6c40a3g2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172120,8 +172506,8 @@ self: { }: mkDerivation { pname = "push-notify-apn"; - version = "0.1.1.0"; - sha256 = "06hm83g88mbaikx3gy51vkslhhpvy5ipajwgyxcczkvh7x4a3z2j"; + version = "0.2.0.0"; + sha256 = "0lkdjpgd04b7jxcrqvn395bhdac0ms0jbxdigd1xpvj6d9w7f9x3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172249,6 +172635,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "pusher-http-haskell_1_5_1_7" = callPackage + ({ mkDerivation, aeson, base, base16-bytestring, bytestring + , cryptonite, hashable, hspec, http-client, http-types, memory + , QuickCheck, scientific, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "pusher-http-haskell"; + version = "1.5.1.7"; + sha256 = "01p168y4hwn38b4lpf3pi7pv5w46pd8gmli42q7bs3jxd6jhhppc"; + libraryHaskellDepends = [ + aeson base base16-bytestring bytestring cryptonite hashable + http-client http-types memory text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring cryptonite hspec + http-client http-types QuickCheck scientific text time transformers + unordered-containers vector + ]; + description = "Haskell client library for the Pusher HTTP API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pusher-ws" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq , hashable, http-conduit, lens, lens-aeson, network, scientific @@ -172786,6 +173197,38 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "qrcode-core" = callPackage + ({ mkDerivation, base, binary, bytestring, case-insensitive + , containers, dlist, primitive, text, vector + }: + mkDerivation { + pname = "qrcode-core"; + version = "0.8.0"; + sha256 = "1rfrigh6ny305d3xq33cbpjjnhk0bsc2m00ic0y27jvyz73k8k43"; + libraryHaskellDepends = [ + base binary bytestring case-insensitive containers dlist primitive + text vector + ]; + description = "QR code library in pure Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + + "qrcode-juicypixels" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels + , qrcode-core, text, vector + }: + mkDerivation { + pname = "qrcode-juicypixels"; + version = "0.8.0"; + sha256 = "14cjf8gykh22ps5i8sh5im2m4sq81kgz4cdxmqyc9rpidqh763wk"; + libraryHaskellDepends = [ + base base64-bytestring bytestring JuicyPixels qrcode-core text + vector + ]; + description = "Converts a qrcode-core image to JuicyPixels"; + license = stdenv.lib.licenses.mit; + }) {}; + "qsem" = callPackage ({ mkDerivation, base, ghc-prim }: mkDerivation { @@ -173357,11 +173800,12 @@ self: { }: mkDerivation { pname = "quickcheck-classes"; - version = "0.6.0.0"; - sha256 = "02ssvvhi87ggyxi3jsg2h1xirwqyydda88n5ax4imfljvig366cy"; + version = "0.6.1.0"; + sha256 = "01mqsffks1d0wf3vwrlmalqxqha2gfqa389gqq0zr5b9y7ka5a8h"; libraryHaskellDepends = [ aeson base base-orphans bifunctors containers fail primitive QuickCheck semigroupoids semigroups semirings tagged transformers + vector ]; testHaskellDepends = [ aeson base base-orphans containers primitive QuickCheck @@ -175962,8 +176406,8 @@ self: { }: mkDerivation { pname = "reactive-banana"; - version = "1.2.0.0"; - sha256 = "1bwzkpackjpzk2igmlahr2qhgacad62v48lam97g9q85zww70p29"; + version = "1.2.1.0"; + sha256 = "18vm9zxr59s8n5bmqx3pg8jbaay6vlz1icnf9p1vnq8bvsb6svyc"; libraryHaskellDepends = [ base containers hashable pqueue semigroups transformers unordered-containers vault @@ -180540,6 +180984,8 @@ self: { pname = "rfc-prelude"; version = "0.0.0.2"; sha256 = "1d2kvmidbglc60p3zy6wd9af6w27b303znqh09rjms5ifri0k6kf"; + revision = "1"; + editedCabalFile = "1jvqvj93hc73wkjszfan5zc95sr8wmgwqzf3d2saa6fkzfclg23y"; libraryHaskellDepends = [ aeson base bifunctors bytestring classy-prelude containers data-default http-api-data integer-logarithms lens monad-control @@ -181723,20 +182169,19 @@ self: { "ron" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , containers, criterion, data-default, deepseq, Diff, directory - , errors, extra, filepath, hashable, hedn, mtl, network-info, safe + , containers, criterion, deepseq, Diff, directory, errors, extra + , filepath, hashable, hedn, mtl, network-info, safe , template-haskell, text, time, transformers, unordered-containers , vector }: mkDerivation { pname = "ron"; - version = "0.3"; - sha256 = "09mpv535rahaclj5yppzkg4n083d0rpqkr3r2zrmj1ywg5nw5h0i"; + version = "0.4"; + sha256 = "1y4nzsgc47aiirv387iwb0bmyr31pprian57ka2fwybw5dvlx84x"; libraryHaskellDepends = [ - aeson attoparsec base binary bytestring containers data-default - Diff directory errors extra filepath hashable hedn mtl network-info - safe template-haskell text time transformers unordered-containers - vector + aeson attoparsec base binary bytestring containers Diff directory + errors extra filepath hashable hedn mtl network-info safe + template-haskell text time transformers unordered-containers vector ]; benchmarkHaskellDepends = [ base criterion deepseq ]; description = "RON, RON-RDT, and RON-Schema"; @@ -183492,15 +183937,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "salak_0_2_0" = callPackage + "salak_0_2_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory , filepath, hspec, QuickCheck, scientific, text , unordered-containers, vector, yaml }: mkDerivation { pname = "salak"; - version = "0.2.0"; - sha256 = "0jxyg5kyjax6q75zgrgb60zp54i4p131hymqszk590nc3qca2csm"; + version = "0.2.1"; + sha256 = "13hv4fcsb12fzn738jwlzqy70q5srmklrqk7vh3sk17iiwi6jci5"; libraryHaskellDepends = [ aeson base directory filepath scientific text unordered-containers vector yaml @@ -184086,32 +184531,6 @@ self: { }) {}; "sbp" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, binary-conduit, bytestring, conduit - , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops - , resourcet, tasty, tasty-hunit, template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.4.0"; - sha256 = "13g14lj3ihn55v3cf40hzhp8ypzrl9a6lzarlsmqhr76g6szlpg8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson base basic-prelude binary-conduit bytestring conduit - conduit-extra resourcet time yaml - ]; - testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - - "sbp_2_4_6" = callPackage ({ mkDerivation, aeson, array, base, base64-bytestring , basic-prelude, binary, binary-conduit, bytestring, conduit , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops @@ -184135,7 +184554,6 @@ self: { testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; description = "SwiftNav's SBP Library"; license = stdenv.lib.licenses.lgpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbp2udp" = callPackage @@ -184930,6 +185348,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "scotty_0_11_3" = callPackage + ({ mkDerivation, aeson, async, base, blaze-builder, bytestring + , case-insensitive, data-default-class, directory, exceptions, fail + , hspec, hspec-discover, hspec-wai, http-types, lifted-base + , monad-control, mtl, nats, network, regex-compat, text + , transformers, transformers-base, transformers-compat, wai + , wai-extra, warp + }: + mkDerivation { + pname = "scotty"; + version = "0.11.3"; + sha256 = "14570k1klrlwra58zz7ip3j41nc75gaswrp8m4xwlrjzgpdqm70a"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive + data-default-class exceptions fail http-types monad-control mtl + nats network regex-compat text transformers transformers-base + transformers-compat wai wai-extra warp + ]; + testHaskellDepends = [ + async base bytestring data-default-class directory hspec hspec-wai + http-types lifted-base network text wai + ]; + testToolDepends = [ hspec-discover ]; + description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "scotty-binding-play" = callPackage ({ mkDerivation, base, bytestring, hspec, http-client, HUnit, mtl , scotty, template-haskell, text, transformers @@ -186249,29 +186695,6 @@ self: { }) {}; "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , doctest, hashable, semigroups, tagged, template-haskell - , transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.1"; - sha256 = "13iqjckq3jzp6rxldrf3bcvk3061ssvsr6y0g5y9jq32z1hyr2fd"; - revision = "1"; - editedCabalFile = "1is9nr55fwlas87az2rl9fjwp8108q2zybff8scg9qw3mqc60qh2"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable semigroups tagged template-haskell - transformers transformers-compat unordered-containers - ]; - testHaskellDepends = [ base doctest ]; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "semigroupoids_5_3_2" = callPackage ({ mkDerivation, base, base-orphans, bifunctors, Cabal , cabal-doctest, comonad, containers, contravariant, distributive , doctest, hashable, tagged, template-haskell, transformers @@ -186290,7 +186713,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Semigroupoids: Category sans id"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoids-syntax" = callPackage @@ -186424,14 +186846,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "semirings_0_3_0_0" = callPackage + "semirings_0_3_1_1" = callPackage ({ mkDerivation, base, containers, hashable, integer-gmp , unordered-containers, vector }: mkDerivation { pname = "semirings"; - version = "0.3.0.0"; - sha256 = "0jy0imzwr1xz02q77518gfgx7q5vr1bs45kqs7qrdfvsz2aamsjd"; + version = "0.3.1.1"; + sha256 = "050vs4dn20llsj1nkf6jyni8798vj2bdxfp6d5icdr6xm2hlpkn4"; libraryHaskellDepends = [ base containers hashable integer-gmp unordered-containers vector ]; @@ -187567,6 +187989,8 @@ self: { pname = "servant-client"; version = "0.15"; sha256 = "098aaickq6j6f0d7bl2y72fcl53xp2w29qg3gy7yls4z8wd76v1a"; + revision = "1"; + editedCabalFile = "1h3j8mpnrbpc1i4appf8g4zn7h30f6ybg6fg3w057kz18bk9y76f"; libraryHaskellDepends = [ base base-compat bytestring containers deepseq exceptions http-client http-media http-types kan-extensions monad-control mtl @@ -188463,8 +188887,8 @@ self: { }: mkDerivation { pname = "servant-py"; - version = "0.1.1.0"; - sha256 = "1s708lcib9956x0ww14kcrhn5chg0sz9jnzk456kyjmwar8qssmc"; + version = "0.1.1.1"; + sha256 = "1w9a60pcgpbkab37310qjr7vbfjrmakhmfc8fv7sip0pz8pj0ijx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188847,8 +189271,8 @@ self: { }: mkDerivation { pname = "servant-subscriber"; - version = "0.6.0.1"; - sha256 = "0fbqmh0lzcb0ixw09ldjddz21xcfy7knfwhh3hfzlgy08xmqb89x"; + version = "0.6.0.2"; + sha256 = "0gi6cs5vhr3fw9cxaagsy0nxcav8irrva7rq4zvzlj7mwz1ikpz6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189477,8 +189901,8 @@ self: { pname = "set-cover"; version = "0.0.9"; sha256 = "1qbk5y2pg6jlclszd2nras5240r0ahapsibykkcqrxhgq0hgvsxg"; - revision = "1"; - editedCabalFile = "0mcg15645maj1ymfrgs9ghi8n3hwwd72441zxcg9gn1w3pq7zsaw"; + revision = "2"; + editedCabalFile = "1jpg9iyq0mymdbq392nfmicwfmcmq5mg688ndmhvjx08ljdl54ha"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -190061,8 +190485,8 @@ self: { }: mkDerivation { pname = "shake"; - version = "0.17.3"; - sha256 = "0k0r44csgrlw9y80m88npvanw5ddqm634799qjiab39gvbd3p6kw"; + version = "0.17.4"; + sha256 = "1akmhmkyzf689mf2z7k14az5p4kr5h66dapa00mwv7jmanyxzbdy"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -191152,14 +191576,27 @@ self: { pname = "show-combinators"; version = "0.1.0.0"; sha256 = "11ihjlpa5hgqhcbwcyclldgddppzgdqsz8hx1hqvamchqx3mgi12"; - revision = "1"; - editedCabalFile = "09zd78jap17ralla3833gwv6bwmh93bpjgdshkyf7j06xg2c1mq8"; + revision = "2"; + editedCabalFile = "003ry21snn1b9ip5c1z62hzdy24ckbbb5zf637nxcf9qj07z2xsz"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; description = "Combinators to write Show instances"; license = stdenv.lib.licenses.mit; }) {}; + "show-combinators_0_1_1_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "show-combinators"; + version = "0.1.1.0"; + sha256 = "02h2fvmw22v1mpxlxn9c6p7as3xspvspdphybxapac4s50mvyfnm"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + description = "Combinators to write Show instances"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "show-please" = callPackage ({ mkDerivation, base, mtl, parsec, template-haskell, th-orphans , time @@ -192119,6 +192556,8 @@ self: { pname = "simple-sendfile"; version = "0.2.27"; sha256 = "1bwwqzcm56m2w4ymsa054sxmpbj76h9pvb0jf8zxp8lr41cp51gn"; + revision = "1"; + editedCabalFile = "040adccwis3yy8af783vjz3a2yb3fcmm49cpzdgikm2293pwyj0p"; libraryHaskellDepends = [ base bytestring network unix ]; testHaskellDepends = [ base bytestring conduit conduit-extra directory hspec HUnit network @@ -193911,8 +194350,8 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "smtLib"; - version = "1.0.9"; - sha256 = "19hfw5pgygka2wrnlr8s6wqpw92kz259lli83w1i7igw3v7vyzcc"; + version = "1.1"; + sha256 = "0bws90179vl2ycvnsmi0zni1vg71bdlhkgg0qdvqmls2rjyh5q3j"; libraryHaskellDepends = [ base pretty ]; description = "A library for working with the SMTLIB format"; license = stdenv.lib.licenses.bsd3; @@ -194372,10 +194811,8 @@ self: { }: mkDerivation { pname = "snap-loader-dynamic"; - version = "1.0.0.0"; - sha256 = "12zvmdkypwflmc81i0sxbfmb3ja0vydycmaliyvrw0z32kg705wg"; - revision = "4"; - editedCabalFile = "19bi4vh6pvcm0qc4wz0ydhs9flii6hyzg7z3iiijfcyhdcc9iah9"; + version = "1.0.0.1"; + sha256 = "1z0f0lsrqdsw7fmfaq8n0jcam8nh5nmpg72q4lapqazlna78ww7x"; libraryHaskellDepends = [ base directory directory-tree hint mtl snap-core template-haskell time unix @@ -196831,6 +197268,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "spectral-clustering" = callPackage + ({ mkDerivation, base, clustering, eigen, hmatrix, hmatrix-svdlibc + , mwc-random, safe, sparse-linear-algebra, statistics, vector + }: + mkDerivation { + pname = "spectral-clustering"; + version = "0.2.1.2"; + sha256 = "11xylsi8gjshcs539y55gh23hf4b031ssnfjhpbajwjrmagynjnn"; + libraryHaskellDepends = [ + base clustering eigen hmatrix hmatrix-svdlibc mwc-random safe + sparse-linear-algebra statistics vector + ]; + description = "Library for spectral clustering"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "speculate" = callPackage ({ mkDerivation, base, cmdargs, containers, leancheck }: mkDerivation { @@ -198273,8 +198726,8 @@ self: { pname = "stack"; version = "1.9.3"; sha256 = "01lbr9gp3djr5bzlchzb2rdw20855aganmczvq76fzzjyway64cf"; - revision = "2"; - editedCabalFile = "1cza3s075a1rnfkyr8ds471lf96ah0zrmgzaxyj61nll40xyrl0b"; + revision = "3"; + editedCabalFile = "0rycd09sk0c269izk35hby179ja77yya41ql7j3hp7s9ja7j6vfg"; configureFlags = [ "-fdisable-git-info" "-fhide-dependency-versions" "-fsupported-build" @@ -199617,17 +200070,17 @@ self: { "status-notifier-item" = callPackage ({ mkDerivation, base, bytestring, containers, dbus, dbus-hslogger , filepath, hslogger, lens, network, optparse-applicative, spool - , template-haskell, transformers, vector + , template-haskell, text, transformers, vector }: mkDerivation { pname = "status-notifier-item"; - version = "0.3.0.0"; - sha256 = "18svwy4j6445n8apd0zx50cb9sc1z9n8rkvfkm4x7s7bgvmh49vv"; + version = "0.3.0.1"; + sha256 = "0wrw635r7c2qdb90hpm5lg3kb16c3dkw88ypbszf18m02f4dsk8h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring containers dbus filepath hslogger lens network - spool template-haskell transformers vector + spool template-haskell text transformers vector ]; executableHaskellDepends = [ base dbus dbus-hslogger hslogger optparse-applicative @@ -200605,6 +201058,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stratosphere_0_29_1" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers + , hashable, hspec, hspec-discover, lens, template-haskell, text + , unordered-containers + }: + mkDerivation { + pname = "stratosphere"; + version = "0.29.1"; + sha256 = "0j3mb09k498xynhc82cnsknzkbjwn9lvvanrz78jpx4fhh73zrlz"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring containers hashable lens + template-haskell text unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base bytestring containers hashable hspec + hspec-discover lens template-haskell text unordered-containers + ]; + testToolDepends = [ hspec-discover ]; + description = "EDSL for AWS CloudFormation"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stratum-tool" = callPackage ({ mkDerivation, aeson, async, base, bytestring, bytestring-builder , cmdargs, connection, containers, curl, curl-aeson, network, stm @@ -203201,33 +203679,6 @@ self: { }) {}; "sv-core" = callPackage - ({ mkDerivation, attoparsec, base, bifunctors, bytestring - , containers, contravariant, deepseq, lens, mtl, parsec - , profunctors, QuickCheck, readable, semigroupoids, semigroups - , tasty, tasty-quickcheck, text, transformers, trifecta - , utf8-string, validation, vector, void - }: - mkDerivation { - pname = "sv-core"; - version = "0.3"; - sha256 = "12mjv13rgix4h064ch01hbmkxxz7dp69nazpksvj1fjx16m5dvw6"; - revision = "1"; - editedCabalFile = "06wj1r1f06a594y3h9dl11wb7ra9993s2kdfzlf74w4r14bp7j4a"; - libraryHaskellDepends = [ - attoparsec base bifunctors bytestring containers contravariant - deepseq lens mtl parsec profunctors readable semigroupoids - semigroups text transformers trifecta utf8-string validation vector - void - ]; - testHaskellDepends = [ - base bytestring profunctors QuickCheck semigroupoids semigroups - tasty tasty-quickcheck text validation vector - ]; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "sv-core_0_3_1" = callPackage ({ mkDerivation, attoparsec, base, bifunctors, bytestring , containers, contravariant, deepseq, lens, mtl, parsec , profunctors, QuickCheck, readable, semigroupoids, semigroups @@ -203250,7 +203701,6 @@ self: { ]; description = "Encode and decode separated values (CSV, PSV, ...)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sv-svfactor" = callPackage @@ -205154,35 +205604,35 @@ self: { }) {}; "taffybar" = callPackage - ({ mkDerivation, base, cairo, ConfigFile, containers, dbus + ({ mkDerivation, base, bytestring, ConfigFile, containers, dbus , dbus-hslogger, directory, dyre, either, enclosed-exceptions - , filepath, gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gdkx11, gi-glib - , gi-gtk, gi-gtk-hs, gi-pango, glib, gtk-sni-tray, gtk-strut, gtk3 - , haskell-gi, haskell-gi-base, hslogger, HStringTemplate, HTTP - , multimap, network, network-uri, old-locale, optparse-applicative - , parsec, process, rate-limit, regex-compat, safe, split - , status-notifier-item, stm, template-haskell, text, time - , time-locale-compat, time-units, transformers, transformers-base - , tuple, unix, utf8-string, X11, xdg-basedir, xml, xml-helpers - , xmonad, xmonad-contrib + , filepath, gi-cairo, gi-cairo-connector, gi-cairo-render, gi-gdk + , gi-gdkpixbuf, gi-gdkx11, gi-glib, gi-gtk, gi-gtk-hs, gi-pango + , gtk-sni-tray, gtk-strut, gtk3, haskell-gi, haskell-gi-base + , hslogger, HStringTemplate, HTTP, multimap, network, network-uri + , old-locale, optparse-applicative, parsec, process, rate-limit + , regex-compat, safe, scotty, split, status-notifier-item, stm + , template-haskell, text, time, time-locale-compat, time-units + , transformers, transformers-base, tuple, unix, utf8-string, X11 + , xdg-basedir, xml, xml-helpers, xmonad }: mkDerivation { pname = "taffybar"; - version = "3.0.0"; - sha256 = "0p3gjpfsj3l5z1v62mf1j3ia0qd5b0dxn2s77dzrxj4qd4iwjnld"; + version = "3.1.1"; + sha256 = "1n8i15qnz3chls9y7mxhhpwmk9cl5ymd4p9s3hlqavnfxim7lnpj"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; libraryHaskellDepends = [ - base cairo ConfigFile containers dbus dbus-hslogger directory dyre - either enclosed-exceptions filepath gi-cairo gi-gdk gi-gdkpixbuf - gi-gdkx11 gi-glib gi-gtk gi-gtk-hs gi-pango glib gtk-sni-tray - gtk-strut haskell-gi haskell-gi-base hslogger HStringTemplate HTTP - multimap network network-uri old-locale parsec process rate-limit - regex-compat safe split status-notifier-item stm template-haskell - text time time-locale-compat time-units transformers - transformers-base tuple unix utf8-string X11 xdg-basedir xml - xml-helpers xmonad xmonad-contrib + base bytestring ConfigFile containers dbus dbus-hslogger directory + dyre either enclosed-exceptions filepath gi-cairo + gi-cairo-connector gi-cairo-render gi-gdk gi-gdkpixbuf gi-gdkx11 + gi-glib gi-gtk gi-gtk-hs gi-pango gtk-sni-tray gtk-strut haskell-gi + haskell-gi-base hslogger HStringTemplate HTTP multimap network + network-uri old-locale parsec process rate-limit regex-compat safe + scotty split status-notifier-item stm template-haskell text time + time-locale-compat time-units transformers transformers-base tuple + unix utf8-string X11 xdg-basedir xml xml-helpers xmonad ]; libraryPkgconfigDepends = [ gtk3 ]; executableHaskellDepends = [ base hslogger optparse-applicative ]; @@ -206602,8 +207052,8 @@ self: { }: mkDerivation { pname = "tasty-wai"; - version = "0.1.0.1"; - sha256 = "0h2zqwj19vamn2rcqpq17wjcx3v8xfixgzh0b30k37vbqcgz62va"; + version = "0.1.1.0"; + sha256 = "1ix1ksibdkqrycrcnyi6vablp17kg3ajw5kghff1ia7wd2nb9fbk"; libraryHaskellDepends = [ base bytestring http-types tasty wai wai-extra ]; @@ -207728,6 +208178,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tensors_0_1_2" = callPackage + ({ mkDerivation, base, hspec, QuickCheck, reflection, singletons + , vector + }: + mkDerivation { + pname = "tensors"; + version = "0.1.2"; + sha256 = "19r1jjpb8vbjmjbcs0sgnn83mniihw2v1dwhpkm6alrxqdai1637"; + libraryHaskellDepends = [ base reflection singletons vector ]; + testHaskellDepends = [ + base hspec QuickCheck reflection singletons vector + ]; + description = "Tensor in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "term-rewriting" = callPackage ({ mkDerivation, ansi-wl-pprint, array, base, containers, HUnit , mtl, multiset, parsec, QuickCheck, union-find-array @@ -207811,8 +208278,10 @@ self: { }: mkDerivation { pname = "terminal-progress-bar"; - version = "0.4"; - sha256 = "03c2mjygz5sk4as031v5wvg946x27w3khadp709la942b5725nkn"; + version = "0.4.0.1"; + sha256 = "0xz2kbjh83hcxxx6iaijckddfqawjziiwhqyapwq77fdrc7p5af5"; + revision = "1"; + editedCabalFile = "08wp7ac11qq1zbq0axb4xvzz6grl1jgg54sgq7i9dx3c1a7035zg"; libraryHaskellDepends = [ base deepseq terminal-size text time ]; testHaskellDepends = [ base HUnit test-framework test-framework-hunit text time @@ -207902,8 +208371,8 @@ self: { }: mkDerivation { pname = "termonad"; - version = "1.0.1.0"; - sha256 = "1mmj7zamq83yb8wg2p127pa969pf06cwdcrvy2h6nb72m098fqcx"; + version = "1.1.0.0"; + sha256 = "1xji47lpw560lj0lx79vab5bxcf96zgzsdjg0iyb02rsvjcsl5h4"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -209614,20 +210083,6 @@ self: { }) {}; "tfp" = callPackage - ({ mkDerivation, base, QuickCheck, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.0.2"; - sha256 = "1njccng7gj8za3ywjydphw054nx6grmgnfzwmwj89xwirf8710cs"; - revision = "1"; - editedCabalFile = "062rvn5ba3x5fjhnqs8lid6mra3vqz5ikaixck1mlmafkqmxhvw9"; - libraryHaskellDepends = [ base utility-ht ]; - testHaskellDepends = [ base QuickCheck ]; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "tfp_1_0_1_1" = callPackage ({ mkDerivation, base, QuickCheck, utility-ht }: mkDerivation { pname = "tfp"; @@ -209637,7 +210092,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Type-level integers, booleans, lists using type families"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tfp-th" = callPackage @@ -210184,6 +210638,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "th-utilities_0_2_1_0" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , hspec, primitive, syb, template-haskell, text, th-orphans, vector + }: + mkDerivation { + pname = "th-utilities"; + version = "0.2.1.0"; + sha256 = "1kc3zv43948whv47cpmwnqw90iz68dmi1bmw9b183bnd0yr7wnfb"; + libraryHaskellDepends = [ + base bytestring containers directory filepath primitive syb + template-haskell text th-orphans + ]; + testHaskellDepends = [ + base bytestring containers directory filepath hspec primitive syb + template-haskell text th-orphans vector + ]; + description = "Collection of useful functions for use with Template Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "thank-you-stars" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , directory, filepath, hackage-db, hspec, req, split, text @@ -210962,17 +211437,16 @@ self: { }) {}; "tidal" = callPackage - ({ mkDerivation, base, bifunctors, colour, containers, hashable - , hosc, microspec, monad-loops, mtl, mwc-random, network, parsec - , random, safe, text, time, vector + ({ mkDerivation, base, bifunctors, colour, containers, hosc + , microspec, mwc-random, network, parsec, text, vector }: mkDerivation { pname = "tidal"; - version = "1.0.5"; - sha256 = "07wx1p2avr731xmi5i0sx4k7xp4ayszz3j32y2i83wnv5kvf8szs"; + version = "1.0.6"; + sha256 = "0hs9ywd6cpsw1cnjr2kw8p1hwrw2fgd3bqqv7hffxn6dlsslbgj2"; libraryHaskellDepends = [ - base bifunctors colour containers hashable hosc monad-loops mtl - mwc-random network parsec random safe text time vector + base bifunctors colour containers hosc mwc-random network parsec + text vector ]; testHaskellDepends = [ base containers microspec parsec ]; description = "Pattern language for improvised music"; @@ -212786,6 +213260,48 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "too-many-cells" = callPackage + ({ mkDerivation, aeson, base, birch-beer, bytestring, cassava + , colour, containers, deepseq, diagrams, diagrams-cairo + , diagrams-graphviz, diagrams-lib, differential, directory + , diversity, fgl, filepath, find-clumpiness, foldl, graphviz + , hierarchical-clustering, hierarchical-spectral-clustering + , hmatrix, inline-r, lens, managed, matrix-market-attoparsec + , mltool, modularity, mtl, optparse-generic, palette, parallel + , plots, safe, scientific, sparse-linear-algebra + , spectral-clustering, split, statistics, streaming + , streaming-bytestring, streaming-cassava, streaming-utils + , streaming-with, SVGFonts, terminal-progress-bar, text, text-show + , transformers, vector, vector-algorithms + }: + mkDerivation { + pname = "too-many-cells"; + version = "0.1.0.0"; + sha256 = "18ziyj0d4xfhbwk7z84drhqgngmy71gmdv2jma8ikfjlahs6mf5b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base birch-beer bytestring cassava colour containers deepseq + diagrams diagrams-cairo diagrams-graphviz diagrams-lib differential + directory diversity fgl filepath find-clumpiness foldl graphviz + hierarchical-clustering hierarchical-spectral-clustering hmatrix + inline-r lens managed matrix-market-attoparsec mltool modularity + mtl palette parallel plots safe scientific sparse-linear-algebra + split statistics streaming streaming-bytestring streaming-cassava + streaming-with SVGFonts text text-show vector vector-algorithms + ]; + executableHaskellDepends = [ + aeson base birch-beer bytestring cassava colour containers + diagrams-cairo diagrams-lib directory fgl filepath find-clumpiness + graphviz hierarchical-spectral-clustering inline-r lens + matrix-market-attoparsec mtl optparse-generic palette plots + spectral-clustering streaming streaming-bytestring streaming-utils + terminal-progress-bar text text-show transformers vector + ]; + description = "Cluster single cells and analyze cell clade relationships"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "toodles" = callPackage ({ mkDerivation, aeson, base, blaze-html, cmdargs, directory, hspec , hspec-expectations, megaparsec, MissingH, regex-posix, servant @@ -214700,6 +215216,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ttl-hashtables" = callPackage + ({ mkDerivation, base, clock, containers, data-default, failable + , hashable, hashtables, hspec, mtl, transformers + }: + mkDerivation { + pname = "ttl-hashtables"; + version = "1.1.0.0"; + sha256 = "09pngm18sjv0bd3a79ijbxgz8s7zlpblj6zinxfg6yg5s529q3i4"; + libraryHaskellDepends = [ + base clock containers data-default failable hashable hashtables mtl + transformers + ]; + testHaskellDepends = [ + base clock containers data-default failable hashable hashtables + hspec mtl transformers + ]; + description = "Extends hashtables so that entries added can be expired after a TTL"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ttn" = callPackage ({ mkDerivation, aeson, base, bytestring, hspec, hspec-expectations , raw-strings-qq, text, time, timerep @@ -218000,6 +218536,8 @@ self: { pname = "union"; version = "0.1.2"; sha256 = "1i4fvlwkw1wx64a6l8342aqfqsdq7fqa4p24g3i5gn5704lxrsb3"; + revision = "2"; + editedCabalFile = "170dhg4z4jzi50nh4xx75r9k8zz5br7j2iqjjw2r1dx29ajqbcw9"; libraryHaskellDepends = [ base deepseq hashable profunctors tagged vinyl ]; @@ -218127,13 +218665,13 @@ self: { }: mkDerivation { pname = "unique-logic-tf"; - version = "0.5.0.1"; - sha256 = "1v37bv5bjpkm5085sg4rf7ssbigsivib6fdxjhxyd36zhh08pdjy"; + version = "0.5.0.2"; + sha256 = "0rf2z02r4nk5z9f6937g25brvq391qy8a63mawnkk8hidq8af09j"; libraryHaskellDepends = [ base containers data-ref semigroups transformers utility-ht ]; testHaskellDepends = [ - base non-empty QuickCheck transformers utility-ht + base non-empty QuickCheck semigroups transformers utility-ht ]; description = "Solve simple simultaneous equations"; license = stdenv.lib.licenses.bsd3; @@ -220484,32 +221022,44 @@ self: { }) {}; "vabal" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cassava, deepseq + ({ mkDerivation, base, bytestring, Cabal, cassava, containers , directory, filepath, http-client, http-client-tls, http-types - , optparse-applicative, process, tar, unix, vector + , optparse-applicative, process, vabal-lib }: mkDerivation { pname = "vabal"; - version = "1.2.0"; - sha256 = "1l63yxiwp7l5s5m9dc9y6vjdv88rflvwxj063dcw6vn08n929mxf"; - isLibrary = true; + version = "2.0.0"; + sha256 = "1kcdnkm0yws0v2b7yiwiwfi7db9il678s8x1jnq61zwlrfz7bsjl"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal cassava directory filepath http-client - http-client-tls http-types vector - ]; executableHaskellDepends = [ - base bytestring Cabal cassava directory filepath - optparse-applicative process - ]; - testHaskellDepends = [ - base bytestring Cabal deepseq directory filepath process tar unix + base bytestring Cabal cassava containers directory filepath + http-client http-client-tls http-types optparse-applicative process + vabal-lib ]; + testHaskellDepends = [ base process ]; description = "the cabal companion"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "vabal-lib" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cassava, containers + , vector + }: + mkDerivation { + pname = "vabal-lib"; + version = "2.0.0"; + sha256 = "1apryz8dvc4lk5nls330hpmbn9cc1qrhair2xybsh666whpmmmxp"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base bytestring Cabal cassava containers vector + ]; + testHaskellDepends = [ base Cabal containers ]; + description = "Core algorithms and datatypes used by vabal"; + license = stdenv.lib.licenses.mit; + }) {}; + "vacuum" = callPackage ({ mkDerivation, array, base, containers, ghc-prim }: mkDerivation { @@ -220656,8 +221206,8 @@ self: { }: mkDerivation { pname = "validated-literals"; - version = "0.2.0.1"; - sha256 = "0gvqsmyhcjf1l5a6vkhr7ffnw81l01y0dp05lzkmy8n177412pr4"; + version = "0.3.0"; + sha256 = "1k77jp19kl7h4v9hl2jhsmbq8dhzl8z9sgkw1jxx1rblm3fszjx1"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base bytestring deepseq tasty tasty-hunit tasty-travis @@ -221966,8 +222516,8 @@ self: { ({ mkDerivation, aeson, base, bytestring, hspec, semigroupoids }: mkDerivation { pname = "versioning"; - version = "0.3.0.1"; - sha256 = "08072xwz094qdawczggxx8gk734cas8767zcah84q30qdb5ywzwf"; + version = "0.3.1.0"; + sha256 = "0m5hgl6n8znxn63pkvv7yb2nx7is4wivbzvbyh698cv5d92jb7cp"; libraryHaskellDepends = [ aeson base bytestring semigroupoids ]; testHaskellDepends = [ aeson base bytestring hspec ]; description = "Type-safe data versioning"; @@ -222128,8 +222678,8 @@ self: { }: mkDerivation { pname = "viewprof"; - version = "0.0.0.26"; - sha256 = "11nd137135jq19l58g5fkxzznbv2hdrfyy231fy9s8hifm2rz14d"; + version = "0.0.0.27"; + sha256 = "0yfrh7ifgn4vw9yqn0rif040sabbgs2j42rkds48fam30cdr12v6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -222947,8 +223497,8 @@ self: { }: mkDerivation { pname = "waargonaut"; - version = "0.5.1.0"; - sha256 = "1gknfbnpngn23picpyva3mk9hb80hc0ymjx3xl27sxy72zys2cd4"; + version = "0.5.2.1"; + sha256 = "0siyqgw634sw9zz3zb7akl691g3yznvm0851avn44nfrj6xp1nq1"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base bifunctors bytestring containers contravariant digit @@ -225522,6 +226072,40 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "web3_0_8_3_0" = callPackage + ({ mkDerivation, aeson, async, base, basement, bytestring, cereal + , cryptonite, data-default, exceptions, generics-sop, hspec + , hspec-contrib, hspec-discover, hspec-expectations, http-client + , http-client-tls, machines, memory, microlens, microlens-aeson + , microlens-mtl, microlens-th, mtl, OneTuple, parsec, random + , relapse, split, stm, tagged, template-haskell, text, time + , transformers, uuid-types, vinyl + }: + mkDerivation { + pname = "web3"; + version = "0.8.3.0"; + sha256 = "1g97dv41widcl612zi49mqf9f61zwp23ml0xf5kw9ac51c683s1q"; + libraryHaskellDepends = [ + aeson async base basement bytestring cereal cryptonite data-default + exceptions generics-sop http-client http-client-tls machines memory + microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple + parsec relapse tagged template-haskell text transformers uuid-types + vinyl + ]; + testHaskellDepends = [ + aeson async base basement bytestring cereal cryptonite data-default + exceptions generics-sop hspec hspec-contrib hspec-discover + hspec-expectations http-client http-client-tls machines memory + microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple + parsec random relapse split stm tagged template-haskell text time + transformers uuid-types vinyl + ]; + testToolDepends = [ hspec-discover ]; + description = "Ethereum API for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "webapi" = callPackage ({ mkDerivation, aeson, base, binary, blaze-builder, bytestring , bytestring-lexing, bytestring-trie, case-insensitive, containers @@ -226214,20 +226798,6 @@ self: { }) {}; "weigh" = callPackage - ({ mkDerivation, base, deepseq, mtl, process, split, temporary }: - mkDerivation { - pname = "weigh"; - version = "0.0.12"; - sha256 = "0zw2a997gxgdzqmd7j730kxgynzmjvvlkw84dajmfzf1v9pbij7x"; - libraryHaskellDepends = [ - base deepseq mtl process split temporary - ]; - testHaskellDepends = [ base deepseq ]; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "weigh_0_0_13" = callPackage ({ mkDerivation, base, deepseq, mtl, process, split, temporary }: mkDerivation { pname = "weigh"; @@ -226239,7 +226809,6 @@ self: { testHaskellDepends = [ base deepseq ]; description = "Measure allocations of a Haskell functions/values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted" = callPackage @@ -226973,21 +227542,23 @@ self: { }) {}; "wkt-geom" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring - , containers, geojson, hspec, lens, QuickCheck, scientific - , trifecta, utf8-string, vector + ({ mkDerivation, ansi-wl-pprint, base, base16-bytestring, binary + , bytestring, containers, geojson, hedgehog, hlint, hspec + , hw-hspec-hedgehog, lens, QuickCheck, scientific, trifecta + , utf8-string, vector }: mkDerivation { pname = "wkt-geom"; - version = "0.0.4"; - sha256 = "00v2zqgy41zd13yyadiw9x3s2napz0wl3jcq10xbb3i59jb03fa2"; + version = "0.0.5"; + sha256 = "1l762yyga2lxs2m42rq9zr4k1kkpp39w9z2qgmkcg5yj9p4pqg9w"; libraryHaskellDepends = [ - base binary bytestring containers geojson scientific trifecta - utf8-string vector + base base16-bytestring binary bytestring containers geojson + scientific trifecta utf8-string vector ]; testHaskellDepends = [ - ansi-wl-pprint base binary bytestring containers geojson hspec lens - QuickCheck scientific trifecta vector + ansi-wl-pprint base base16-bytestring binary bytestring containers + geojson hedgehog hlint hspec hw-hspec-hedgehog lens QuickCheck + scientific trifecta vector ]; description = "A parser of WKT, WKB and eWKB"; license = stdenv.lib.licenses.asl20; @@ -227760,6 +228331,8 @@ self: { pname = "wreq"; version = "0.5.3.1"; sha256 = "1i2f2bxx84l8qzkz9v3qhx5sbl78ysc3vqadfhrxk3h0ljklwfz3"; + revision = "1"; + editedCabalFile = "016sf02sm58fjsa7nmj12y8m2rwg34md8cnn533kdxm831jc9zyb"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -230748,31 +231321,30 @@ self: { }) {}; "yam" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, fast-logger - , hspec, monad-logger, mtl, QuickCheck, random, reflection, salak - , servant-server, servant-swagger, servant-swagger-ui, text, vault - , wai, warp + ({ mkDerivation, base, base16-bytestring, binary, bytestring + , data-default, fast-logger, hspec, http-client, http-types, lens + , monad-logger, mtl, mwc-random, QuickCheck, reflection, salak + , scientific, servant-client, servant-server, servant-swagger + , servant-swagger-ui, swagger2, text, unliftio-core + , unordered-containers, vault, wai, wai-extra, warp }: mkDerivation { pname = "yam"; - version = "0.5.2"; - sha256 = "1cig29wyyq7dg4hz6iz5fm25xf2zvmrahdg06sq1m3cl4gk6fw6s"; - isLibrary = true; - isExecutable = true; + version = "0.5.7"; + sha256 = "0vswpq0mzc4x6kjyzg0fyq0bb2ywqh0vh2nsvx9qymdd6vg8nx9y"; libraryHaskellDepends = [ - aeson base bytestring data-default fast-logger monad-logger mtl - random reflection salak servant-server servant-swagger - servant-swagger-ui text vault wai warp - ]; - executableHaskellDepends = [ - aeson base bytestring data-default fast-logger monad-logger mtl - random reflection salak servant-server servant-swagger - servant-swagger-ui text vault wai warp + base base16-bytestring binary bytestring data-default fast-logger + http-client http-types lens monad-logger mtl mwc-random reflection + salak scientific servant-client servant-server servant-swagger + servant-swagger-ui swagger2 text unliftio-core unordered-containers + vault wai wai-extra warp ]; testHaskellDepends = [ - aeson base bytestring data-default fast-logger hspec monad-logger - mtl QuickCheck random reflection salak servant-server - servant-swagger servant-swagger-ui text vault wai warp + base base16-bytestring binary bytestring data-default fast-logger + hspec http-client http-types lens monad-logger mtl mwc-random + QuickCheck reflection salak scientific servant-client + servant-server servant-swagger servant-swagger-ui swagger2 text + unliftio-core unordered-containers vault wai wai-extra warp ]; description = "Yam Web"; license = stdenv.lib.licenses.bsd3; @@ -230824,8 +231396,8 @@ self: { }: mkDerivation { pname = "yam-datasource"; - version = "0.5.2"; - sha256 = "06cfjcppkwx82cv7gf56rhypwsc2qxnks50vjslgxp7c0k9qaaza"; + version = "0.5.7"; + sha256 = "0sqrc0w5mvjjkih9dcqbiz12n20zvqmc6qhwsn4fxd9air2x8yfc"; libraryHaskellDepends = [ base conduit persistent resource-pool resourcet unliftio-core yam ]; @@ -231485,8 +232057,8 @@ self: { }: mkDerivation { pname = "yaya"; - version = "0.1.0.0"; - sha256 = "1ycxm83j85lyxz9fzydccd0r4lv667a4c03bfbz81gk90hzlsvrv"; + version = "0.2.1.0"; + sha256 = "0wm01cspfpnfhijmbxpr4n0nr1qgc8g8cg9lqpz8n4lkd8i8bfds"; libraryHaskellDepends = [ base bifunctors comonad constraints containers distributive either errors free kan-extensions lens profunctors template-haskell @@ -231503,8 +232075,8 @@ self: { ({ mkDerivation, base, deriving-compat, hedgehog, yaya }: mkDerivation { pname = "yaya-hedgehog"; - version = "0.1.0.0"; - sha256 = "14q16av76mnhrlz93ihwqaknzihf3nlsa572pqqc6hs6g4vxdikj"; + version = "0.1.1.0"; + sha256 = "070xv97j402li75fzhs03svankg0nl2fb1g223kjkq7a704f3dk1"; libraryHaskellDepends = [ base deriving-compat hedgehog yaya ]; description = "Hedgehog testing support for the Yaya recursion scheme library"; license = stdenv.lib.licenses.agpl3; @@ -231516,8 +232088,8 @@ self: { }: mkDerivation { pname = "yaya-unsafe"; - version = "0.1.0.0"; - sha256 = "18zsq1pvfglrxfk2afk7aiqlsfi4dpwhlp34cfi3kjqcg00zzv19"; + version = "0.1.1.0"; + sha256 = "081lha6m5c3iyy61xfrj237g0098l5jsm94yqjbaddl4qixk697q"; libraryHaskellDepends = [ base bifunctors comonad either free lens yaya ]; @@ -232134,6 +232706,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "yesod-auth-oauth2_0_6_1_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, errors, hoauth2, hspec + , http-client, http-conduit, http-types, microlens, random + , safe-exceptions, text, uri-bytestring, yesod-auth, yesod-core + }: + mkDerivation { + pname = "yesod-auth-oauth2"; + version = "0.6.1.0"; + sha256 = "148w2cn6f0mn6qyymxr2zlw8jnhyjqhzhszhy1faca8ziqsi9mas"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring errors hoauth2 http-client http-conduit + http-types microlens random safe-exceptions text uri-bytestring + yesod-auth yesod-core + ]; + testHaskellDepends = [ base hspec uri-bytestring ]; + description = "OAuth 2.0 authentication plugins"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-auth-pam" = callPackage ({ mkDerivation, base, hamlet, pam, text, yesod-auth, yesod-core , yesod-form From e89bf24a9b4ed11c665ad4a05725b141cfbc3bef Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 Jan 2019 09:49:07 +0100 Subject: [PATCH 127/167] all-cabal-hashes: update to Hackage at 2019-01-14T00:08:02Z --- pkgs/data/misc/hackage/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/hackage/default.nix b/pkgs/data/misc/hackage/default.nix index 1542078b2b48..140d6c6cec83 100644 --- a/pkgs/data/misc/hackage/default.nix +++ b/pkgs/data/misc/hackage/default.nix @@ -1,6 +1,6 @@ { fetchurl }: fetchurl { - url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/62720a1288846aabc4e42d4404a85ea771d24a11.tar.gz"; - sha256 = "1qr07s0l7ip28639fbhwi8nhcyzs3mmhzqd0zny5an0dwxlx14qb"; + url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/79e6c7e847ee9ff93fff64a4081251f3bbfb7ca7.tar.gz"; + sha256 = "19ypss73lb3zwhzpw9sxdmgy7dha798ism77vm3ccyxg66qav41n"; } From 4fc689635a42852dbc320a179953b596ee1e8510 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 14 Jan 2019 09:54:18 +0100 Subject: [PATCH 128/167] pythonPackages.qrcode: 6.0 -> 6.1 This update fixes checks with python 3 --- pkgs/development/python-modules/qrcode/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/qrcode/default.nix b/pkgs/development/python-modules/qrcode/default.nix index fedff05d8133..363f43c857dd 100644 --- a/pkgs/development/python-modules/qrcode/default.nix +++ b/pkgs/development/python-modules/qrcode/default.nix @@ -10,16 +10,15 @@ buildPythonPackage rec { pname = "qrcode"; - version = "6.0"; + version = "6.1"; src = fetchPypi { inherit pname version; - sha256 = "037b0db4c93f44586e37f84c3da3f763874fcac85b2974a69a98e399ac78e1bf"; + sha256 = "505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369"; }; propagatedBuildInputs = [ six pillow pymaging_png ]; checkInputs = [ mock ]; - doCheck = isPy27; # https://github.com/lincolnloop/python-qrcode/issues/163 meta = with stdenv.lib; { description = "Quick Response code generation for Python"; From c92eccf629a9c5e2c94878c2d5ad68f86ad920de Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Jan 2019 09:57:29 +0100 Subject: [PATCH 129/167] nvidia_x11: fixup name of stable_415 --- pkgs/os-specific/linux/nvidia-x11/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index 12dfe6137c7d..787dcce9a38a 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -16,12 +16,12 @@ let in rec { # Policy: use the highest stable version as the default (on our master). - stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_410 else legacy_390; + stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_415 else legacy_390; # No active beta right now beta = stable; - stable_410 = generic { + stable_415 = generic { version = "415.25"; sha256_64bit = "0jck3sjhkdf9j40fqa6hpm2m9i11bfka9diaxmk2apni4f4mpdk4"; settingsSha256 = "0x5a9dhr29g67rbgl1w973fzgjfg1lyn3dpq7fpc7chfp91vxzrp"; From f97baf13b05b37754d6eb4fbeb802e4ea3da9fe4 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 13 Jan 2019 15:12:37 -0500 Subject: [PATCH 130/167] blender: fix python --- pkgs/applications/misc/blender/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 340c08a958e1..89bd8ee4b3e0 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { "-DWITH_SYSTEM_OPENJPEG=ON" "-DWITH_PLAYER=ON" "-DWITH_OPENSUBDIV=ON" - "-DPYTHON_LIBRARY=${python.libPrefix}" + "-DPYTHON_LIBRARY=${python.libPrefix}m" "-DPYTHON_LIBPATH=${python}/lib" - "-DPYTHON_INCLUDE_DIR=${python}/include/${python.libPrefix}" + "-DPYTHON_INCLUDE_DIR=${python}/include/${python.libPrefix}m" "-DPYTHON_VERSION=${python.pythonVersion}" "-DWITH_PYTHON_INSTALL=OFF" "-DWITH_PYTHON_INSTALL_NUMPY=OFF" From fb20a29e72e87664b5661325c68a97c553087900 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Fri, 4 Jan 2019 15:13:24 +0100 Subject: [PATCH 131/167] wpscan: 3.4.0 -> 3.4.3 --- pkgs/tools/security/wpscan/Gemfile | 2 +- pkgs/tools/security/wpscan/Gemfile.lock | 36 +++++------ pkgs/tools/security/wpscan/gemset.nix | 82 ++++++++++++++++++------- 3 files changed, 77 insertions(+), 43 deletions(-) diff --git a/pkgs/tools/security/wpscan/Gemfile b/pkgs/tools/security/wpscan/Gemfile index f20afe0e6543..3b5e4282ab58 100644 --- a/pkgs/tools/security/wpscan/Gemfile +++ b/pkgs/tools/security/wpscan/Gemfile @@ -1,2 +1,2 @@ source 'https://rubygems.org' -gem 'wpscan', '= 3.4.0' +gem 'wpscan', '= 3.4.3' diff --git a/pkgs/tools/security/wpscan/Gemfile.lock b/pkgs/tools/security/wpscan/Gemfile.lock index 47283ab6de84..877e3f4b53bf 100644 --- a/pkgs/tools/security/wpscan/Gemfile.lock +++ b/pkgs/tools/security/wpscan/Gemfile.lock @@ -1,35 +1,33 @@ GEM remote: https://rubygems.org/ specs: - activesupport (5.2.1) + activesupport (5.2.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) addressable (2.5.2) public_suffix (>= 2.0.2, < 4.0) - cms_scanner (0.0.41.0) - activesupport (~> 5.2) - addressable (~> 2.5) - nokogiri (~> 1.8.0) - opt_parse_validator (~> 0.0.16.4) + cms_scanner (0.0.41.3) + nokogiri (~> 1.10.0) + opt_parse_validator (~> 0.0.16.6) public_suffix (~> 3.0.0) ruby-progressbar (~> 1.10.0) typhoeus (~> 1.3.0) xmlrpc (~> 0.3) yajl-ruby (~> 1.4.1) - concurrent-ruby (1.1.3) - ethon (0.11.0) + concurrent-ruby (1.1.4) + ethon (0.12.0) ffi (>= 1.3.0) - ffi (1.9.25) - i18n (1.1.1) + ffi (1.10.0) + i18n (1.5.2) concurrent-ruby (~> 1.0) - mini_portile2 (2.3.0) + mini_portile2 (2.4.0) minitest (5.11.3) - nokogiri (1.8.5) - mini_portile2 (~> 2.3.0) - opt_parse_validator (0.0.16.4) - activesupport (~> 5.2.1) + nokogiri (1.10.1) + mini_portile2 (~> 2.4.0) + opt_parse_validator (0.0.16.6) + activesupport (>= 4.2, < 5.3.0) addressable (~> 2.5.0) public_suffix (3.0.3) ruby-progressbar (1.10.0) @@ -38,10 +36,8 @@ GEM ethon (>= 0.9.0) tzinfo (1.2.5) thread_safe (~> 0.1) - wpscan (3.4.0) - activesupport (~> 5.2) - cms_scanner (~> 0.0.41.0) - yajl-ruby (~> 1.3) + wpscan (3.4.3) + cms_scanner (~> 0.0.41.2) xmlrpc (0.3.0) yajl-ruby (1.4.1) @@ -49,7 +45,7 @@ PLATFORMS ruby DEPENDENCIES - wpscan (= 3.4.0) + wpscan (= 3.4.3) BUNDLED WITH 1.16.3 diff --git a/pkgs/tools/security/wpscan/gemset.nix b/pkgs/tools/security/wpscan/gemset.nix index 5c27c726be6f..6377f05607fe 100644 --- a/pkgs/tools/security/wpscan/gemset.nix +++ b/pkgs/tools/security/wpscan/gemset.nix @@ -1,15 +1,19 @@ { activesupport = { dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ziy6xk31k4fs115cdkba1ys4i8nzcyri7a2jig7nx7k5h7li6l2"; + sha256 = "1iya7vxqwxysr74s7b4z1x19gmnx5advimzip3cbmsd5bd43wfgz"; type = "gem"; }; - version = "5.2.1"; + version = "5.2.2"; }; addressable = { dependencies = ["public_suffix"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"; @@ -18,57 +22,71 @@ version = "2.5.2"; }; cms_scanner = { - dependencies = ["activesupport" "addressable" "nokogiri" "opt_parse_validator" "public_suffix" "ruby-progressbar" "typhoeus" "xmlrpc" "yajl-ruby"]; + dependencies = ["nokogiri" "opt_parse_validator" "public_suffix" "ruby-progressbar" "typhoeus" "xmlrpc" "yajl-ruby"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1azsvgg070dng2jaz44zaqkvqyhf3pj131nqa7wdv3bsqp8y7kap"; + sha256 = "0m09dlyd4c51nd81dp09nddjpp81n1y0k8g36jf4d78nlgsc83s6"; type = "gem"; }; - version = "0.0.41.0"; + version = "0.0.41.3"; }; concurrent-ruby = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; + sha256 = "1ixcx9pfissxrga53jbdpza85qd5f6b5nq1sfqa9rnfq82qnlbp1"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.4"; }; ethon = { dependencies = ["ffi"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0y70szwm2p0b9qfvpqrzjrgm3jz0ig65vlbfr6ppc3z0m1h7kv48"; + sha256 = "0gggrgkcq839mamx7a8jbnp2h7x2ykfn34ixwskwb0lzx2ak17g9"; type = "gem"; }; - version = "0.11.0"; + version = "0.12.0"; }; ffi = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0jpm2dis1j7zvvy3lg7axz9jml316zrn7s0j59vyq3qr127z0m7q"; + sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p"; type = "gem"; }; - version = "1.9.25"; + version = "1.10.0"; }; i18n = { dependencies = ["concurrent-ruby"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1gcp1m1p6dpasycfz2sj82ci9ggz7lsskz9c9q6gvfwxrl8y9dx7"; + sha256 = "088xnnpi7hq243n44fmgqvjr0m86ivk8r87k9b3ddq3b7nl6nyf9"; type = "gem"; }; - version = "1.1.1"; + version = "1.5.2"; }; mini_portile2 = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "13d32jjadpjj6d2wdhkfpsmy68zjx90p49bgf8f7nkpz86r1fr11"; + sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; type = "gem"; }; - version = "2.3.0"; + version = "2.4.0"; }; minitest = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0icglrhghgwdlnzzp4jf76b0mbc71s80njn5afyfjn4wqji8mqbq"; @@ -78,23 +96,29 @@ }; nokogiri = { dependencies = ["mini_portile2"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0byyxrazkfm29ypcx5q4syrv126nvjnf7z6bqi01sqkv4llsi4qz"; + sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; type = "gem"; }; - version = "1.8.5"; + version = "1.10.1"; }; opt_parse_validator = { dependencies = ["activesupport" "addressable"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1m3flpg1d7la1frip3vn0hgm6d91f0ys1jq2bhxr5va1vjbfvgbs"; + sha256 = "127qxgf6kvv4fnnn5bxx8ivfknjf3ydz3vkxrxj26mva4ijwnkl4"; type = "gem"; }; - version = "0.0.16.4"; + version = "0.0.16.6"; }; public_suffix = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; @@ -103,6 +127,8 @@ version = "3.0.3"; }; ruby-progressbar = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; @@ -111,6 +137,8 @@ version = "1.10.0"; }; thread_safe = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; @@ -120,6 +148,8 @@ }; typhoeus = { dependencies = ["ethon"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0cni8b1idcp0dk8kybmxydadhfpaj3lbs99w5kjibv8bsmip2zi5"; @@ -129,6 +159,8 @@ }; tzinfo = { dependencies = ["thread_safe"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z"; @@ -137,15 +169,19 @@ version = "1.2.5"; }; wpscan = { - dependencies = ["activesupport" "cms_scanner" "yajl-ruby"]; + dependencies = ["cms_scanner"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17mqqaiawp3apdfw4l6r2wp0a4f0rp8wdqd2426xkna7vsxgh8gs"; + sha256 = "13wmgmkh7n2jkgf46q9755nsvj34fag1gnns7rlbynkk1277ng6x"; type = "gem"; }; - version = "3.4.0"; + version = "3.4.3"; }; xmlrpc = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1s744iwblw262gj357pky3d9fcx9hisvla7rnw29ysn5zsb6i683"; @@ -154,6 +190,8 @@ version = "0.3.0"; }; yajl-ruby = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "16v0w5749qjp13xhjgr2gcsvjv6mf35br7iqwycix1n2h7kfcckf"; From 3dc0a1b7a703053134ea6cf4983728fc2dec26b9 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Mon, 14 Jan 2019 11:05:13 +0100 Subject: [PATCH 132/167] spotify: 1.0.94.262.g3d5c231c-9 -> 1.0.96.181.gf6bc1b6b-12 (#53930) spotify now requires "libatk-bridge-2.0.so", which is provided by at-spi2-atk. --- pkgs/applications/audio/spotify/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index c5c3724df2ad..06f8e8616f0d 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,23 +1,26 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng -, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome3 }: +, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome3 +, at-spi2-atk +}: let # TO UPDATE: just execute the ./update.sh script (won't do anything if there is no update) # "rev" decides what is actually being downloaded - version = "1.0.94.262.g3d5c231c-9"; + version = "1.0.96.181.gf6bc1b6b-12"; # To get the latest stable revision: # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' # To get general information: # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' # More examples of api usage: # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py - rev = "28"; + rev = "30"; deps = [ alsaLib atk + at-spi2-atk cairo cups curl @@ -65,7 +68,7 @@ stdenv.mkDerivation { # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 src = fetchurl { url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; - sha512 = "ca8e2eb45ea7ef6396382298822969994aca86cca8ba122ec1521c593e621161267943fe5515bb8747037ecbbfbd05cffbbca017f8f4b1c9fbd216e1d6a9e8cb"; + sha512 = "859730fbc80067f0828f7e13eee9a21b13b749f897a50e17c2da4ee672785cfd79e1af6336e609529d105e040dc40f61b6189524783ac93d49f991c4ea8b3c56"; }; buildInputs = [ squashfsTools makeWrapper ]; From bc8e15eec4a022f455995d459e7f0c302622f2c1 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 14 Jan 2019 08:14:38 -0500 Subject: [PATCH 133/167] asciinema: move nose to checkInputs --- pkgs/tools/misc/asciinema/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index f3fe081eeae6..1915d0dc8422 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -4,7 +4,6 @@ python3Packages.buildPythonApplication rec { pname = "asciinema"; version = "2.0.2"; - buildInputs = with python3Packages; [ nose ]; propagatedBuildInputs = with python3Packages; [ requests ]; src = fetchFromGitHub { @@ -14,7 +13,7 @@ python3Packages.buildPythonApplication rec { sha256 = "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4"; }; - checkInputs = [ glibcLocales ]; + checkInputs = [ glibcLocales python3Packages.nose ]; checkPhase = '' LC_ALL=en_US.UTF-8 nosetests From 66cf8c82aef31cbe84f63b54d22d261664f6ff5d Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 14 Jan 2019 08:21:50 -0500 Subject: [PATCH 134/167] asciinema: drop requests See: https://github.com/asciinema/asciinema/commit/4493ad454fcd0f21c621889c4cd429861b270af7 --- pkgs/tools/misc/asciinema/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index 1915d0dc8422..d42c666e9674 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -4,8 +4,6 @@ python3Packages.buildPythonApplication rec { pname = "asciinema"; version = "2.0.2"; - propagatedBuildInputs = with python3Packages; [ requests ]; - src = fetchFromGitHub { owner = "asciinema"; repo = "asciinema"; From 429166fea23e372ca1e5df2b1d062394ba4505cb Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 14 Jan 2019 09:24:08 -0500 Subject: [PATCH 135/167] linux: 5.0-rc1 -> 5.0-rc2 --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 6b92d9be1777..01e7e315393e 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args: buildLinux (args // rec { - version = "5.0-rc1"; - modDirVersion = "5.0.0-rc1"; + version = "5.0-rc2"; + modDirVersion = "5.0.0-rc2"; extraMeta.branch = "5.0"; src = fetchurl { url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz"; - sha256 = "01gva1hp2jyf137iy5ryaq93ksiw9ysnczpp914scx6k005y7yzz"; + sha256 = "1204b15gkdb7hxaqx1x7kxn48p1gl8gl51vgifxn2saikzlzls7c"; }; # Should the testing kernels ever be built on Hydra? From 01dbf4368d2031c07cbbc3f8c1bb714ea60c080c Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 14 Jan 2019 15:49:30 +0100 Subject: [PATCH 136/167] =?UTF-8?q?libcloudproviders:=200.2.5=20=E2=86=92?= =?UTF-8?q?=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../libraries/libcloudproviders/default.nix | 22 +++++++------------ .../libcloudproviders/fix-include.patch | 11 ---------- 2 files changed, 8 insertions(+), 25 deletions(-) delete mode 100644 pkgs/development/libraries/libcloudproviders/fix-include.patch diff --git a/pkgs/development/libraries/libcloudproviders/default.nix b/pkgs/development/libraries/libcloudproviders/default.nix index fc857bf1ad46..2814d6c5c1ea 100644 --- a/pkgs/development/libraries/libcloudproviders/default.nix +++ b/pkgs/development/libraries/libcloudproviders/default.nix @@ -1,35 +1,29 @@ -{ stdenv, fetchurl, pkgconfig, meson, ninja, gtk-doc, docbook_xsl, glib }: +{ stdenv, fetchurl, meson, ninja, pkgconfig, gobject-introspection, vala, gtk-doc, docbook_xsl, glib }: -# TODO: Add installed tests once https://gitlab.gnome.org/Incubator/libcloudproviders/issues/4 is fixed +# TODO: Add installed tests once https://gitlab.gnome.org/World/libcloudproviders/issues/4 is fixed -let +stdenv.mkDerivation rec { pname = "libcloudproviders"; - version = "0.2.5"; -in stdenv.mkDerivation rec { - name = "${pname}-${version}"; + version = "0.3.0"; src = fetchurl { - url = "https://gitlab.gnome.org/Incubator/${pname}/repository/archive.tar.gz?ref=${version}"; - sha256 = "1c3vfg8wlsv0fmi1lm9qhsqdvp4k33yvwn6j680rh49laayf7k3g"; + url = "https://gitlab.gnome.org/World/${pname}/repository/archive.tar.gz?ref=${version}"; + sha256 = "1hby7vhxn6fw4ih3xbx6ab9vqp3a3dmlhr0z7mrwr73b7ankly0l"; }; - patches = [ - ./fix-include.patch - ]; - outputs = [ "out" "dev" "devdoc" ]; mesonFlags = [ "-Denable-gtk-doc=true" ]; - nativeBuildInputs = [ meson ninja pkgconfig gtk-doc docbook_xsl ]; + nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection vala gtk-doc docbook_xsl ]; buildInputs = [ glib ]; meta = with stdenv.lib; { description = "DBus API that allows cloud storage sync clients to expose their services"; - homepage = https://gitlab.gnome.org/Incubator/libcloudproviders; + homepage = https://gitlab.gnome.org/World/libcloudproviders; license = licenses.lgpl3Plus; maintainers = with maintainers; [ jtojnar ]; platforms = platforms.unix; diff --git a/pkgs/development/libraries/libcloudproviders/fix-include.patch b/pkgs/development/libraries/libcloudproviders/fix-include.patch deleted file mode 100644 index d6f626436a62..000000000000 --- a/pkgs/development/libraries/libcloudproviders/fix-include.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/meson.build -+++ b/meson.build -@@ -46,7 +46,7 @@ - bindir = get_option ('bindir') - datadir = get_option ('datadir') - servicedir = join_paths (datadir, 'dbus-1', 'services') --incdir = join_paths (prefix, 'include', 'cloudproviders') -+incdir = join_paths (prefix, get_option('includedir'), 'cloudproviders') - - gnome = import('gnome') - From 90ed3868971b0754523f312d7e5b8c37b12b2a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-=C3=89tienne=20Meunier?= Date: Sun, 13 Jan 2019 18:01:54 +0000 Subject: [PATCH 137/167] Adding webpack-cli to the node packages --- .../node-packages/node-packages-v10.json | 1 + .../node-packages/node-packages-v10.nix | 7337 +++++++++-------- 2 files changed, 3918 insertions(+), 3420 deletions(-) diff --git a/pkgs/development/node-packages/node-packages-v10.json b/pkgs/development/node-packages/node-packages-v10.json index c287ea6d2e61..91c03eb7ba52 100644 --- a/pkgs/development/node-packages/node-packages-v10.json +++ b/pkgs/development/node-packages/node-packages-v10.json @@ -116,6 +116,7 @@ , "@webassemblyjs/wasm-text-gen" , "@webassemblyjs/wast-refmt" , "webpack" +, "webpack-cli" , "webtorrent-cli" , "web-ext" , "wring" diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix index 097f8bfe1dbd..c444ceb674f2 100644 --- a/pkgs/development/node-packages/node-packages-v10.nix +++ b/pkgs/development/node-packages/node-packages-v10.nix @@ -22,15 +22,6 @@ let sha512 = "AEIQwPkS0QLbkpb6WyRhV4aOMxuErasp47ABv5niDKOasQH8mrD8JSGKJAHuQxVe4kB8DE9sLRoc5qeQ0KFCHA=="; }; }; - "@apollographql/apollo-upload-server-5.0.3" = { - name = "_at_apollographql_slash_apollo-upload-server"; - packageName = "@apollographql/apollo-upload-server"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@apollographql/apollo-upload-server/-/apollo-upload-server-5.0.3.tgz"; - sha512 = "tGAp3ULNyoA8b5o9LsU2Lq6SwgVPUOKAqKywu2liEtTvrFSGPrObwanhYwArq3GPeOqp2bi+JknSJCIU3oQN1Q=="; - }; - }; "@apollographql/graphql-playground-html-1.6.6" = { name = "_at_apollographql_slash_graphql-playground-html"; packageName = "@apollographql/graphql-playground-html"; @@ -49,13 +40,13 @@ let sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; }; }; - "@babel/core-7.2.0" = { + "@babel/core-7.2.2" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.2.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.2.0.tgz"; - sha512 = "7pvAdC4B+iKjFFp9Ztj0QgBndJ++qaMeonT185wAqUnhipw8idm9Rv1UMyBuKtYjfl6ORNkgEgcsYLfHX/GpLw=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.2.2.tgz"; + sha512 = "59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw=="; }; }; "@babel/generator-7.0.0-beta.38" = { @@ -67,13 +58,13 @@ let sha512 = "aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA=="; }; }; - "@babel/generator-7.2.0" = { + "@babel/generator-7.2.2" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; - version = "7.2.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz"; - sha512 = "BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg=="; + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.2.2.tgz"; + sha512 = "I4o675J/iS8k+P38dvJ3IBGqObLXyQLTxtrR4u9cSUJOURvafeEWb/pFMOTwtNrmq73mJzyF6ueTbO1BtN0Zeg=="; }; }; "@babel/helper-annotate-as-pure-7.0.0" = { @@ -112,13 +103,13 @@ let sha512 = "YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ=="; }; }; - "@babel/helper-create-class-features-plugin-7.2.1" = { + "@babel/helper-create-class-features-plugin-7.2.3" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.2.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2.1.tgz"; - sha512 = "EsEP7XLFmcJHjcuFYBxYD1FkP0irC8C9fsrt2tX/jrAi/eTnFI6DOPgVFb+WREeg1GboF+Ib+nCHbGBodyAXSg=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2.3.tgz"; + sha512 = "xO/3Gn+2C7/eOUeb0VRnSP1+yvWHNxlpAot1eMhtoKDCN7POsyQP5excuT5UsV5daHxMWBeIIOeI5cmB8vMRgQ=="; }; }; "@babel/helper-define-map-7.1.0" = { @@ -184,13 +175,13 @@ let sha512 = "aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A=="; }; }; - "@babel/helper-module-transforms-7.1.0" = { + "@babel/helper-module-transforms-7.2.2" = { name = "_at_babel_slash_helper-module-transforms"; packageName = "@babel/helper-module-transforms"; - version = "7.1.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.1.0.tgz"; - sha512 = "0JZRd2yhawo79Rcm4w0LwSMILFmFXjugG3yqf+P/UsKsRS1mJCmMwwlHDlMg7Avr9LrvSpp4ZSULO9r8jpCzcw=="; + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz"; + sha512 = "YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA=="; }; }; "@babel/helper-optimise-call-expression-7.0.0" = { @@ -229,13 +220,13 @@ let sha512 = "3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg=="; }; }; - "@babel/helper-replace-supers-7.1.0" = { + "@babel/helper-replace-supers-7.2.3" = { name = "_at_babel_slash_helper-replace-supers"; packageName = "@babel/helper-replace-supers"; - version = "7.1.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.1.0.tgz"; - sha512 = "BvcDWYZRWVuDeXTYZWxekQNO5D4kO55aArwZOTFXw6rlLQA8ZaDicJR1sO47h+HrnCiDFiww0fSPV0d713KBGQ=="; + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz"; + sha512 = "GyieIznGUfPXPWu0yLS6U55Mz67AZD9cUk0BfirOWlPrXlBcan9Gz+vHGz+cPfuoweZSnPzPIm67VtQM0OWZbA=="; }; }; "@babel/helper-simple-access-7.1.0" = { @@ -283,13 +274,13 @@ let sha512 = "UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw=="; }; }; - "@babel/parser-7.2.0" = { + "@babel/parser-7.2.3" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.2.0.tgz"; - sha512 = "M74+GvK4hn1eejD9lZ7967qAwvqTZayQa3g10ag4s9uewgR7TKjeaT0YMyoq+gVfKYABiWZ4MQD701/t5e1Jhg=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.2.3.tgz"; + sha512 = "0LyEcVlfCoFmci8mXx8A5oIkpkOgyo8dRHtxBnK9RRBwxO2+JZPNsqtVEZQ7mJFPxnXF9lfmU24mHOPI0qnlkA=="; }; }; "@babel/plugin-external-helpers-7.0.0" = { @@ -310,13 +301,13 @@ let sha512 = "+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ=="; }; }; - "@babel/plugin-proposal-class-properties-7.2.1" = { + "@babel/plugin-proposal-class-properties-7.2.3" = { name = "_at_babel_slash_plugin-proposal-class-properties"; packageName = "@babel/plugin-proposal-class-properties"; - version = "7.2.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.1.tgz"; - sha512 = "/4FKFChkQ2Jgb8lBDsvFX496YTi7UWTetVgS8oJUpX1e/DlaoeEK57At27ug8Hu2zI2g8bzkJ+8k9qrHZRPGPA=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.3.tgz"; + sha512 = "FVuQngLoN2iDrpW7LmhPZ2sO4DJxf35FOcwidwB9Ru9tMvI5URthnkVHuG14IStV+TzkMTyLMoOUlSTtrdVwqw=="; }; }; "@babel/plugin-proposal-json-strings-7.2.0" = { @@ -445,13 +436,13 @@ let sha512 = "vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q=="; }; }; - "@babel/plugin-transform-classes-7.2.0" = { + "@babel/plugin-transform-classes-7.2.2" = { name = "_at_babel_slash_plugin-transform-classes"; packageName = "@babel/plugin-transform-classes"; - version = "7.2.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.0.tgz"; - sha512 = "aPCEkrhJYebDXcGTAP+cdUENkH7zqOlgbKwLbghjjHpJRJBWM/FSlCjMoPGA8oUdiMfOrk3+8EFPLLb5r7zj2w=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz"; + sha512 = "gEZvgTy1VtcDOaQty1l10T3jQmJKlNVxLDCs+3rCVPr6nMkODLELxViq5X9l+rfxbie3XrfrMCYYY6eX3aOcOQ=="; }; }; "@babel/plugin-transform-computed-properties-7.2.0" = { @@ -499,13 +490,13 @@ let sha512 = "umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A=="; }; }; - "@babel/plugin-transform-flow-strip-types-7.2.0" = { + "@babel/plugin-transform-flow-strip-types-7.2.3" = { name = "_at_babel_slash_plugin-transform-flow-strip-types"; packageName = "@babel/plugin-transform-flow-strip-types"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.0.tgz"; - sha512 = "xhQp0lyXA5vk8z1kJitdMozQYEWfo4MgC6neNXrb5euqHiTIGhj5ZWfFPkVESInQSk9WZz1bbNmIRz6zKfWGVA=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.3.tgz"; + sha512 = "xnt7UIk9GYZRitqCnsVMjQK1O2eKZwFB3CvvHjf5SGx6K6vr/MScCKQDnf1DxRaj501e3pXjti+inbSXX2ZUoQ=="; }; }; "@babel/plugin-transform-for-of-7.2.0" = { @@ -634,13 +625,13 @@ let sha512 = "QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg=="; }; }; - "@babel/plugin-transform-spread-7.2.0" = { + "@babel/plugin-transform-spread-7.2.2" = { name = "_at_babel_slash_plugin-transform-spread"; packageName = "@babel/plugin-transform-spread"; - version = "7.2.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.0.tgz"; - sha512 = "7TtPIdwjS/i5ZBlNiQePQCovDh9pAhVbp/nGVRBZuUdBiVRThyyLend3OHobc0G+RLCPPAN70+z/MAMhsgJd/A=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz"; + sha512 = "KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w=="; }; }; "@babel/plugin-transform-sticky-regex-7.2.0" = { @@ -688,13 +679,13 @@ let sha512 = "dnrMRkyyr74CRelJwvgnnSUDh2ge2NCTyHVwpOdvRMHtJUyxLtMAfhBN3s64pY41zdw0kgiLPh6S20eb1NcX6Q=="; }; }; - "@babel/preset-env-7.2.0" = { + "@babel/preset-env-7.2.3" = { name = "_at_babel_slash_preset-env"; packageName = "@babel/preset-env"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.2.0.tgz"; - sha512 = "haGR38j5vOGVeBatrQPr3l0xHbs14505DcM57cbJy48kgMFvvHHoYEhHuRV+7vi559yyAUAVbTWzbK/B/pzJng=="; + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.2.3.tgz"; + sha512 = "AuHzW7a9rbv5WXmvGaPX7wADxFkZIqKlbBh1dmZUQp4iwiPpkE/Qnrji6SC4UQCQzvWY/cpHET29eUhXS9cLPw=="; }; }; "@babel/preset-stage-2-7.0.0" = { @@ -724,31 +715,22 @@ let sha512 = "oouEibCbHMVdZSDlJBO6bZmID/zA/G/Qx3H1d3rSNPTD+L8UNKvCat7aKWSJ74zYbm5zWGh0GQN0hKj8zYFTCg=="; }; }; - "@babel/runtime-corejs2-7.2.0" = { - name = "_at_babel_slash_runtime-corejs2"; - packageName = "@babel/runtime-corejs2"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.2.0.tgz"; - sha512 = "kPfmKoRI8Hpo5ZJGACWyrc9Eq1j3ZIUpUAQT2yH045OuYpccFJ9kYA/eErwzOM2jeBG1sC8XX1nl1EArtuM8tg=="; - }; - }; - "@babel/template-7.1.2" = { + "@babel/template-7.2.2" = { name = "_at_babel_slash_template"; packageName = "@babel/template"; - version = "7.1.2"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/template/-/template-7.1.2.tgz"; - sha512 = "SY1MmplssORfFiLDcOETrW7fCLl+PavlwMh92rrGcikQaRq4iWPVH0MpwPpY3etVMx6RnDjXtr6VZYr/IbP/Ag=="; + url = "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz"; + sha512 = "zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g=="; }; }; - "@babel/traverse-7.1.6" = { + "@babel/traverse-7.2.3" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.1.6"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.1.6.tgz"; - sha512 = "CXedit6GpISz3sC2k2FsGCUpOhUqKdyL0lqNrImQojagnUMXf8hex4AxYFRuMkNGcvJX5QAFGzB5WJQmSv8SiQ=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz"; + sha512 = "Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw=="; }; }; "@babel/types-7.0.0-beta.38" = { @@ -760,13 +742,13 @@ let sha512 = "SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q=="; }; }; - "@babel/types-7.2.0" = { + "@babel/types-7.2.2" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.2.0"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.2.0.tgz"; - sha512 = "b4v7dyfApuKDvmPb+O488UlGuR1WbwMXFsO/cyqMrnfvRAChZKJAYeeglWTjUO1b9UghKKgepAQM5tsvBJca6A=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.2.2.tgz"; + sha512 = "fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg=="; }; }; "@calebboyd/semaphore-1.3.1" = { @@ -805,141 +787,6 @@ let sha512 = "9hKVIN2+maygxkngnXDsZXRZqCYDY4pxIRljJqqJ5A+eJZzW3k/NZj5lixEmStjWFjlPlOHGYBytBehpf0l+hA=="; }; }; - "@commitlint/cli-7.2.1" = { - name = "_at_commitlint_slash_cli"; - packageName = "@commitlint/cli"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-7.2.1.tgz"; - sha512 = "PUHWGoQOx8m6ZSpZPSHb+YISFAvW7jiWvCJOQiViKHZC8CLKu4bjyc/AwP8gBte0RsTGAu1ekiitp5Q0NcLGcA=="; - }; - }; - "@commitlint/config-conventional-7.1.2" = { - name = "_at_commitlint_slash_config-conventional"; - packageName = "@commitlint/config-conventional"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-7.1.2.tgz"; - sha512 = "DmA4ixkpv03qA1TVs1Bl25QsVym2bPL6pKapesALWIVggG3OpwqGZ55vN75Tx8xZoG7LFKrVyrt7kwhA7X8njQ=="; - }; - }; - "@commitlint/ensure-7.2.0" = { - name = "_at_commitlint_slash_ensure"; - packageName = "@commitlint/ensure"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-7.2.0.tgz"; - sha512 = "j2AJE4eDeLP6O/Z1CdPwEXAzcrRRoeeHLuvW8bldQ4J2nHiX9hzmSe87H87Ob8Avm+zIegsqVPGaBAtRmbODYw=="; - }; - }; - "@commitlint/execute-rule-7.1.2" = { - name = "_at_commitlint_slash_execute-rule"; - packageName = "@commitlint/execute-rule"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-7.1.2.tgz"; - sha512 = "EP/SqX2U2L4AQHglZ2vGM1pvHJOh3sbYtHn1QhtllqEpsdmhuNpVPSGHP/r9OD2h4i90vtnWgZQoskt2MkbknA=="; - }; - }; - "@commitlint/format-7.2.1" = { - name = "_at_commitlint_slash_format"; - packageName = "@commitlint/format"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/format/-/format-7.2.1.tgz"; - sha512 = "1YcL+ZWB8V52oDFQBhSBJjiJOZDt4Vl06O5TkG70BMpre3EQru5KYIN16eEPqfihNw0bj8gSIWcf87Gvh3OrOw=="; - }; - }; - "@commitlint/is-ignored-7.2.1" = { - name = "_at_commitlint_slash_is-ignored"; - packageName = "@commitlint/is-ignored"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-7.2.1.tgz"; - sha512 = "3DsEEKRnj8Bv9qImsxWcGf9BwerDnk5Vs+oK6ELzIwkndHaAZLHyATjmaz/rsc+U+DWiVjgKrrw3xvd/UsoazA=="; - }; - }; - "@commitlint/lint-7.2.1" = { - name = "_at_commitlint_slash_lint"; - packageName = "@commitlint/lint"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-7.2.1.tgz"; - sha512 = "rM7nUyNUJyuKw1MTwJG/wk4twB5YCAG2wzJMn5NqVpGD/qmLOzlZoBl0+CYmuOsbIRAA2rlEV6KZHBk9tTfAdQ=="; - }; - }; - "@commitlint/load-7.2.1" = { - name = "_at_commitlint_slash_load"; - packageName = "@commitlint/load"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-7.2.1.tgz"; - sha512 = "FnfmfhPGJqGwILVRznduBejOicNey6p/byfcyxtcBkN2+X96gDuNtqcnGcngCrzPIAgaIrQQcTQDA1/KMtW21A=="; - }; - }; - "@commitlint/message-7.1.2" = { - name = "_at_commitlint_slash_message"; - packageName = "@commitlint/message"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/message/-/message-7.1.2.tgz"; - sha512 = "6FQeK5LAs1Bde6W/jULg+I/XZhj3gbqCWlS2Q11A2JbaTRpRJZzm7WdD9nK3I0+De41EOqW2t4mBnrpio3o1Zg=="; - }; - }; - "@commitlint/parse-7.1.2" = { - name = "_at_commitlint_slash_parse"; - packageName = "@commitlint/parse"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-7.1.2.tgz"; - sha512 = "wrdLwJZL3cs89MfgPtnbbKByijUo3Wrug55aTke5k/F0XNxGaDaNJyH4QXgidgXk57r2t4NJVAKwjnY4wjfNwg=="; - }; - }; - "@commitlint/read-7.1.2" = { - name = "_at_commitlint_slash_read"; - packageName = "@commitlint/read"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/read/-/read-7.1.2.tgz"; - sha512 = "sarYQgfTay2Eu7onHz53EYyRw7pI5QmLE7tP5Ri9op6eu4LadjSoA/4dfc+VE7avsq21J2ewSbz+9f0uvhDxgg=="; - }; - }; - "@commitlint/resolve-extends-7.1.2" = { - name = "_at_commitlint_slash_resolve-extends"; - packageName = "@commitlint/resolve-extends"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-7.1.2.tgz"; - sha512 = "zwbifMB9DeHP4sYQdrkx+XJh5Q1lyP/OdlErUCC34NV4Lkxw/XxXF4St3e+y1X28/SgrEc2XSOS6n/vQQfUlLA=="; - }; - }; - "@commitlint/rules-7.2.0" = { - name = "_at_commitlint_slash_rules"; - packageName = "@commitlint/rules"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-7.2.0.tgz"; - sha512 = "c15Q9H5iYE9fnncLnFnMuvPLYA/i0pve5moV0uxJJGr4GgJoBKyldd4CCDhoE80C1k8ABuqr2o2qsopzVEp3Ww=="; - }; - }; - "@commitlint/to-lines-7.1.2" = { - name = "_at_commitlint_slash_to-lines"; - packageName = "@commitlint/to-lines"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-7.1.2.tgz"; - sha512 = "Nz3qZwrIEYiN9v/ThJqXAwu4X5+hvT9H8yRPHfjc538R8WhwEfhvym7/4YznDHSvWrQgwqtNPdrb6b2OSBsHmg=="; - }; - }; - "@commitlint/top-level-7.1.2" = { - name = "_at_commitlint_slash_top-level"; - packageName = "@commitlint/top-level"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-7.1.2.tgz"; - sha512 = "YKugOAKy3hgM/ITezPp7Ns51U3xoJfuOsVnMGW4oDcHLhuQ/Qd58ROv/Hgedtk8HugKX3DdZ8XoEnRG70RDGqQ=="; - }; - }; "@cycle/dom-18.3.0" = { name = "_at_cycle_slash_dom"; packageName = "@cycle/dom"; @@ -1012,40 +859,49 @@ let sha1 = "890ae7c5d8c877f6d384860215ace9d7ec945bda"; }; }; - "@ionic/cli-framework-1.5.0" = { + "@iarna/toml-2.2.1" = { + name = "_at_iarna_slash_toml"; + packageName = "@iarna/toml"; + version = "2.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.1.tgz"; + sha512 = "I2EjI9TbEFJNLziNPFfpo64PNanOaK17iL2kTW/jGlGOa4bvHw4VEied83kOEB7NJjXf1KfvmsQ2aEjy3xjiGg=="; + }; + }; + "@ionic/cli-framework-1.5.3" = { name = "_at_ionic_slash_cli-framework"; packageName = "@ionic/cli-framework"; - version = "1.5.0"; + version = "1.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-1.5.0.tgz"; - sha512 = "vWctiIcq/TrzLHNcyHp3/mPJ8JEpoSFvq+J8w+FdhZlErr9h5QVIl36RvBN+yWqh28DCz/8Vm+YT+nZbYFYE/g=="; + url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-1.5.3.tgz"; + sha512 = "xNCluLemxUYz/8Vgmyuxb2VEd/KuK3jCK4Tbmwnp1yGMnM+iw+WHqmNYHGHLdU+Sir/lLWd/WNrm9cfgGobC0g=="; }; }; - "@ionic/discover-1.0.8" = { + "@ionic/discover-1.0.10" = { name = "_at_ionic_slash_discover"; packageName = "@ionic/discover"; - version = "1.0.8"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@ionic/discover/-/discover-1.0.8.tgz"; - sha512 = "1TBoCgHC6tI4YA1xMGIfLXdemTFohtTGrD29MrVBBUe6KGJ4DEJ/4DUX/lRPedCf2KUhJvGrjHlhDfOuGfel9A=="; + url = "https://registry.npmjs.org/@ionic/discover/-/discover-1.0.10.tgz"; + sha512 = "xUpMIAKF/oJz4hdstjCXsD5wx5uFF5KYmKWaeRQxXwbGuRXoP6Nuth7P1pztg7w4pugirVS4UkUqZ1gLpjp7wA=="; }; }; - "@ionic/utils-fs-0.0.5" = { + "@ionic/utils-fs-1.0.0" = { name = "_at_ionic_slash_utils-fs"; packageName = "@ionic/utils-fs"; - version = "0.0.5"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-0.0.5.tgz"; - sha512 = "wdeh4pyKfKYXHjwiNN/WQoo/NG0MbPev+hSZGgiQLVCd7GLT984yCf0kX6Wb6NgU69n2xqeEcDM64uP1kFm0Ow=="; + url = "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-1.0.0.tgz"; + sha512 = "cOCO1dcugDL38Hu1HAofvC/bsIE/mCp3Uz4bTjtrhJF7T0T0OC6hHOOlacUz2HTvxfn3ZJqa3uhcy6/GYTJZsQ=="; }; }; - "@ionic/utils-network-0.0.4" = { + "@ionic/utils-network-0.0.6" = { name = "_at_ionic_slash_utils-network"; packageName = "@ionic/utils-network"; - version = "0.0.4"; + version = "0.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@ionic/utils-network/-/utils-network-0.0.4.tgz"; - sha512 = "xJrO+ZG8Gud6qcLy/nFtoaloZHUM94Xvt4boAyyzr+1IFlgPfstfpbjsOFgKu5yqhc1+JyqwNtdJ14jEC9F17A=="; + url = "https://registry.npmjs.org/@ionic/utils-network/-/utils-network-0.0.6.tgz"; + sha512 = "1aHXzL1PPJDdXLwicu5+Zv0QfWIrKxqGvat4A8zruAjm4oLvIOli5DnUb61VqP2ocAhiI3t39jxtBq9Fb/Gl9w=="; }; }; "@kbrandwijk/swagger-to-graphql-2.4.3" = { @@ -1057,49 +913,49 @@ let sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q=="; }; }; - "@lerna/add-3.6.0" = { + "@lerna/add-3.10.5" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-3.6.0.tgz"; - sha512 = "aFVekkHMno3hj1Vg3EiIpAwrZ4g34i8z4KrCx7ATY6BRuxVT4Nt/Nk3l2k6gEOq3tWUDtUctLHxIAo14FI8sng=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-3.10.5.tgz"; + sha512 = "T3d9FnSyBOYnM/a1j5Sa65SGOTgnv04HG7Y2lRWJcF6PvOoTsozYW0izi/vLAnAt/DvGhYf2morXkWS8AbIeDg=="; }; }; - "@lerna/batch-packages-3.6.0" = { + "@lerna/batch-packages-3.10.0" = { name = "_at_lerna_slash_batch-packages"; packageName = "@lerna/batch-packages"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.6.0.tgz"; - sha512 = "khG15B+EFLH3Oms6A6WsMAy54DrnKIhEAm6CCATN2BKnBkNgitYjLN2vKBzlR2LfQpTkgub67QKIJkMFQcK1Sg=="; + url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.10.0.tgz"; + sha512 = "ERvnpmmfV8H+3B+9FmHqmzfgz0xVe3ktW/e4WZZXYMGpqSGToILZlai4PsBrW5gUtnXA77LSskME+aRdkZaKsQ=="; }; }; - "@lerna/bootstrap-3.6.0" = { + "@lerna/bootstrap-3.10.5" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.6.0.tgz"; - sha512 = "z6rZQw/aLEN+ragWRYqIIVwA9rDv3QtmRc5VyIRrlV/JiuGpq67FcSR6BrCMc/A7UJ9Kx95+bESm/HUwheKoiQ=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.10.5.tgz"; + sha512 = "WMUfysmX2WFkOzWcpv0mW6Kw91Zsuq9Ecz/TIT4q3FywvABD0mrWbcDXSyrxMspxDEOtPqM/Lk9nm6F9M98kbg=="; }; }; - "@lerna/changed-3.6.0" = { + "@lerna/changed-3.10.5" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.6.0.tgz"; - sha512 = "L1SXTtQrsv+4F5Knw5sW/nGnMJq+bbOzhZX2srJ10WsuHuzk3cJWAi7dVEsS3RPKUw9DWOuHKy86o3v6byEiqA=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.10.5.tgz"; + sha512 = "Uy3VWzjmGg2CjKRTW9os+R6Itg3LVJ6CjczeOsOFwSN4JMdNoObUnCTSdCCTUF/+hQNAoSnkw3+C8dC5FPL1Zw=="; }; }; - "@lerna/check-working-tree-3.6.0" = { + "@lerna/check-working-tree-3.10.0" = { name = "_at_lerna_slash_check-working-tree"; packageName = "@lerna/check-working-tree"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-3.6.0.tgz"; - sha512 = "Ioy1t2aVasAwhY1Oi5kfpwbW9RDupxxVVu2t2c1EeBYYCu3jIt1A5ad34gidgsKyiG3HeBEVziI4Uaihnb96ZQ=="; + url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-3.10.0.tgz"; + sha512 = "NdIPhDgEtGHfeGjB9F0oAoPLywgMpjnJhLLwTNQkelDHo2xNAVpG8kV+A2UJ+cU5UXCZA4RZFxKNmw86rO+Drw=="; }; }; "@lerna/child-process-3.3.0" = { @@ -1111,58 +967,58 @@ let sha512 = "q2d/OPlNX/cBXB6Iz1932RFzOmOHq6ZzPjqebkINNaTojHWuuRpvJJY4Uz3NGpJ3kEtPDvBemkZqUBTSO5wb1g=="; }; }; - "@lerna/clean-3.6.0" = { + "@lerna/clean-3.10.1" = { name = "_at_lerna_slash_clean"; packageName = "@lerna/clean"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.6.0.tgz"; - sha512 = "4LodI/jh8IEYtqnrY/OFSpWn5YfDWoDv+5QjiJpd91EjW9vjmkvyhzQ5fG9KtltwgYVn/NJ5zlI1WfmMEXvFFQ=="; + url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.10.1.tgz"; + sha512 = "eYSNSD4xD//OIDe0r4r/HhEMEXriIuKqp4BMDhrO7pJmYhk7FvznJUSc4jc85wdA4Y0ooqSs9gF/w2lgLGgUxw=="; }; }; - "@lerna/cli-3.6.0" = { + "@lerna/cli-3.10.0" = { name = "_at_lerna_slash_cli"; packageName = "@lerna/cli"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.6.0.tgz"; - sha512 = "FGCx7XOLpqmU5eFOlo0Lt0hRZraxSUTEWM0bce0p+HNpOxBc91o6d2tenW1azPYFP9HzsMQey1NBtU0ofJJeog=="; + url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.10.0.tgz"; + sha512 = "OTO8GlD6Rf298hxml3/Y3OE8yMDuW3NNqumbroiUb/KdkrnyjZl5F6aSMXJEySq+OSoBboZJMwj2IWglc/7fuw=="; }; }; - "@lerna/collect-updates-3.6.0" = { + "@lerna/collect-updates-3.10.1" = { name = "_at_lerna_slash_collect-updates"; packageName = "@lerna/collect-updates"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.6.0.tgz"; - sha512 = "knliEz3phY51SGnwDhhYqx6SJN6y9qh/gZrZgQ7ogqz1UgA/MyJb27gszjsyyG6jUQshimBpjsG7OMwjt8+n9A=="; + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.10.1.tgz"; + sha512 = "vb0wEJ8k63G+2CR/ud1WeVHNJ21Fs6Ew6lbdGZXnF4ZvaFWxWJZpoHeWwzjhMdJ75QdTzUaIhTG1hnH9faQNMw=="; }; }; - "@lerna/command-3.6.0" = { + "@lerna/command-3.10.0" = { name = "_at_lerna_slash_command"; packageName = "@lerna/command"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/command/-/command-3.6.0.tgz"; - sha512 = "BGpXaY2WrxPcIiZX0aATO2HQBatvYT7Qy46lqMnV9RrTePYJ1PPbX1nMzLXSxgrnnlTcTwJNEkw/TL9Xzrph7Q=="; + url = "https://registry.npmjs.org/@lerna/command/-/command-3.10.0.tgz"; + sha512 = "TTtCDQ5+bDdA/RnBuDtkfqzUV8Mr61KBHxEZL8YLAmHZtY/HsnNpZzbAZ0STPxcFB96dhxVWbRDGP+yBgRfemQ=="; }; }; - "@lerna/conventional-commits-3.6.0" = { + "@lerna/conventional-commits-3.10.0" = { name = "_at_lerna_slash_conventional-commits"; packageName = "@lerna/conventional-commits"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.6.0.tgz"; - sha512 = "KkY3wd7w/tj76EEIhTMYZlSBk/5WkT2NA9Gr/EuSwKV70PYyVA55l1OGlikBUAnuqIjwyfw9x3y+OcbYI4aNEg=="; + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.10.0.tgz"; + sha512 = "8FvO0eR8g/tEgkb6eRVYaD39TsqMKsOXp17EV48jciciEqcrF/d1Ypu6ilK1GDp6R/1m2mbjt/b52a/qrO+xaw=="; }; }; - "@lerna/create-3.6.0" = { + "@lerna/create-3.10.0" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-3.6.0.tgz"; - sha512 = "21OunW25Y3Q/oynqWVk0znQFBvZ5tHyLPhzkJeomGmOj0il1RdOUiChu9G9AYsCaLDwBFR0ZFqvTgJ5iw/eaIg=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-3.10.0.tgz"; + sha512 = "1EQbhyGx/J+gwlxFPecpmrztyEfBRm/sNei95UJlJWLuturSv2Ax2nCa49tcerbPlYhhlJ6lyintukL5STOzdg=="; }; }; "@lerna/create-symlink-3.6.0" = { @@ -1174,49 +1030,49 @@ let sha512 = "YG3lTb6zylvmGqKU+QYA3ylSnoLn+FyLH5XZmUsD0i85R884+EyJJeHx/zUk+yrL2ZwHS4RBUgJfC24fqzgPoA=="; }; }; - "@lerna/describe-ref-3.6.0" = { + "@lerna/describe-ref-3.10.0" = { name = "_at_lerna_slash_describe-ref"; packageName = "@lerna/describe-ref"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-3.6.0.tgz"; - sha512 = "hVZJ2hYVbrrNiEG+dEg/Op4pYAbROkDZdiIUabAJffr0T/frcN+5es2HfmOC//4+78Cs1M9iTyQRoyC1RXS2BQ=="; + url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-3.10.0.tgz"; + sha512 = "fouh3FQS07QxJJp/mW8LkGnH0xMRAzpBlejtZaiRwfDkW2kd6EuHaj8I/2/p21Wsprcvuu4dqmyia2YS1xFb/w=="; }; }; - "@lerna/diff-3.6.0" = { + "@lerna/diff-3.10.0" = { name = "_at_lerna_slash_diff"; packageName = "@lerna/diff"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.6.0.tgz"; - sha512 = "p5+VyYKuAnw6NFVrT4s9eBubFZEYlJmiR1mdVlwNtohqS86gERjrPtI0unUK/pxFKb1U2ZNo4fhSlPd+pLwfHg=="; + url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.10.0.tgz"; + sha512 = "MU6P9uAND+dZ15Cm4onJakEYMC6xXZApLuPpWJf0kZtVoF2Feoo3mvQASdb17fe0jvvmWDS0RLCzq9Zhzrgm0A=="; }; }; - "@lerna/exec-3.6.0" = { + "@lerna/exec-3.10.1" = { name = "_at_lerna_slash_exec"; packageName = "@lerna/exec"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.6.0.tgz"; - sha512 = "lwLYASpS8FoQpVYLBpoZlS7bpzkO9pD3D9XeDDKZBodDhdZeCEx2Md2CxZU1RKYDSVIXA8oObvlUh1FEhRQv2w=="; + url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.10.1.tgz"; + sha512 = "MM5/OMP4FrVH4PIlG+3xk3jpKq+trgu/eAPttaYZBHAumCOjrDVYdyk5O68+YLz+uLkM31ixTmsiAP9f77HTsg=="; }; }; - "@lerna/filter-options-3.6.0" = { + "@lerna/filter-options-3.10.1" = { name = "_at_lerna_slash_filter-options"; packageName = "@lerna/filter-options"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.6.0.tgz"; - sha512 = "6iUMZuvvXPL5EAF7Zo9azaZ6FxOq6tGbiSX8fUXgCdN+jlRjorvkzR+E0HS4bEGTWmV446lnLwdQLZuySfLcbQ=="; + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.10.1.tgz"; + sha512 = "34q7P0/AA+omVk9uwv99i+4qmj5uGuj383RzqIcK8JDYL0JSzlmW0+c4IkxunCfRrWft8OFhSwZdOOmXtDSDYg=="; }; }; - "@lerna/filter-packages-3.6.0" = { + "@lerna/filter-packages-3.10.0" = { name = "_at_lerna_slash_filter-packages"; packageName = "@lerna/filter-packages"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.6.0.tgz"; - sha512 = "O/nIENV3LOqp/TiUIw3Ir6L/wUGFDeYBdJsJTQDlTAyHZsgYA1OIn9FvlW8nqBu1bNLzoBVHXh3c5azx1kE+Hg=="; + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.10.0.tgz"; + sha512 = "3Acdj+jbany6LnQSuImU4ttcK5ULHSVug8Gh/EvwTewKCDpHAuoI3eyuzZOnSBdMvDOjE03uIESQK0dNNsn6Ow=="; }; }; "@lerna/get-npm-exec-opts-3.6.0" = { @@ -1228,6 +1084,15 @@ let sha512 = "ruH6KuLlt75aCObXfUIdVJqmfVq7sgWGq5mXa05vc1MEqxTIiU23YiJdWzofQOOUOACaZkzZ4K4Nu7wXEg4Xgg=="; }; }; + "@lerna/get-packed-3.7.0" = { + name = "_at_lerna_slash_get-packed"; + packageName = "@lerna/get-packed"; + version = "3.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-3.7.0.tgz"; + sha512 = "yuFtjsUZIHjeIvIYQ/QuytC+FQcHwo3peB+yGBST2uWCLUCR5rx6knoQcPzbxdFDCuUb5IFccFGd3B1fHFg3RQ=="; + }; + }; "@lerna/global-options-3.1.3" = { name = "_at_lerna_slash_global-options"; packageName = "@lerna/global-options"; @@ -1237,58 +1102,58 @@ let sha512 = "LVeZU/Zgc0XkHdGMRYn+EmHfDmmYNwYRv3ta59iCVFXLVp7FRFWF7oB1ss/WRa9x/pYU0o6L8as/5DomLUGASA=="; }; }; - "@lerna/has-npm-version-3.3.0" = { + "@lerna/has-npm-version-3.10.0" = { name = "_at_lerna_slash_has-npm-version"; packageName = "@lerna/has-npm-version"; - version = "3.3.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.3.0.tgz"; - sha512 = "GX7omRep1eBRZHgjZLRw3MpBJSdA5gPZFz95P7rxhpvsiG384Tdrr/cKFMhm0A09yq27Tk/nuYTaZIj7HsVE6g=="; + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.10.0.tgz"; + sha512 = "N4RRYxGeivuaKgPDzrhkQOQs1Sg4tOnxnEe3akfqu1wDA4Ng5V6Y2uW3DbkAjFL3aNJhWF5Vbf7sBsGtfgDQ8w=="; }; }; - "@lerna/import-3.6.0" = { + "@lerna/import-3.10.0" = { name = "_at_lerna_slash_import"; packageName = "@lerna/import"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/import/-/import-3.6.0.tgz"; - sha512 = "8jxNRbAaa4mvMJr0u+sy75gMFPyWfxLHEp+pDs73x1oqMZhpS8O5901QMnpZyRyOvJRhoBJd5hBX2dpsLxC6Xw=="; + url = "https://registry.npmjs.org/@lerna/import/-/import-3.10.0.tgz"; + sha512 = "c8/s/ldaNVGuKnu600B3nbkwJTNElp1duJiZQ7EBChF+szbQBAiQUGNLvBbwClLBzVJhKTw6E4ku17HafQ4vqg=="; }; }; - "@lerna/init-3.6.0" = { + "@lerna/init-3.10.0" = { name = "_at_lerna_slash_init"; packageName = "@lerna/init"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/init/-/init-3.6.0.tgz"; - sha512 = "MTLy3rmMdvpXRmDdoYiVPx7I8sXH4dquq/0MxntL5VxSVh/ZS1HsbrjyRqpdkUKWD9QguxR/w0pzOjVvCeM8CQ=="; + url = "https://registry.npmjs.org/@lerna/init/-/init-3.10.0.tgz"; + sha512 = "+zU1A870OOOqy3MPLcEoicN6dnIGZv/q0aqCVRRfCHAICciaswuIvdX0uDJx0NrUe0sW40dzIllxuUA39nPqcw=="; }; }; - "@lerna/link-3.6.0" = { + "@lerna/link-3.10.0" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-3.6.0.tgz"; - sha512 = "Xk8TTAE4EWGyhxLuPxWdyS7i7vfsM5igb6tEyhZm94XUdlA4PmMOYe25BfO7SM/9LYroFknZeDyWAebye3r+PA=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-3.10.0.tgz"; + sha512 = "uZvLxTSekqV8Kx0zMPgcxpTWyRkjnqnUzRiff9HQtOq+gBBifX079jGT7X73CO5eXFzp2TkOJtI1KNL0BNoNtA=="; }; }; - "@lerna/list-3.6.0" = { + "@lerna/list-3.10.1" = { name = "_at_lerna_slash_list"; packageName = "@lerna/list"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/list/-/list-3.6.0.tgz"; - sha512 = "hlQOJkg8K3XXUVXotofP71XsgkhXkkmU/EkqlNg15D78MjzhT+p1wCbG5m89K3tzvjcWVeZwU6L0elaOIXVyCw=="; + url = "https://registry.npmjs.org/@lerna/list/-/list-3.10.1.tgz"; + sha512 = "y2VwTeJ8tcQ0dmJJNhloGfhmCBUG3RXafqNkUVUG/ItoJlfzVniQOMdIDlkre86ZtnQv9yrB2vFaC2Vg++PklQ=="; }; }; - "@lerna/listable-3.6.0" = { + "@lerna/listable-3.10.0" = { name = "_at_lerna_slash_listable"; packageName = "@lerna/listable"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.6.0.tgz"; - sha512 = "fz63+zlqrJ9KQxIiv0r7qtufM4DEinSayAuO8YJuooz+1ctIP7RvMEQNvYI/E9tDlUo9Q0de68b5HbKrpmA5rQ=="; + url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.10.0.tgz"; + sha512 = "95EwogHBqJxrXOCkf3DAZQAzJes+I668Lg5BJDotfp9eZeJAbgGl6GPz5U+szPq0PrYfK+2kJv9xNXVnbfCZAw=="; }; }; "@lerna/log-packed-3.6.0" = { @@ -1300,49 +1165,49 @@ let sha512 = "T/J41zMkzpWB5nbiTRS5PmYTFn74mJXe6RQA2qhkdLi0UqnTp97Pux1loz3jsJf2yJtiQUnyMM7KuKIAge0Vlw=="; }; }; - "@lerna/npm-conf-3.4.1" = { + "@lerna/npm-conf-3.7.0" = { name = "_at_lerna_slash_npm-conf"; packageName = "@lerna/npm-conf"; - version = "3.4.1"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.4.1.tgz"; - sha512 = "i9G6DnbCqiAqxKx2rSXej/n14qxlV/XOebL6QZonxJKzNTB+Q2wglnhTXmfZXTPJfoqimLaY4NfAEtbOXRWOXQ=="; + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.7.0.tgz"; + sha512 = "+WSMDfPKcKzMfqq283ydz9RRpOU6p9wfx0wy4hVSUY/6YUpsyuk8SShjcRtY8zTM5AOrxvFBuuV90H4YpZ5+Ng=="; }; }; - "@lerna/npm-dist-tag-3.6.0" = { + "@lerna/npm-dist-tag-3.8.5" = { name = "_at_lerna_slash_npm-dist-tag"; packageName = "@lerna/npm-dist-tag"; - version = "3.6.0"; + version = "3.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.6.0.tgz"; - sha512 = "qX6IfQPX9Tum1LRjvjgj/yr2FYbc9dfHyeh7RI9zJ8pGncWbksBmnMcvoxF0Eu4+d7MjjIGfEnIp9LIl4MHSIA=="; + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.8.5.tgz"; + sha512 = "VO57yKTB4NC2LZuTd4w0LmlRpoFm/gejQ1gqqLGzSJuSZaBXmieElFovzl21S07cqiy7FNVdz75x7/a6WCZ6XA=="; }; }; - "@lerna/npm-install-3.6.0" = { + "@lerna/npm-install-3.10.0" = { name = "_at_lerna_slash_npm-install"; packageName = "@lerna/npm-install"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.6.0.tgz"; - sha512 = "RKV31VdrBZKjmKfq25JG4mIHJ8NAOsLKq/aYSaBs8zP+uwXH7RU39saVfv9ReKiAzhKE2ghOG2JeMdIHtYnPNA=="; + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.10.0.tgz"; + sha512 = "/6/XyLY9/4jaMPBOVYUr4wZxQURIfwoELY0qCQ8gZ5zv4cOiFiiCUxZ0i4fxqFtD7nJ084zq1DsZW0aH0CIWYw=="; }; }; - "@lerna/npm-publish-3.6.0" = { + "@lerna/npm-publish-3.10.5" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.6.0.tgz"; - sha512 = "k4yF8ursajoGRlJeRh7xdeGN0HV/ALt5qImUnpTliux0213jqxA0YigiD8WSaXpvSqxSFyvh38DbJhhy9q+NuQ=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.10.5.tgz"; + sha512 = "6wpgTfu5A5jJeB8RnH2n01HzfaB4Y9aKC0Tq0AAkw37PZ12LTgEL9I+ZZPqhUVFIFLB8/Ekpnj3AcKznJLG5xQ=="; }; }; - "@lerna/npm-run-script-3.6.0" = { + "@lerna/npm-run-script-3.10.0" = { name = "_at_lerna_slash_npm-run-script"; packageName = "@lerna/npm-run-script"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.6.0.tgz"; - sha512 = "6DRNFma30ex9r1a8mMDXziSRHf1/mo//hnvW1Zc1ctBh+7PU4I8n3A2ht/+742vtoTQH93Iqs3QSJl2KOLSsYg=="; + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.10.0.tgz"; + sha512 = "c21tBXLF1Wje4tx/Td9jKIMrlZo/8QQiyyadjdKpwyyo7orSMsVNXGyJwvZ4JVVDcwC3GPU6HQvkt63v7rcyaw=="; }; }; "@lerna/output-3.6.0" = { @@ -1354,31 +1219,40 @@ let sha512 = "9sjQouf6p7VQtVCRnzoTGlZyURd48i3ha3WBHC/UBJnHZFuXMqWVPKNuvnMf2kRXDyoQD+2mNywpmEJg5jOnRg=="; }; }; - "@lerna/package-3.6.0" = { + "@lerna/pack-directory-3.10.5" = { + name = "_at_lerna_slash_pack-directory"; + packageName = "@lerna/pack-directory"; + version = "3.10.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.10.5.tgz"; + sha512 = "Ulj24L9XdgjJIxBr6ZjRJEoBULVH3c10lqunUdW41bswXhzhirRtQIxv0+5shngNjDwgMmJfOBcuCVKPSez4tg=="; + }; + }; + "@lerna/package-3.7.2" = { name = "_at_lerna_slash_package"; packageName = "@lerna/package"; - version = "3.6.0"; + version = "3.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package/-/package-3.6.0.tgz"; - sha512 = "XbXcjwPKA1V640mqjEicpBriO6QcNtocdfLAtEUP4uCKkRx5r9h7DdznQMCoSJYJF6Gh/PpLokPUItfMhJP3Hg=="; + url = "https://registry.npmjs.org/@lerna/package/-/package-3.7.2.tgz"; + sha512 = "8A5hN2CekM1a0Ix4VUO/g+REo+MsnXb8lnQ0bGjr1YGWzSL5NxYJ0Z9+0pwTfDpvRDYlFYO0rMVwBUW44b4dUw=="; }; }; - "@lerna/package-graph-3.6.0" = { + "@lerna/package-graph-3.10.0" = { name = "_at_lerna_slash_package-graph"; packageName = "@lerna/package-graph"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.6.0.tgz"; - sha512 = "Xtldh3DTiC3cPDrs6OY5URiuRXGPMIN6uFKcx59rOu3TkqYRt346jRyX+hm85996Y/pboo3+JuQlonvuEP/9QQ=="; + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.10.0.tgz"; + sha512 = "9LX8I8KxzCMjfNPWvN/CxHW51s89S3Mnx2EYsbo8c8Gh8I6InA6e+Xur6uuCyZ6/0LKqQ/cXwrP3J81A4nIDSQ=="; }; }; - "@lerna/project-3.6.0" = { + "@lerna/project-3.10.0" = { name = "_at_lerna_slash_project"; packageName = "@lerna/project"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/project/-/project-3.6.0.tgz"; - sha512 = "pEOZF1igGFqs+qWog6cJWqVyBUX21xSqrlcgeN0yzqzI36VMHozmf/u7dgclIb5MylWk5Yp87KCKswBF4hrcuQ=="; + url = "https://registry.npmjs.org/@lerna/project/-/project-3.10.0.tgz"; + sha512 = "9QRl8aGHuyU4zVEELQmNPnJTlS7XHqX7w9I9isCXdnilKc2R0MyvUs21lj6Yyt6xTuQnqD158TR9tbS4QufYQQ=="; }; }; "@lerna/prompt-3.6.0" = { @@ -1390,13 +1264,22 @@ let sha512 = "nyAjPMolJ/ZRAAVcXrUH89C4n1SiWvLh4xWNvWYKLcf3PI5yges35sDFP/HYrM4+cEbkNFuJCRq6CxaET4PRsg=="; }; }; - "@lerna/publish-3.6.0" = { + "@lerna/publish-3.10.5" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.6.0.tgz"; - sha512 = "F2bT96ZS7NJfid6T4a6TSanpVUQ4VOuhjPBPX2hagt5gnocm7lluvAFR7dl/cbEgmKIg2zJQnfAPTYjrtxXMVg=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.10.5.tgz"; + sha512 = "26wjTtRbcUXlG8Na7goI0X1trMYivbuLT1bAXHNvuDaHYs7iE6LRjU4NCTNAmrdVnqagHkTxMuGRFn3r1NgcKg=="; + }; + }; + "@lerna/pulse-till-done-3.7.1" = { + name = "_at_lerna_slash_pulse-till-done"; + packageName = "@lerna/pulse-till-done"; + version = "3.7.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-3.7.1.tgz"; + sha512 = "MzpesZeW3Mc+CiAq4zUt9qTXI9uEBBKrubYHE36voQTSkHvu/Rox6YOvfUr+U7P6k8frFPeCgGpfMDTLhiqe6w=="; }; }; "@lerna/resolve-symlink-3.6.0" = { @@ -1408,31 +1291,31 @@ let sha512 = "TVOAEqHJSQVhNDMFCwEUZPaOETqHDQV1TQWQfC8ZlOqyaUQ7veZUbg0yfG7RPNzlSpvF0ZaGFeR0YhYDAW03GA=="; }; }; - "@lerna/rimraf-dir-3.6.0" = { + "@lerna/rimraf-dir-3.10.0" = { name = "_at_lerna_slash_rimraf-dir"; packageName = "@lerna/rimraf-dir"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.6.0.tgz"; - sha512 = "2CfyWP1lqxDET+SfwGlLUfgqGF4vz9TYDrmb7Zi//g7IFCo899uU2vWOrEcdWTgbKE3Qgwwfk9c008w5MWUhog=="; + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.10.0.tgz"; + sha512 = "RSKSfxPURc58ERCD/PuzorR86lWEvIWNclXYGvIYM76yNGrWiDF44pGHQvB4J+Lxa5M+52ZtZC/eOC7A7YCH4g=="; }; }; - "@lerna/run-3.6.0" = { + "@lerna/run-3.10.1" = { name = "_at_lerna_slash_run"; packageName = "@lerna/run"; - version = "3.6.0"; + version = "3.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run/-/run-3.6.0.tgz"; - sha512 = "OYa5pQTOiES/h9rg8vwnt0nYU/wLKUQmFYhMUxdX3lXYpoIcQ28PR7qPG1CVhex4KAU2OW42a7vnm5MAOoScDg=="; + url = "https://registry.npmjs.org/@lerna/run/-/run-3.10.1.tgz"; + sha512 = "g9YIcpk87Gok+zjicru/KsuZ1lcyuG5oERyAii3RSmpLaiwTh/SOSnxilrvDOYWwxYU5rPzvaCalkQI/i31Itw=="; }; }; - "@lerna/run-lifecycle-3.6.0" = { + "@lerna/run-lifecycle-3.10.5" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.6.0.tgz"; - sha512 = "/1+vAZnckgKwHVgWG0plVO24erNWUduz9htMOO9wuOfglTnHlMRqDc3s9B/OIKxGDkyzEvxqzfzq3c6JqEolRQ=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.10.5.tgz"; + sha512 = "YPmXviaxVlhcKM6IkDTIpTq24mxOuMCilo+MTr1RLoafgB9ZTmP2AHRiFt/sy14wOsq2Zqr0wJyj8KFlDYLTkA=="; }; }; "@lerna/run-parallel-batches-3.0.0" = { @@ -1444,22 +1327,22 @@ let sha512 = "Mj1ravlXF7AkkewKd9YFq9BtVrsStNrvVLedD/b2wIVbNqcxp8lS68vehXVOzoL/VWNEDotvqCQtyDBilCodGw=="; }; }; - "@lerna/symlink-binary-3.6.0" = { + "@lerna/symlink-binary-3.10.0" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.6.0.tgz"; - sha512 = "h69AQBBWgZOEzQ1RJEYQ7Ou6llrJNhNNkpqT6k8qSWZ93iXyFmLE4hWoxMXXHFmxmQ0CqjEYKmeLV1Dr5DKT4g=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.10.0.tgz"; + sha512 = "6mQsG+iVjBo8cD8s24O+YgFrwDyUGfUQbK4ryalAXFHI817Zd4xlI3tjg3W99whCt6rt6D0s1fpf8eslMN6dSw=="; }; }; - "@lerna/symlink-dependencies-3.6.0" = { + "@lerna/symlink-dependencies-3.10.0" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "3.6.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.6.0.tgz"; - sha512 = "mLpbWLidAU5Xi7bc9Fj8Yt/9XvDczzWocnS/yEe0E6RqWXh2KK+4VR9H24rLywBAWTv2s4GEXrb/ofbPb8gwBQ=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.10.0.tgz"; + sha512 = "vGpg5ydwGgQCuWNX5y7CRL38mGpuLhf1GRq9wMm7IGwnctEsdSNqvvE+LDgqtwEZASu5+vffYUkL0VlFXl8uWA=="; }; }; "@lerna/timer-3.5.0" = { @@ -1480,13 +1363,13 @@ let sha512 = "MWltncGO5VgMS0QedTlZCjFUMF/evRjDMMHrtVorkIB2Cp5xy0rkKa8iDBG43qpUWeG1giwi58yUlETBcWfILw=="; }; }; - "@lerna/version-3.6.0" = { + "@lerna/version-3.10.5" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-3.6.0.tgz"; - sha512 = "V1f3fNM5ELGHmF824Wc8ah505SMpfiBqOHAIiW+u9soH/3W/t256c1P9UeaDh5blWAk3HeZMzbpRZ9Nlpf6aQA=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-3.10.5.tgz"; + sha512 = "I6KynsrWvtusylggw+XmlfUud26ncfUctbn8hUQsofkxiouuElx1fUU4rEsOaonxvNk09bwlsGmfbIFsPeN6Hg=="; }; }; "@lerna/write-log-file-3.6.0" = { @@ -1498,15 +1381,6 @@ let sha512 = "OkLK99V6sYXsJsYg+O9wtiFS3z6eUPaiz2e6cXJt80mfIIdI1t2dnmyua0Ib5cZWExQvx2z6Y32Wlf0MnsoNsA=="; }; }; - "@marionebl/sander-0.6.1" = { - name = "_at_marionebl_slash_sander"; - packageName = "@marionebl/sander"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@marionebl/sander/-/sander-0.6.1.tgz"; - sha1 = "1958965874f24bc51be48875feb50d642fc41f7b"; - }; - }; "@mrmlnc/readdir-enhanced-2.2.1" = { name = "_at_mrmlnc_slash_readdir-enhanced"; packageName = "@mrmlnc/readdir-enhanced"; @@ -1525,6 +1399,51 @@ let sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; }; }; + "@parcel/fs-1.11.0" = { + name = "_at_parcel_slash_fs"; + packageName = "@parcel/fs"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/fs/-/fs-1.11.0.tgz"; + sha512 = "86RyEqULbbVoeo8OLcv+LQ1Vq2PKBAvWTU9fCgALxuCTbbs5Ppcvll4Vr+Ko1AnmMzja/k++SzNAwJfeQXVlpA=="; + }; + }; + "@parcel/logger-1.11.0" = { + name = "_at_parcel_slash_logger"; + packageName = "@parcel/logger"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/logger/-/logger-1.11.0.tgz"; + sha512 = "lIRfDg+junbFUUeU0QtHX00gKCgEsYHZydFKwrJ8dc0D+WE2SYT1FcVCgpPAfKYgtg0QQMns8E9vzT9UjH92PQ=="; + }; + }; + "@parcel/utils-1.11.0" = { + name = "_at_parcel_slash_utils"; + packageName = "@parcel/utils"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/utils/-/utils-1.11.0.tgz"; + sha512 = "cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ=="; + }; + }; + "@parcel/watcher-1.11.0" = { + name = "_at_parcel_slash_watcher"; + packageName = "@parcel/watcher"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-1.11.0.tgz"; + sha512 = "1ySF0sH06jyhpaErW1UWC7BNgkAl6PJyBjuu2cLTW1o71J2iQqgGt95cbuqmfmjI3l0xYN+nauDFqHERaj7Z8A=="; + }; + }; + "@parcel/workers-1.11.0" = { + name = "_at_parcel_slash_workers"; + packageName = "@parcel/workers"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@parcel/workers/-/workers-1.11.0.tgz"; + sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; + }; + }; "@protobufjs/aspromise-1.1.2" = { name = "_at_protobufjs_slash_aspromise"; packageName = "@protobufjs/aspromise"; @@ -1615,13 +1534,13 @@ let sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570"; }; }; - "@sindresorhus/is-0.12.0" = { + "@sindresorhus/is-0.14.0" = { name = "_at_sindresorhus_slash_is"; packageName = "@sindresorhus/is"; - version = "0.12.0"; + version = "0.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.12.0.tgz"; - sha512 = "9ve22cGrAKlSRvi8Vb2JIjzcaaQg79531yQHnF+hi/kOpsSj3Om8AyR1wcHrgl0u7U3vYQ7gmF5erZzOp4+51Q=="; + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"; + sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="; }; }; "@sindresorhus/is-0.7.0" = { @@ -1651,13 +1570,13 @@ let sha512 = "mLwF+ccuvRZMS0SxUAxA3dAp8mB3m2FxIsBIUWFTYvzxl+E4XTZb8uFrUqXHbcxhZH1Z8taHohNTbzXZn3M8ag=="; }; }; - "@szmarczak/http-timer-1.1.1" = { + "@szmarczak/http-timer-1.1.2" = { name = "_at_szmarczak_slash_http-timer"; packageName = "@szmarczak/http-timer"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.1.tgz"; - sha512 = "WljfOGkmSJe8SUkl+4TPvN2ec0dpUGVyfTBQLoXJUiILs+wBSc4Kvp2N3aAWE4VwwDSLGdmD3/bufS5BgZpVSQ=="; + url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"; + sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="; }; }; "@types/accepts-1.3.5" = { @@ -1665,7 +1584,7 @@ let packageName = "@types/accepts"; version = "1.3.5"; src = fetchurl { - url = "http://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz"; + url = "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz"; sha512 = "jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ=="; }; }; @@ -1728,7 +1647,7 @@ let packageName = "@types/events"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/@types/events/-/events-1.2.0.tgz"; + url = "https://registry.npmjs.org/@types/events/-/events-1.2.0.tgz"; sha512 = "KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA=="; }; }; @@ -1768,13 +1687,22 @@ let sha512 = "A2TAGbTFdBw9azHbpVd+/FkdW2T6msN1uct1O9bH3vTerEHKZhTXJUQXy+hNq1B0RagfU8U+KBdqiZpxjhOUQA=="; }; }; - "@types/node-10.12.12" = { + "@types/node-10.12.18" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "10.12.12"; + version = "10.12.18"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-10.12.12.tgz"; - sha512 = "Pr+6JRiKkfsFvmU/LK68oBRCQeEg36TyAbPhc2xpez24OOZZCuoIhWGTd39VZy6nGafSbxzGouFPTFD/rR1A0A=="; + url = "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz"; + sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="; + }; + }; + "@types/q-1.5.1" = { + name = "_at_types_slash_q"; + packageName = "@types/q"; + version = "1.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/q/-/q-1.5.1.tgz"; + sha512 = "eqz8c/0kwNi/OEHQfvIuJVLTst3in0e7uTKeuY+WL/zfKn0xVujOTp42bS/vUUokhK5P2BppLd9JXMOMHcgbjA=="; }; }; "@types/range-parser-1.2.3" = { @@ -1831,40 +1759,40 @@ let sha512 = "te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg=="; }; }; - "@vue/cli-shared-utils-3.2.0" = { + "@vue/cli-shared-utils-3.3.0" = { name = "_at_vue_slash_cli-shared-utils"; packageName = "@vue/cli-shared-utils"; - version = "3.2.0"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.2.0.tgz"; - sha512 = "FCX5ABFg5pWhomyXLpCaogJktMvjsS5d4Mn5BfvqcJxCvzOX6ze8ihFK3u//XMeM78dOFpHSjxnRSvHtkEwgsg=="; + url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.3.0.tgz"; + sha512 = "V/sU1jc7/jMCAbU8uA5f4j9Yd8lTqdi3I6FEHfLG1nstwhaNi4BU3WKWOAl72NYVWFYG8VuCrYWDn75kMimtuw=="; }; }; - "@vue/cli-ui-3.2.1" = { + "@vue/cli-ui-3.3.0" = { name = "_at_vue_slash_cli-ui"; packageName = "@vue/cli-ui"; - version = "3.2.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.2.1.tgz"; - sha512 = "ZcmR1inAs1IlfOlmCRK00fvZV8xHgsjZLviKCC2sbVQRORaeXwkJ1ysmYycjEHm44cqqJ1TawiPqBuSsO6U/YA=="; + url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.3.0.tgz"; + sha512 = "+gtr2cKQTD1fqu6E2PXvQfV8V2NP4TQ/xM7QwM1ANRbZsxluaVkP1wftFe4NPLQliuDiwJJOE1qdK66d+U3Nxg=="; }; }; - "@vue/cli-ui-addon-webpack-3.2.1" = { + "@vue/cli-ui-addon-webpack-3.3.0" = { name = "_at_vue_slash_cli-ui-addon-webpack"; packageName = "@vue/cli-ui-addon-webpack"; - version = "3.2.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.2.1.tgz"; - sha512 = "pXVhTc1xrrirvZqykUwJQuumlw58fx+S1egNhq05u08xVqG2d8QV/lP98Wgb/sNtOBaBccwBlailGj2Nqk8q6A=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.3.0.tgz"; + sha512 = "KrLEydjH1kFUVdfxxl2hNcPrjrcR6LBtg4gsK7JW9Y2m9Twjp1BVvxchS0e7YW+//rGiDjzD+aae5YynbpgPlQ=="; }; }; - "@vue/cli-ui-addon-widgets-3.2.1" = { + "@vue/cli-ui-addon-widgets-3.3.0" = { name = "_at_vue_slash_cli-ui-addon-widgets"; packageName = "@vue/cli-ui-addon-widgets"; - version = "3.2.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.2.1.tgz"; - sha512 = "yaVX/rmc3KbFh3PS0N19ZWQs5mYSzefFaZEp08bwnw8VwTtJOl6RJQrKsNoUuA/9hEqgGv5CodLtVrRGnUHV0g=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.3.0.tgz"; + sha512 = "ZxMg4YAGNyOpRvCpgIzJXg9Qb+DbEZaQHXQI2ocRChXrksASz9dbMUL9TecfswxHpMCzGuYhpJkdgsxlRJiDOg=="; }; }; "@webassemblyjs/ast-1.7.11" = { @@ -1876,6 +1804,15 @@ let sha512 = "ZEzy4vjvTzScC+SH8RBssQUawpaInUdMTYwYYLh54/s8TuT0gBLuyUnppKsVyZEi876VmmStKsUs28UxPgdvrA=="; }; }; + "@webassemblyjs/ast-1.8.0" = { + name = "_at_webassemblyjs_slash_ast"; + packageName = "@webassemblyjs/ast"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.0.tgz"; + sha512 = "4TXeabdNuTg697sflERTFiFRMIP/2MFvSD3F3+py4UjT4Ym/NbQbbFHGgXqVIN1bA7FwFQQezveP4/5UW2xBMQ=="; + }; + }; "@webassemblyjs/floating-point-hex-parser-1.7.11" = { name = "_at_webassemblyjs_slash_floating-point-hex-parser"; packageName = "@webassemblyjs/floating-point-hex-parser"; @@ -1885,6 +1822,15 @@ let sha512 = "zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg=="; }; }; + "@webassemblyjs/floating-point-hex-parser-1.8.0" = { + name = "_at_webassemblyjs_slash_floating-point-hex-parser"; + packageName = "@webassemblyjs/floating-point-hex-parser"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.0.tgz"; + sha512 = "q67Lsfb4kliIEuvKGts5UkdMys2JIchcS97KwVQNimXDRtfhUAFb0LeE656vSU+uGZHdkDiUM+UnsLjWftah7Q=="; + }; + }; "@webassemblyjs/helper-api-error-1.7.11" = { name = "_at_webassemblyjs_slash_helper-api-error"; packageName = "@webassemblyjs/helper-api-error"; @@ -1894,6 +1840,15 @@ let sha512 = "7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg=="; }; }; + "@webassemblyjs/helper-api-error-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-api-error"; + packageName = "@webassemblyjs/helper-api-error"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.0.tgz"; + sha512 = "uze8iIW5ljV2VhEGJwhfRxDEPl7s+iWFUU0r8yKJ9uunen1ACtKUyHIxbgqPkvWSSQVHp7buPtUPuZ1jZ44kmQ=="; + }; + }; "@webassemblyjs/helper-buffer-1.7.11" = { name = "_at_webassemblyjs_slash_helper-buffer"; packageName = "@webassemblyjs/helper-buffer"; @@ -1903,6 +1858,15 @@ let sha512 = "MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w=="; }; }; + "@webassemblyjs/helper-buffer-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-buffer"; + packageName = "@webassemblyjs/helper-buffer"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.0.tgz"; + sha512 = "9TV5gLyVVF44X7ihbvYmCtJWvXOY8Nz4OJ9uwZyjNrEPDJkmcCSdJNKtU05/tRep5y76jREd1xgpCLhIkEgjKw=="; + }; + }; "@webassemblyjs/helper-code-frame-1.7.11" = { name = "_at_webassemblyjs_slash_helper-code-frame"; packageName = "@webassemblyjs/helper-code-frame"; @@ -1912,13 +1876,31 @@ let sha512 = "T8ESC9KMXFTXA5urJcyor5cn6qWeZ4/zLPyWeEXZ03hj/x9weSokGNkVCdnhSabKGYWxElSdgJ+sFa9G/RdHNw=="; }; }; - "@webassemblyjs/helper-flaten-ast-1.7.11" = { - name = "_at_webassemblyjs_slash_helper-flaten-ast"; - packageName = "@webassemblyjs/helper-flaten-ast"; - version = "1.7.11"; + "@webassemblyjs/helper-code-frame-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-code-frame"; + packageName = "@webassemblyjs/helper-code-frame"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-flaten-ast/-/helper-flaten-ast-1.7.11.tgz"; - sha512 = "qjjxf3HGZUkD7ja9X0xRKWfLHzwfWzEOle5Ww1NIh6unH6szA7oNeZkhIiWmXz5KaALn0g1b35DQcoaq1IQcSQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.0.tgz"; + sha512 = "Oqqj4FL0y/cJ6lh6kVwHpre64HcEw+OHv0q6EEfvzIuvSGN8pz08pJbOvDBjeD5XP8NYHeojfxHgrFbpzFQ9kQ=="; + }; + }; + "@webassemblyjs/helper-compiler-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-compiler"; + packageName = "@webassemblyjs/helper-compiler"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-compiler/-/helper-compiler-1.8.0.tgz"; + sha512 = "j3h8A03Da6ye8renleE33C07ZQw8tyb0q9r8HbGad14iw17mPXeIdXyOl+5AS0owPd8ttGdTyRtkr+VSNoKO0Q=="; + }; + }; + "@webassemblyjs/helper-flatten-ast-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-flatten-ast"; + packageName = "@webassemblyjs/helper-flatten-ast"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-flatten-ast/-/helper-flatten-ast-1.8.0.tgz"; + sha512 = "jHTzhIRXGPFeb598Ofk26+VfHN9iKEpEhP85PPadLUoX3ZY+CDsjRxHMVJLLtdBUTSlp1cHAcGjgcPW7MW0pPA=="; }; }; "@webassemblyjs/helper-fsm-1.7.11" = { @@ -1930,6 +1912,15 @@ let sha512 = "nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A=="; }; }; + "@webassemblyjs/helper-fsm-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-fsm"; + packageName = "@webassemblyjs/helper-fsm"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.0.tgz"; + sha512 = "Zn9rWfA/2evP5+0L/M3BHbBnJfTVCIHUz8XI69IQ1Cv2saRtPRwjBvgeeGod+yM3gNl5I8xVLCXVvNE9piJKRw=="; + }; + }; "@webassemblyjs/helper-module-context-1.7.11" = { name = "_at_webassemblyjs_slash_helper-module-context"; packageName = "@webassemblyjs/helper-module-context"; @@ -1939,6 +1930,15 @@ let sha512 = "JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg=="; }; }; + "@webassemblyjs/helper-module-context-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-module-context"; + packageName = "@webassemblyjs/helper-module-context"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.0.tgz"; + sha512 = "GqX0OgIooqsWEdeU3w4DS94KBTD0l9mX7r+UsfDSQbdIytNAs9KLl5BvplK6Wbpsaths+qCUtHBrJruu1CxzGA=="; + }; + }; "@webassemblyjs/helper-wasm-bytecode-1.7.11" = { name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; packageName = "@webassemblyjs/helper-wasm-bytecode"; @@ -1948,6 +1948,15 @@ let sha512 = "cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ=="; }; }; + "@webassemblyjs/helper-wasm-bytecode-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; + packageName = "@webassemblyjs/helper-wasm-bytecode"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.0.tgz"; + sha512 = "LsE12pAVnd950UhJE/T+yZR+wU+Frkym/gK/zxBBdzXvJpl6ZoCLJTBI8gkU8dliOdfvoBj8gH6xawMYK5MeNQ=="; + }; + }; "@webassemblyjs/helper-wasm-section-1.7.11" = { name = "_at_webassemblyjs_slash_helper-wasm-section"; packageName = "@webassemblyjs/helper-wasm-section"; @@ -1957,6 +1966,15 @@ let sha512 = "8ZRY5iZbZdtNFE5UFunB8mmBEAbSI3guwbrsCl4fWdfRiAcvqQpeqd5KHhSWLL5wuxo53zcaGZDBU64qgn4I4Q=="; }; }; + "@webassemblyjs/helper-wasm-section-1.8.0" = { + name = "_at_webassemblyjs_slash_helper-wasm-section"; + packageName = "@webassemblyjs/helper-wasm-section"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.0.tgz"; + sha512 = "d2fpcUdgEpSbb0eRhxeCh2tLkvDmMftcxvX83n23AtNwwK8PYaA4psLf2hRV2S7cZeAMg1QQ4YQz9/7IUjt7og=="; + }; + }; "@webassemblyjs/ieee754-1.7.11" = { name = "_at_webassemblyjs_slash_ieee754"; packageName = "@webassemblyjs/ieee754"; @@ -1966,6 +1984,15 @@ let sha512 = "Mmqx/cS68K1tSrvRLtaV/Lp3NZWzXtOHUW2IvDvl2sihAwJh4ACE0eL6A8FvMyDG9abes3saB6dMimLOs+HMoQ=="; }; }; + "@webassemblyjs/ieee754-1.8.0" = { + name = "_at_webassemblyjs_slash_ieee754"; + packageName = "@webassemblyjs/ieee754"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.0.tgz"; + sha512 = "gWwbgDFu23bT2oDRLh1cui1ZXWdP4IfR00iH8FNr6Yann6l9DDey5SjZvzK+z6hWhCvD+5LSyZO3wnDPu0V/8A=="; + }; + }; "@webassemblyjs/leb128-1.7.11" = { name = "_at_webassemblyjs_slash_leb128"; packageName = "@webassemblyjs/leb128"; @@ -1975,6 +2002,15 @@ let sha512 = "vuGmgZjjp3zjcerQg+JA+tGOncOnJLWVkt8Aze5eWQLwTQGNgVLcyOTqgSCxWTR4J42ijHbBxnuRaL1Rv7XMdw=="; }; }; + "@webassemblyjs/leb128-1.8.0" = { + name = "_at_webassemblyjs_slash_leb128"; + packageName = "@webassemblyjs/leb128"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.0.tgz"; + sha512 = "ZtnBEG9ULFs3fF2xLVcdhK1ecKGUMkRsUDzzkiaMjTSLJKNlJqV7+klzbZLpfGSE0knoyLpapf4CTg4iqR5cDg=="; + }; + }; "@webassemblyjs/utf8-1.7.11" = { name = "_at_webassemblyjs_slash_utf8"; packageName = "@webassemblyjs/utf8"; @@ -1984,13 +2020,22 @@ let sha512 = "C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA=="; }; }; - "@webassemblyjs/validation-1.7.11" = { + "@webassemblyjs/utf8-1.8.0" = { + name = "_at_webassemblyjs_slash_utf8"; + packageName = "@webassemblyjs/utf8"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.0.tgz"; + sha512 = "Ug9jgJWk9nCLn9Tc/bKxdwCLIk3reofT1M53M8x2FZ1E1wfJRlU+46t8eGii1dz8nBwMXZV5JlZAUVfT9e1Mew=="; + }; + }; + "@webassemblyjs/validation-1.8.0" = { name = "_at_webassemblyjs_slash_validation"; packageName = "@webassemblyjs/validation"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.7.11.tgz"; - sha512 = "F+SNGDictbnqdcoaIUlhWvM11mupf8OLKaBKKFrUDENaVQI/LsdfMuXg3lglLfV5Rkp9isqda2SUMiJZXyYzHQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.8.0.tgz"; + sha512 = "0hTGfu7emUZwYh3sAiltUHbJ54DYLxm90vjR4zz0v02MK6HnzMAw63YmZiuyrJVnF5TKQqvz7NXBUOEEoTSmew=="; }; }; "@webassemblyjs/wasm-edit-1.7.11" = { @@ -2011,6 +2056,15 @@ let sha512 = "U/KDYp7fgAZX5KPfq4NOupK/BmhDc5Kjy2GIqstMhvvdJRcER/kUsMThpWeRP8BMn4LXaKhSTggIJPOeYHwISA=="; }; }; + "@webassemblyjs/wasm-gen-1.8.0" = { + name = "_at_webassemblyjs_slash_wasm-gen"; + packageName = "@webassemblyjs/wasm-gen"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.0.tgz"; + sha512 = "a4btGeBVPWL+vrxECm8dCprcVcPtCVJivewpPhjm+EeCo2bDqteViQ+pct9maWVDncZMlT+yNBve5GPu++hMLA=="; + }; + }; "@webassemblyjs/wasm-opt-1.7.11" = { name = "_at_webassemblyjs_slash_wasm-opt"; packageName = "@webassemblyjs/wasm-opt"; @@ -2029,6 +2083,15 @@ let sha512 = "6lmXRTrrZjYD8Ng8xRyvyXQJYUQKYSXhJqXOBLw24rdiXsHAOlvw5PhesjdcaMadU/pyPQOJ5dHreMjBxwnQKg=="; }; }; + "@webassemblyjs/wasm-parser-1.8.0" = { + name = "_at_webassemblyjs_slash_wasm-parser"; + packageName = "@webassemblyjs/wasm-parser"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.0.tgz"; + sha512 = "SbRFN/Xu4wIRzV3CBb+JHoMDNqitszzGGEj0z+K+c01b4wb2xJ8LECy7zykbvlNc4IFXA7TemgvqaqG3WJnDmA=="; + }; + }; "@webassemblyjs/wast-parser-1.7.11" = { name = "_at_webassemblyjs_slash_wast-parser"; packageName = "@webassemblyjs/wast-parser"; @@ -2038,6 +2101,15 @@ let sha512 = "lEyVCg2np15tS+dm7+JJTNhNWq9yTZvi3qEhAIIOaofcYlUp0UR5/tVqOwa/gXYr3gjwSZqw+/lS9dscyLelbQ=="; }; }; + "@webassemblyjs/wast-parser-1.8.0" = { + name = "_at_webassemblyjs_slash_wast-parser"; + packageName = "@webassemblyjs/wast-parser"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.0.tgz"; + sha512 = "KoAhobR2fvxpYno8r+LmUCp6qtUrA9YnENAvRVg9+QnyMW2MG9exCiNt7gsntrkXJWK7myHF9ertyKzdB6b6WQ=="; + }; + }; "@webassemblyjs/wast-printer-1.7.11" = { name = "_at_webassemblyjs_slash_wast-printer"; packageName = "@webassemblyjs/wast-printer"; @@ -2047,6 +2119,15 @@ let sha512 = "m5vkAsuJ32QpkdkDOUPGSltrg8Cuk3KBx4YrmAGQwCZPRdUHXxG4phIOuuycLemHFr74sWL9Wthqss4fzdzSwg=="; }; }; + "@webassemblyjs/wast-printer-1.8.0" = { + name = "_at_webassemblyjs_slash_wast-printer"; + packageName = "@webassemblyjs/wast-printer"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.0.tgz"; + sha512 = "IZvvwoAXUhC3+Y/4vaNYo6rG6QiQmNabtKgoR76pcj9QxNqrKRxIh6ns6jlAybeEPw1kSKmgx791QV2o4z3G7g=="; + }; + }; "@xtuc/ieee754-1.2.0" = { name = "_at_xtuc_slash_ieee754"; packageName = "@xtuc/ieee754"; @@ -2115,7 +2196,7 @@ let packageName = "JSONStream"; version = "0.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz"; + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz"; sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0"; }; }; @@ -2178,7 +2259,7 @@ let packageName = "abstract-leveldown"; version = "0.12.4"; src = fetchurl { - url = "http://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz"; + url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz"; sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410"; }; }; @@ -2187,7 +2268,7 @@ let packageName = "abstract-leveldown"; version = "4.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-4.0.3.tgz"; + url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-4.0.3.tgz"; sha512 = "qsIHFQy0u17JqSY+3ZUT+ykqxYY17yOfvAsLkFkw8kSQqi05d1jyj0bCuSX6sjYlXuY9cKpgUt5EudQdP4aXyA=="; }; }; @@ -2259,7 +2340,7 @@ let packageName = "acorn"; version = "2.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz"; + url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz"; sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7"; }; }; @@ -2268,7 +2349,7 @@ let packageName = "acorn"; version = "3.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; + url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; }; }; @@ -2281,13 +2362,13 @@ let sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="; }; }; - "acorn-6.0.4" = { + "acorn-6.0.5" = { name = "acorn"; packageName = "acorn"; - version = "6.0.4"; + version = "6.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz"; - sha512 = "VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg=="; + url = "https://registry.npmjs.org/acorn/-/acorn-6.0.5.tgz"; + sha512 = "i33Zgp3XWtmZBMNvCr4azvOFeWVw1Rk6p3hfi3LUDvIFraOMywb1kAtrbi+med14m4Xfpqm3zRZMT+c0FNE7kg=="; }; }; "acorn-dynamic-import-3.0.0" = { @@ -2313,7 +2394,7 @@ let packageName = "acorn-globals"; version = "1.0.9"; src = fetchurl { - url = "http://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz"; + url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz"; sha1 = "55bb5e98691507b74579d0513413217c380c54cf"; }; }; @@ -2322,19 +2403,10 @@ let packageName = "acorn-jsx"; version = "3.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; }; }; - "acorn-jsx-4.1.1" = { - name = "acorn-jsx"; - packageName = "acorn-jsx"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz"; - sha512 = "JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw=="; - }; - }; "acorn-jsx-5.0.1" = { name = "acorn-jsx"; packageName = "acorn-jsx"; @@ -2398,13 +2470,13 @@ let sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1"; }; }; - "addons-linter-1.3.8" = { + "addons-linter-1.4.1" = { name = "addons-linter"; packageName = "addons-linter"; - version = "1.3.8"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.3.8.tgz"; - sha512 = "NFon8Q++k8R6t1lunNPoVPWxVUzC8ED5Cu8VB66HdsaVarLHNhIdpDSqClplefC5Mypx/EEgZhkMZAuaxScyUg=="; + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.4.1.tgz"; + sha512 = "AX8nCD/gy/6DoX4B7vTMQV6pcP8tG0BjxB3Jv44VZrUTYG+ojHx26abRDyUn+fDqWGf8qzeVn0Vss/NMNjMouA=="; }; }; "addr-to-ip-port-1.5.1" = { @@ -2443,15 +2515,6 @@ let sha512 = "fERNJX8sOXfel6qCBCMPvZLzENBEhZTzKqg6vrOW5pvoEaQuJhRU4ndTAh6lHOxn1I6jnz2NHra56ZODM751uw=="; }; }; - "adm-zip-0.4.7" = { - name = "adm-zip"; - packageName = "adm-zip"; - version = "0.4.7"; - src = fetchurl { - url = "http://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz"; - sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1"; - }; - }; "after-0.8.1" = { name = "after"; packageName = "after"; @@ -2569,13 +2632,22 @@ let sha512 = "4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg=="; }; }; - "ajv-6.6.1" = { + "ajv-6.5.5" = { name = "ajv"; packageName = "ajv"; - version = "6.6.1"; + version = "6.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.6.1.tgz"; - sha512 = "ZoJjft5B+EJBjUyu9C9Hc0OZyPZSSlOF+plzouTrg6UlA8f+e/n8NIgBFG/9tppJtpPWfthHakK7juJdNDODww=="; + url = "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz"; + sha512 = "7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg=="; + }; + }; + "ajv-6.6.2" = { + name = "ajv"; + packageName = "ajv"; + version = "6.6.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ajv/-/ajv-6.6.2.tgz"; + sha512 = "FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g=="; }; }; "ajv-errors-1.0.1" = { @@ -2619,7 +2691,7 @@ let packageName = "aliasify"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/aliasify/-/aliasify-2.1.0.tgz"; + url = "https://registry.npmjs.org/aliasify/-/aliasify-2.1.0.tgz"; sha1 = "7c30825b9450b9e6185ba27533eaf6e2067d4b42"; }; }; @@ -2700,7 +2772,7 @@ let packageName = "ansi-colors"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz"; + url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz"; sha512 = "SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA=="; }; }; @@ -2727,7 +2799,7 @@ let packageName = "ansi-escapes"; version = "1.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; sha1 = "d3a8a83b319aa67793662b13e761c7911422306e"; }; }; @@ -2736,7 +2808,7 @@ let packageName = "ansi-escapes"; version = "3.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz"; + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz"; sha512 = "UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw=="; }; }; @@ -2763,7 +2835,7 @@ let packageName = "ansi-regex"; version = "0.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9"; }; }; @@ -2772,7 +2844,7 @@ let packageName = "ansi-regex"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"; sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d"; }; }; @@ -2929,49 +3001,112 @@ let sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692"; }; }; - "apollo-cache-1.1.21" = { + "apollo-cache-1.1.22" = { name = "apollo-cache"; packageName = "apollo-cache"; - version = "1.1.21"; + version = "1.1.22"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.21.tgz"; - sha512 = "5ErNb78KHtrJNimkDBTEigcvHkIqUmS7QJIk4lpZZ+XLVVgvk2fD+GhD1PLP+s8vHfAKVbO6vdbRxCCjGGrh5w=="; + url = "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.22.tgz"; + sha512 = "8PoxhQLISj2oHwT7i/r4l+ly4y3RKZls+dtXzAewu3U77P9dNZKhYkRNAhx9iEfsrNoHgXBV8vMp64hb1uYh+g=="; }; }; - "apollo-cache-control-0.3.3" = { + "apollo-cache-control-0.4.0" = { name = "apollo-cache-control"; packageName = "apollo-cache-control"; - version = "0.3.3"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.3.3.tgz"; - sha512 = "X6JhKfIaMLfl2jpsK/880BflXA+2lmm2sAsOZL4Bn2VrMsDtOssI1Ij9vNRbch9k9cA4WJvKed7Sql/wUIa1Eg=="; + url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.4.0.tgz"; + sha512 = "WuriaNQIugTE8gYwfBWWCbbQTSKul/cV4JMi5UgqNIUvjHvnKZQLKbt5uYWow6QQNMkLT9hey8QPYkWpogkeSA=="; }; }; - "apollo-cache-inmemory-1.3.11" = { + "apollo-cache-inmemory-1.3.12" = { name = "apollo-cache-inmemory"; packageName = "apollo-cache-inmemory"; - version = "1.3.11"; + version = "1.3.12"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.3.11.tgz"; - sha512 = "fSoyjBV5RV57J3i/VHDDB74ZgXc0PFiogheNFHEhC0mL6rg5e/DjTx0Vg+csIBk23gvlzTvV+eypx7Q2NJ+dYg=="; + url = "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.3.12.tgz"; + sha512 = "jxWcW64QoYQZ09UH6v3syvCCl3MWr6bsxT3wYYL6ORi8svdJUpnNrHTcv5qXqJYVg/a+NHhfEt+eGjJUG2ytXA=="; }; }; - "apollo-client-2.4.7" = { + "apollo-client-2.4.8" = { name = "apollo-client"; packageName = "apollo-client"; - version = "2.4.7"; + version = "2.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-client/-/apollo-client-2.4.7.tgz"; - sha512 = "6aAm+16AFBYZhJF8eKxrup6AbYni01InDiwTfZhMMTP2xaXQWjsQnfaHbI2oE+hd3+AZFy1drkse8RZKghR/WQ=="; + url = "https://registry.npmjs.org/apollo-client/-/apollo-client-2.4.8.tgz"; + sha512 = "OAFbCTnGPtaIv0j+EZYzY20d+MD2JNbJ/YXZ4s0/oZlSg87bb0gjcIbccw2lnytipymZcZNr5ArFFeh0saGEwA=="; }; }; - "apollo-codegen-0.19.1" = { + "apollo-codegen-0.20.2" = { name = "apollo-codegen"; packageName = "apollo-codegen"; - version = "0.19.1"; + version = "0.20.2"; src = fetchurl { - url = "http://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.19.1.tgz"; - sha512 = "jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng=="; + url = "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.20.2.tgz"; + sha512 = "f95fPGoQoj+XcR7JWgR35mUYrD7RWT4kHbtSLs3aHeRFOKUHEWW2nHUNTOtQbbIdLulRuxPQCTvSddT7fFwhrA=="; + }; + }; + "apollo-codegen-core-0.20.1" = { + name = "apollo-codegen-core"; + packageName = "apollo-codegen-core"; + version = "0.20.1"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.20.1.tgz"; + sha512 = "sanUIqXWyyDpxY3fYOVU+Hsxwxdj5fmn3Zcy6CcMGnWmh9o7tautQAuod2a63wrDs1jcNQcFq3EKIpeB+2xECw=="; + }; + }; + "apollo-codegen-flow-0.20.0" = { + name = "apollo-codegen-flow"; + packageName = "apollo-codegen-flow"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.20.0.tgz"; + sha512 = "XgKE19B0Q74PBLVqHP/77NcCFrcvrN9wi3CcotH+FV8BeHTjvpHlilTsQMmd2STPt19cCvY2Qtz0EOeLXTUQ2Q=="; + }; + }; + "apollo-codegen-flow-legacy-0.20.0" = { + name = "apollo-codegen-flow-legacy"; + packageName = "apollo-codegen-flow-legacy"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-flow-legacy/-/apollo-codegen-flow-legacy-0.20.0.tgz"; + sha512 = "kGjJNkkkob9gGYSIhwfdgOzkj0PuN4/QPhng4ckSaSCE+8E4Awyvk0P8LiYPKauHzHVjmJzxWLSG6kI0PQTNgA=="; + }; + }; + "apollo-codegen-scala-0.20.0" = { + name = "apollo-codegen-scala"; + packageName = "apollo-codegen-scala"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.20.0.tgz"; + sha512 = "NbnMOfUXXovlTGRj4mIZGXB9HvidQhwKfAmdYHox5peHPkjjsqEzxGCIuWCSnubWiCF2uHZnQoIkg4sXWf0KLw=="; + }; + }; + "apollo-codegen-swift-0.20.0" = { + name = "apollo-codegen-swift"; + packageName = "apollo-codegen-swift"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.20.0.tgz"; + sha512 = "L9Y4StbXw0t/nuF+miz0ybSt/io6tsLc063Yeh1A8GCvhFFQyXE/yK0Rf3nO1Bl5Z9UZ5o8Aae9kK4GSWYIGNQ=="; + }; + }; + "apollo-codegen-typescript-0.20.0" = { + name = "apollo-codegen-typescript"; + packageName = "apollo-codegen-typescript"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.20.0.tgz"; + sha512 = "mzlIJXz+5WPwzeALqRHHR9aPPEf6IlhSrjCawpUHmFU1NK9hgwbguYCEYZv9mKkYBUUgDY+9cGFK1cafJX70AQ=="; + }; + }; + "apollo-codegen-typescript-legacy-0.20.0" = { + name = "apollo-codegen-typescript-legacy"; + packageName = "apollo-codegen-typescript-legacy"; + version = "0.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-codegen-typescript-legacy/-/apollo-codegen-typescript-legacy-0.20.0.tgz"; + sha512 = "0/h5hce2FIGn6Y4+EHMeMINQxFwcgjw1vU+xV3KGaaEgyEAEQ3/n9pyz43M8mOm/JVgg8Eb4CtM1AtCkRQuFGw=="; }; }; "apollo-datasource-0.2.1" = { @@ -2983,22 +3118,22 @@ let sha512 = "r185+JTa5KuF1INeTAk7AEP76zwMN6c8Ph1lmpzJMNwBUEzTGnLClrccCskCBx4SxfnkdKbuQdwn9JwCJUWrdg=="; }; }; - "apollo-engine-reporting-0.1.3" = { + "apollo-engine-reporting-0.2.0" = { name = "apollo-engine-reporting"; packageName = "apollo-engine-reporting"; - version = "0.1.3"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-0.1.3.tgz"; - sha512 = "VkjiifHMHIAxydXecT+ck0WtqpFIsMlylKnKeuNAXfIfAXHX/JYtLhbArTTyhDunLrphMiUewfFv9P0K+aX2jw=="; + url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-0.2.0.tgz"; + sha512 = "Q6FfVb10v/nrv8FaFsPjIYlWh62jaYav3LuMgM9PsHWGK/zRQFXOEwLxcY2UCvG7O1moxF3XGmfBhMgo54py+Q=="; }; }; - "apollo-engine-reporting-protobuf-0.1.0" = { + "apollo-engine-reporting-protobuf-0.2.0" = { name = "apollo-engine-reporting-protobuf"; packageName = "apollo-engine-reporting-protobuf"; - version = "0.1.0"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.1.0.tgz"; - sha512 = "GReJtAYTmpwg0drb9VgFtqObYYTCHkJhlHEYCeXY8bJV4fOgXsAZ7CIXR9nPKO0mBaoHIHaGYvXGcyCLrZ36VA=="; + url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.2.0.tgz"; + sha512 = "qI+GJKN78UMJ9Aq/ORdiM2qymZ5yswem+/VDdVFocq+/e1QqxjnpKjQWISkswci5+WtpJl9SpHBNxG98uHDKkA=="; }; }; "apollo-env-0.2.5" = { @@ -3010,40 +3145,40 @@ let sha512 = "Gc7TEbwCl7jJVutnn8TWfzNSkrrqyoo0DP92BQJFU9pZbJhpidoXf2Sw1YwOJl82rRKH3ujM3C8vdZLOgpFcFA=="; }; }; - "apollo-link-1.2.4" = { + "apollo-link-1.2.6" = { name = "apollo-link"; packageName = "apollo-link"; - version = "1.2.4"; + version = "1.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.4.tgz"; - sha512 = "B1z+9H2nTyWEhMXRFSnoZ1vSuAYP+V/EdUJvRx9uZ8yuIBZMm6reyVtr1n0BWlKeSFyPieKJy2RLzmITAAQAMQ=="; + url = "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.6.tgz"; + sha512 = "sUNlA20nqIF3gG3F8eyMD+mO80fmf3dPZX+GUOs3MI9oZR8ug09H3F0UsWJMcpEg6h55Yy5wZ+BMmAjrbenF/Q=="; }; }; - "apollo-link-context-1.0.10" = { + "apollo-link-context-1.0.12" = { name = "apollo-link-context"; packageName = "apollo-link-context"; - version = "1.0.10"; + version = "1.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-link-context/-/apollo-link-context-1.0.10.tgz"; - sha512 = "HX3BEmkANs2A8AcYCy92SFJrW+0SbGrhDTSHV6ZwKIJ9ZrsOtly8cMrRLzEw1emjHIz5SP7XJEn3ko7BwhBBSw=="; + url = "https://registry.npmjs.org/apollo-link-context/-/apollo-link-context-1.0.12.tgz"; + sha512 = "gb4UptV9O6Kp3i5b2TlDEfPSL2LG//mTSb3zyuR5U2cAzu/huw98f1CCxcjUKTrlIMsQuE6G/hbaThDxnoIThQ=="; }; }; - "apollo-link-dedup-1.0.11" = { + "apollo-link-dedup-1.0.13" = { name = "apollo-link-dedup"; packageName = "apollo-link-dedup"; - version = "1.0.11"; + version = "1.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.11.tgz"; - sha512 = "RcvkXR0CNbQcsw6LdrPksGa+9YjZ1ghk0k2PKal6rSBCyyqzokcBawXOtoMN8q+0FLR1dGs5GnAQVeucQuY28g=="; + url = "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.13.tgz"; + sha512 = "i4NuqT3DSFczFcC7NMUzmnYjKX7NggLY+rqYVf+kE9JjqKOQhT6wqhaWsVIABfIUGE/N0DTgYJBCMu/18aXmYA=="; }; }; - "apollo-link-http-common-0.2.6" = { + "apollo-link-http-common-0.2.8" = { name = "apollo-link-http-common"; packageName = "apollo-link-http-common"; - version = "0.2.6"; + version = "0.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.6.tgz"; - sha512 = "LUOMWvrZuBP1hyWLBXyaW0KyFeKo79j+k3N+Q4HSkXKbLibnllXQ+JxxoSKGhm0bhREygiLtJAG9JnGlhxGO/Q=="; + url = "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.8.tgz"; + sha512 = "gGmXZN8mr7e9zjopzKQfZ7IKnh8H12NxBDzvp9nXI3U82aCVb72p+plgoYLcpMY8w6krvoYjgicFmf8LO20TCQ=="; }; }; "apollo-link-persisted-queries-0.2.2" = { @@ -3064,13 +3199,13 @@ let sha512 = "xMPcAfuiPVYXaLwC6oJFIZrKgV3GmdO31Ag2eufRoXpvT0AfJZjdaPB4450Nu9TslHRePN9A3quxNueILlQxlw=="; }; }; - "apollo-link-ws-1.0.10" = { + "apollo-link-ws-1.0.12" = { name = "apollo-link-ws"; packageName = "apollo-link-ws"; - version = "1.0.10"; + version = "1.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.10.tgz"; - sha512 = "1Yx4iIUsWS8wuAdVJ2LF+LdIYAsqHSto8eShwJ/d2SovocsMCwN9hyS+JkaOPD/KHAkavTWzN6l3XwSOdOwevQ=="; + url = "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.12.tgz"; + sha512 = "BjbskhfuuIgk9e4XHdrqmjxkY+RkD1tuerrs4PLiPTkJYcQrvA8t27lGBSrDUKHWH4esCdhQF1UhKPwhlouEHw=="; }; }; "apollo-server-caching-0.2.1" = { @@ -3082,13 +3217,13 @@ let sha512 = "+U9F3X297LL8Gqy6ypfDNEv/DfV/tDht9Dr2z3AMaEkNW1bwO6rmdDL01zYxDuVDVq6Z3qSiNCSO2pXE2F0zmA=="; }; }; - "apollo-server-core-2.2.6" = { + "apollo-server-core-2.3.1" = { name = "apollo-server-core"; packageName = "apollo-server-core"; - version = "2.2.6"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.2.6.tgz"; - sha512 = "hC3+Y9A4rN4W2X2cWqjrWWHkjKaG/jUQjtAVpQteDW+7n3bLKHCrpDFiFad++lq0ymRVW8diAaYDS4myJwjmoA=="; + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.3.1.tgz"; + sha512 = "8jMWYOQIZi9mDJlHe2rXg8Cp4xKYogeRu23jkcNy+k5UjZL+eO+kHXbNFiTaP4HLYYEpe2XE3asxp6q5YUEQeQ=="; }; }; "apollo-server-env-2.2.0" = { @@ -3109,31 +3244,31 @@ let sha512 = "gV9EZG2tovFtT1cLuCTavnJu2DaKxnXPRNGSTo+SDI6IAk6cdzyW0Gje5N2+3LybI0Wq5KAbW6VLei31S4MWmg=="; }; }; - "apollo-server-express-2.2.6" = { + "apollo-server-express-2.3.1" = { name = "apollo-server-express"; packageName = "apollo-server-express"; - version = "2.2.6"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.2.6.tgz"; - sha512 = "+zajJDcJLhWdkW8f0D5KQfDsaxgx7fQ3ULGDT1eZgL0UY5pazWBOnXqeRoVKRl+r1WcrwN1SMfBVnAKWv6CyVw=="; + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.3.1.tgz"; + sha512 = "J+rObr4GdT/5j6qTByUJoSvZSjTAX/7VqIkr2t+GxwcVUFGet2MdOHuV6rtWKc8CRgvVKfKN6iBrb2EOFcp2LQ=="; }; }; - "apollo-server-plugin-base-0.1.6" = { + "apollo-server-plugin-base-0.2.1" = { name = "apollo-server-plugin-base"; packageName = "apollo-server-plugin-base"; - version = "0.1.6"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.1.6.tgz"; - sha512 = "nh6I2+mgSL5cYxqYXymAr8xBZ/ju8nunPjHp/21+/mgbF4Is0xtM9oDq5Qf0Q/cGh/djF6YcBuB1yUG+68gJXw=="; + url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.2.1.tgz"; + sha512 = "497NIY9VWRYCrMSkgR11IrIUO4Fsy6aGgnpOJoTdLQAnkDD9SJDSRzwKj4gypUoTT2unfKDng4eMxXVZlHvjOw=="; }; }; - "apollo-tracing-0.3.3" = { + "apollo-tracing-0.4.0" = { name = "apollo-tracing"; packageName = "apollo-tracing"; - version = "0.3.3"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.3.3.tgz"; - sha512 = "gsTYgDVjtMlnomPq46aky7yk8XshCQfj9rxalCCismLlMomVW44fq+8GKQnZIkFOwiAsazRy4dzZ0cBbygA9sA=="; + url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.4.0.tgz"; + sha512 = "BlM8iQUQva4fm0xD/pLwkcz0degfB9a/aAn4k4cK36eLVD8XUkl7ptEB0c+cwcj7tOYpV1r5QX1XwdayBzlHSg=="; }; }; "apollo-upload-client-9.1.0" = { @@ -3145,13 +3280,13 @@ let sha512 = "ZN5gsbBjImEZTWWTUHpCEGDasnoBGbaODpznQ5EawyNHceuFYSNJbbft+ZZ841vZAcj9XZdKUKoaLBlMZ/r7nw=="; }; }; - "apollo-utilities-1.0.26" = { + "apollo-utilities-1.0.27" = { name = "apollo-utilities"; packageName = "apollo-utilities"; - version = "1.0.26"; + version = "1.0.27"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.26.tgz"; - sha512 = "URw7o3phymliqYCYatcird2YRPUU2eWCNvip64U9gQrX56mEfK4m99yBIDCMTpmcvOFsKLii1sIEZsHIs/bvnw=="; + url = "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.27.tgz"; + sha512 = "nzrMQ89JMpNmYnVGJ4t8zN75gQbql27UDhlxNi+3OModp0Masx5g+fQmQJ5B4w2dpRuYOsdwFLmj3lQbwOKV1Q=="; }; }; "app-builder-5.2.0" = { @@ -3312,7 +3447,7 @@ let packageName = "arg"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/arg/-/arg-2.0.0.tgz"; + url = "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz"; sha512 = "XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w=="; }; }; @@ -3370,6 +3505,15 @@ let sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; }; }; + "arr-filter-1.1.2" = { + name = "arr-filter"; + packageName = "arr-filter"; + version = "1.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz"; + sha1 = "43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee"; + }; + }; "arr-flatten-1.1.0" = { name = "arr-flatten"; packageName = "arr-flatten"; @@ -3379,6 +3523,15 @@ let sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; }; }; + "arr-map-2.0.2" = { + name = "arr-map"; + packageName = "arr-map"; + version = "2.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz"; + sha1 = "3a77345ffc1cf35e2a91825601f9e58f2e24cac4"; + }; + }; "arr-union-2.1.0" = { name = "arr-union"; packageName = "arr-union"; @@ -3447,7 +3600,7 @@ let packageName = "array-flatten"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; + url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; }; }; @@ -3487,6 +3640,24 @@ let sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a"; }; }; + "array-initial-1.1.0" = { + name = "array-initial"; + packageName = "array-initial"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz"; + sha1 = "2fa74b26739371c3947bd7a7adc73be334b3d795"; + }; + }; + "array-last-1.3.0" = { + name = "array-last"; + packageName = "array-last"; + version = "1.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz"; + sha512 = "eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg=="; + }; + }; "array-loop-1.0.0" = { name = "array-loop"; packageName = "array-loop"; @@ -3739,13 +3910,13 @@ let sha512 = "oJjo+5e7/vEc2FBK8gUalV0pba4L3VdBIs2EKhOLHLcOd2FgQIVQN9xb0eZ9IjEWyAL7vq6fGJxOvVvdCHNyMw=="; }; }; - "ast-types-0.11.7" = { + "ast-types-0.12.1" = { name = "ast-types"; packageName = "ast-types"; - version = "0.11.7"; + version = "0.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.7.tgz"; - sha512 = "2mP3TwtkY/aTv5X3ZsMpNAbOnyoC/aMJwJSoaELPkHId0nSQgFcnU4dRW3isxiz7+zBexk0ym3WNVjMiQBnJSw=="; + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.12.1.tgz"; + sha512 = "H2izJAyT2xwew4TxShpmxe6f9R5hHgJQy1QloLiUC2yrJMtyraBWNJL7903rpeCY9keNUipORR/zIUC2XcYKng=="; }; }; "ast-types-0.9.6" = { @@ -3771,7 +3942,7 @@ let packageName = "async"; version = "0.1.22"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.1.22.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz"; sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061"; }; }; @@ -3780,7 +3951,7 @@ let packageName = "async"; version = "0.2.10"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.2.10.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; }; }; @@ -3789,7 +3960,7 @@ let packageName = "async"; version = "0.2.9"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.2.9.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.2.9.tgz"; sha1 = "df63060fbf3d33286a76aaf6d55a2986d9ff8619"; }; }; @@ -3798,7 +3969,7 @@ let packageName = "async"; version = "0.9.2"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.9.2.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; }; }; @@ -3807,7 +3978,7 @@ let packageName = "async"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-1.0.0.tgz"; + url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; }; }; @@ -3816,7 +3987,7 @@ let packageName = "async"; version = "1.5.2"; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-1.5.2.tgz"; + url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; }; }; @@ -3856,6 +4027,15 @@ let sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ=="; }; }; + "async-done-1.3.1" = { + name = "async-done"; + packageName = "async-done"; + version = "1.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/async-done/-/async-done-1.3.1.tgz"; + sha512 = "R1BaUeJ4PMoLNJuk+0tLJgjmEqVsdN118+Z8O+alhnQDQgy0kmD5Mqi0DNEmMx2LM0Ed5yekKu+ZXYvIHceicg=="; + }; + }; "async-each-1.0.1" = { name = "async-each"; packageName = "async-each"; @@ -3883,6 +4063,15 @@ let sha512 = "tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q=="; }; }; + "async-settle-1.0.0" = { + name = "async-settle"; + packageName = "async-settle"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz"; + sha1 = "1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b"; + }; + }; "async-single-1.0.5" = { name = "async-single"; packageName = "async-single"; @@ -3978,17 +4167,17 @@ let packageName = "aws-sdk"; version = "1.18.0"; src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz"; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz"; sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; }; }; - "aws-sdk-2.373.0" = { + "aws-sdk-2.387.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.373.0"; + version = "2.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.373.0.tgz"; - sha512 = "NZYXwXGtFt9jxaKXc+PJsLPnpbD03t0MAZRxh93g36kbFMuRXtY8CDqHYNQ0ZcrgQpXbCQiz1fxT5/wu5Cu70g=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.387.0.tgz"; + sha512 = "GSJwNBqdDDqRpTBNnSlAVeQ4wqIiWIhqsnvE0GcGmVQWDq7yM89EiYqkIcB8dFV/l6bm7f0TFDtEbIwoRP6C4w=="; }; }; "aws-sign2-0.6.0" = { @@ -4104,7 +4293,7 @@ let packageName = "babel-helper-is-nodes-equiv"; version = "0.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz"; + url = "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz"; sha1 = "34e9b300b1479ddd98ec77ea0bbe9342dfe39684"; }; }; @@ -4162,13 +4351,13 @@ let sha512 = "lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew=="; }; }; - "babel-loader-8.0.4" = { + "babel-loader-8.0.5" = { name = "babel-loader"; packageName = "babel-loader"; - version = "8.0.4"; + version = "8.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.4.tgz"; - sha512 = "fhBhNkUToJcW9nV46v8w87AJOwAJDz84c1CL57n3Stj73FANM/b9TbCUK4YhdOwEyZ+OxhYpdeZDNzSI29Firw=="; + url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.5.tgz"; + sha512 = "NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw=="; }; }; "babel-messages-6.23.0" = { @@ -4185,7 +4374,7 @@ let packageName = "babel-plugin-istanbul"; version = "4.1.6"; src = fetchurl { - url = "http://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz"; + url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz"; sha512 = "PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ=="; }; }; @@ -4302,7 +4491,7 @@ let packageName = "babel-plugin-syntax-flow"; version = "6.18.0"; src = fetchurl { - url = "http://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz"; + url = "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz"; sha1 = "4c3ab20a2af26aa20cd25995c398c4eb70310c8d"; }; }; @@ -4311,7 +4500,7 @@ let packageName = "babel-plugin-syntax-jsx"; version = "6.18.0"; src = fetchurl { - url = "http://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; + url = "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; }; }; @@ -4320,7 +4509,7 @@ let packageName = "babel-plugin-syntax-object-rest-spread"; version = "6.13.0"; src = fetchurl { - url = "http://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; + url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; }; }; @@ -4464,7 +4653,7 @@ let packageName = "babel-polyfill"; version = "6.16.0"; src = fetchurl { - url = "http://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.16.0.tgz"; + url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.16.0.tgz"; sha1 = "2d45021df87e26a374b6d4d1a9c65964d17f2422"; }; }; @@ -4567,6 +4756,15 @@ let sha1 = "3b15a5ddbb482a78b4ce9c01c8ba181702d9d6ce"; }; }; + "bach-1.2.0" = { + name = "bach"; + packageName = "bach"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz"; + sha1 = "4b3ce96bf27134f79a1b414a51c14e34c3bd9880"; + }; + }; "backo2-1.0.2" = { name = "backo2"; packageName = "backo2"; @@ -4752,7 +4950,7 @@ let packageName = "basic-auth"; version = "1.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz"; + url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz"; sha1 = "030935b01de7c9b94a824b29f3fccb750d3a5290"; }; }; @@ -4909,13 +5107,13 @@ let sha512 = "CjhtJp0BViLzP1ZkEnoywjgtFQXS2pomKjAJtIISTCnuHILkLcAXLdFLG/nxsHc4s9kJfc+82Xpg8WNyhfACzQ=="; }; }; - "big.js-3.2.0" = { + "big.js-5.2.2" = { name = "big.js"; packageName = "big.js"; - version = "3.2.0"; + version = "5.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; - sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="; + url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; + sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; }; }; "bigspinner-3.1.0" = { @@ -4941,7 +5139,7 @@ let packageName = "bin-version"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/bin-version/-/bin-version-2.0.0.tgz"; + url = "https://registry.npmjs.org/bin-version/-/bin-version-2.0.0.tgz"; sha1 = "2cc95d83b522bdef2e99978e76aeb5491c8114ff"; }; }; @@ -4950,7 +5148,7 @@ let packageName = "bin-version-check"; version = "3.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/bin-version-check/-/bin-version-check-3.0.0.tgz"; + url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-3.0.0.tgz"; sha1 = "e24ebfa6b63cb0387c5fc174f86e5cc812ca7cc9"; }; }; @@ -4995,7 +5193,7 @@ let packageName = "bindings"; version = "1.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; + url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; }; }; @@ -5049,7 +5247,7 @@ let packageName = "bittorrent-dht"; version = "6.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz"; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz"; sha1 = "8b40f8cee6bea87f2b34fd2ae0bd367a8b1247a6"; }; }; @@ -5112,7 +5310,7 @@ let packageName = "bl"; version = "0.8.2"; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-0.8.2.tgz"; + url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz"; sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e"; }; }; @@ -5121,7 +5319,7 @@ let packageName = "bl"; version = "1.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-1.2.2.tgz"; + url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz"; sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="; }; }; @@ -5157,7 +5355,7 @@ let packageName = "blob"; version = "0.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/blob/-/blob-0.0.2.tgz"; + url = "https://registry.npmjs.org/blob/-/blob-0.0.2.tgz"; sha1 = "b89562bd6994af95ba1e812155536333aa23cf24"; }; }; @@ -5166,7 +5364,7 @@ let packageName = "blob"; version = "0.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/blob/-/blob-0.0.4.tgz"; + url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz"; sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921"; }; }; @@ -5211,7 +5409,7 @@ let packageName = "bluebird"; version = "2.9.34"; src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz"; sha1 = "2f7b4ec80216328a9fddebdf69c8d4942feff7d8"; }; }; @@ -5220,7 +5418,7 @@ let packageName = "bluebird"; version = "2.9.9"; src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-2.9.9.tgz"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.9.tgz"; sha1 = "61a26904d43d7f6b19dff7ed917dbc92452ad6d3"; }; }; @@ -5229,7 +5427,7 @@ let packageName = "bluebird"; version = "3.4.7"; src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz"; sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3"; }; }; @@ -5292,7 +5490,7 @@ let packageName = "body-parser"; version = "1.12.4"; src = fetchurl { - url = "http://registry.npmjs.org/body-parser/-/body-parser-1.12.4.tgz"; + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.12.4.tgz"; sha1 = "090700c4ba28862a8520ef378395fdee5f61c229"; }; }; @@ -5301,7 +5499,7 @@ let packageName = "body-parser"; version = "1.13.3"; src = fetchurl { - url = "http://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz"; + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz"; sha1 = "c08cf330c3358e151016a05746f13f029c97fa97"; }; }; @@ -5337,7 +5535,7 @@ let packageName = "boom"; version = "2.10.1"; src = fetchurl { - url = "http://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; + url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; }; }; @@ -5346,7 +5544,7 @@ let packageName = "bottleneck"; version = "1.5.3"; src = fetchurl { - url = "http://registry.npmjs.org/bottleneck/-/bottleneck-1.5.3.tgz"; + url = "https://registry.npmjs.org/bottleneck/-/bottleneck-1.5.3.tgz"; sha1 = "55fa64920d9670087d44150404525d59f9511c20"; }; }; @@ -5355,7 +5553,7 @@ let packageName = "bower"; version = "1.8.4"; src = fetchurl { - url = "http://registry.npmjs.org/bower/-/bower-1.8.4.tgz"; + url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz"; sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a"; }; }; @@ -5463,7 +5661,7 @@ let packageName = "brfs"; version = "1.6.1"; src = fetchurl { - url = "http://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz"; + url = "https://registry.npmjs.org/brfs/-/brfs-1.6.1.tgz"; sha512 = "OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ=="; }; }; @@ -5508,7 +5706,7 @@ let packageName = "browser-pack"; version = "6.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz"; + url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz"; sha512 = "erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA=="; }; }; @@ -5535,7 +5733,7 @@ let packageName = "browserify"; version = "13.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz"; + url = "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz"; sha1 = "b5a9c9020243f0c70e4675bec8223bc627e415ce"; }; }; @@ -5553,7 +5751,7 @@ let packageName = "browserify-aes"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"; + url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"; sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="; }; }; @@ -5562,7 +5760,7 @@ let packageName = "browserify-cache-api"; version = "3.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz"; + url = "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz"; sha1 = "96247e853f068fd6e0d45cc73f0bb2cd9778ef02"; }; }; @@ -5589,7 +5787,7 @@ let packageName = "browserify-incremental"; version = "3.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz"; + url = "https://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz"; sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a"; }; }; @@ -5607,7 +5805,7 @@ let packageName = "browserify-rsa"; version = "4.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; + url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; }; }; @@ -5625,7 +5823,7 @@ let packageName = "browserify-transform-tools"; version = "1.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz"; + url = "https://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz"; sha1 = "83e277221f63259bed2e7eb2a283a970a501f4c4"; }; }; @@ -5656,13 +5854,13 @@ let sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; }; }; - "browserslist-4.3.5" = { + "browserslist-4.4.0" = { name = "browserslist"; packageName = "browserslist"; - version = "4.3.5"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.3.5.tgz"; - sha512 = "z9ZhGc3d9e/sJ9dIx5NFXkKoaiQTnrvrMsN3R1fGb1tkWWNSz12UewJn9TNxGo1l7J23h0MRaPmk7jfeTZYs1w=="; + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.4.0.tgz"; + sha512 = "tQkHS8VVxWbrjnNDXgt7/+SuPJ7qDvD0Y2e6bLtoQluR2SPvlmPUcfcU75L1KAalhqULlIFJlJ6BDfnYyJxJsw=="; }; }; "buffer-3.6.0" = { @@ -5670,7 +5868,7 @@ let packageName = "buffer"; version = "3.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz"; + url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz"; sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb"; }; }; @@ -5679,7 +5877,7 @@ let packageName = "buffer"; version = "4.9.1"; src = fetchurl { - url = "http://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz"; + url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz"; sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; }; }; @@ -5760,7 +5958,7 @@ let packageName = "buffer-equals"; version = "1.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz"; + url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz"; sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5"; }; }; @@ -5845,13 +6043,13 @@ let sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"; }; }; - "bufferutil-4.0.0" = { + "bufferutil-4.0.1" = { name = "bufferutil"; packageName = "bufferutil"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.0.tgz"; - sha512 = "jpnqMVLo7sqfUY2W92RC4jjj9TuiOSkjB0k43TxPcrBSntZwXUOl8Krfd3eVEdApuScpSTwYKntm/dXU2T8gnw=="; + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.1.tgz"; + sha512 = "xowrxvpxojqkagPcWRQVXZl0YXhRhAtBEIq3VoER1NH5Mw1n1o0ojdspp+GS2J//2gCVyrzQDApQ4unGF+QOoA=="; }; }; "bufferview-1.0.1" = { @@ -5953,6 +6151,15 @@ let sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453"; }; }; + "busboy-0.3.0" = { + name = "busboy"; + packageName = "busboy"; + version = "0.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/busboy/-/busboy-0.3.0.tgz"; + sha512 = "e+kzZRAbbvJPLjQz2z+zAyr78BSi9IFeBTyLwF76g78Q2zRt/RZ1NtS3MS17v2yLqYfLz69zHdC+1L4ja8PwqQ=="; + }; + }; "byline-5.0.0" = { name = "byline"; packageName = "byline"; @@ -6052,13 +6259,13 @@ let sha1 = "3fb410c7e91558eb1ab22a82834577aa6bd61d42"; }; }; - "cacache-11.3.1" = { + "cacache-11.3.2" = { name = "cacache"; packageName = "cacache"; - version = "11.3.1"; + version = "11.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/cacache/-/cacache-11.3.1.tgz"; - sha512 = "2PEw4cRRDu+iQvBTTuttQifacYjLPhET+SYO/gEFMy8uhi+jlJREDAjSF5FWSdV/Aw5h18caHA7vMTw2c+wDzA=="; + url = "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz"; + sha512 = "E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg=="; }; }; "cache-base-1.0.1" = { @@ -6079,13 +6286,13 @@ let sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d"; }; }; - "cacheable-request-5.2.0" = { + "cacheable-request-6.0.0" = { name = "cacheable-request"; packageName = "cacheable-request"; - version = "5.2.0"; + version = "6.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-5.2.0.tgz"; - sha512 = "h1n0vjpFaByTvU6PiyTKk2kx4OnuV1aVUynCUd/FiKl4icpPSceowk3rHczwFEBuZvz+E1EU4KExR0MCPeQfaQ=="; + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.0.0.tgz"; + sha512 = "2N7AmszH/WPPpl5Z3XMw1HAP+8d+xugnKQAeKvxFZ/04dbT/CAznqwbl+7eSr3HkwdepNwtb2yx3CAMQWvG01Q=="; }; }; "cached-path-relative-1.0.2" = { @@ -6165,7 +6372,7 @@ let packageName = "callsites"; version = "0.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"; + url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"; sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; }; }; @@ -6174,10 +6381,19 @@ let packageName = "callsites"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"; + url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"; sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; }; }; + "callsites-3.0.0" = { + name = "callsites"; + packageName = "callsites"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/callsites/-/callsites-3.0.0.tgz"; + sha512 = "tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw=="; + }; + }; "camel-case-3.0.0" = { name = "camel-case"; packageName = "camel-case"; @@ -6237,7 +6453,7 @@ let packageName = "camelcase-keys"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; + url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; }; }; @@ -6268,22 +6484,22 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-db-1.0.30000917" = { + "caniuse-db-1.0.30000928" = { name = "caniuse-db"; packageName = "caniuse-db"; - version = "1.0.30000917"; + version = "1.0.30000928"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000917.tgz"; - sha512 = "aQkGkrWEZo+HlcBMUHQnxjbwkzrHNcMPRkks2UFAYU8ync4v/8Wl1yKQkNujYozQ77aHa0jNWviSOl5fsja+rg=="; + url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000928.tgz"; + sha512 = "nAoeTspAEzLjqGSeibzM09WojORi08faeOOI5GBmFWC3/brydovb9lYJWM+p48rEQsdevfpufK58gPiDtwOWKw=="; }; }; - "caniuse-lite-1.0.30000917" = { + "caniuse-lite-1.0.30000928" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30000917"; + version = "1.0.30000928"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000917.tgz"; - sha512 = "j27ZOs81aF3yqPSSWcUT/0rk5ntnqyZdXYN5M0C7WX+8wSNHjioKPYrjDAJgL9ldL83RSSh+fIhyUa4np/5m6g=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000928.tgz"; + sha512 = "aSpMWRXL6ZXNnzm8hgE4QDLibG5pVJ2Ujzsuj3icazlIkxXkPXtL+BWnMx6FBkWmkZgBHGUxPZQvrbRw2ZTxhg=="; }; }; "capture-stack-trace-1.0.1" = { @@ -6390,7 +6606,7 @@ let packageName = "chalk"; version = "0.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; }; }; @@ -6399,7 +6615,7 @@ let packageName = "chalk"; version = "0.5.1"; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; sha1 = "663b3a648b68b55d04690d49167aa837858f2174"; }; }; @@ -6408,7 +6624,7 @@ let packageName = "chalk"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"; sha1 = "b3cf4ed0ff5397c99c75b8f679db2f52831f96dc"; }; }; @@ -6417,7 +6633,7 @@ let packageName = "chalk"; version = "1.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; }; }; @@ -6435,7 +6651,7 @@ let packageName = "chalk"; version = "2.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz"; sha512 = "QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g=="; }; }; @@ -6457,6 +6673,15 @@ let sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ=="; }; }; + "chalk-2.4.2" = { + name = "chalk"; + packageName = "chalk"; + version = "2.4.2"; + src = fetchurl { + url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; + sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; + }; + }; "change-case-3.0.2" = { name = "change-case"; packageName = "change-case"; @@ -6552,7 +6777,7 @@ let packageName = "cheerio"; version = "0.17.0"; src = fetchurl { - url = "http://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz"; + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz"; sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea"; }; }; @@ -6561,7 +6786,7 @@ let packageName = "cheerio"; version = "0.20.0"; src = fetchurl { - url = "http://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz"; + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz"; sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35"; }; }; @@ -6570,7 +6795,7 @@ let packageName = "cheerio"; version = "0.22.0"; src = fetchurl { - url = "http://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; }; }; @@ -6583,13 +6808,13 @@ let sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db"; }; }; - "cherow-1.6.8" = { + "cherow-1.6.9" = { name = "cherow"; packageName = "cherow"; - version = "1.6.8"; + version = "1.6.9"; src = fetchurl { - url = "https://registry.npmjs.org/cherow/-/cherow-1.6.8.tgz"; - sha512 = "if2GIw3fjE/KnFD5tddg4YJn2zveJ7PU7VcTrVHvsAdqJClB5555AsSti53XHjUyaOEiqq9x3/lZZVJ8s+VPkA=="; + url = "https://registry.npmjs.org/cherow/-/cherow-1.6.9.tgz"; + sha512 = "pmmkpIQRcnDA7EawKcg9+ncSZNTYfXqDx+K3oqqYvpZlqVBChjTomTfw+hePnkqYR3Y013818c0R1Q5P/7PGrQ=="; }; }; "chloride-2.2.10" = { @@ -6633,7 +6858,7 @@ let packageName = "chownr"; version = "0.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz"; + url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz"; sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485"; }; }; @@ -6822,7 +7047,7 @@ let packageName = "cli-color"; version = "0.1.7"; src = fetchurl { - url = "http://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz"; + url = "https://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz"; sha1 = "adc3200fa471cc211b0da7f566b71e98b9d67347"; }; }; @@ -7114,13 +7339,13 @@ let sha512 = "Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg=="; }; }; - "clones-1.1.0" = { + "clones-1.2.0" = { name = "clones"; packageName = "clones"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/clones/-/clones-1.1.0.tgz"; - sha1 = "87e904132d6140c5c0b72006c08c0d05bd7b63b3"; + url = "https://registry.npmjs.org/clones/-/clones-1.2.0.tgz"; + sha512 = "FXDYw4TjR8wgPZYui2LeTqWh1BLpfQ8lB6upMtlpDF6WlOOxghmTTxWyngdKTgozqBgKnHbTVwTE+hOHqAykuQ=="; }; }; "closest-to-2.0.0" = { @@ -7213,13 +7438,13 @@ let sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd"; }; }; - "coa-2.0.1" = { + "coa-2.0.2" = { name = "coa"; packageName = "coa"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz"; - sha512 = "5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ=="; + url = "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz"; + sha512 = "q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA=="; }; }; "code-point-at-1.1.0" = { @@ -7263,7 +7488,7 @@ let packageName = "coffee-script"; version = "1.6.3"; src = fetchurl { - url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz"; + url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz"; sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be"; }; }; @@ -7276,6 +7501,15 @@ let sha512 = "YfQ1tAUZm561vpYD+5eyWN8+UsceQbSrqqlc/6zDY2gtAE+uZLSdkkovhnGpmCThsvKBFakq4EdY/FF93E8XIw=="; }; }; + "collection-map-1.0.0" = { + name = "collection-map"; + packageName = "collection-map"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz"; + sha1 = "aea0f06f8d26c780c2b75494385544b2255af18c"; + }; + }; "collection-visit-1.0.0" = { name = "collection-visit"; packageName = "collection-visit"; @@ -7290,7 +7524,7 @@ let packageName = "color"; version = "0.11.4"; src = fetchurl { - url = "http://registry.npmjs.org/color/-/color-0.11.4.tgz"; + url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz"; sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764"; }; }; @@ -7335,7 +7569,7 @@ let packageName = "color-string"; version = "0.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; + url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991"; }; }; @@ -7380,7 +7614,7 @@ let packageName = "colors"; version = "0.5.1"; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-0.5.1.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz"; sha1 = "7d0023eaeb154e8ee9fce75dcb923d0ed1667774"; }; }; @@ -7389,7 +7623,7 @@ let packageName = "colors"; version = "0.6.2"; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc"; }; }; @@ -7398,7 +7632,7 @@ let packageName = "colors"; version = "1.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; }; }; @@ -7407,7 +7641,7 @@ let packageName = "colors"; version = "1.1.2"; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; }; }; @@ -7488,7 +7722,7 @@ let packageName = "combined-stream"; version = "0.0.7"; src = fetchurl { - url = "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; + url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f"; }; }; @@ -7515,7 +7749,7 @@ let packageName = "commander"; version = "0.6.1"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; }; }; @@ -7524,7 +7758,7 @@ let packageName = "commander"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-1.0.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-1.0.0.tgz"; sha1 = "5e6a88e7070ff5908836ead19169548c30f90bcd"; }; }; @@ -7533,7 +7767,7 @@ let packageName = "commander"; version = "1.3.2"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-1.3.2.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz"; sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5"; }; }; @@ -7542,7 +7776,7 @@ let packageName = "commander"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.0.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz"; sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928"; }; }; @@ -7555,21 +7789,12 @@ let sha512 = "b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ=="; }; }; - "commander-2.14.1" = { - name = "commander"; - packageName = "commander"; - version = "2.14.1"; - src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.14.1.tgz"; - sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw=="; - }; - }; "commander-2.15.1" = { name = "commander"; packageName = "commander"; version = "2.15.1"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.15.1.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz"; sha512 = "VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag=="; }; }; @@ -7605,7 +7830,7 @@ let packageName = "commander"; version = "2.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873"; }; }; @@ -7614,7 +7839,7 @@ let packageName = "commander"; version = "2.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.6.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz"; sha1 = "9df7e52fb2a0cb0fb89058ee80c3104225f37e1d"; }; }; @@ -7623,7 +7848,7 @@ let packageName = "commander"; version = "2.8.1"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.8.1.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz"; sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4"; }; }; @@ -7632,7 +7857,7 @@ let packageName = "commander"; version = "2.9.0"; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; }; }; @@ -7798,6 +8023,15 @@ let sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; }; }; + "concat-stream-2.0.0" = { + name = "concat-stream"; + packageName = "concat-stream"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"; + sha512 = "MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="; + }; + }; "conf-1.4.0" = { name = "conf"; packageName = "conf"; @@ -8005,6 +8239,15 @@ let sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; }; }; + "content-disposition-0.5.3" = { + name = "content-disposition"; + packageName = "content-disposition"; + version = "0.5.3"; + src = fetchurl { + url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; + sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; + }; + }; "content-type-1.0.4" = { name = "content-type"; packageName = "content-type"; @@ -8077,15 +8320,6 @@ let sha1 = "3243397ae93a71d655b3026834a51590b958b9e8"; }; }; - "conventional-changelog-angular-1.6.6" = { - name = "conventional-changelog-angular"; - packageName = "conventional-changelog-angular"; - version = "1.6.6"; - src = fetchurl { - url = "http://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz"; - sha512 = "suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg=="; - }; - }; "conventional-changelog-angular-5.0.2" = { name = "conventional-changelog-angular"; packageName = "conventional-changelog-angular"; @@ -8131,15 +8365,6 @@ let sha512 = "92OU8pz/977udhBjgPEbg3sbYzIxMDFTlQT97w7KdhR9igNqdJvy8smmedAAgn4tPiqseFloKkrVfbXCVd+E7A=="; }; }; - "conventional-commits-parser-2.1.7" = { - name = "conventional-commits-parser"; - packageName = "conventional-commits-parser"; - version = "2.1.7"; - src = fetchurl { - url = "http://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz"; - sha512 = "BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ=="; - }; - }; "conventional-commits-parser-3.0.1" = { name = "conventional-commits-parser"; packageName = "conventional-commits-parser"; @@ -8163,7 +8388,7 @@ let packageName = "convert-source-map"; version = "1.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz"; + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz"; sha1 = "4829c877e9fe49b3161f3bf3673888e204699860"; }; }; @@ -8379,7 +8604,7 @@ let packageName = "cordova-registry-mapper"; version = "1.1.15"; src = fetchurl { - url = "http://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz"; + url = "https://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz"; sha1 = "e244b9185b8175473bff6079324905115f83dc7c"; }; }; @@ -8397,7 +8622,7 @@ let packageName = "core-js"; version = "2.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz"; + url = "https://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz"; sha1 = "fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65"; }; }; @@ -8410,22 +8635,22 @@ let sha512 = "RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw=="; }; }; - "core-js-2.6.0" = { + "core-js-2.6.2" = { name = "core-js"; packageName = "core-js"; - version = "2.6.0"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.0.tgz"; - sha512 = "kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw=="; + url = "https://registry.npmjs.org/core-js/-/core-js-2.6.2.tgz"; + sha512 = "NdBPF/RVwPW6jr0NCILuyN9RiqLo2b1mddWHkUL+VnvcB7dzlnBJ1bXYntjpTGOgkZiiLWj2JxmOr7eGE3qK6g=="; }; }; - "core-js-3.0.0-beta.4" = { + "core-js-3.0.0-beta.8" = { name = "core-js"; packageName = "core-js"; - version = "3.0.0-beta.4"; + version = "3.0.0-beta.8"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.0.0-beta.4.tgz"; - sha512 = "yz4iJCkkSQLQSLHPGUln6r5ZBkLPzZSvHG0g1nfvcdnmpIe+KE9WOb1ZEEf6EEaEmjp9Ol0Kw5J5vnoIWc5eWw=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.0.0-beta.8.tgz"; + sha512 = "ex9wpitprNDuK6bPRljFW0z0IBatqtmqeuZ1HpcFcSkdOQSGNu3XdZSTshEuAIeYgLarHpw55P3SQlKAnXmpuQ=="; }; }; "core-util-is-1.0.2" = { @@ -8473,15 +8698,6 @@ let sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0"; }; }; - "cosmiconfig-3.1.0" = { - name = "cosmiconfig"; - packageName = "cosmiconfig"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-3.1.0.tgz"; - sha512 = "zedsBhLSbPBms+kE7AH4vHg6JsKDz6epSv2/+5XHs8ILHlgDciSJfSWf8sX9aQ52Jb7KI7VswUTsLpR/G0cr2Q=="; - }; - }; "cosmiconfig-4.0.0" = { name = "cosmiconfig"; packageName = "cosmiconfig"; @@ -8613,7 +8829,7 @@ let packageName = "create-hash"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"; + url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"; sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="; }; }; @@ -8622,7 +8838,7 @@ let packageName = "create-hmac"; version = "1.1.7"; src = fetchurl { - url = "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"; + url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"; sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; }; }; @@ -8703,7 +8919,7 @@ let packageName = "cross-spawn-async"; version = "2.2.5"; src = fetchurl { - url = "http://registry.npmjs.org/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz"; + url = "https://registry.npmjs.org/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz"; sha1 = "845ff0c0834a3ded9d160daca6d390906bb288cc"; }; }; @@ -8739,7 +8955,7 @@ let packageName = "cryptiles"; version = "2.0.5"; src = fetchurl { - url = "http://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; }; }; @@ -8793,7 +9009,7 @@ let packageName = "css-color-names"; version = "0.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz"; + url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz"; sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; }; }; @@ -8811,7 +9027,7 @@ let packageName = "css-select"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz"; + url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz"; sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; }; }; @@ -8910,26 +9126,26 @@ let packageName = "cssnano"; version = "3.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz"; + url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz"; sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"; }; }; - "cssnano-4.1.7" = { + "cssnano-4.1.8" = { name = "cssnano"; packageName = "cssnano"; - version = "4.1.7"; + version = "4.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano/-/cssnano-4.1.7.tgz"; - sha512 = "AiXL90l+MDuQmRNyypG2P7ux7K4XklxYzNNUd5HXZCNcH8/N9bHPcpN97v8tXgRVeFL/Ed8iP8mVmAAu0ZpT7A=="; + url = "https://registry.npmjs.org/cssnano/-/cssnano-4.1.8.tgz"; + sha512 = "5GIY0VzAHORpbKiL3rMXp4w4M1Ki+XlXgEXyuWXVd3h6hlASb+9Vo76dNP56/elLMVBBsUfusCo1q56uW0UWig=="; }; }; - "cssnano-preset-default-4.0.5" = { + "cssnano-preset-default-4.0.6" = { name = "cssnano-preset-default"; packageName = "cssnano-preset-default"; - version = "4.0.5"; + version = "4.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.5.tgz"; - sha512 = "f1uhya0ZAjPYtDD58QkBB0R+uYdzHPei7cDxJyQQIHt5acdhyGXaSXl2nDLzWHLwGFbZcHxQtkJS8mmNwnxTvw=="; + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.6.tgz"; + sha512 = "UPboYbFaJFtDUhJ4fqctThWbbyF4q01/7UhsZbLzp35l+nUxtzh1SifoVlEfyLM3n3Z0htd8B1YlCxy9i+bQvg=="; }; }; "cssnano-util-get-arguments-4.0.0" = { @@ -9018,7 +9234,7 @@ let packageName = "csv"; version = "0.4.6"; src = fetchurl { - url = "http://registry.npmjs.org/csv/-/csv-0.4.6.tgz"; + url = "https://registry.npmjs.org/csv/-/csv-0.4.6.tgz"; sha1 = "8dbae7ddfdbaae62c1ea987c3e0f8a9ac737b73d"; }; }; @@ -9027,7 +9243,7 @@ let packageName = "csv-generate"; version = "0.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/csv-generate/-/csv-generate-0.0.6.tgz"; + url = "https://registry.npmjs.org/csv-generate/-/csv-generate-0.0.6.tgz"; sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66"; }; }; @@ -9045,7 +9261,7 @@ let packageName = "csv-parser"; version = "1.12.1"; src = fetchurl { - url = "http://registry.npmjs.org/csv-parser/-/csv-parser-1.12.1.tgz"; + url = "https://registry.npmjs.org/csv-parser/-/csv-parser-1.12.1.tgz"; sha512 = "r45M92nLnGP246ot0Yo5RvbiiMF5Bw/OTIdWJ3OQ4Vbv4hpOeoXVIPxdSmUw+fPJlQOseY+iigJyLSfPMIrddQ=="; }; }; @@ -9054,7 +9270,7 @@ let packageName = "csv-stringify"; version = "0.0.8"; src = fetchurl { - url = "http://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.8.tgz"; + url = "https://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.8.tgz"; sha1 = "52cc3b3dfc197758c55ad325a95be85071f9e51b"; }; }; @@ -9063,7 +9279,7 @@ let packageName = "ctype"; version = "0.5.3"; src = fetchurl { - url = "http://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; + url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f"; }; }; @@ -9153,7 +9369,7 @@ let packageName = "d"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/d/-/d-1.0.0.tgz"; + url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz"; sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f"; }; }; @@ -9256,13 +9472,13 @@ let sha512 = "EZq+VeE/tM7FGygMVZx3hsMVm7zW3qxhuUYCNtLONaZptqXz4laB5cIWHydmeEn6sl3RZatZqpIuWRu4xDYxIg=="; }; }; - "dat-link-resolve-2.2.0" = { + "dat-link-resolve-2.3.0" = { name = "dat-link-resolve"; packageName = "dat-link-resolve"; - version = "2.2.0"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.2.0.tgz"; - sha512 = "cu6Fwapm34myc5um6jdQBrtDkjx28oVkOVHbaV4YNLdxrRqUm+FlWuIqFk7zaCZDoZg5TMlCG1SF0j3AFbiOYA=="; + url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.3.0.tgz"; + sha512 = "k1wfcpUB65NQiSVg7vAyHhQlNawAwWvUmDghfCRDOEm68lvRZKyO+bf4mANRJfOV4Ah6GzGSKSKBKSHhYOyBiQ=="; }; }; "dat-log-1.2.0" = { @@ -9274,13 +9490,13 @@ let sha512 = "oK6R74WV8TdhGR9VCLym7D/vlN8lXND5AyhJhrjtm1WNDrg/6Clx1Tk7k3Dt8quy2AmmGO7vbIk7iwFtzTAJfA=="; }; }; - "dat-node-3.5.13" = { + "dat-node-3.5.14" = { name = "dat-node"; packageName = "dat-node"; - version = "3.5.13"; + version = "3.5.14"; src = fetchurl { - url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.13.tgz"; - sha512 = "ArpqeRgc/c/zsCs2Z6ZvK8Xm6EhzAo64UflspEffV2XqO7SoCKzj+qdkdfoYWGRvvp2IoOO0KaZ7PvFy0jdipg=="; + url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.14.tgz"; + sha512 = "NTkLhalHkXseLcI/l8CA2yhf1TBnbuc0d98ojFuzQfEoVr0y+VPd5KrCm5u7Uhaj3YTGkpOxbDk5N6WH10ODMQ=="; }; }; "dat-registry-4.0.0" = { @@ -9310,13 +9526,13 @@ let sha512 = "PjKjUatJN4ztBDI5nR94VuofyrVKOm6W3/DgqFO6U4ixdX351Jkuj+GiGScEmMOqn8vJgTmlUPTxJaBf38Fmkw=="; }; }; - "dat-swarm-defaults-1.0.1" = { + "dat-swarm-defaults-1.0.2" = { name = "dat-swarm-defaults"; packageName = "dat-swarm-defaults"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.1.tgz"; - sha512 = "T2WlO7BVmN9USchefsP8entQiByIlJLGuzHLL9qEqOBkyKB8p0Y7XPWxP8dcL43+SkeoxU5NVe7O0bsi3xL8Jg=="; + url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.2.tgz"; + sha512 = "gz9RuhUxq3coYBrelzuFXCNyC579aO3Bm1Wlwa12/9tJr1NP0AAGxpHJYA1HZvt8X7ZdrtMzpFyNvs2Y9PFG6w=="; }; }; "data-uri-to-buffer-1.2.0" = { @@ -9405,7 +9621,7 @@ let packageName = "debug"; version = "0.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.5.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.5.0.tgz"; sha1 = "9d48c946fb7d7d59807ffe07822f515fd76d7a9e"; }; }; @@ -9414,7 +9630,7 @@ let packageName = "debug"; version = "0.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.6.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.6.0.tgz"; sha1 = "ce9d5d025d5294b3f0748a494bebaf3c9fd8734f"; }; }; @@ -9423,7 +9639,7 @@ let packageName = "debug"; version = "0.7.4"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39"; }; }; @@ -9441,7 +9657,7 @@ let packageName = "debug"; version = "2.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.1.3.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-2.1.3.tgz"; sha1 = "ce8ab1b5ee8fbee2bfa3b633cab93d366b63418e"; }; }; @@ -9450,7 +9666,7 @@ let packageName = "debug"; version = "2.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; }; }; @@ -9459,7 +9675,7 @@ let packageName = "debug"; version = "2.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.3.3.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz"; sha1 = "40c453e67e6e13c901ddec317af8986cda9eff8c"; }; }; @@ -9490,13 +9706,13 @@ let sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; }; }; - "debug-4.1.0" = { + "debug-4.1.1" = { name = "debug"; packageName = "debug"; - version = "4.1.0"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz"; - sha512 = "heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg=="; + url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; + sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; }; }; "debug-fabulous-1.1.0" = { @@ -9544,13 +9760,13 @@ let sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9"; }; }; - "decimal.js-10.0.1" = { + "decimal.js-10.0.2" = { name = "decimal.js"; packageName = "decimal.js"; - version = "10.0.1"; + version = "10.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.1.tgz"; - sha512 = "vklWB5C4Cj423xnaOtsUmAv0/7GqlXIgDv2ZKDyR64OV3OSzGHNx2mk4p/1EKnB5s70k73cIOOEcG9YzF0q4Lw=="; + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.2.tgz"; + sha512 = "qL5tUTXAWjB5cSBfm0V2a4jO5FaDLumCfwc/0f7WaTOT3WU8pIeq2HHrd98eXHtbey4qFWlaPzfml1JWIoO9TQ=="; }; }; "decode-uri-component-0.2.0" = { @@ -9720,7 +9936,7 @@ let packageName = "deepmerge"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/deepmerge/-/deepmerge-2.1.0.tgz"; + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.0.tgz"; sha512 = "Q89Z26KAfA3lpPGhbF6XMfYAm3jIV3avViy6KOJ2JLzFbeWHOvPQUu5aSJIWXap3gDZC2y1eF5HXEPI2wGqgvw=="; }; }; @@ -9733,6 +9949,15 @@ let sha512 = "R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA=="; }; }; + "deepmerge-3.0.0" = { + name = "deepmerge"; + packageName = "deepmerge"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-3.0.0.tgz"; + sha512 = "a8z8bkgHsAML+uHLqmMS83HHlpy3PvZOOuiTQqaa3wu8ZVg3h0hqHk6aCsGdOnZV2XMM/FRimNGjUh0KCcmHBw=="; + }; + }; "default-browser-id-1.0.4" = { name = "default-browser-id"; packageName = "default-browser-id"; @@ -9751,6 +9976,15 @@ let sha512 = "QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ=="; }; }; + "default-resolution-2.0.0" = { + name = "default-resolution"; + packageName = "default-resolution"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz"; + sha1 = "bcb82baa72ad79b426a76732f1a81ad6df26d684"; + }; + }; "default-uid-1.0.0" = { name = "default-uid"; packageName = "default-uid"; @@ -9927,7 +10161,7 @@ let packageName = "depd"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/depd/-/depd-1.0.1.tgz"; + url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz"; sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa"; }; }; @@ -9972,7 +10206,7 @@ let packageName = "deps-sort"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz"; + url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz"; sha1 = "091724902e84658260eb910748cccd1af6e21fb5"; }; }; @@ -10071,7 +10305,7 @@ let packageName = "detective"; version = "5.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/detective/-/detective-5.1.0.tgz"; + url = "https://registry.npmjs.org/detective/-/detective-5.1.0.tgz"; sha512 = "TFHMqfOvxlgrfVzTEkNBSh9SvSNX/HfF4OFI2QFGCyPm02EsyILqnUeb5P6q7JZ3SFNTBL5t2sePRgrN4epUWQ=="; }; }; @@ -10111,6 +10345,15 @@ let sha1 = "5996c086bb33218c812c090bddc09cd12facb70f"; }; }; + "dicer-0.3.0" = { + name = "dicer"; + packageName = "dicer"; + version = "0.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz"; + sha512 = "MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA=="; + }; + }; "diff-1.4.0" = { name = "diff"; packageName = "diff"; @@ -10143,7 +10386,7 @@ let packageName = "diffie-hellman"; version = "5.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; + url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="; }; }; @@ -10156,13 +10399,13 @@ let sha1 = "b5e30361a6db023176d562892db85940a718f47e"; }; }; - "diffy-2.0.0" = { + "diffy-2.1.0" = { name = "diffy"; packageName = "diffy"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/diffy/-/diffy-2.0.0.tgz"; - sha512 = "T1+MF7chaOtNaBeV59td6lYlci6dCTUraySH8LDltafhd+FLTsYpJJbLVpl6S4ih6kPFMaHSIqQ92bRVvoE+3Q=="; + url = "https://registry.npmjs.org/diffy/-/diffy-2.1.0.tgz"; + sha512 = "BIo2fEAv3U0YmyuM1XTijwZ/OJjmXnlSvsguQy3LOaz5C2R/vrMy8SCRdQn1iz3KhBJYJzy+918xS/PKY/47lw=="; }; }; "dir-glob-2.0.0" = { @@ -10174,6 +10417,16 @@ let sha512 = "37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag=="; }; }; + "dir-glob-git://github.com/nexe/dir-glob.git#84f4381fe041b6afd425e8d5c14c33809430d8f1" = { + name = "dir-glob"; + packageName = "dir-glob"; + version = "2.2.0"; + src = fetchgit { + url = "git://github.com/nexe/dir-glob.git"; + rev = "84f4381fe041b6afd425e8d5c14c33809430d8f1"; + sha256 = "e436ec06b2782c8c740e24211ae663270a87ff0297cceb9f489086c5bf6ae88e"; + }; + }; "director-1.2.7" = { name = "director"; packageName = "director"; @@ -10210,13 +10463,13 @@ let sha512 = "EEmZQFE0PiOsJj7G3KVCwFGbYs4QchUvzA91iHtZ6HfkIqfBEDSTGLygJrUlY1Tr77WDV+qZVrZuNghHxSL/vw=="; }; }; - "discovery-swarm-5.1.2" = { + "discovery-swarm-5.1.4" = { name = "discovery-swarm"; packageName = "discovery-swarm"; - version = "5.1.2"; + version = "5.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.2.tgz"; - sha512 = "aqNdl4l76PFb301I1hXkHZSakQTOXR0yRbfDtF7XrZKk+9V5gMQBbQ2xPgnQPfDVG0IeErxkQkoWqp4f9EJe5w=="; + url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.4.tgz"; + sha512 = "vkg0bv+FUwSuPxBWzdNPQVNmXQlIbvz1Ygi+A1XefNUhEzfmM+RNndjtjlDgxD/ZUhFir9PX7Hw9iIDVujsOoA=="; }; }; "disparity-2.0.0" = { @@ -10228,13 +10481,13 @@ let sha1 = "57ddacb47324ae5f58d2cc0da886db4ce9eeb718"; }; }; - "dispensary-0.26.0" = { + "dispensary-0.27.0" = { name = "dispensary"; packageName = "dispensary"; - version = "0.26.0"; + version = "0.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/dispensary/-/dispensary-0.26.0.tgz"; - sha512 = "Cw0N6Hf8/y4vH9/NvDPGLd2+Mve9xs+41+sULJ4ODHuhZ+9CnJ2eMl2ju2udL/UACY0Vcxw3TzyoDRBNaU/0DQ=="; + url = "https://registry.npmjs.org/dispensary/-/dispensary-0.27.0.tgz"; + sha512 = "bG9pSBPH8wTEaugUIBAbBvBHynqOoGxefOT4YXlPoUc9AxQGDUO1uFHafDVWnsGWiSYvTUga0aZ9xThzfGQtlQ=="; }; }; "diveSync-0.3.0" = { @@ -10305,7 +10558,7 @@ let packageName = "dns-packet"; version = "4.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/dns-packet/-/dns-packet-4.2.0.tgz"; + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.2.0.tgz"; sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw=="; }; }; @@ -10413,7 +10666,7 @@ let packageName = "domelementtype"; version = "1.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; sha1 = "bd28773e2642881aec51544924299c5cd822185b"; }; }; @@ -10512,7 +10765,7 @@ let packageName = "dotenv"; version = "4.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz"; + url = "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz"; sha1 = "864ef1379aced55ce6f95debecdce179f7a0cd1d"; }; }; @@ -10521,10 +10774,19 @@ let packageName = "dotenv"; version = "5.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz"; + url = "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz"; sha512 = "4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow=="; }; }; + "dotenv-6.2.0" = { + name = "dotenv"; + packageName = "dotenv"; + version = "6.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz"; + sha512 = "HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w=="; + }; + }; "dotenv-expand-4.2.0" = { name = "dotenv-expand"; packageName = "dotenv-expand"; @@ -10602,7 +10864,7 @@ let packageName = "duplexer"; version = "0.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; + url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; }; }; @@ -10642,13 +10904,13 @@ let sha512 = "vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA=="; }; }; - "dynamic-dijkstra-1.0.0" = { + "dynamic-dijkstra-1.0.1" = { name = "dynamic-dijkstra"; packageName = "dynamic-dijkstra"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/dynamic-dijkstra/-/dynamic-dijkstra-1.0.0.tgz"; - sha512 = "AUbCFABXNoon689xft5ROX/fO9pdttZ6wZcMXZ4oH85Bn9rtiMdVHVBbAZ9kxAewdm5L1m+y+n97s8ofwya8WA=="; + url = "https://registry.npmjs.org/dynamic-dijkstra/-/dynamic-dijkstra-1.0.1.tgz"; + sha512 = "VadGXbWmiFFFTzlUyS/ICPvMEIPTsiVyWNIRj5qXPOj/iuTw9TgOZLRPMjKcik7g0GKb2mT3UMyTfqRj0aArSA=="; }; }; "each-async-1.1.1" = { @@ -10741,13 +11003,13 @@ let sha512 = "gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg=="; }; }; - "editions-2.1.0" = { + "editions-2.1.3" = { name = "editions"; packageName = "editions"; - version = "2.1.0"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/editions/-/editions-2.1.0.tgz"; - sha512 = "yKrimWcvOXcYXtqsOeebbMLynm9qbYVd0005wveGU2biPxJaJoxA0jtaZrxiMe3mAanLr5lxoYFVz5zjv9JdnA=="; + url = "https://registry.npmjs.org/editions/-/editions-2.1.3.tgz"; + sha512 = "xDZyVm0A4nLgMNWVVLJvcwMjI80ShiH/27RyLiCnW1L273TcJIA25C4pwJ33AWV01OX6UriP35Xu+lH4S7HWQw=="; }; }; "editor-1.0.0" = { @@ -10795,13 +11057,13 @@ let sha512 = "0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ=="; }; }; - "electron-to-chromium-1.3.88" = { + "electron-to-chromium-1.3.102" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.88"; + version = "1.3.102"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.88.tgz"; - sha512 = "UPV4NuQMKeUh1S0OWRvwg0PI8ASHN9kBC8yDTk1ROXLC85W5GnhTRu/MZu3Teqx3JjlQYuckuHYXSUSgtb3J+A=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.102.tgz"; + sha512 = "2nzZuXw/KBPnI3QX3UOCSRvJiVy7o9+VHRDQ3D/EHCvVc89X6aj/GlNmEgiR2GBIhmSWXIi4W1M5okA5ScSlNg=="; }; }; "elegant-spinner-1.0.1" = { @@ -10886,6 +11148,15 @@ let sha1 = "c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"; }; }; + "emoji-regex-7.0.3" = { + name = "emoji-regex"; + packageName = "emoji-regex"; + version = "7.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; + sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; + }; + }; "emoji-server-1.0.0" = { name = "emoji-server"; packageName = "emoji-server"; @@ -10918,7 +11189,7 @@ let packageName = "enabled"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz"; + url = "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz"; sha1 = "965f6513d2c2d1c5f4652b64a2e3396467fc2f93"; }; }; @@ -11008,7 +11279,7 @@ let packageName = "engine.io"; version = "1.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz"; + url = "https://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz"; sha1 = "2d968308fffae5d17f5209b6775246e90d8a705e"; }; }; @@ -11044,7 +11315,7 @@ let packageName = "engine.io-client"; version = "1.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz"; + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz"; sha1 = "1c5a65d5c5af6d04b44c22c3dbcd95c39ed1c989"; }; }; @@ -11062,7 +11333,7 @@ let packageName = "engine.io-client"; version = "3.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz"; + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz"; sha512 = "y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw=="; }; }; @@ -11080,7 +11351,7 @@ let packageName = "engine.io-parser"; version = "1.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz"; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz"; sha1 = "d38813143a411cb3b914132ab05bf99e6f7a248e"; }; }; @@ -11089,7 +11360,7 @@ let packageName = "engine.io-parser"; version = "1.3.2"; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz"; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz"; sha1 = "937b079f0007d0893ec56d46cb220b8cb435220a"; }; }; @@ -11134,7 +11405,7 @@ let packageName = "entities"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; + url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26"; }; }; @@ -11165,22 +11436,22 @@ let sha512 = "zoB603vQReOFvTg5xMl9I1P2PnHsHQQKTEowsKKD7nseUfJq6UWzK+4YtlWUO1nhiQUxe6XMkk+JleSZD1NZFA=="; }; }; - "envinfo-5.10.0" = { + "envinfo-5.11.1" = { name = "envinfo"; packageName = "envinfo"; - version = "5.10.0"; + version = "5.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/envinfo/-/envinfo-5.10.0.tgz"; - sha512 = "rXbzXWvnQxy+TcqZlARbWVQwgGVVouVJgFZhLVN5htjLxl1thstrP2ZGi0pXC309AbK7gVOPU+ulz/tmpCI7iw=="; + url = "https://registry.npmjs.org/envinfo/-/envinfo-5.11.1.tgz"; + sha512 = "rmEr5fZLYYSRCj3kDhriz6ju/oMgEzC92MwF3mggFba2EMjK+CUE13MQo17Ua2CDT+KFFPAGFosodUoL/wxjug=="; }; }; - "envinfo-5.12.1" = { + "envinfo-6.0.1" = { name = "envinfo"; packageName = "envinfo"; - version = "5.12.1"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/envinfo/-/envinfo-5.12.1.tgz"; - sha512 = "pwdo0/G3CIkQ0y6PCXq4RdkvId2elvtPCJMG0konqlrfkWQbf1DWeH9K2b/cvu2YgGvPPTOnonZxXM1gikFu1w=="; + url = "https://registry.npmjs.org/envinfo/-/envinfo-6.0.1.tgz"; + sha512 = "IbMWvMQulMm1hiky1Zt5YTcSDEdZs0r9bt77mcLa4RUAKRYTGZvrb3MtAt47FuldPxwL+u2LtQex1FajIW1/Cw=="; }; }; "epidemic-broadcast-trees-6.3.5" = { @@ -11201,13 +11472,13 @@ let sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960"; }; }; - "errlop-1.0.3" = { + "errlop-1.1.1" = { name = "errlop"; packageName = "errlop"; - version = "1.0.3"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/errlop/-/errlop-1.0.3.tgz"; - sha512 = "5VTnt0yikY4LlQEfCXVSqfE6oLj1HVM4zVSvAKMnoYjL/zrb6nqiLowZS4XlG7xENfyj7lpYWvT+wfSCr6dtlA=="; + url = "https://registry.npmjs.org/errlop/-/errlop-1.1.1.tgz"; + sha512 = "WX7QjiPHhsny7/PQvrhS5VMizXXKoKCS3udaBp8gjlARdbn+XmK300eKBAAN0hGyRaTCtRpOaxK+xFVPUJ3zkw=="; }; }; "errno-0.1.7" = { @@ -11255,13 +11526,13 @@ let sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4"; }; }; - "es-abstract-1.12.0" = { + "es-abstract-1.13.0" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.12.0"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz"; - sha512 = "C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz"; + sha512 = "vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg=="; }; }; "es-to-primitive-1.2.0" = { @@ -11341,7 +11612,7 @@ let packageName = "es6-promise"; version = "2.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz"; sha1 = "96edb9f2fdb01995822b263dd8aadab6748181bc"; }; }; @@ -11350,7 +11621,7 @@ let packageName = "es6-promise"; version = "3.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"; sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6"; }; }; @@ -11359,7 +11630,7 @@ let packageName = "es6-promise"; version = "3.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz"; sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613"; }; }; @@ -11377,7 +11648,7 @@ let packageName = "es6-promisify"; version = "5.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz"; + url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz"; sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203"; }; }; @@ -11516,13 +11787,13 @@ let sha512 = "D5nG2rErquLUstgUaxJlWB5+gu+U/3VDY0fk/Iuq8y9CUFy/7Y6oF4N2cR1tV8knzQvciIbfqfohd359xTLIKQ=="; }; }; - "eslint-5.10.0" = { + "eslint-5.12.0" = { name = "eslint"; packageName = "eslint"; - version = "5.10.0"; + version = "5.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-5.10.0.tgz"; - sha512 = "HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-5.12.0.tgz"; + sha512 = "LntwyPxtOHrsJdcSwyQKVtHofPHdv+4+mFwEe91r2V13vqpM8yLr7b1sW+Oo/yheOPkWYsYlYJCkzlFAt8KV7g=="; }; }; "eslint-plugin-no-unsafe-innerhtml-1.0.16" = { @@ -11584,17 +11855,17 @@ let packageName = "espree"; version = "3.5.4"; src = fetchurl { - url = "http://registry.npmjs.org/espree/-/espree-3.5.4.tgz"; + url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz"; sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; }; }; - "espree-4.0.0" = { + "espree-4.1.0" = { name = "espree"; packageName = "espree"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz"; - sha512 = "kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg=="; + url = "https://registry.npmjs.org/espree/-/espree-4.1.0.tgz"; + sha512 = "I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w=="; }; }; "espree-5.0.0" = { @@ -11755,7 +12026,7 @@ let packageName = "event-stream"; version = "0.5.3"; src = fetchurl { - url = "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz"; + url = "https://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz"; sha1 = "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c"; }; }; @@ -11764,7 +12035,7 @@ let packageName = "event-stream"; version = "3.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz"; + url = "https://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz"; sha1 = "f79f9984c07ee3fd9b44ffb3cd0422b13e24084d"; }; }; @@ -11773,7 +12044,7 @@ let packageName = "event-stream"; version = "3.3.4"; src = fetchurl { - url = "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz"; + url = "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz"; sha1 = "4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571"; }; }; @@ -11800,7 +12071,7 @@ let packageName = "eventemitter2"; version = "0.4.14"; src = fetchurl { - url = "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"; + url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"; sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab"; }; }; @@ -11827,7 +12098,7 @@ let packageName = "events"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/events/-/events-1.1.1.tgz"; + url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz"; sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; }; }; @@ -12025,7 +12296,7 @@ let packageName = "expand-range"; version = "0.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz"; + url = "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz"; sha1 = "4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044"; }; }; @@ -12034,7 +12305,7 @@ let packageName = "expand-range"; version = "1.8.2"; src = fetchurl { - url = "http://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"; + url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"; sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; }; }; @@ -12070,7 +12341,7 @@ let packageName = "express"; version = "2.5.11"; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-2.5.11.tgz"; + url = "https://registry.npmjs.org/express/-/express-2.5.11.tgz"; sha1 = "4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0"; }; }; @@ -12079,7 +12350,7 @@ let packageName = "express"; version = "3.21.2"; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.21.2.tgz"; + url = "https://registry.npmjs.org/express/-/express-3.21.2.tgz"; sha1 = "0c2903ee5c54e63d65a96170764703550665a3de"; }; }; @@ -12088,7 +12359,7 @@ let packageName = "express"; version = "3.4.4"; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.4.4.tgz"; + url = "https://registry.npmjs.org/express/-/express-3.4.4.tgz"; sha1 = "0b63ae626c96b71b78d13dfce079c10351635a86"; }; }; @@ -12097,7 +12368,7 @@ let packageName = "express"; version = "4.11.2"; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-4.11.2.tgz"; + url = "https://registry.npmjs.org/express/-/express-4.11.2.tgz"; sha1 = "8df3d5a9ac848585f00a0777601823faecd3b148"; }; }; @@ -12133,7 +12404,7 @@ let packageName = "express-session"; version = "1.11.3"; src = fetchurl { - url = "http://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz"; + url = "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz"; sha1 = "5cc98f3f5ff84ed835f91cbf0aabd0c7107400af"; }; }; @@ -12250,7 +12521,7 @@ let packageName = "external-editor"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz"; + url = "https://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz"; sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b"; }; }; @@ -12259,7 +12530,7 @@ let packageName = "external-editor"; version = "2.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz"; + url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz"; sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A=="; }; }; @@ -12389,13 +12660,13 @@ let sha512 = "k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw=="; }; }; - "fast-bitfield-1.2.1" = { + "fast-bitfield-1.2.2" = { name = "fast-bitfield"; packageName = "fast-bitfield"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/fast-bitfield/-/fast-bitfield-1.2.1.tgz"; - sha512 = "OnsvI4w/LRwjv7y10ZTyRsl7A7ROV9SNBhr+sFVzqKjVHV1qCIESU5kHHcS1awJeE03Aa6X52F59HW+w0YI0lg=="; + url = "https://registry.npmjs.org/fast-bitfield/-/fast-bitfield-1.2.2.tgz"; + sha512 = "t8HYqkuE3YEqNcyWlAfh55479aTxO+GpYwvQvJppYqyBfSmRdNIhzY2m09FKN/MENTzq4wH6heHOIvsPyMAwvQ=="; }; }; "fast-deep-equal-1.1.0" = { @@ -12403,7 +12674,7 @@ let packageName = "fast-deep-equal"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz"; + url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz"; sha1 = "c053477817c86b51daa853c81e059b733d023614"; }; }; @@ -12434,13 +12705,13 @@ let sha1 = "8435a9aaa02d79248d17d704e76259301d99280a"; }; }; - "fast-glob-2.2.4" = { + "fast-glob-2.2.6" = { name = "fast-glob"; packageName = "fast-glob"; - version = "2.2.4"; + version = "2.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.4.tgz"; - sha512 = "FjK2nCGI/McyzgNtTESqaWP3trPvHyRyoyY70hxjc3oKPNmDe8taohLZpoVKoUjW85tbU5txaYUZCNtVzygl1g=="; + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.6.tgz"; + sha512 = "0BvMaZc1k9F+MeWWMe8pL6YltFzZYcJsYU7D4JyDA6PAczaXvxqQQ/z+mDF7/4Mw01DeUc+i3CTKajnkANkV4w=="; }; }; "fast-json-parse-1.0.3" = { @@ -12556,7 +12827,7 @@ let packageName = "fecha"; version = "2.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz"; + url = "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz"; sha512 = "lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg=="; }; }; @@ -12619,7 +12890,7 @@ let packageName = "file-type"; version = "3.9.0"; src = fetchurl { - url = "http://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; + url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; sha1 = "257a078384d1db8087bc449d107d52a52672b9e9"; }; }; @@ -12754,7 +13025,7 @@ let packageName = "finalhandler"; version = "0.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.3.3.tgz"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.3.3.tgz"; sha1 = "b1a09aa1e6a607b3541669b09bcb727f460cd426"; }; }; @@ -12763,7 +13034,7 @@ let packageName = "finalhandler"; version = "0.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz"; sha1 = "965a52d9e8d05d2b857548541fb89b53a2497d9b"; }; }; @@ -12781,7 +13052,7 @@ let packageName = "finalhandler"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz"; sha512 = "Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg=="; }; }; @@ -12880,7 +13151,7 @@ let packageName = "find-versions"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/find-versions/-/find-versions-2.0.0.tgz"; + url = "https://registry.npmjs.org/find-versions/-/find-versions-2.0.0.tgz"; sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c"; }; }; @@ -12911,13 +13182,13 @@ let sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; }; }; - "fined-1.1.0" = { + "fined-1.1.1" = { name = "fined"; packageName = "fined"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz"; - sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476"; + url = "https://registry.npmjs.org/fined/-/fined-1.1.1.tgz"; + sha512 = "jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g=="; }; }; "firefox-profile-1.2.0" = { @@ -12974,13 +13245,13 @@ let sha512 = "AHe4x/k9xHlSNPRya0FOCd42qa6ggmW4gtdy6mR0R1vdWtNq9zMd8nmMR5LB7fTNOA1f1nOU+uqaQHP7NMWmVA=="; }; }; - "flagged-respawn-1.0.0" = { + "flagged-respawn-1.0.1" = { name = "flagged-respawn"; packageName = "flagged-respawn"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz"; - sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7"; + url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz"; + sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="; }; }; "flat-cache-1.3.4" = { @@ -13154,13 +13425,13 @@ let sha512 = "calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw=="; }; }; - "follow-redirects-1.5.10" = { + "follow-redirects-1.6.1" = { name = "follow-redirects"; packageName = "follow-redirects"; - version = "1.5.10"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz"; - sha512 = "0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ=="; + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.6.1.tgz"; + sha512 = "t2JCjbzxQpWvbhts3l6SH1DKzSrx8a+SsaVf4h6bG4kOXUuPYS/kg2Lr4gQSb7eemaHqJkOThF1BGyjlUkO1GQ=="; }; }; "for-each-0.3.3" = { @@ -13249,7 +13520,7 @@ let packageName = "form-data"; version = "0.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz"; sha1 = "4ee4346e6eb5362e8344a02075bd8dbd8c7373ea"; }; }; @@ -13258,7 +13529,7 @@ let packageName = "form-data"; version = "1.0.0-rc3"; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz"; sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577"; }; }; @@ -13406,6 +13677,15 @@ let sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; }; }; + "fs-capacitor-1.0.1" = { + name = "fs-capacitor"; + packageName = "fs-capacitor"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/fs-capacitor/-/fs-capacitor-1.0.1.tgz"; + sha512 = "XdZK0Q78WP29Vm3FGgJRhRhrBm51PagovzWtW2kJ3Q6cYJbGtZqWSGTSPwvtEkyjIirFd7b8Yes/dpOYjt4RRQ=="; + }; + }; "fs-chunk-store-1.7.0" = { name = "fs-chunk-store"; packageName = "fs-chunk-store"; @@ -13438,7 +13718,7 @@ let packageName = "fs-extra"; version = "0.24.0"; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz"; sha1 = "d4e4342a96675cb7846633a6099249332b539952"; }; }; @@ -13447,7 +13727,7 @@ let packageName = "fs-extra"; version = "0.26.7"; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz"; sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9"; }; }; @@ -13456,7 +13736,7 @@ let packageName = "fs-extra"; version = "0.30.0"; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz"; sha1 = "f233ffcc08d4da7d432daa449776989db1df93f0"; }; }; @@ -13465,7 +13745,7 @@ let packageName = "fs-extra"; version = "0.6.4"; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz"; sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15"; }; }; @@ -13474,7 +13754,7 @@ let packageName = "fs-extra"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; }; }; @@ -13505,15 +13785,6 @@ let sha512 = "66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ=="; }; }; - "fs-extra-6.0.1" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-6.0.1.tgz"; - sha512 = "GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA=="; - }; - }; "fs-extra-7.0.1" = { name = "fs-extra"; packageName = "fs-extra"; @@ -13595,6 +13866,15 @@ let sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg=="; }; }; + "fsevents-2.0.1" = { + name = "fsevents"; + packageName = "fsevents"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.0.1.tgz"; + sha512 = "p+CXqK/iLvDESUWdn3NA3JVO9HxdfI+iXx8xR3DqWgKZvQNiEVpAyUQo0lmwz8rqksb4xaGerG291xuwwhX2kA=="; + }; + }; "fstream-0.1.31" = { name = "fstream"; packageName = "fstream"; @@ -13622,15 +13902,6 @@ let sha1 = "9c31dae34767018fe1d249b24dada67d092da105"; }; }; - "fswatcher-child-1.1.1" = { - name = "fswatcher-child"; - packageName = "fswatcher-child"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fswatcher-child/-/fswatcher-child-1.1.1.tgz"; - sha512 = "FVDjVhR71TkJ+ud6vnRwCHvCgK9drGRdimWcTLqw8iN88uL5tTX+/xrwigJdcuQGrWYo3TRw9gRzk9xqR0UPPQ=="; - }; - }; "fswin-2.17.1227" = { name = "fswin"; packageName = "fswin"; @@ -13726,7 +13997,7 @@ let packageName = "generate-function"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/generate-function/-/generate-function-1.1.0.tgz"; + url = "https://registry.npmjs.org/generate-function/-/generate-function-1.1.0.tgz"; sha1 = "54c21b080192b16d9877779c5bb81666e772365f"; }; }; @@ -13861,7 +14132,7 @@ let packageName = "get-stream"; version = "2.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"; + url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"; sha1 = "5f38f93f346009666ee0150a054167f91bdd95de"; }; }; @@ -13870,7 +14141,7 @@ let packageName = "get-stream"; version = "3.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; + url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; }; }; @@ -13933,7 +14204,7 @@ let packageName = "gettext-parser"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz"; + url = "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz"; sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679"; }; }; @@ -13951,7 +14222,7 @@ let packageName = "git-config-path"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/git-config-path/-/git-config-path-1.0.1.tgz"; + url = "https://registry.npmjs.org/git-config-path/-/git-config-path-1.0.1.tgz"; sha1 = "6d33f7ed63db0d0e118131503bab3aca47d54664"; }; }; @@ -13964,15 +14235,6 @@ let sha1 = "c57d1145eec16465ab9bfbdf575262b1691624d6"; }; }; - "git-raw-commits-1.3.6" = { - name = "git-raw-commits"; - packageName = "git-raw-commits"; - version = "1.3.6"; - src = fetchurl { - url = "http://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz"; - sha512 = "svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg=="; - }; - }; "git-raw-commits-2.0.0" = { name = "git-raw-commits"; packageName = "git-raw-commits"; @@ -14045,13 +14307,13 @@ let sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce"; }; }; - "github-slugger-1.2.0" = { + "github-slugger-1.2.1" = { name = "github-slugger"; packageName = "github-slugger"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz"; - sha512 = "wIaa75k1vZhyPm9yWrD08A5Xnx/V+RmzGrpjQuLemGKSb77Qukiaei58Bogrl/LZSADDfPzKJX8jhLs4CRTl7Q=="; + url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.1.tgz"; + sha512 = "SsZUjg/P03KPzQBt7OxJPasGw6NRO5uOgiZ5RGXVud5iSIZ0eNZeNp5rTwCxtavrRUa/A77j8mePVc5lEvk0KQ=="; }; }; "glob-3.1.21" = { @@ -14185,10 +14447,19 @@ let packageName = "glob-watcher"; version = "0.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz"; + url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz"; sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b"; }; }; + "glob-watcher-5.0.3" = { + name = "glob-watcher"; + packageName = "glob-watcher"; + version = "5.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.3.tgz"; + sha512 = "8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg=="; + }; + }; "glob2base-0.0.12" = { name = "glob2base"; packageName = "glob2base"; @@ -14262,13 +14533,13 @@ let sha512 = "4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg=="; }; }; - "globals-11.9.0" = { + "globals-11.10.0" = { name = "globals"; packageName = "globals"; - version = "11.9.0"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-11.9.0.tgz"; - sha512 = "5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg=="; + url = "https://registry.npmjs.org/globals/-/globals-11.10.0.tgz"; + sha512 = "0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ=="; }; }; "globals-9.18.0" = { @@ -14285,17 +14556,27 @@ let packageName = "globby"; version = "4.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/globby/-/globby-4.1.0.tgz"; + url = "https://registry.npmjs.org/globby/-/globby-4.1.0.tgz"; sha1 = "080f54549ec1b82a6c60e631fc82e1211dbe95f8"; }; }; - "globby-8.0.1" = { + "globby-8.0.2" = { + name = "globby"; + packageName = "globby"; + version = "8.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz"; + sha512 = "yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w=="; + }; + }; + "globby-git://github.com/nexe/globby.git#de057b69c2bca74391bfd913ed0145ce4e42563a" = { name = "globby"; packageName = "globby"; version = "8.0.1"; - src = fetchurl { - url = "http://registry.npmjs.org/globby/-/globby-8.0.1.tgz"; - sha512 = "oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw=="; + src = fetchgit { + url = "git://github.com/nexe/globby.git"; + rev = "de057b69c2bca74391bfd913ed0145ce4e42563a"; + sha256 = "0a57359385d74a9125d6c26c6cb023d1d34b3753f3089dbe392a53a4d81285da"; }; }; "globule-0.1.0" = { @@ -14307,13 +14588,13 @@ let sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; }; }; - "glogg-1.0.1" = { + "glogg-1.0.2" = { name = "glogg"; packageName = "glogg"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz"; - sha512 = "ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw=="; + url = "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz"; + sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA=="; }; }; "good-listener-1.2.2" = { @@ -14339,7 +14620,7 @@ let packageName = "got"; version = "1.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-1.2.2.tgz"; + url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz"; sha1 = "d9430ba32f6a30218243884418767340aafc0400"; }; }; @@ -14348,7 +14629,7 @@ let packageName = "got"; version = "6.7.1"; src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-6.7.1.tgz"; + url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz"; sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0"; }; }; @@ -14370,13 +14651,13 @@ let sha512 = "qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw=="; }; }; - "got-9.3.2" = { + "got-9.5.1" = { name = "got"; packageName = "got"; - version = "9.3.2"; + version = "9.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-9.3.2.tgz"; - sha512 = "OyKOUg71IKvwb8Uj0KP6EN3+qVVvXmYsFznU1fnwUnKtDbZnwSlAi7muNlu4HhBfN9dImtlgg9e7H0g5qVdaeQ=="; + url = "https://registry.npmjs.org/got/-/got-9.5.1.tgz"; + sha512 = "a6UC2YXj3UPQT3UOzCCovwna4WPpN/OBAiiPSUwQ9gFranGs8HQjidyRmen2esBVlauqLWDbMwSTFDtxYNUv+g=="; }; }; "graceful-fs-1.2.3" = { @@ -14384,7 +14665,7 @@ let packageName = "graceful-fs"; version = "1.2.3"; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364"; }; }; @@ -14393,7 +14674,7 @@ let packageName = "graceful-fs"; version = "2.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0"; }; }; @@ -14402,7 +14683,7 @@ let packageName = "graceful-fs"; version = "3.0.11"; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz"; sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818"; }; }; @@ -14411,7 +14692,7 @@ let packageName = "graceful-fs"; version = "4.1.11"; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"; sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"; }; }; @@ -14469,21 +14750,12 @@ let sha512 = "TyI9jIy2J4j0qgPmOOrHTCtpPqJGN/aurBwc6ZT+bRii+di1I+Wv3obRhVrmBEXet+qkMaEX67dXrwsd3QQM6w=="; }; }; - "graphql-0.12.3" = { - name = "graphql"; - packageName = "graphql"; - version = "0.12.3"; - src = fetchurl { - url = "https://registry.npmjs.org/graphql/-/graphql-0.12.3.tgz"; - sha512 = "Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA=="; - }; - }; "graphql-0.13.2" = { name = "graphql"; packageName = "graphql"; version = "0.13.2"; src = fetchurl { - url = "http://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz"; + url = "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz"; sha512 = "QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog=="; }; }; @@ -14496,13 +14768,13 @@ let sha512 = "gUC4YYsaiSJT1h40krG3J+USGlwhzNTXSb4IOZljn9ag5Tj+RkoXrWp+Kh7WyE3t1NCfab5kzCuxBIvOMERMXw=="; }; }; - "graphql-anywhere-4.1.23" = { + "graphql-anywhere-4.1.24" = { name = "graphql-anywhere"; packageName = "graphql-anywhere"; - version = "4.1.23"; + version = "4.1.24"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.23.tgz"; - sha512 = "8wtmwxWmLzAy52Z4WAw9UiYZ4ViiNXM+2DMOSlg2F7WsVstD0v75uOjCLJQUvbld5kHrgzTxter/THFVkGL+Yw=="; + url = "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.24.tgz"; + sha512 = "g81K7FqXSF3q1iqFWlwiwD+g0SDkPUUa9+Wa+7BOrAe5+7R4BdNWL4dw9BRsJxt0Xx6nOaI2E+VM7QMAucQFvA=="; }; }; "graphql-cli-prepare-1.4.19" = { @@ -14514,15 +14786,6 @@ let sha512 = "PJFm9/DvfZwKz3h2Wyn/5Sr/sX35XsYzNO3olfm5V8qqueNIONI0g7sVqpF7wYdvhEtt/8YA9DjgrGclCbpMfA=="; }; }; - "graphql-config-1.2.1" = { - name = "graphql-config"; - packageName = "graphql-config"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/graphql-config/-/graphql-config-1.2.1.tgz"; - sha512 = "BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q=="; - }; - }; "graphql-config-2.2.1" = { name = "graphql-config"; packageName = "graphql-config"; @@ -14550,22 +14813,22 @@ let sha512 = "7Qh3TzZS3hwZpJbTNfTHXBM6UbzV7DMik9Mc95Rz76yTAs7Wr83xBFsH4Ap1NWlqBgANfO3cLLI4YomDJmO5SA=="; }; }; - "graphql-extensions-0.3.3" = { + "graphql-extensions-0.4.0" = { name = "graphql-extensions"; packageName = "graphql-extensions"; - version = "0.3.3"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.3.3.tgz"; - sha512 = "pudOaHq7Ok+rh1ElzlqFaoYZWGefUNsqn/jX6eKns7rl0VHuB4qZBfhpVLTpquJpM6Y19/hsCYZNPfnUVMFIiA=="; + url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.4.0.tgz"; + sha512 = "8TUgIIUVpXWOcqq9RdmTSHUrhc3a/s+saKv9cCl8TYWHK9vyJIdea7ZaSKHGDthZNcsN+C3LulZYRL3Ah8ukoA=="; }; }; - "graphql-extensions-0.3.6" = { + "graphql-extensions-0.4.1" = { name = "graphql-extensions"; packageName = "graphql-extensions"; - version = "0.3.6"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.3.6.tgz"; - sha512 = "QGnDQ0TkF1YpVE/ZvKVl3bZ1PfwSbynVBcNU5U1DPU56pLkltETORiFL4TQ/Tt7RzagBX/xVaI3q0xJC6h9M5w=="; + url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.4.1.tgz"; + sha512 = "Xei4rBxbsTHU6dYiq9y1xxbpRMU3+Os7yD3vXV5W4HbTaxRMizDmu6LAvV4oBEi0ttwICHARQjYTjDTDhHnxrQ=="; }; }; "graphql-import-0.4.5" = { @@ -14573,7 +14836,7 @@ let packageName = "graphql-import"; version = "0.4.5"; src = fetchurl { - url = "http://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz"; + url = "https://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz"; sha512 = "G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ=="; }; }; @@ -14586,22 +14849,22 @@ let sha512 = "YpwpaPjRUVlw2SN3OPljpWbVRWAhMAyfSba5U47qGMOSsPLi2gYeJtngGpymjm9nk57RFWEpjqwh4+dpYuFAPw=="; }; }; - "graphql-playground-html-1.6.4" = { + "graphql-playground-html-1.6.6" = { name = "graphql-playground-html"; packageName = "graphql-playground-html"; - version = "1.6.4"; + version = "1.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.6.4.tgz"; - sha512 = "mnpAVYSR3TesYsJ5OLJVJMA0muTCw4npsCI1cKMtW35lbA6KljZkLkz3ZWXhEIYPnHKIeUHEtbn1ZGkEXtAxLg=="; + url = "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.6.6.tgz"; + sha512 = "VfCnMK24BwOAGhFzjknlboK0qs92d+1sHUDGQUgIAjOsTSNWmqfgNkDZsONZqUajfuVjOYRd0PxCDkCkaJs7Rw=="; }; }; - "graphql-playground-middleware-express-1.7.6" = { + "graphql-playground-middleware-express-1.7.8" = { name = "graphql-playground-middleware-express"; packageName = "graphql-playground-middleware-express"; - version = "1.7.6"; + version = "1.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.7.6.tgz"; - sha512 = "fICPxYGIdhCxtFlwCnP3uZ2uRWeQ9wj7OkcWUiHNwaFma2TbRD5nNKaPA2u21YWha9xv26qIDxxcdW27F/lcbQ=="; + url = "https://registry.npmjs.org/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.7.8.tgz"; + sha512 = "3wFOfsJGUtWJuGsA+jQhbVMYAI8x1f5noj4wyySPMhLOK13NiElmsNKrV1sUDb0DJaf5tfg72N0ULMfFQagy9A=="; }; }; "graphql-request-1.8.2" = { @@ -14613,13 +14876,13 @@ let sha512 = "dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg=="; }; }; - "graphql-schema-linter-0.1.1" = { + "graphql-schema-linter-0.1.6" = { name = "graphql-schema-linter"; packageName = "graphql-schema-linter"; - version = "0.1.1"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-schema-linter/-/graphql-schema-linter-0.1.1.tgz"; - sha512 = "caZbOgNw08/9p3a+qusmaFi1TklG9ti+KHI6a2yfdp009gyoClWGQ+ElKVIiZkJQSeWCri2s2UFBCZjoM0JwTw=="; + url = "https://registry.npmjs.org/graphql-schema-linter/-/graphql-schema-linter-0.1.6.tgz"; + sha512 = "MlELNaR+kmWZQ2uO7dWqPkqxxXjo7i5ftm6ig6RSgvYDQAnjJ3XJXVTIQzO34n4jRa1k/UI3YQF3t9sYFT0PAw=="; }; }; "graphql-static-binding-0.9.3" = { @@ -14667,6 +14930,15 @@ let sha1 = "d2c177e2f1b17d87f81072cd05311c0754baa420"; }; }; + "graphql-upload-8.0.3" = { + name = "graphql-upload"; + packageName = "graphql-upload"; + version = "8.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/graphql-upload/-/graphql-upload-8.0.3.tgz"; + sha512 = "Wh+Ug8ezLz7zMuLkatM627taNpWdPgyWzZiSXAvgotx27Z15VGhlSVB6BslBfyP8uHJJPdUNXhXDg4Z1a+/UIA=="; + }; + }; "gray-matter-2.1.1" = { name = "gray-matter"; packageName = "gray-matter"; @@ -14726,7 +14998,7 @@ let packageName = "gulp"; version = "3.9.1"; src = fetchurl { - url = "http://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz"; + url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz"; sha1 = "571ce45928dd40af6514fc4011866016c13845b4"; }; }; @@ -14739,12 +15011,21 @@ let sha512 = "7Isf9Y690o/Q5MVjEylH1H7L8WeZ89woW7DnhD5unTintOdZb67KdOayRgp9trUFo+f9UyJtuatV42e/+kghPg=="; }; }; + "gulp-cli-2.0.1" = { + name = "gulp-cli"; + packageName = "gulp-cli"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.0.1.tgz"; + sha512 = "RxujJJdN8/O6IW2nPugl7YazhmrIEjmiVfPKrWt68r71UCaLKS71Hp0gpKT+F6qOUFtr7KqtifDKaAJPRVvMYQ=="; + }; + }; "gulp-less-3.5.0" = { name = "gulp-less"; packageName = "gulp-less"; version = "3.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/gulp-less/-/gulp-less-3.5.0.tgz"; + url = "https://registry.npmjs.org/gulp-less/-/gulp-less-3.5.0.tgz"; sha512 = "FQLY7unaHdTOXG0jlwxeBQcWoPPrTMQZRA7HfYwSNi9IPVx5l7GJEN72mG4ri2yigp/f/VNGUAJnFMJHBmH3iw=="; }; }; @@ -14762,7 +15043,7 @@ let packageName = "gulp-typescript"; version = "4.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/gulp-typescript/-/gulp-typescript-4.0.2.tgz"; + url = "https://registry.npmjs.org/gulp-typescript/-/gulp-typescript-4.0.2.tgz"; sha512 = "Hhbn5Aa2l3T+tnn0KqsG6RRJmcYEsr3byTL2nBpNBeAK8pqug9Od4AwddU4JEI+hRw7mzZyjRbB8DDWR6paGVA=="; }; }; @@ -15149,7 +15430,7 @@ let packageName = "hawk"; version = "3.1.3"; src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; + url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; }; }; @@ -15158,7 +15439,7 @@ let packageName = "he"; version = "0.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/he/-/he-0.5.0.tgz"; + url = "https://registry.npmjs.org/he/-/he-0.5.0.tgz"; sha1 = "2c05ffaef90b68e860f3fd2b54ef580989277ee2"; }; }; @@ -15257,19 +15538,10 @@ let packageName = "hoek"; version = "2.16.3"; src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; + url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; }; }; - "hoek-5.0.4" = { - name = "hoek"; - packageName = "hoek"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/hoek/-/hoek-5.0.4.tgz"; - sha512 = "Alr4ZQgoMlnere5FZJsIyfIjORBqZll5POhDsF4q64dPuJR6rNxXdDxtHSQq8OXRurhmx+PWYEE8bXRROY8h0w=="; - }; - }; "hoek-6.1.2" = { name = "hoek"; packageName = "hoek"; @@ -15374,7 +15646,7 @@ let packageName = "htmlescape"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz"; + url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz"; sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351"; }; }; @@ -15401,7 +15673,7 @@ let packageName = "htmlparser2"; version = "3.7.3"; src = fetchurl { - url = "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz"; + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz"; sha1 = "6a64c77637c08c6f30ec2a8157a53333be7cb05e"; }; }; @@ -15410,7 +15682,7 @@ let packageName = "htmlparser2"; version = "3.8.3"; src = fetchurl { - url = "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz"; + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz"; sha1 = "996c28b191516a8be86501a7d79757e5c70c1068"; }; }; @@ -15441,13 +15713,13 @@ let sha512 = "5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w=="; }; }; - "http-cache-semantics-4.0.1" = { + "http-cache-semantics-4.0.2" = { name = "http-cache-semantics"; packageName = "http-cache-semantics"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; - sha512 = "OO/9K7uFN30qwAKvslzmCTbimZ/uRjtdN5S50vvWLwUKqFuZj0n96XyCzF5tHRHEO/Q4JYC01hv41gkX06gmHA=="; + url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz"; + sha512 = "laeSTWIkuFa6lUgZAt+ic9RwOSEwbi9VDQNcCvMFO4sZiDc2Ha8DaZVCJnfpLLQCcS8rvCnIWYmz0POLxt7Dew=="; }; }; "http-errors-1.3.1" = { @@ -15455,7 +15727,7 @@ let packageName = "http-errors"; version = "1.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz"; + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz"; sha1 = "197e22cdebd4198585e8694ef6786197b91ed942"; }; }; @@ -15464,7 +15736,7 @@ let packageName = "http-errors"; version = "1.6.3"; src = fetchurl { - url = "http://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"; + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"; sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d"; }; }; @@ -15590,7 +15862,7 @@ let packageName = "humanize-plus"; version = "1.8.2"; src = fetchurl { - url = "http://registry.npmjs.org/humanize-plus/-/humanize-plus-1.8.2.tgz"; + url = "https://registry.npmjs.org/humanize-plus/-/humanize-plus-1.8.2.tgz"; sha1 = "a65b34459ad6367adbb3707a82a3c9f916167030"; }; }; @@ -15603,13 +15875,13 @@ let sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w=="; }; }; - "hypercore-6.22.0" = { + "hypercore-6.22.4" = { name = "hypercore"; packageName = "hypercore"; - version = "6.22.0"; + version = "6.22.4"; src = fetchurl { - url = "https://registry.npmjs.org/hypercore/-/hypercore-6.22.0.tgz"; - sha512 = "x/6qeNqsV+CKrKAfSkHR5IHbP7Rv5oVhAx2BeDcdF7Y9cqKsus9O0/4hylb8mv35pXSXXGAthXyfrsYGiSSJZw=="; + url = "https://registry.npmjs.org/hypercore/-/hypercore-6.22.4.tgz"; + sha512 = "xzJXUzc27pfsWYV/dRd+P7RyLGDhSEEBJyodi5gpN8VT/kC8CpNJ0vRcYFpP+DxrfIHhylyvWVUj0lW1dVFiag=="; }; }; "hypercore-crypto-1.0.0" = { @@ -15621,22 +15893,22 @@ let sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw=="; }; }; - "hypercore-protocol-6.8.0" = { + "hypercore-protocol-6.9.0" = { name = "hypercore-protocol"; packageName = "hypercore-protocol"; - version = "6.8.0"; + version = "6.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.8.0.tgz"; - sha512 = "WJOcnhiHAZpFVcvc1+tSmhcZaC76fQBKz6yyN1pFmhhqu8knNMOm6pcUFU2w+/mVFcXSbHhSfRtKwpNBu0EZSQ=="; + url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.9.0.tgz"; + sha512 = "80kUQN6aZhdip4vHRhLyYrJ8Uhj34Xw1RdAtMwQNChoOlnVAvOzVh+ffIs6NiqBF4ExU25ToOvPTaYv+pYZBbg=="; }; }; - "hyperdrive-9.14.0" = { + "hyperdrive-9.14.2" = { name = "hyperdrive"; packageName = "hyperdrive"; - version = "9.14.0"; + version = "9.14.2"; src = fetchurl { - url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.14.0.tgz"; - sha512 = "LTgbsJ+9ZrdQfLaXXc01kQMttaicHhSOtUM3v/k7ORwXJziqQ2eMQ80+8Tfg67ja+w6zrdl5HYOK+mnlwQpCww=="; + url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.14.2.tgz"; + sha512 = "er9ZPrOypGpDVMNC3l08JT1rLx/Q6RJnFu6z0iGXvdDxudAtJ90hgoIQfl6qdyjC8pD2t1KXaKRwRSdznhX66A=="; }; }; "hyperdrive-http-4.3.4" = { @@ -15689,7 +15961,7 @@ let packageName = "iconv-lite"; version = "0.4.11"; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz"; sha1 = "2ecb42fd294744922209a2e7c404dac8793d8ade"; }; }; @@ -15698,7 +15970,7 @@ let packageName = "iconv-lite"; version = "0.4.13"; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"; sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2"; }; }; @@ -15725,7 +15997,7 @@ let packageName = "iconv-lite"; version = "0.4.8"; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"; sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20"; }; }; @@ -15864,6 +16136,15 @@ let sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; }; }; + "import-fresh-3.0.0" = { + name = "import-fresh"; + packageName = "import-fresh"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz"; + sha512 = "pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ=="; + }; + }; "import-global-0.1.0" = { name = "import-global"; packageName = "import-global"; @@ -16085,7 +16366,7 @@ let packageName = "inquirer"; version = "0.10.1"; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz"; sha1 = "ea25e4ce69ca145e05c99e46dcfec05e4012594a"; }; }; @@ -16094,7 +16375,7 @@ let packageName = "inquirer"; version = "0.12.0"; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz"; sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e"; }; }; @@ -16103,7 +16384,7 @@ let packageName = "inquirer"; version = "0.8.5"; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz"; sha1 = "dbd740cf6ca3b731296a63ce6f6d961851f336df"; }; }; @@ -16112,7 +16393,7 @@ let packageName = "inquirer"; version = "1.2.3"; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-1.2.3.tgz"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-1.2.3.tgz"; sha1 = "4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918"; }; }; @@ -16125,24 +16406,24 @@ let sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ=="; }; }; - "inquirer-5.1.0" = { - name = "inquirer"; - packageName = "inquirer"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-5.1.0.tgz"; - sha512 = "kn7N70US1MSZHZHSGJLiZ7iCwwncc7b0gc68YtlX29OjI3Mp0tSVV+snVXpZ1G+ONS3Ac9zd1m6hve2ibLDYfA=="; - }; - }; "inquirer-5.2.0" = { name = "inquirer"; packageName = "inquirer"; version = "5.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz"; sha512 = "E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ=="; }; }; + "inquirer-6.2.0" = { + name = "inquirer"; + packageName = "inquirer"; + version = "6.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz"; + sha512 = "QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg=="; + }; + }; "inquirer-6.2.1" = { name = "inquirer"; packageName = "inquirer"; @@ -16233,6 +16514,15 @@ let sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"; }; }; + "interpret-1.2.0" = { + name = "interpret"; + packageName = "interpret"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz"; + sha512 = "mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw=="; + }; + }; "intersect-1.0.1" = { name = "intersect"; packageName = "intersect"; @@ -16247,7 +16537,7 @@ let packageName = "into-stream"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz"; + url = "https://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz"; sha1 = "db9b003694453eae091d8a5c84cc11507b781d31"; }; }; @@ -16256,7 +16546,7 @@ let packageName = "into-stream"; version = "3.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz"; + url = "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz"; sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6"; }; }; @@ -16359,13 +16649,13 @@ let sha1 = "2ca9b033651111855412f16be5d77c62a458a766"; }; }; - "is-3.2.1" = { + "is-3.3.0" = { name = "is"; packageName = "is"; - version = "3.2.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/is/-/is-3.2.1.tgz"; - sha1 = "d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5"; + url = "https://registry.npmjs.org/is/-/is-3.3.0.tgz"; + sha512 = "nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg=="; }; }; "is-absolute-0.1.7" = { @@ -16481,7 +16771,7 @@ let packageName = "is-builtin-module"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; + url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; }; }; @@ -16877,7 +17167,7 @@ let packageName = "is-obj"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; + url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; }; }; @@ -17169,13 +17459,13 @@ let sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; }; }; - "is-valid-domain-0.0.6" = { + "is-valid-domain-0.0.7" = { name = "is-valid-domain"; packageName = "is-valid-domain"; - version = "0.0.6"; + version = "0.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.0.6.tgz"; - sha512 = "XXiNRcLcNKeb0LB3PzB39gJa8QiA+6nnc4NX9zNvFQcaITWU+64hfVqaVppbSd3tSVlJttW6sINkX3xLKPax7A=="; + url = "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.0.7.tgz"; + sha512 = "/T1z/cPJQO6F8N77gTm5iWFyzmUwh/Je2C8yZVxEg8+5evsMqeDh++IoFZQCoPsIbm90OWhOfs2hmy7k3APxEg=="; }; }; "is-valid-glob-1.0.0" = { @@ -17349,15 +17639,6 @@ let sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; }; }; - "iterall-1.1.3" = { - name = "iterall"; - packageName = "iterall"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz"; - sha512 = "Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ=="; - }; - }; "iterall-1.2.2" = { name = "iterall"; packageName = "iterall"; @@ -17367,13 +17648,13 @@ let sha512 = "yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA=="; }; }; - "iterare-0.0.8" = { + "iterare-1.1.2" = { name = "iterare"; packageName = "iterare"; - version = "0.0.8"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/iterare/-/iterare-0.0.8.tgz"; - sha1 = "a969a80a1fbff6b78f28776594d7bc2bdfab6aad"; + url = "https://registry.npmjs.org/iterare/-/iterare-1.1.2.tgz"; + sha512 = "25rVYmj/dDvTR6zOa9jY1Ihd6USLa0J508Ub2iy7Aga+xu9JMbjDds2Uh03ReDGbva/YN3s3Ybi+Do0nOX6wAg=="; }; }; "iterators-0.1.0" = { @@ -17466,13 +17747,13 @@ let sha1 = "06d4912255093419477d425633606e0e90782967"; }; }; - "joi-13.7.0" = { + "joi-14.3.1" = { name = "joi"; packageName = "joi"; - version = "13.7.0"; + version = "14.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/joi/-/joi-13.7.0.tgz"; - sha512 = "xuY5VkHfeOYK3Hdi91ulocfuFopwgbSORmIwzcwHKESQhC7w1kD5jaVSPnqDxS2I8t3RZ9omCKAxNwXN5zG1/Q=="; + url = "https://registry.npmjs.org/joi/-/joi-14.3.1.tgz"; + sha512 = "LQDdM+pkOrpAn4Lp+neNIFV3axv1Vna3j38bisbQhETPMANYRbFJFUyOZcOClYvM/hppMhGWuKSFEK9vjrB+bQ=="; }; }; "jquery-3.3.1" = { @@ -17493,13 +17774,13 @@ let sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4"; }; }; - "js-base64-2.4.9" = { + "js-base64-2.5.0" = { name = "js-base64"; packageName = "js-base64"; - version = "2.4.9"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.9.tgz"; - sha512 = "xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ=="; + url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.0.tgz"; + sha512 = "wlEBIZ5LP8usDylWbDNhKPEFVFdI5hCHpnVoT/Ysvoi/PRhJENm/Rlh9TvjYB38HFfKZN7OzEbRjmjvLkFw11g=="; }; }; "js-beautify-1.8.9" = { @@ -17511,13 +17792,13 @@ let sha512 = "MwPmLywK9RSX0SPsUJjN7i+RQY9w/yC17Lbrq9ViEefpLRgqAR2BgrMN2AbifkUuhDV8tRauLhLda/9+bE0YQA=="; }; }; - "js-levenshtein-1.1.4" = { + "js-levenshtein-1.1.6" = { name = "js-levenshtein"; packageName = "js-levenshtein"; - version = "1.1.4"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.4.tgz"; - sha512 = "PxfGzSs0ztShKrUYPIn5r0MtyAhYcCwmndozzpz8YObbPnD1jFxzlBGbRnX2mIu6Z13xN6+PTu05TQFnZFlzow=="; + url = "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz"; + sha512 = "X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g=="; }; }; "js-message-1.0.5" = { @@ -17583,6 +17864,15 @@ let sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A=="; }; }; + "js-yaml-3.12.1" = { + name = "js-yaml"; + packageName = "js-yaml"; + version = "3.12.1"; + src = fetchurl { + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.1.tgz"; + sha512 = "um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA=="; + }; + }; "js-yaml-3.7.0" = { name = "js-yaml"; packageName = "js-yaml"; @@ -17615,7 +17905,7 @@ let packageName = "jsdom"; version = "7.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz"; + url = "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz"; sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e"; }; }; @@ -17624,7 +17914,7 @@ let packageName = "jsesc"; version = "0.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; }; }; @@ -17633,7 +17923,7 @@ let packageName = "jsesc"; version = "1.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; }; }; @@ -17660,7 +17950,7 @@ let packageName = "json-buffer"; version = "2.0.11"; src = fetchurl { - url = "http://registry.npmjs.org/json-buffer/-/json-buffer-2.0.11.tgz"; + url = "https://registry.npmjs.org/json-buffer/-/json-buffer-2.0.11.tgz"; sha1 = "3e441fda3098be8d1e3171ad591bc62a33e2d55f"; }; }; @@ -17831,7 +18121,7 @@ let packageName = "json5"; version = "0.5.1"; src = fetchurl { - url = "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; + url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; }; }; @@ -17840,7 +18130,7 @@ let packageName = "json5"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; + url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; }; }; @@ -17867,7 +18157,7 @@ let packageName = "jsonfile"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz"; sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd"; }; }; @@ -17876,7 +18166,7 @@ let packageName = "jsonfile"; version = "2.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"; sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"; }; }; @@ -17948,7 +18238,7 @@ let packageName = "jsonwebtoken"; version = "8.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz"; + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz"; sha512 = "l8rUBr0fqYYwPc8/ZGrue7GiW7vWdZtZqelxo4Sd5lMvuEeCK8/wS54sEo6tJhdZ6hqfutsj6COgC0d1XdbHGw=="; }; }; @@ -18034,6 +18324,15 @@ let sha1 = "f431b4b7f072dc500a5f10ce7f4ec71930e70134"; }; }; + "just-debounce-1.0.0" = { + name = "just-debounce"; + packageName = "just-debounce"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz"; + sha1 = "87fccfaeffc0b68cd19d55f6722943f929ea35ea"; + }; + }; "just-detect-adblock-1.0.0" = { name = "just-detect-adblock"; packageName = "just-detect-adblock"; @@ -18066,7 +18365,7 @@ let packageName = "k-bucket"; version = "0.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/k-bucket/-/k-bucket-0.6.0.tgz"; + url = "https://registry.npmjs.org/k-bucket/-/k-bucket-0.6.0.tgz"; sha1 = "afc532545f69d466293e887b00d5fc73377c3abb"; }; }; @@ -18075,7 +18374,7 @@ let packageName = "k-bucket"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/k-bucket/-/k-bucket-2.0.1.tgz"; + url = "https://registry.npmjs.org/k-bucket/-/k-bucket-2.0.1.tgz"; sha1 = "58cccb244f563326ba893bf5c06a35f644846daa"; }; }; @@ -18165,7 +18464,7 @@ let packageName = "kew"; version = "0.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; + url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; }; }; @@ -18201,7 +18500,7 @@ let packageName = "kind-of"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz"; + url = "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz"; sha1 = "140a3d2d41a36d2efcfa9377b62c24f8495a5c44"; }; }; @@ -18210,7 +18509,7 @@ let packageName = "kind-of"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz"; + url = "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz"; sha1 = "018ec7a4ce7e3a86cb9141be519d24c8faa981b5"; }; }; @@ -18268,15 +18567,6 @@ let sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6"; }; }; - "klaw-sync-4.0.0" = { - name = "klaw-sync"; - packageName = "klaw-sync"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/klaw-sync/-/klaw-sync-4.0.0.tgz"; - sha512 = "go/5tXbgLkgwxQ2c2ewaMen6TpQtI9fTzzmTdlSGK8XxKcFSsJvn/Sgn75Vg+mOJwkKVPrqLw2Xq7x/zP1v7PQ=="; - }; - }; "knockout-3.5.0-rc2" = { name = "knockout"; packageName = "knockout"; @@ -18318,7 +18608,7 @@ let packageName = "labeled-stream-splicer"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz"; + url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz"; sha512 = "MC94mHZRvJ3LfykJlTUipBqenZz1pacOZEMhhQ8dMGcDHs0SBE5GbsavUXV7YtP3icBW17W0Zy1I0lfASmo9Pg=="; }; }; @@ -18331,6 +18621,15 @@ let sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a"; }; }; + "last-run-1.1.1" = { + name = "last-run"; + packageName = "last-run"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz"; + sha1 = "45b96942c17b1c79c772198259ba943bebf8ca5b"; + }; + }; "latest-version-3.1.0" = { name = "latest-version"; packageName = "latest-version"; @@ -18349,13 +18648,13 @@ let sha512 = "On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw=="; }; }; - "layered-graph-1.1.2" = { + "layered-graph-1.1.3" = { name = "layered-graph"; packageName = "layered-graph"; - version = "1.1.2"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/layered-graph/-/layered-graph-1.1.2.tgz"; - sha512 = "OaV2u8eMWxUkVYTGhXKDBjFBVPONubDJfnw6dy6ndZDTANfZeeapq35x3oWnqpW1GxbulXuf7fMhxy97r+k2Sg=="; + url = "https://registry.npmjs.org/layered-graph/-/layered-graph-1.1.3.tgz"; + sha512 = "0lACDagchA0cEiOxP90bLJm8Asxw5p089BozVvPAcKYPigQBxA1Ca4foEPBuz4x8RRZYybiksc/qBR1YurSUHA=="; }; }; "lazy-1.0.11" = { @@ -18736,22 +19035,22 @@ let sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8"; }; }; - "libsodium-0.7.3" = { + "libsodium-0.7.4" = { name = "libsodium"; packageName = "libsodium"; - version = "0.7.3"; + version = "0.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.3.tgz"; - sha512 = "ld+deUNqSsZYbAobUs63UyduPq8ICp/Ul/5lbvBIYpuSNWpPRU0PIxbW+xXipVZtuopR6fIz9e0tTnNuPMNeqw=="; + url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.4.tgz"; + sha512 = "fTU3vUdrxQzhPAAjmTSqKk4LzYbR0OtcYjp1P92AlH50JIxXZFEIXWh1yryCmU6RLGfwS2IzBdZjbmpYf/TlyQ=="; }; }; - "libsodium-wrappers-0.7.3" = { + "libsodium-wrappers-0.7.4" = { name = "libsodium-wrappers"; packageName = "libsodium-wrappers"; - version = "0.7.3"; + version = "0.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.3.tgz"; - sha512 = "dw5Jh6TZ5qc5rQVZe3JrSO/J05CE+DmAPnqD7Q2glBUE969xZ6o3fchnUxyPlp6ss3x0MFxmdJntveFN+XTg1g=="; + url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.4.tgz"; + sha512 = "axKkW01L0q+urLeE7UMSZKWwk4LrRbi6s5pjKBAvbgDBYnsSaolK1oN/Syilm1dqJFkJQNi6qodwOp8dzSoc9Q=="; }; }; "lie-3.1.1" = { @@ -18772,6 +19071,15 @@ let sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec"; }; }; + "lightercollective-0.1.0" = { + name = "lightercollective"; + packageName = "lightercollective"; + version = "0.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lightercollective/-/lightercollective-0.1.0.tgz"; + sha512 = "J9tg5uraYoQKaWbmrzDDexbG6hHnMcWS1qLYgJSWE+mpA3U5OCSeMUhb+K55otgZJ34oFdR0ECvdIb3xuO5JOQ=="; + }; + }; "linewise-0.0.3" = { name = "linewise"; packageName = "linewise"; @@ -18813,7 +19121,7 @@ let packageName = "load-json-file"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; }; }; @@ -18822,7 +19130,7 @@ let packageName = "load-json-file"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; }; }; @@ -18844,13 +19152,13 @@ let sha512 = "By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw=="; }; }; - "loader-utils-1.1.0" = { + "loader-utils-1.2.3" = { name = "loader-utils"; packageName = "loader-utils"; - version = "1.1.0"; + version = "1.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz"; - sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd"; + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"; + sha512 = "fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA=="; }; }; "locate-path-2.0.0" = { @@ -18903,7 +19211,7 @@ let packageName = "lodash"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"; sha1 = "8f57560c83b59fc270bd3d561b690043430e2551"; }; }; @@ -18912,7 +19220,7 @@ let packageName = "lodash"; version = "2.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e"; }; }; @@ -18921,7 +19229,7 @@ let packageName = "lodash"; version = "3.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-3.1.0.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-3.1.0.tgz"; sha1 = "d41b8b33530cb3be088853208ad30092d2c27961"; }; }; @@ -18930,7 +19238,7 @@ let packageName = "lodash"; version = "3.10.1"; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; }; }; @@ -18966,7 +19274,7 @@ let packageName = "lodash"; version = "4.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"; sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9"; }; }; @@ -19330,15 +19638,6 @@ let sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35"; }; }; - "lodash.camelcase-4.3.0" = { - name = "lodash.camelcase"; - packageName = "lodash.camelcase"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; - sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6"; - }; - }; "lodash.clone-4.5.0" = { name = "lodash.clone"; packageName = "lodash.clone"; @@ -19411,15 +19710,6 @@ let sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; }; }; - "lodash.every-4.6.0" = { - name = "lodash.every"; - packageName = "lodash.every"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.every/-/lodash.every-4.6.0.tgz"; - sha1 = "eb89984bebc4364279bb3aefbbd1ca19bfa6c6a7"; - }; - }; "lodash.filter-4.6.0" = { name = "lodash.filter"; packageName = "lodash.filter"; @@ -19618,15 +19908,6 @@ let sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; }; }; - "lodash.kebabcase-4.1.1" = { - name = "lodash.kebabcase"; - packageName = "lodash.kebabcase"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz"; - sha1 = "8489b1cb0d29ff88195cceca448ff6d6cc295c36"; - }; - }; "lodash.keys-2.4.1" = { name = "lodash.keys"; packageName = "lodash.keys"; @@ -19654,15 +19935,6 @@ let sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; }; }; - "lodash.maxby-4.6.0" = { - name = "lodash.maxby"; - packageName = "lodash.maxby"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.maxby/-/lodash.maxby-4.6.0.tgz"; - sha1 = "082240068f3c7a227aa00a8380e4f38cf0786e3d"; - }; - }; "lodash.memoize-3.0.4" = { name = "lodash.memoize"; packageName = "lodash.memoize"; @@ -19690,15 +19962,6 @@ let sha512 = "AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ=="; }; }; - "lodash.mergewith-4.6.1" = { - name = "lodash.mergewith"; - packageName = "lodash.mergewith"; - version = "4.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz"; - sha512 = "eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ=="; - }; - }; "lodash.noop-2.4.1" = { name = "lodash.noop"; packageName = "lodash.noop"; @@ -19708,15 +19971,6 @@ let sha1 = "4fb54f816652e5ae10e8f72f717a388c7326538a"; }; }; - "lodash.omit-4.5.0" = { - name = "lodash.omit"; - packageName = "lodash.omit"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz"; - sha1 = "6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60"; - }; - }; "lodash.once-4.1.1" = { name = "lodash.once"; packageName = "lodash.once"; @@ -19807,15 +20061,6 @@ let sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; }; }; - "lodash.snakecase-4.1.1" = { - name = "lodash.snakecase"; - packageName = "lodash.snakecase"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz"; - sha1 = "39d714a35357147837aefd64b5dcbb16becd8f8d"; - }; - }; "lodash.some-4.6.0" = { name = "lodash.some"; packageName = "lodash.some"; @@ -19834,15 +20079,6 @@ let sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; }; }; - "lodash.startcase-4.4.0" = { - name = "lodash.startcase"; - packageName = "lodash.startcase"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz"; - sha1 = "9436e34ed26093ed7ffae1936144350915d9add8"; - }; - }; "lodash.support-2.4.1" = { name = "lodash.support"; packageName = "lodash.support"; @@ -19906,15 +20142,6 @@ let sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; }; }; - "lodash.topairs-4.3.0" = { - name = "lodash.topairs"; - packageName = "lodash.topairs"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.topairs/-/lodash.topairs-4.3.0.tgz"; - sha1 = "3b6deaa37d60fb116713c46c5f17ea190ec48d64"; - }; - }; "lodash.union-4.6.0" = { name = "lodash.union"; packageName = "lodash.union"; @@ -19942,15 +20169,6 @@ let sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21"; }; }; - "lodash.upperfirst-4.3.1" = { - name = "lodash.upperfirst"; - packageName = "lodash.upperfirst"; - version = "4.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz"; - sha1 = "1365edf431480481ef0d1c68957a5ed99d49f7ce"; - }; - }; "log-symbols-1.0.2" = { name = "log-symbols"; packageName = "log-symbols"; @@ -20122,15 +20340,6 @@ let sha1 = "5b46f80147edee578870f086d04821cf998e551f"; }; }; - "lowdb-0.15.5" = { - name = "lowdb"; - packageName = "lowdb"; - version = "0.15.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lowdb/-/lowdb-0.15.5.tgz"; - sha1 = "9ade105df8aa573692d1221622b85414fbf4fa96"; - }; - }; "lowdb-1.0.0" = { name = "lowdb"; packageName = "lowdb"; @@ -20199,7 +20408,7 @@ let packageName = "lru-cache"; version = "2.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz"; sha1 = "ec2bba603f4c5bb3e7a1bf62ce1c1dbc1d474e08"; }; }; @@ -20208,7 +20417,7 @@ let packageName = "lru-cache"; version = "2.7.3"; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; }; }; @@ -20307,7 +20516,7 @@ let packageName = "magic-string"; version = "0.22.5"; src = fetchurl { - url = "http://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz"; + url = "https://registry.npmjs.org/magic-string/-/magic-string-0.22.5.tgz"; sha512 = "oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w=="; }; }; @@ -20325,7 +20534,7 @@ let packageName = "magnet-uri"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz"; + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz"; sha1 = "d331d3dfcd3836565ade0fc3ca315e39217bb209"; }; }; @@ -20334,7 +20543,7 @@ let packageName = "magnet-uri"; version = "4.2.3"; src = fetchurl { - url = "http://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.3.tgz"; + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.3.tgz"; sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8"; }; }; @@ -20410,6 +20619,15 @@ let sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; }; }; + "mamacro-0.0.3" = { + name = "mamacro"; + packageName = "mamacro"; + version = "0.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz"; + sha512 = "qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA=="; + }; + }; "map-age-cleaner-0.1.3" = { name = "map-age-cleaner"; packageName = "map-age-cleaner"; @@ -20433,7 +20651,7 @@ let packageName = "map-filter-reduce"; version = "2.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/map-filter-reduce/-/map-filter-reduce-2.2.1.tgz"; + url = "https://registry.npmjs.org/map-filter-reduce/-/map-filter-reduce-2.2.1.tgz"; sha1 = "632b127c3ae5d6ad9e21cfdd9691b63b8944fcd2"; }; }; @@ -20451,7 +20669,7 @@ let packageName = "map-merge"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/map-merge/-/map-merge-1.1.0.tgz"; + url = "https://registry.npmjs.org/map-merge/-/map-merge-1.1.0.tgz"; sha1 = "6a6fc58c95d8aab46c2bdde44d515b6ee06fce34"; }; }; @@ -20487,7 +20705,7 @@ let packageName = "map-stream"; version = "0.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; + url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194"; }; }; @@ -20550,7 +20768,7 @@ let packageName = "marked"; version = "0.3.19"; src = fetchurl { - url = "http://registry.npmjs.org/marked/-/marked-0.3.19.tgz"; + url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz"; sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; }; }; @@ -20572,13 +20790,13 @@ let sha1 = "de819fdbcd84dccd8fae59c6aeb79615b9d266ac"; }; }; - "math-random-1.0.1" = { + "math-random-1.0.2" = { name = "math-random"; packageName = "math-random"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz"; - sha1 = "8b3aac588b8a66e4975e3cdea67f7bb329601fac"; + url = "https://registry.npmjs.org/math-random/-/math-random-1.0.2.tgz"; + sha512 = "Bp2Bx2wFaUymE7pWi0bbldiheIXMvyzC3hRkT5YAv2qiqqJO5VB8KafgYgZmGCxkTmloLuAx3Jv2OmJ66990mg=="; }; }; "md5-2.2.1" = { @@ -20626,13 +20844,13 @@ let sha1 = "4c8abb6ba7cabdc892d39228c3faa2556e09cf87"; }; }; - "mdns-js-1.0.1" = { + "mdns-js-1.0.3" = { name = "mdns-js"; packageName = "mdns-js"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/mdns-js/-/mdns-js-1.0.1.tgz"; - sha512 = "dwEtMzmoZCQcGlr004J4m2+W6dCMpCoGQ5kYIEY+7rMPdMM7ztT+1qD9ExmottvLGgbqAVsjllhwU8PyusecPg=="; + url = "https://registry.npmjs.org/mdns-js/-/mdns-js-1.0.3.tgz"; + sha512 = "+6NHS48WZ7na7jkE9PB9dRbBGvY0FvAp8nTGp3/u/05WIyq/B37OVfMppIbHyoo9D4yocJGax4Krxfz3nU7EbQ=="; }; }; "mdns-js-packet-0.2.0" = { @@ -20658,17 +20876,17 @@ let packageName = "media-typer"; version = "0.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; + url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; }; }; - "mediasource-2.2.2" = { + "mediasource-2.3.0" = { name = "mediasource"; packageName = "mediasource"; - version = "2.2.2"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/mediasource/-/mediasource-2.2.2.tgz"; - sha512 = "yIyAJMcu1mudTkxZ0jDAKnZJJba4eWPCxxtZRMpoaA4/AI7m7nqbRjmdxmi+x3hKTohb5vC9Yd3IBF/SUzp1vQ=="; + url = "https://registry.npmjs.org/mediasource/-/mediasource-2.3.0.tgz"; + sha512 = "fqm86UwHvAnneIv40Uy1sDQaFtAByq/k0SQ3uCtbnEeSQNT1s5TDHCZOD1VmYCHwfY1jL2NjoZVwzZKYqy3L7A=="; }; }; "mem-1.1.0" = { @@ -20743,13 +20961,13 @@ let sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; }; }; - "memory-pager-1.2.0" = { + "memory-pager-1.5.0" = { name = "memory-pager"; packageName = "memory-pager"; - version = "1.2.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/memory-pager/-/memory-pager-1.2.0.tgz"; - sha512 = "Xhn92T9hAzhAiK57oII2ypipea+7Cd6Ja3iEmcdH2z4ETKJ5HVGZ2zzJwVEmRFq776ZQJdpCf6xKBq4aeR5rnw=="; + url = "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz"; + sha512 = "ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg=="; }; }; "memorystore-1.6.0" = { @@ -20761,13 +20979,13 @@ let sha1 = "1fb5fb5f0b2edf1add184917e918f094a9ff3465"; }; }; - "menu-string-1.2.0" = { + "menu-string-1.3.0" = { name = "menu-string"; packageName = "menu-string"; - version = "1.2.0"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/menu-string/-/menu-string-1.2.0.tgz"; - sha512 = "b6RTFmSlLjs20Qninl0Wq6dOstjpaPM2pQ63li06pLVTGIIoxjuMRbOmYbGW8l73/AiGNoCK9yXfdfIpLIURPQ=="; + url = "https://registry.npmjs.org/menu-string/-/menu-string-1.3.0.tgz"; + sha512 = "ctDyraFPyJDXi6RWgWZ8SyDk2bAsFaBpobprCl7xbcfQamjtfuaN8+lcWUt8ARYfQKb1f8mcPVhQ+Q2ObeD/3A=="; }; }; "meow-3.7.0" = { @@ -20775,7 +20993,7 @@ let packageName = "meow"; version = "3.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; + url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; sha1 = "72cb668b425228290abbfa856892587308a801fb"; }; }; @@ -20887,6 +21105,15 @@ let sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4"; }; }; + "method-override-3.0.0" = { + name = "method-override"; + packageName = "method-override"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz"; + sha512 = "IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA=="; + }; + }; "methods-0.0.1" = { name = "methods"; packageName = "methods"; @@ -20973,7 +21200,7 @@ let packageName = "mime"; version = "1.2.11"; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10"; }; }; @@ -20982,7 +21209,7 @@ let packageName = "mime"; version = "1.2.4"; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.4.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz"; sha1 = "11b5fdaf29c2509255176b80ad520294f5de92b7"; }; }; @@ -20991,7 +21218,7 @@ let packageName = "mime"; version = "1.2.6"; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.6.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.6.tgz"; sha1 = "b1f86c768c025fa87b48075f1709f28aeaf20365"; }; }; @@ -21000,7 +21227,7 @@ let packageName = "mime"; version = "1.3.4"; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53"; }; }; @@ -21036,7 +21263,7 @@ let packageName = "mime-db"; version = "1.12.0"; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz"; sha1 = "3d0c63180f458eb10d325aaa37d7c58ae312e9d7"; }; }; @@ -21045,7 +21272,7 @@ let packageName = "mime-db"; version = "1.33.0"; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz"; sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; }; }; @@ -21063,7 +21290,7 @@ let packageName = "mime-types"; version = "2.0.14"; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz"; sha1 = "310e159db23e077f8bb22b748dabfa4957140aa6"; }; }; @@ -21072,7 +21299,7 @@ let packageName = "mime-types"; version = "2.1.18"; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; }; }; @@ -21189,7 +21416,7 @@ let packageName = "minimist"; version = "0.0.10"; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; }; }; @@ -21198,7 +21425,7 @@ let packageName = "minimist"; version = "0.0.8"; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; }; }; @@ -21207,7 +21434,7 @@ let packageName = "minimist"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; }; }; @@ -21279,7 +21506,7 @@ let packageName = "mkdirp"; version = "0.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e"; }; }; @@ -21288,7 +21515,7 @@ let packageName = "mkdirp"; version = "0.3.5"; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7"; }; }; @@ -21297,7 +21524,7 @@ let packageName = "mkdirp"; version = "0.5.1"; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; }; }; @@ -21319,13 +21546,13 @@ let sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d"; }; }; - "mksnapshot-0.3.1" = { + "mksnapshot-0.3.4" = { name = "mksnapshot"; packageName = "mksnapshot"; - version = "0.3.1"; + version = "0.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/mksnapshot/-/mksnapshot-0.3.1.tgz"; - sha1 = "2501c05657436d742ce958a4ff92c77e40dd37e6"; + url = "https://registry.npmjs.org/mksnapshot/-/mksnapshot-0.3.4.tgz"; + sha512 = "FgUTiWiY+35LgL95P/MDYrBuQO5o0s3MmaWKX6ZJWoX4vMOY9vPsAv763l1OSSelL9jPsBQ/wf4bzfqTLNPSFg=="; }; }; "mocha-2.5.3" = { @@ -21333,7 +21560,7 @@ let packageName = "mocha"; version = "2.5.3"; src = fetchurl { - url = "http://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz"; + url = "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz"; sha1 = "161be5bdeb496771eb9b35745050b622b5aefc58"; }; }; @@ -21382,12 +21609,21 @@ let sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66"; }; }; + "moment-2.23.0" = { + name = "moment"; + packageName = "moment"; + version = "2.23.0"; + src = fetchurl { + url = "https://registry.npmjs.org/moment/-/moment-2.23.0.tgz"; + sha512 = "3IE39bHVqFbWWaPOMHZF98Q9c3LDKGTmypMiTM2QygGXXElkFWIH7GxfmlwmY2vwa+wmNsoYZmG2iusf1ZjJoA=="; + }; + }; "moment-2.7.0" = { name = "moment"; packageName = "moment"; version = "2.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.7.0.tgz"; + url = "https://registry.npmjs.org/moment/-/moment-2.7.0.tgz"; sha1 = "359a19ec634cda3c706c8709adda54c0329aaec4"; }; }; @@ -21432,7 +21668,7 @@ let packageName = "morgan"; version = "1.6.1"; src = fetchurl { - url = "http://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz"; + url = "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz"; sha1 = "5fd818398c6819cba28a7cd6664f292fe1c0bbf2"; }; }; @@ -21477,7 +21713,7 @@ let packageName = "mpath"; version = "0.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz"; + url = "https://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz"; sha1 = "3a4e829359801de96309c27a6b2e102e89f9e96e"; }; }; @@ -21499,13 +21735,13 @@ let sha512 = "QECe2ivqcR1LRsPobRsjenEKAC3i1a5gmm+jNKJLrsiq9PaSQ18LlKFuxvhGxWkvGEPadWv6rKd31O4ICqS1Xw=="; }; }; - "mri-1.1.1" = { + "mri-1.1.4" = { name = "mri"; packageName = "mri"; - version = "1.1.1"; + version = "1.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/mri/-/mri-1.1.1.tgz"; - sha1 = "85aa26d3daeeeedf80dc5984af95cc5ca5cad9f1"; + url = "https://registry.npmjs.org/mri/-/mri-1.1.4.tgz"; + sha512 = "6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w=="; }; }; "ms-0.7.0" = { @@ -21513,7 +21749,7 @@ let packageName = "ms"; version = "0.7.0"; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.7.0.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.0.tgz"; sha1 = "865be94c2e7397ad8a57da6a633a6e2f30798b83"; }; }; @@ -21522,7 +21758,7 @@ let packageName = "ms"; version = "0.7.1"; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; }; }; @@ -21531,7 +21767,7 @@ let packageName = "ms"; version = "0.7.2"; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.7.2.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"; sha1 = "ae25cf2512b3885a1d95d7f037868d8431124765"; }; }; @@ -21603,7 +21839,7 @@ let packageName = "multicast-dns"; version = "4.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz"; + url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz"; sha1 = "abf022fc866727055a9e0c2bc98097f5ebad97a2"; }; }; @@ -21684,7 +21920,7 @@ let packageName = "multipipe"; version = "0.1.2"; src = fetchurl { - url = "http://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; + url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; }; }; @@ -21697,13 +21933,13 @@ let sha512 = "nQKAe6+u7nWJY29pJjegltw0ROj2bDc2bCTm9Bnr4EQrp5H5Tav+ESUjgl3D4vuQgCeveb4h+CtLtjB8QnK1Dw=="; }; }; - "multiserver-3.0.2" = { + "multiserver-3.1.0" = { name = "multiserver"; packageName = "multiserver"; - version = "3.0.2"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/multiserver/-/multiserver-3.0.2.tgz"; - sha512 = "YCVA+zCtc4xR55CrKIK6pAYPKTDswrlF+bkO9Nyb1osn93AhFGjKnelA38G9mNHeUd/v9/Un3gxpisorouRQfw=="; + url = "https://registry.npmjs.org/multiserver/-/multiserver-3.1.0.tgz"; + sha512 = "dSXUU+NV7pr1MlsAsSTsx9atl4d2FGROsRXQgbZGOn+WDvr6eGycAIgEmzAX90B18NjXE9RPIvq9Ho0UgMaoHg=="; }; }; "multiserver-address-1.0.1" = { @@ -21805,6 +22041,15 @@ let sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; }; }; + "mute-stream-0.0.8" = { + name = "mute-stream"; + packageName = "mute-stream"; + version = "0.0.8"; + src = fetchurl { + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"; + sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; + }; + }; "mutexify-1.2.0" = { name = "mutexify"; packageName = "mutexify"; @@ -21814,13 +22059,13 @@ let sha512 = "oprzxd2zhfrJqEuB98qc1dRMMonClBQ57UPDjnbcrah4orEMTq1jq3+AcdFe5ePzdbJXI7zmdhfftIdMnhYFoQ=="; }; }; - "muxrpc-6.4.1" = { + "muxrpc-6.4.2" = { name = "muxrpc"; packageName = "muxrpc"; - version = "6.4.1"; + version = "6.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.4.1.tgz"; - sha512 = "r8+tucKMmQiYd8NWGQqAA5r+SlYuU30D/WbYo7E/PztG/jmizQJY5NfmLIJ+GWo+dEC6kIxkr0eY+U0uZexTNg=="; + url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.4.2.tgz"; + sha512 = "1wRnouHgHO3JYN3xbyzQGTFsd/wo12/zaikmQusP8ma+lmL+ewNvuvuwKSEJasKQTRnbTwbzh/OPdt9N76CA4g=="; }; }; "muxrpc-validation-2.0.1" = { @@ -21873,7 +22118,7 @@ let packageName = "nan"; version = "0.3.2"; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-0.3.2.tgz"; + url = "https://registry.npmjs.org/nan/-/nan-0.3.2.tgz"; sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d"; }; }; @@ -21882,17 +22127,17 @@ let packageName = "nan"; version = "2.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-2.10.0.tgz"; + url = "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz"; sha512 = "bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA=="; }; }; - "nan-2.11.1" = { + "nan-2.12.1" = { name = "nan"; packageName = "nan"; - version = "2.11.1"; + version = "2.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz"; - sha512 = "iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA=="; + url = "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz"; + sha512 = "JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw=="; }; }; "nanoassert-1.1.0" = { @@ -21904,22 +22149,13 @@ let sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d"; }; }; - "nanobus-4.3.5" = { + "nanobus-4.4.0" = { name = "nanobus"; packageName = "nanobus"; - version = "4.3.5"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/nanobus/-/nanobus-4.3.5.tgz"; - sha512 = "6UlqagLV9/ADqcTU60mipAPEd16WDbO+a9WeeGVn9RucHKNDTcPt9MOf8ZmAvbA3V2CV+EJS28eupNalg4YF8Q=="; - }; - }; - "nanoid-1.3.4" = { - name = "nanoid"; - packageName = "nanoid"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/nanoid/-/nanoid-1.3.4.tgz"; - sha512 = "4ug4BsuHxiVHoRUe1ud6rUFT3WUMmjXt1W0quL0CviZQANdan7D8kqN5/maw53hmAApY/jfzMRkC57BNNs60ZQ=="; + url = "https://registry.npmjs.org/nanobus/-/nanobus-4.4.0.tgz"; + sha512 = "Hv9USGyH8EsPy0o8pPWE7x3YRIfuZDgMBirzjU6XLebhiSK2g53JlfqgolD0c39ne6wXAfaBNcIAvYe22Bav+Q=="; }; }; "nanoid-2.0.0" = { @@ -22084,7 +22320,7 @@ let packageName = "ncp"; version = "0.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; + url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; }; }; @@ -22093,7 +22329,7 @@ let packageName = "ncp"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz"; + url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz"; sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246"; }; }; @@ -22102,7 +22338,7 @@ let packageName = "ncp"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; + url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; }; }; @@ -22115,13 +22351,13 @@ let sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8"; }; }; - "nearley-2.15.1" = { + "nearley-2.16.0" = { name = "nearley"; packageName = "nearley"; - version = "2.15.1"; + version = "2.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/nearley/-/nearley-2.15.1.tgz"; - sha512 = "8IUY/rUrKz2mIynUGh8k+tul1awMKEjeHHC5G3FHvvyAW6oq4mQfNp2c0BMea+sYZJvYcrrM6GmZVIle/GRXGw=="; + url = "https://registry.npmjs.org/nearley/-/nearley-2.16.0.tgz"; + sha512 = "Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg=="; }; }; "neat-csv-2.1.0" = { @@ -22129,17 +22365,17 @@ let packageName = "neat-csv"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz"; + url = "https://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz"; sha1 = "06f58360c4c3b955bd467ddc85ae4511a3907a4c"; }; }; - "neat-input-1.8.0" = { + "neat-input-1.9.0" = { name = "neat-input"; packageName = "neat-input"; - version = "1.8.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/neat-input/-/neat-input-1.8.0.tgz"; - sha512 = "9LsyX7NcQBOT0/VEthxOCpYlKXgo0UZeGlMSx/a2SKFkE4ZiU/wTUBoF9brQKtKspmBZyLnXqDiktsbopEb0Tg=="; + url = "https://registry.npmjs.org/neat-input/-/neat-input-1.9.0.tgz"; + sha512 = "sHXPhSIfS4KEMJa2kHtmcBHIs/Tu7QQKGXea4WdqZyONmojsNX86akEbaoyh6kzMsu2fFd1dO1okVYS3wyiddA=="; }; }; "neat-log-2.4.0" = { @@ -22183,7 +22419,7 @@ let packageName = "needle"; version = "0.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/needle/-/needle-0.10.0.tgz"; + url = "https://registry.npmjs.org/needle/-/needle-0.10.0.tgz"; sha1 = "16a24d63f2a61152eb74cce1d12af85c507577d4"; }; }; @@ -22192,7 +22428,7 @@ let packageName = "needle"; version = "0.11.0"; src = fetchurl { - url = "http://registry.npmjs.org/needle/-/needle-0.11.0.tgz"; + url = "https://registry.npmjs.org/needle/-/needle-0.11.0.tgz"; sha1 = "02a71b008eaf7d55ae89fb9fd7685b7b88d7bc29"; }; }; @@ -22318,7 +22554,7 @@ let packageName = "next-tick"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz"; + url = "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz"; sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c"; }; }; @@ -22349,13 +22585,13 @@ let sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ=="; }; }; - "node-abi-2.5.0" = { + "node-abi-2.5.1" = { name = "node-abi"; packageName = "node-abi"; - version = "2.5.0"; + version = "2.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/node-abi/-/node-abi-2.5.0.tgz"; - sha512 = "9g2twBGSP6wIR5PW7tXvAWnEWKJDH/VskdXp168xsw9VVxpEGov8K4jsP4/VeoC7b2ZAyzckvMCuQuQlw44lXg=="; + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.5.1.tgz"; + sha512 = "oDbFc7vCFx0RWWCweTer3hFm1u+e60N5FtGnmRV6QqvgATGFH/XRR6vqWIeBVosCYCqt6YdIr2L0exLZuEdVcQ=="; }; }; "node-addon-api-1.6.2" = { @@ -22408,7 +22644,7 @@ let packageName = "node-fetch"; version = "2.1.2"; src = fetchurl { - url = "http://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz"; + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz"; sha1 = "ab884e8e7e57e38a944753cec706f788d1768bb5"; }; }; @@ -22448,22 +22684,13 @@ let sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA=="; }; }; - "node-gyp-build-3.4.0" = { + "node-gyp-build-3.7.0" = { name = "node-gyp-build"; packageName = "node-gyp-build"; - version = "3.4.0"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz"; - sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw=="; - }; - }; - "node-gyp-build-3.5.1" = { - name = "node-gyp-build"; - packageName = "node-gyp-build"; - version = "3.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.5.1.tgz"; - sha512 = "AKJ4SyHiYvqwy5P9GaAnxi5IG3HSEPHV/1YDMlBA0vEEmi7qxeeSfKlCAau3XFvAPFR9EV6gvD9p2b0s8ghyww=="; + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.7.0.tgz"; + sha512 = "L/Eg02Epx6Si2NXmedx+Okg+4UHqmaf3TNcxd50SF9NQGcJaON3AtU++kax69XV7YWz4tUspqZSAsVofhFKG2w=="; }; }; "node-int64-0.4.0" = { @@ -22583,13 +22810,13 @@ let sha512 = "mkw8HOosXHMBRdyJkio77vPx4Ls5IY26P5ZyoMWmKMkimXKTnX00DdpmNlkW+dHwMDYq1H66WzFtQhNOdEAbgA=="; }; }; - "node-releases-1.1.0" = { + "node-releases-1.1.3" = { name = "node-releases"; packageName = "node-releases"; - version = "1.1.0"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.0.tgz"; - sha512 = "+qV91QMDBvARuPxUEfI/mRF/BY+UAkTIn3pvmvM2iOLIRvv6RNYklFXBgrkky6P1wXUqQW1P3qKlWxxy4JZbfg=="; + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.3.tgz"; + sha512 = "6VrvH7z6jqqNFY200kdB6HdzkgM96Oaj9v3dqGfgp6mF+cHmU4wyQKZ2/WPDRVoR0Jz9KqbamaBN0ZhdUaysUQ=="; }; }; "node-request-by-swagger-1.1.4" = { @@ -22660,7 +22887,7 @@ let packageName = "node.extend"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz"; + url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz"; sha1 = "ab83960c477280d01ba5554a0d8fd3acfe39336e"; }; }; @@ -22678,7 +22905,7 @@ let packageName = "nodemailer"; version = "1.11.0"; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer/-/nodemailer-1.11.0.tgz"; + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-1.11.0.tgz"; sha1 = "4e69cb39b03015b1d1ef0c78a815412b9e976f79"; }; }; @@ -22709,22 +22936,13 @@ let sha1 = "586db8101db30cb4438eb546737a41aad0cf13d5"; }; }; - "nodemon-1.18.7" = { + "nodemon-1.18.9" = { name = "nodemon"; packageName = "nodemon"; - version = "1.18.7"; + version = "1.18.9"; src = fetchurl { - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.7.tgz"; - sha512 = "xuC1V0F5EcEyKQ1VhHYD13owznQbUw29JKvZ8bVH7TmuvVNHvvbp9pLgE4PjTMRJVe0pJ8fGRvwR2nMiosIsPQ=="; - }; - }; - "nomnom-1.6.2" = { - name = "nomnom"; - packageName = "nomnom"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz"; - sha1 = "84a66a260174408fc5b77a18f888eccc44fb6971"; + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.9.tgz"; + sha512 = "oj/eEVTEI47pzYAjGkpcNw0xYwTl4XSTUQv2NPQI6PpN3b75PhpuYk3Vb3U80xHCyM2Jm+1j68ULHXl4OR3Afw=="; }; }; "nomnom-1.8.1" = { @@ -22885,7 +23103,7 @@ let packageName = "npm"; version = "3.10.10"; src = fetchurl { - url = "http://registry.npmjs.org/npm/-/npm-3.10.10.tgz"; + url = "https://registry.npmjs.org/npm/-/npm-3.10.10.tgz"; sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e"; }; }; @@ -22952,13 +23170,13 @@ let sha512 = "zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA=="; }; }; - "npm-packlist-1.1.12" = { + "npm-packlist-1.2.0" = { name = "npm-packlist"; packageName = "npm-packlist"; - version = "1.1.12"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.12.tgz"; - sha512 = "WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g=="; + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.2.0.tgz"; + sha512 = "7Mni4Z8Xkx0/oegoqlcao/JpPCPEMtUvsmB0q7mgvlMinykJLSRTYuFqoQLYgGY8biuxIeiHO+QNJKbCfljewQ=="; }; }; "npm-path-2.0.4" = { @@ -23110,7 +23328,7 @@ let packageName = "npmlog"; version = "2.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz"; + url = "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz"; sha1 = "98b52530f2514ca90d09ec5b22c8846722375692"; }; }; @@ -23128,7 +23346,7 @@ let packageName = "nprogress"; version = "0.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz"; + url = "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz"; sha1 = "cb8f34c53213d895723fcbab907e9422adbcafb1"; }; }; @@ -23182,7 +23400,7 @@ let packageName = "numeral"; version = "1.5.6"; src = fetchurl { - url = "http://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; + url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f"; }; }; @@ -23421,13 +23639,22 @@ let sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; }; }; - "object.values-1.0.4" = { + "object.reduce-1.0.1" = { + name = "object.reduce"; + packageName = "object.reduce"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz"; + sha1 = "6fe348f2ac7fa0f95ca621226599096825bb03ad"; + }; + }; + "object.values-1.1.0" = { name = "object.values"; packageName = "object.values"; - version = "1.0.4"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz"; - sha1 = "e524da09b4f66ff05df457546ec72ac99f13069a"; + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.0.tgz"; + sha512 = "8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg=="; }; }; "observ-0.2.0" = { @@ -23471,7 +23698,7 @@ let packageName = "octicons"; version = "3.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/octicons/-/octicons-3.5.0.tgz"; + url = "https://registry.npmjs.org/octicons/-/octicons-3.5.0.tgz"; sha1 = "f7ff5935674d8b114f6d80c454bfaa01797a4e30"; }; }; @@ -23588,7 +23815,7 @@ let packageName = "onetime"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; + url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; }; }; @@ -23687,7 +23914,7 @@ let packageName = "opn"; version = "5.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/opn/-/opn-5.3.0.tgz"; + url = "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz"; sha512 = "bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g=="; }; }; @@ -23849,7 +24076,7 @@ let packageName = "os-homedir"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; + url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; }; }; @@ -23858,7 +24085,7 @@ let packageName = "os-locale"; version = "1.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; + url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9"; }; }; @@ -23880,12 +24107,21 @@ let sha512 = "7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw=="; }; }; + "os-locale-3.1.0" = { + name = "os-locale"; + packageName = "os-locale"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz"; + sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q=="; + }; + }; "os-name-1.0.3" = { name = "os-name"; packageName = "os-name"; version = "1.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz"; + url = "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz"; sha1 = "1b379f64835af7c5a7f498b357cb95215c159edf"; }; }; @@ -23894,7 +24130,7 @@ let packageName = "os-name"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz"; + url = "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz"; sha1 = "b9a386361c17ae3a21736ef0599405c9a8c5dc5e"; }; }; @@ -23921,7 +24157,7 @@ let packageName = "os-tmpdir"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; + url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; }; }; @@ -23975,7 +24211,7 @@ let packageName = "p-cancelable"; version = "0.4.1"; src = fetchurl { - url = "http://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz"; + url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz"; sha512 = "HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ=="; }; }; @@ -24020,7 +24256,7 @@ let packageName = "p-is-promise"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz"; + url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz"; sha1 = "9c9456989e9f6588017b0434d56097675c3da05e"; }; }; @@ -24033,13 +24269,13 @@ let sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="; }; }; - "p-limit-2.0.0" = { + "p-limit-2.1.0" = { name = "p-limit"; packageName = "p-limit"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz"; - sha512 = "fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A=="; + url = "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz"; + sha512 = "NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g=="; }; }; "p-locate-2.0.0" = { @@ -24209,7 +24445,7 @@ let packageName = "packet-stream"; version = "2.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/packet-stream/-/packet-stream-2.0.4.tgz"; + url = "https://registry.npmjs.org/packet-stream/-/packet-stream-2.0.4.tgz"; sha512 = "7+oxHdMMs6VhLvvbrDUc8QNuelE9fPKLDdToXBIKLPKOlnoBeMim+/35edp+AnFTLzk3xcogVvQ/jrZyyGsEiw=="; }; }; @@ -24222,13 +24458,13 @@ let sha1 = "79b302fc144cdfbb4ab6feba7040e6a5d99c79c7"; }; }; - "pacote-9.2.3" = { + "pacote-9.3.0" = { name = "pacote"; packageName = "pacote"; - version = "9.2.3"; + version = "9.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-9.2.3.tgz"; - sha512 = "Y3+yY3nBRAxMlZWvr62XLJxOwCmG9UmkGZkFurWHoCjqF0cZL72cTOCRJTvWw8T4OhJS2RTg13x4oYYriauvEw=="; + url = "https://registry.npmjs.org/pacote/-/pacote-9.3.0.tgz"; + sha512 = "uy5xghB5wUtmFS+uNhQGhlsIF9rfsfxw6Zsu2VpmSz4/f+8D2+5V1HwjHdSn7W6aQTrxNNmmoUF5qNE10/EVdA=="; }; }; "pad-0.0.5" = { @@ -24254,7 +24490,7 @@ let packageName = "pako"; version = "0.2.9"; src = fetchurl { - url = "http://registry.npmjs.org/pako/-/pako-0.2.9.tgz"; + url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz"; sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75"; }; }; @@ -24294,6 +24530,15 @@ let sha512 = "b6t7ORo/MwT6xvRiuu1c1do3+CAUd7/0rgc1d3qNHUeP64zxy4ttLIvK7SEHzyfyDLvD9pPuV9mYKHf6MgUkmg=="; }; }; + "parent-module-1.0.0" = { + name = "parent-module"; + packageName = "parent-module"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/parent-module/-/parent-module-1.0.0.tgz"; + sha512 = "8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA=="; + }; + }; "parents-1.0.1" = { name = "parents"; packageName = "parents"; @@ -24308,7 +24553,7 @@ let packageName = "parse-asn1"; version = "5.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz"; + url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz"; sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw=="; }; }; @@ -24393,15 +24638,6 @@ let sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; }; }; - "parse-json-3.0.0" = { - name = "parse-json"; - packageName = "parse-json"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json/-/parse-json-3.0.0.tgz"; - sha1 = "fa6f47b18e23826ead32f263e744d0e1e847fb13"; - }; - }; "parse-json-4.0.0" = { name = "parse-json"; packageName = "parse-json"; @@ -24650,7 +24886,7 @@ let packageName = "path-browserify"; version = "0.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz"; + url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz"; sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; }; }; @@ -24704,7 +24940,7 @@ let packageName = "path-is-absolute"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; + url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; }; }; @@ -24875,7 +25111,7 @@ let packageName = "pause-stream"; version = "0.0.11"; src = fetchurl { - url = "http://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; + url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"; }; }; @@ -24920,7 +25156,7 @@ let packageName = "pegjs"; version = "0.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz"; + url = "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz"; sha1 = "cf8bafae6eddff4b5a7efb185269eaaf4610ddbd"; }; }; @@ -24992,7 +25228,7 @@ let packageName = "pify"; version = "2.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; + url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; }; }; @@ -25050,15 +25286,6 @@ let sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; }; }; - "pino-5.5.0" = { - name = "pino"; - packageName = "pino"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pino/-/pino-5.5.0.tgz"; - sha512 = "cCaBKVwutiaGwgKXyOvsRSCeBxgi2j0X1PEK1cog1/9SMDhgL8+iJwWvTKUef20HDyGfZIUq5KaH0ZOhWLHYSw=="; - }; - }; "pino-5.8.1" = { name = "pino"; packageName = "pino"; @@ -25068,6 +25295,15 @@ let sha512 = "7bVFzUw3ffIfOM3t7MuQ9KsH+wX5bdGdQhGfccKgleoY7qG4FO3CmVSjywlFmmYGyMOISi1LDGC6JMEH7XkZJg=="; }; }; + "pino-5.9.0" = { + name = "pino"; + packageName = "pino"; + version = "5.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/pino/-/pino-5.9.0.tgz"; + sha512 = "6sHy38gWsZbrmYq6vk343VCThy93ZdVfmLsHDVzbl/j621SjSaxCcS/ySmxK/hRmq8jpQb3n44dNRIeqbbQw6A=="; + }; + }; "pino-std-serializers-2.3.0" = { name = "pino-std-serializers"; packageName = "pino-std-serializers"; @@ -25253,7 +25489,7 @@ let packageName = "po2json"; version = "0.4.5"; src = fetchurl { - url = "http://registry.npmjs.org/po2json/-/po2json-0.4.5.tgz"; + url = "https://registry.npmjs.org/po2json/-/po2json-0.4.5.tgz"; sha1 = "47bb2952da32d58a1be2f256a598eebc0b745118"; }; }; @@ -25303,22 +25539,13 @@ let sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; }; }; - "postcss-6.0.23" = { + "postcss-7.0.11" = { name = "postcss"; packageName = "postcss"; - version = "6.0.23"; + version = "7.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz"; - sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag=="; - }; - }; - "postcss-7.0.5" = { - name = "postcss"; - packageName = "postcss"; - version = "7.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.5.tgz"; - sha512 = "HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ=="; + url = "https://registry.npmjs.org/postcss/-/postcss-7.0.11.tgz"; + sha512 = "9AXb//5UcjeOEof9T+yPw3XTa5SL207ZOIC/lHYP4mbUTEh4M0rDAQekQpVANCZdwQwKhBtFZCk3i3h3h2hdWg=="; }; }; "postcss-7.0.6" = { @@ -25335,7 +25562,7 @@ let packageName = "postcss-calc"; version = "5.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz"; + url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz"; sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e"; }; }; @@ -25389,7 +25616,7 @@ let packageName = "postcss-discard-comments"; version = "2.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz"; + url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz"; sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d"; }; }; @@ -25425,7 +25652,7 @@ let packageName = "postcss-discard-empty"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz"; + url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz"; sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"; }; }; @@ -25443,7 +25670,7 @@ let packageName = "postcss-discard-overridden"; version = "0.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz"; + url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz"; sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58"; }; }; @@ -25461,7 +25688,7 @@ let packageName = "postcss-discard-unused"; version = "2.2.3"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz"; + url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz"; sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433"; }; }; @@ -25479,7 +25706,7 @@ let packageName = "postcss-merge-idents"; version = "2.1.7"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz"; + url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz"; sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270"; }; }; @@ -25492,13 +25719,13 @@ let sha1 = "23d90cd127b0a77994915332739034a1a4f3d658"; }; }; - "postcss-merge-longhand-4.0.9" = { + "postcss-merge-longhand-4.0.10" = { name = "postcss-merge-longhand"; packageName = "postcss-merge-longhand"; - version = "4.0.9"; + version = "4.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.9.tgz"; - sha512 = "UVMXrXF5K/kIwUbK/crPFCytpWbNX2Q3dZSc8+nQUgfOHrCT4+MHncpdxVphUlQeZxlLXUJbDyXc5NBhTnS2tA=="; + url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.10.tgz"; + sha512 = "hME10s6CSjm9nlVIcO1ukR7Jr5RisTaaC1y83jWCivpuBtPohA3pZE7cGTIVSYjXvLnXozHTiVOkG4dnnl756g=="; }; }; "postcss-merge-rules-2.1.2" = { @@ -25533,7 +25760,7 @@ let packageName = "postcss-minify-font-values"; version = "1.0.5"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz"; + url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz"; sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69"; }; }; @@ -25551,7 +25778,7 @@ let packageName = "postcss-minify-gradients"; version = "1.0.5"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz"; + url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz"; sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"; }; }; @@ -25569,7 +25796,7 @@ let packageName = "postcss-minify-params"; version = "1.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz"; + url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz"; sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3"; }; }; @@ -25587,7 +25814,7 @@ let packageName = "postcss-minify-selectors"; version = "2.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz"; + url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz"; sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf"; }; }; @@ -25605,7 +25832,7 @@ let packageName = "postcss-normalize-charset"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz"; + url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz"; sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"; }; }; @@ -25677,7 +25904,7 @@ let packageName = "postcss-normalize-url"; version = "3.0.8"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz"; + url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz"; sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222"; }; }; @@ -25722,7 +25949,7 @@ let packageName = "postcss-reduce-idents"; version = "2.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz"; + url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz"; sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3"; }; }; @@ -25731,7 +25958,7 @@ let packageName = "postcss-reduce-initial"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz"; + url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz"; sha1 = "68f80695f045d08263a879ad240df8dd64f644ea"; }; }; @@ -25749,7 +25976,7 @@ let packageName = "postcss-reduce-transforms"; version = "1.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz"; + url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz"; sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1"; }; }; @@ -25780,13 +26007,13 @@ let sha1 = "4f875f4afb0c96573d5cf4d74011aee250a7e865"; }; }; - "postcss-selector-parser-5.0.0-rc.4" = { + "postcss-selector-parser-5.0.0" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; - version = "5.0.0-rc.4"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0-rc.4.tgz"; - sha512 = "0XvfYuShrKlTk1ooUrVzMCFQRcypsdEIsGqh5IxC5rdtBi4/M/tDAJeSONwC2MTqEFsmPZYAV7Dd4X8rgAfV0A=="; + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz"; + sha512 = "w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ=="; }; }; "postcss-svgo-2.1.6" = { @@ -25794,7 +26021,7 @@ let packageName = "postcss-svgo"; version = "2.1.6"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz"; + url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz"; sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d"; }; }; @@ -25812,7 +26039,7 @@ let packageName = "postcss-unique-selectors"; version = "2.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz"; + url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz"; sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"; }; }; @@ -25839,7 +26066,7 @@ let packageName = "postcss-zindex"; version = "2.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz"; + url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz"; sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22"; }; }; @@ -25965,7 +26192,7 @@ let packageName = "pretty-hrtime"; version = "1.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz"; + url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz"; sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1"; }; }; @@ -25983,7 +26210,7 @@ let packageName = "printf"; version = "0.2.5"; src = fetchurl { - url = "http://registry.npmjs.org/printf/-/printf-0.2.5.tgz"; + url = "https://registry.npmjs.org/printf/-/printf-0.2.5.tgz"; sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f"; }; }; @@ -26091,7 +26318,7 @@ let packageName = "progress"; version = "1.1.8"; src = fetchurl { - url = "http://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; + url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; }; }; @@ -26118,7 +26345,7 @@ let packageName = "promiscuous"; version = "0.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz"; + url = "https://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz"; sha1 = "54014cd3d62cafe831e3354990c05ff5b78c8892"; }; }; @@ -26298,7 +26525,7 @@ let packageName = "proxy-agent"; version = "2.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/proxy-agent/-/proxy-agent-2.3.1.tgz"; + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.3.1.tgz"; sha512 = "CNKuhC1jVtm8KJYFTS2ZRO71VCBx3QSA92So/e6NrY6GoJonkx3Irnk4047EsCcswczwqAekRj3s8qLRGahSKg=="; }; }; @@ -26370,7 +26597,7 @@ let packageName = "ps-tree"; version = "0.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz"; + url = "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz"; sha1 = "dbf8d752a7fe22fa7d58635689499610e9276ddc"; }; }; @@ -26383,22 +26610,22 @@ let sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; }; }; - "psl-1.1.29" = { + "psl-1.1.31" = { name = "psl"; packageName = "psl"; - version = "1.1.29"; + version = "1.1.31"; src = fetchurl { - url = "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz"; - sha512 = "AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ=="; + url = "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz"; + sha512 = "/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw=="; }; }; - "pstree.remy-1.1.2" = { + "pstree.remy-1.1.6" = { name = "pstree.remy"; packageName = "pstree.remy"; - version = "1.1.2"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.2.tgz"; - sha512 = "vL6NLxNHzkNTjGJUpMm5PLC+94/0tTlC1vkP9bdU0pOHih+EujMjgMTwfZopZvHWRFbqJ5Y73OMoau50PewDDA=="; + url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.6.tgz"; + sha512 = "NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w=="; }; }; "public-encrypt-4.0.3" = { @@ -26464,13 +26691,13 @@ let sha1 = "b642dd1255da376a706b6db4fa962f5fdb74c31b"; }; }; - "pull-catch-1.0.0" = { + "pull-catch-1.0.1" = { name = "pull-catch"; packageName = "pull-catch"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/pull-catch/-/pull-catch-1.0.0.tgz"; - sha1 = "f58037eb5c282ccb506af9f76b0027d33931e48b"; + url = "https://registry.npmjs.org/pull-catch/-/pull-catch-1.0.1.tgz"; + sha512 = "wrKbmEYySNETxOYXDTCJ8L/rcAFMayOifne2a+X9C0wSm6ttIWHHXwMYQh6k8iDRvtMM8itYkBlP4leKBJTiKA=="; }; }; "pull-cont-0.0.0" = { @@ -26793,7 +27020,7 @@ let packageName = "pull-sink-through"; version = "0.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/pull-sink-through/-/pull-sink-through-0.0.0.tgz"; + url = "https://registry.npmjs.org/pull-sink-through/-/pull-sink-through-0.0.0.tgz"; sha1 = "d3c0492f3a80b4ed204af67c4b4f935680fc5b1f"; }; }; @@ -26820,7 +27047,7 @@ let packageName = "pull-stream"; version = "2.27.0"; src = fetchurl { - url = "http://registry.npmjs.org/pull-stream/-/pull-stream-2.27.0.tgz"; + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-2.27.0.tgz"; sha1 = "fdf0eb910cdc4041d65956c00bee30dbbd00a068"; }; }; @@ -26829,7 +27056,7 @@ let packageName = "pull-stream"; version = "2.28.4"; src = fetchurl { - url = "http://registry.npmjs.org/pull-stream/-/pull-stream-2.28.4.tgz"; + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-2.28.4.tgz"; sha1 = "7ea97413c1619c20bc3bdf9e10e91347b03253e4"; }; }; @@ -26838,7 +27065,7 @@ let packageName = "pull-stream"; version = "3.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/pull-stream/-/pull-stream-3.5.0.tgz"; + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.5.0.tgz"; sha1 = "1ee5b6f76fd3b3a49a5afb6ded5c0320acb3cfc7"; }; }; @@ -26856,7 +27083,7 @@ let packageName = "pull-stringify"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/pull-stringify/-/pull-stringify-2.0.0.tgz"; + url = "https://registry.npmjs.org/pull-stringify/-/pull-stringify-2.0.0.tgz"; sha1 = "22ba31da95af0888e0fb559238b1fa915a6a5b64"; }; }; @@ -26928,7 +27155,7 @@ let packageName = "pump"; version = "0.3.5"; src = fetchurl { - url = "http://registry.npmjs.org/pump/-/pump-0.3.5.tgz"; + url = "https://registry.npmjs.org/pump/-/pump-0.3.5.tgz"; sha1 = "ae5ff8c1f93ed87adc6530a97565b126f585454b"; }; }; @@ -27063,7 +27290,7 @@ let packageName = "qs"; version = "0.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.4.2.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz"; sha1 = "3cac4c861e371a8c9c4770ac23cda8de639b8e5f"; }; }; @@ -27072,7 +27299,7 @@ let packageName = "qs"; version = "0.6.5"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.6.5.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.6.5.tgz"; sha1 = "294b268e4b0d4250f6dde19b3b8b34935dff14ef"; }; }; @@ -27081,7 +27308,7 @@ let packageName = "qs"; version = "1.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-1.2.0.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-1.2.0.tgz"; sha1 = "ed079be28682147e6fd9a34cc2b0c1e0ec6453ee"; }; }; @@ -27090,7 +27317,7 @@ let packageName = "qs"; version = "2.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.3.3.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz"; sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404"; }; }; @@ -27099,7 +27326,7 @@ let packageName = "qs"; version = "2.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.4.2.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz"; sha1 = "f7ce788e5777df0b5010da7f7c4e73ba32470f5a"; }; }; @@ -27108,7 +27335,7 @@ let packageName = "qs"; version = "3.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-3.1.0.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-3.1.0.tgz"; sha1 = "d0e9ae745233a12dc43fb4f3055bba446261153c"; }; }; @@ -27117,7 +27344,7 @@ let packageName = "qs"; version = "4.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-4.0.0.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz"; sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607"; }; }; @@ -27153,7 +27380,7 @@ let packageName = "query-string"; version = "1.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz"; + url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz"; sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf"; }; }; @@ -27171,7 +27398,7 @@ let packageName = "query-string"; version = "5.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz"; + url = "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz"; sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw=="; }; }; @@ -27594,7 +27821,7 @@ let packageName = "readable-stream"; version = "1.0.27-1"; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz"; sha1 = "6b67983c20357cefd07f0165001a16d710d91078"; }; }; @@ -27603,7 +27830,7 @@ let packageName = "readable-stream"; version = "1.0.34"; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; }; }; @@ -27612,7 +27839,7 @@ let packageName = "readable-stream"; version = "1.1.14"; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; }; }; @@ -27621,7 +27848,7 @@ let packageName = "readable-stream"; version = "2.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; }; }; @@ -27630,17 +27857,17 @@ let packageName = "readable-stream"; version = "2.3.6"; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; }; }; - "readable-stream-3.0.6" = { + "readable-stream-3.1.1" = { name = "readable-stream"; packageName = "readable-stream"; - version = "3.0.6"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.0.6.tgz"; - sha512 = "9E1oLoOWfhSXHGv6QlwXJim7uNzd9EVlWK+21tCU9Ju/kR0/p2AZYPz4qSchgO8PlLIH4FpZYfzwS+rEksZjIg=="; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.1.1.tgz"; + sha512 = "DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA=="; }; }; "readdir-scoped-modules-1.0.2" = { @@ -27774,7 +28001,7 @@ let packageName = "reduce-css-calc"; version = "1.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz"; + url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz"; sha1 = "747c914e049614a4c9cfbba629871ad1d2927716"; }; }; @@ -27837,7 +28064,7 @@ let packageName = "regenerator-runtime"; version = "0.9.6"; src = fetchurl { - url = "http://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz"; + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz"; sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029"; }; }; @@ -27882,7 +28109,7 @@ let packageName = "regexpp"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz"; + url = "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz"; sha512 = "LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw=="; }; }; @@ -27963,7 +28190,7 @@ let packageName = "relative-url"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/relative-url/-/relative-url-1.0.2.tgz"; + url = "https://registry.npmjs.org/relative-url/-/relative-url-1.0.2.tgz"; sha1 = "d21c52a72d6061018bcee9f9c9fc106bf7d65287"; }; }; @@ -27981,7 +28208,7 @@ let packageName = "remark"; version = "3.2.3"; src = fetchurl { - url = "http://registry.npmjs.org/remark/-/remark-3.2.3.tgz"; + url = "https://registry.npmjs.org/remark/-/remark-3.2.3.tgz"; sha1 = "802a38c3aa98c9e1e3ea015eeba211d27cb65e1f"; }; }; @@ -27990,17 +28217,17 @@ let packageName = "remark-html"; version = "2.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/remark-html/-/remark-html-2.0.2.tgz"; + url = "https://registry.npmjs.org/remark-html/-/remark-html-2.0.2.tgz"; sha1 = "592a347bdd3d5881f4f080c98b5b152fb1407a92"; }; }; - "remove-array-items-1.1.0" = { + "remove-array-items-1.1.1" = { name = "remove-array-items"; packageName = "remove-array-items"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/remove-array-items/-/remove-array-items-1.1.0.tgz"; - sha512 = "+YAHWd5patqAM/F4uBsto9h8RXDVxPRrKW46AkbI6eH12OFrN9wlGpkNWYxCjCfwtkidTjaaCXqU634V4mysvw=="; + url = "https://registry.npmjs.org/remove-array-items/-/remove-array-items-1.1.1.tgz"; + sha512 = "MXW/jtHyl5F1PZI7NbpS8SOtympdLuF20aoWJT5lELR1p/HJDd5nqW8Eu9uLh/hCRY3FgvrIT5AwDCgBODklcA=="; }; }; "remove-bom-buffer-3.0.0" = { @@ -28152,7 +28379,7 @@ let packageName = "request"; version = "2.9.203"; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.9.203.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz"; sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a"; }; }; @@ -28242,7 +28469,7 @@ let packageName = "require-uncached"; version = "1.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz"; + url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz"; sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; }; }; @@ -28278,7 +28505,7 @@ let packageName = "resolve"; version = "1.1.7"; src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"; + url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"; sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; }; }; @@ -28287,17 +28514,17 @@ let packageName = "resolve"; version = "1.7.1"; src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz"; + url = "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz"; sha512 = "c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw=="; }; }; - "resolve-1.8.1" = { + "resolve-1.9.0" = { name = "resolve"; packageName = "resolve"; - version = "1.8.1"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz"; - sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA=="; + url = "https://registry.npmjs.org/resolve/-/resolve-1.9.0.tgz"; + sha512 = "TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ=="; }; }; "resolve-cwd-2.0.0" = { @@ -28309,13 +28536,13 @@ let sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; }; }; - "resolve-dependencies-2.2.0" = { + "resolve-dependencies-2.2.1" = { name = "resolve-dependencies"; packageName = "resolve-dependencies"; - version = "2.2.0"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/resolve-dependencies/-/resolve-dependencies-2.2.0.tgz"; - sha512 = "XIF2ujfs7qBOa4awXgdpQfhCawKiwOeUT/n9YlaipKHqj2iO41t56QDKdO0GGluPs4QduzKtbbM/B+iYPlQVUA=="; + url = "https://registry.npmjs.org/resolve-dependencies/-/resolve-dependencies-2.2.1.tgz"; + sha512 = "nZkQEcXmJG5C3oDkbILK3fdFyhtwdV+67OD+0sUKLZU+ZJ/ozWsCe7Hyq0bqmhvmtnBgtmOO91OfiqCv6bu+GA=="; }; }; "resolve-dir-1.0.1" = { @@ -28363,15 +28590,6 @@ let sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; }; }; - "resolve-global-0.1.0" = { - name = "resolve-global"; - packageName = "resolve-global"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-global/-/resolve-global-0.1.0.tgz"; - sha1 = "8fb02cfd5b7db20118e886311f15af95bd15fbd9"; - }; - }; "resolve-options-1.1.0" = { name = "resolve-options"; packageName = "resolve-options"; @@ -28413,7 +28631,7 @@ let packageName = "restify"; version = "4.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/restify/-/restify-4.0.3.tgz"; + url = "https://registry.npmjs.org/restify/-/restify-4.0.3.tgz"; sha1 = "e1e5b7ad9d4f6aeacd20e28f44a045f26c146dbc"; }; }; @@ -28557,7 +28775,7 @@ let packageName = "rgba-regex"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz"; + url = "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz"; sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3"; }; }; @@ -28575,7 +28793,7 @@ let packageName = "rimraf"; version = "2.1.4"; src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"; sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2"; }; }; @@ -28584,7 +28802,7 @@ let packageName = "rimraf"; version = "2.2.8"; src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; sha1 = "e439be2aaee327321952730f99a8929e4fc50582"; }; }; @@ -28593,7 +28811,7 @@ let packageName = "rimraf"; version = "2.4.4"; src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz"; sha1 = "b528ce2ebe0e6d89fb03b265de11d61da0dbcf82"; }; }; @@ -28602,17 +28820,17 @@ let packageName = "rimraf"; version = "2.4.5"; src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; }; }; - "rimraf-2.6.2" = { + "rimraf-2.6.3" = { name = "rimraf"; packageName = "rimraf"; - version = "2.6.2"; + version = "2.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; - sha512 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w=="; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; + sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; }; }; "ripemd160-2.0.2" = { @@ -28687,15 +28905,6 @@ let sha512 = "SxrAIgpH/B5/W4SeULgreOemxcpEgKs2gcD42zXw50bhqGWmcnlXneVInQpAqzA/cIly4bJrOpeelmB9p4YXSQ=="; }; }; - "rollup-plugin-uglify-3.0.0" = { - name = "rollup-plugin-uglify"; - packageName = "rollup-plugin-uglify"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-uglify/-/rollup-plugin-uglify-3.0.0.tgz"; - sha512 = "dehLu9eRRoV4l09aC+ySntRw1OAfoyKdbk8Nelblj03tHoynkSybqyEpgavemi1LBOH6S1vzI58/mpxkZIe1iQ=="; - }; - }; "rollup-pluginutils-2.3.3" = { name = "rollup-pluginutils"; packageName = "rollup-pluginutils"; @@ -28723,13 +28932,13 @@ let sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d"; }; }; - "rss-parser-3.5.4" = { + "rss-parser-3.6.2" = { name = "rss-parser"; packageName = "rss-parser"; - version = "3.5.4"; + version = "3.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/rss-parser/-/rss-parser-3.5.4.tgz"; - sha512 = "dC7wHtz/p8QWQnsGgCB+HEYE01Dk8/AHMzSk0ZvoV3S0mhBqQNO/yi3H2fPh3qV2NNLNNEBg+8ZDSipKxjR5tQ=="; + url = "https://registry.npmjs.org/rss-parser/-/rss-parser-3.6.2.tgz"; + sha512 = "xXaMG7Zsj2+t16X+mysd419TpD2UQZifXwTo6Ks9GnUgF8GezPb3LVnh8BuCRm9V9Ty2gC0FRSvBJi8Ks2lfpg=="; }; }; "rsvp-3.6.2" = { @@ -28917,7 +29126,7 @@ let packageName = "safe-regex"; version = "1.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; + url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; }; }; @@ -28930,13 +29139,13 @@ let sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; }; }; - "safer-eval-1.2.3" = { + "safer-eval-1.3.0" = { name = "safer-eval"; packageName = "safer-eval"; - version = "1.2.3"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/safer-eval/-/safer-eval-1.2.3.tgz"; - sha512 = "nDwXOhiheoaBT6op02n8wzsshjLXHhh4YAeqsDEoVmy1k2+lGv/ENLsGaWqkaKArUkUx48VO12/ZPa3sI/OEqQ=="; + url = "https://registry.npmjs.org/safer-eval/-/safer-eval-1.3.0.tgz"; + sha512 = "4qkBS8VzJatFR7F0eZfKoJyjqo43jY1jBvRhB5WXM0eJNjx9fiSmph5NApJefqKqpASKWPfaIJCJMMeWePSzfw=="; }; }; "sander-0.5.1" = { @@ -28962,7 +29171,7 @@ let packageName = "sax"; version = "0.3.5"; src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.3.5.tgz"; + url = "https://registry.npmjs.org/sax/-/sax-0.3.5.tgz"; sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d"; }; }; @@ -28971,7 +29180,7 @@ let packageName = "sax"; version = "1.1.4"; src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-1.1.4.tgz"; + url = "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz"; sha1 = "74b6d33c9ae1e001510f179a91168588f1aedaa9"; }; }; @@ -28980,7 +29189,7 @@ let packageName = "sax"; version = "1.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-1.2.1.tgz"; + url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"; sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a"; }; }; @@ -29038,22 +29247,22 @@ let sha1 = "033d60a3ad20ecf2e00940d14f97823465774335"; }; }; - "secret-handshake-1.1.14" = { + "secret-handshake-1.1.15" = { name = "secret-handshake"; packageName = "secret-handshake"; - version = "1.1.14"; + version = "1.1.15"; src = fetchurl { - url = "https://registry.npmjs.org/secret-handshake/-/secret-handshake-1.1.14.tgz"; - sha512 = "e4hiMTahaLiN5XKap1YrifoyT8yRu9yQEZrMTglTBgq8Lv8iChFKLpbmXYeNxy2rCnutuWaQDFbp3sBgl4NQ4g=="; + url = "https://registry.npmjs.org/secret-handshake/-/secret-handshake-1.1.15.tgz"; + sha512 = "rLa71+caSqO7Ll58F7E8g001FjmIXl6AuL1jdm1kwX0tkDFRsLbwOcU/d/qb9u96AoPrUJUXpJBOCa4ovcmS9Q=="; }; }; - "secret-stack-5.0.0" = { + "secret-stack-5.1.0" = { name = "secret-stack"; packageName = "secret-stack"; - version = "5.0.0"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/secret-stack/-/secret-stack-5.0.0.tgz"; - sha512 = "kksU6sS9+sm9qKcER39VEEQggObTFJkuVSXHSKxQ+qu3TcqhQnPQT4BY9nmkq7mvMdYOhVWnXsktnIHfSNgfoQ=="; + url = "https://registry.npmjs.org/secret-stack/-/secret-stack-5.1.0.tgz"; + sha512 = "lCY0Oad4BYSKDlMbVXNEZEF8qVTbz2tNB7oNdlZAFg7k558Njq/bCx5MEj9GWmc+n+GhnxAXQYB5+CX1+0v4iQ=="; }; }; "secure-keys-1.0.0" = { @@ -29097,7 +29306,7 @@ let packageName = "semver"; version = "2.0.11"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.0.11.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-2.0.11.tgz"; sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced"; }; }; @@ -29106,7 +29315,7 @@ let packageName = "semver"; version = "2.3.2"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.3.2.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz"; sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52"; }; }; @@ -29115,7 +29324,7 @@ let packageName = "semver"; version = "4.3.6"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; }; }; @@ -29124,7 +29333,7 @@ let packageName = "semver"; version = "5.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-5.1.0.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz"; sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5"; }; }; @@ -29133,7 +29342,7 @@ let packageName = "semver"; version = "5.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-5.1.1.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-5.1.1.tgz"; sha1 = "a3292a373e6f3e0798da0b20641b9a9c5bc47e19"; }; }; @@ -29142,10 +29351,19 @@ let packageName = "semver"; version = "5.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; }; }; + "semver-5.4.1" = { + name = "semver"; + packageName = "semver"; + version = "5.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; + sha512 = "WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg=="; + }; + }; "semver-5.5.1" = { name = "semver"; packageName = "semver"; @@ -29308,22 +29526,22 @@ let sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; }; }; - "serialize-javascript-1.5.0" = { + "serialize-javascript-1.6.1" = { name = "serialize-javascript"; packageName = "serialize-javascript"; - version = "1.5.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz"; - sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ=="; + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.6.1.tgz"; + sha512 = "A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw=="; }; }; - "serialize-to-js-1.2.1" = { + "serialize-to-js-1.2.2" = { name = "serialize-to-js"; packageName = "serialize-to-js"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.1.tgz"; - sha512 = "TK6d30GNkOLeFDPuP6Jfy1Q1V31GxzppYTt2lzr8KWmIUKomFj+260QP5o4AhHLu0pr6urgyS8i/Z1PqurjBoA=="; + url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-1.2.2.tgz"; + sha512 = "mUc8vA5iJghe+O+3s0YDGFLMJcqitVFk787YKiv8a4sf6RX5W0u81b+gcHrp15O0fFa010dRBVZvwcKXOWsL9Q=="; }; }; "serializerr-1.0.3" = { @@ -29475,7 +29693,7 @@ let packageName = "sha.js"; version = "2.4.11"; src = fetchurl { - url = "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"; + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"; sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="; }; }; @@ -29484,7 +29702,7 @@ let packageName = "sha.js"; version = "2.4.5"; src = fetchurl { - url = "http://registry.npmjs.org/sha.js/-/sha.js-2.4.5.tgz"; + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.5.tgz"; sha1 = "27d171efcc82a118b99639ff581660242b506e7c"; }; }; @@ -29511,7 +29729,7 @@ let packageName = "shasum"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz"; + url = "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz"; sha1 = "e7012310d8f417f4deb5712150e5678b87ae565f"; }; }; @@ -29547,7 +29765,7 @@ let packageName = "shelljs"; version = "0.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; sha1 = "3596e6307a781544f591f37da618360f31db57b1"; }; }; @@ -29556,7 +29774,7 @@ let packageName = "shelljs"; version = "0.5.3"; src = fetchurl { - url = "http://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz"; + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz"; sha1 = "c54982b996c76ef0c1e6b59fbdc5825f5b713113"; }; }; @@ -29578,13 +29796,13 @@ let sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; }; }; - "shelljs-0.8.2" = { + "shelljs-0.8.3" = { name = "shelljs"; packageName = "shelljs"; - version = "0.8.2"; + version = "0.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz"; - sha512 = "pRXeNrCA2Wd9itwhvLp5LZQvPJ0wU6bcjaTMywHHGX5XWhVN2nzSu7WV0q+oUY7mGK3mgSkDDzP3MgjqdyIgbQ=="; + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz"; + sha512 = "fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A=="; }; }; "shellsubstitute-1.2.0" = { @@ -29722,13 +29940,13 @@ let sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3"; }; }; - "simple-peer-9.1.2" = { + "simple-peer-9.2.0" = { name = "simple-peer"; packageName = "simple-peer"; - version = "9.1.2"; + version = "9.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.2.tgz"; - sha512 = "MUWWno5o5cvISKOH4pYQ18PQJLpDaNWoKUbrPPKuspCLCkkh+zhtuQyTE8h2U2Ags+/OUN5wnUe92+9B8/Sm2Q=="; + url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.2.0.tgz"; + sha512 = "BaNhpcMBEI7GjZo+6uKSJgihtpvcopzfhSbzyhSi67d8Ab9Rp5KsXQ8pB2Yx6km46PgjNUga+2fYnHnIPLl5gg=="; }; }; "simple-plist-0.2.1" = { @@ -29736,7 +29954,7 @@ let packageName = "simple-plist"; version = "0.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz"; + url = "https://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz"; sha1 = "71766db352326928cf3a807242ba762322636723"; }; }; @@ -29862,7 +30080,7 @@ let packageName = "slice-ansi"; version = "0.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"; + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"; sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; }; }; @@ -30006,26 +30224,26 @@ let packageName = "sntp"; version = "1.0.9"; src = fetchurl { - url = "http://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; + url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; }; }; - "snyk-1.103.2" = { + "snyk-1.110.2" = { name = "snyk"; packageName = "snyk"; - version = "1.103.2"; + version = "1.110.2"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.103.2.tgz"; - sha512 = "rmMsNW94SQdmWQEtVDW1hiGKb3r7Gx1hVb0bTuK9mCm4/lHGmyuAG7QYdcwdhMrhGjg7yQDWCEXorEnq2JLs7Q=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.110.2.tgz"; + sha512 = "SQE4sudrscd48EoRJqy5h5S6c8YBiOw0r0Se3rfg1l6ElJGgCB9je6XEzfe+UmfES06D7ueFYepiQPxTwH4Qww=="; }; }; - "snyk-1.116.2" = { + "snyk-1.122.0" = { name = "snyk"; packageName = "snyk"; - version = "1.116.2"; + version = "1.122.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.116.2.tgz"; - sha512 = "zkW+IjSEDJ5f4leXck7a7aF36pJcIKRk3o2or78cnabq1mxQzgY8+ooECPDBnwvqySIwUKA8jOjnGRujaNCMpg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.122.0.tgz"; + sha512 = "esbJEF/HubMdQqjArOqHXWP4iyGXs99yk5gbcs/wwDys2RNEHTQZAYTfQSdNGMHo/Ynylfcyqrhgcg3IR7wtjQ=="; }; }; "snyk-config-2.2.0" = { @@ -30037,31 +30255,31 @@ let sha512 = "mq0wbP/AgjcmRq5i5jg2akVVV3iSYUPTowZwKn7DChRLDL8ySOzWAwan+ImXiyNbrWo87FNI/15O6MpOnTxOIg=="; }; }; - "snyk-docker-plugin-1.12.0" = { + "snyk-docker-plugin-1.12.3" = { name = "snyk-docker-plugin"; packageName = "snyk-docker-plugin"; - version = "1.12.0"; + version = "1.12.3"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.12.0.tgz"; - sha512 = "QqKq2bGdnf1L2PNGQrHoqcoaV/PIlJv1qjKIzwA93gfhToKGkgJ31oPXwfef/l9N+ui0Y44c4POBHFbFf8PlJw=="; + url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.12.3.tgz"; + sha512 = "ZbvaFCPCd0wxhqxjzU/iyf39tKlq2nvI9nPW32uZV3RGdHrkQH55BzCtBCF9d0dapxX+PKgae/4u2BKNw8hd9Q=="; }; }; - "snyk-docker-plugin-1.13.1" = { + "snyk-docker-plugin-1.17.0" = { name = "snyk-docker-plugin"; packageName = "snyk-docker-plugin"; - version = "1.13.1"; + version = "1.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.13.1.tgz"; - sha512 = "rhVPwMryfGanLXeDoDzjQabGq8VlEPSkvDvraiOhm/F9o5E4zam6vDlVQXsYVRb4ydVKPLgux2ejWyFiG6shFA=="; + url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.17.0.tgz"; + sha512 = "bRY8v9nieRWke4i3/KCFnAE0OCUcvN+v4cyZxecdULBwug+KmF1eOzofgatIJT4O58fqIoa+GCAzXxO+d0H0/A=="; }; }; - "snyk-go-plugin-1.5.2" = { + "snyk-go-plugin-1.6.0" = { name = "snyk-go-plugin"; packageName = "snyk-go-plugin"; - version = "1.5.2"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.2.tgz"; - sha512 = "XWajcSh6Ld+I+WdcyU3DGDuE2ydThQd8ORkESy0nQ2LwekygLYVYN66OBy0uxpqYfd4qoqeg+J8lb4oGzCmyGA=="; + url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.6.0.tgz"; + sha512 = "E6aYw7XAXSs2wJR3fU+vGQ1lVyjAw8PHIQYQwBwMkTHByhJIWPcu6Hy/jT5LcjJHlhYXlpOuk53HeLVK+kcXrQ=="; }; }; "snyk-go-plugin-1.6.1" = { @@ -30073,15 +30291,6 @@ let sha512 = "hFOMyznfcMzF1HaZP18VmjQSqK/jBOowh0lpJY4UqmaQSZyJury3Ax+44O9oVUJi8lb8A4g7RVbxhlWl6bIqlA=="; }; }; - "snyk-gradle-plugin-2.1.0" = { - name = "snyk-gradle-plugin"; - packageName = "snyk-gradle-plugin"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-2.1.0.tgz"; - sha512 = "9gYJluomFZ5kaww5FoBvp4zUIsr27pEJ12jQJaVf0FJ0BmyYHmbCoxvHdqjCSYS2fVtF+fmPnvw0XKQOIwA1SA=="; - }; - }; "snyk-gradle-plugin-2.1.1" = { name = "snyk-gradle-plugin"; packageName = "snyk-gradle-plugin"; @@ -30091,13 +30300,13 @@ let sha512 = "aFeVC5y3XkJ5BxknHhtYo76as3xJbzSQlXACGZrQZGQ/w/UhNdM8VI1QB6Eq4uEzexleB/hcJwYxNmhI2CNCeA=="; }; }; - "snyk-module-1.8.2" = { - name = "snyk-module"; - packageName = "snyk-module"; - version = "1.8.2"; + "snyk-gradle-plugin-2.1.3" = { + name = "snyk-gradle-plugin"; + packageName = "snyk-gradle-plugin"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.2.tgz"; - sha512 = "XqhdbZ/CUuJ5gSaYdYfapLqx9qm2Mp6nyRMBCLXe9tJSiohOJsc9fQuUDbdOiRCqpA4BD6WLl+qlwOJmJoszBg=="; + url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-2.1.3.tgz"; + sha512 = "xti5Uox0NLPO89O/MQd9qgnlynNtO2eXSukzyjONeGgueyNv6I7FQnUvHtVj6IUCBPlMP8c5D7bQmlFfemz8ZA=="; }; }; "snyk-module-1.9.1" = { @@ -30118,22 +30327,31 @@ let sha512 = "9jAhZhv+7YcqtoQYCYlgMoxK+dWBKlk+wkX27Ebg3vNddNop9q5jZitRXTjsXwfSUZHRt+Ptw1f8vei9kjzZVg=="; }; }; - "snyk-nodejs-lockfile-parser-1.5.1" = { - name = "snyk-nodejs-lockfile-parser"; - packageName = "snyk-nodejs-lockfile-parser"; - version = "1.5.1"; + "snyk-mvn-plugin-2.0.1" = { + name = "snyk-mvn-plugin"; + packageName = "snyk-mvn-plugin"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.5.1.tgz"; - sha512 = "rfFcW+ZrOEH3NxufUCpMBpNLSb4BPOxLbAM6MoRqfYH5DhSdTHsecwRDf1gU6XzQok/9Koav+1qtP8+welJC2A=="; + url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.0.1.tgz"; + sha512 = "TBrdcFXHdYuRYFCvpyUeFC+mCi6SOV3vdxgHrP7JRNnJwO8PYaKCObLJyhpRWa8IaHv/8CjJTmnEbWIh7BPHAA=="; }; }; - "snyk-nodejs-lockfile-parser-1.9.0" = { + "snyk-nodejs-lockfile-parser-1.10.1" = { name = "snyk-nodejs-lockfile-parser"; packageName = "snyk-nodejs-lockfile-parser"; - version = "1.9.0"; + version = "1.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.9.0.tgz"; - sha512 = "GRn70VDe+JISkRbnxc9vxCBV+Ekkdr79krVXbYNDJgQyIjH+FXh6PXVvpregVsvCcNqP1ctbBw/u1w6e9xX1QA=="; + url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.10.1.tgz"; + sha512 = "0k0QWB4bgmIy81GQVEODwaSjkXldJStM6ooSNiTrwT7cjzJmpN9r6r1WXWTZpSuAyADvGwTfSyzdvl2xzQXAEA=="; + }; + }; + "snyk-nodejs-lockfile-parser-1.7.1" = { + name = "snyk-nodejs-lockfile-parser"; + packageName = "snyk-nodejs-lockfile-parser"; + version = "1.7.1"; + src = fetchurl { + url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.7.1.tgz"; + sha512 = "0gHELqMhzUxb/t3Tg6d6G9LTDioOXCrEMt9aetOeV8wD/ZRL5VFNjwcdrm8qILLqzDFaFjFIyMc66c0OL4zFAQ=="; }; }; "snyk-nuget-plugin-1.6.5" = { @@ -30154,15 +30372,6 @@ let sha512 = "g5QSHBsRJ2O4cNxKC4zlWwnQYiSgQ77Y6QgGmo3ihPX3VLZrc1amaZIpPsNe1jwXirnGj2rvR5Xw+jDjbzvHFw=="; }; }; - "snyk-policy-1.12.0" = { - name = "snyk-policy"; - packageName = "snyk-policy"; - version = "1.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.12.0.tgz"; - sha512 = "CEioNnDzccHyid7UIVl3bJ1dnG4co4ofI+KxuC1mo0IUXy64gxnBTeVoZF5gVLWbAyxGxSeW8f0+8GmWMHVb7w=="; - }; - }; "snyk-policy-1.13.1" = { name = "snyk-policy"; packageName = "snyk-policy"; @@ -30172,13 +30381,13 @@ let sha512 = "l9evS3Yk70xyvajjg+I6Ij7fr7gxpVRMZl0J1xNpWps/IVu4DSGih3aMmXi47VJozr4A/eFyj7R1lIr2GhqJCA=="; }; }; - "snyk-python-plugin-1.8.2" = { - name = "snyk-python-plugin"; - packageName = "snyk-python-plugin"; - version = "1.8.2"; + "snyk-policy-1.13.3" = { + name = "snyk-policy"; + packageName = "snyk-policy"; + version = "1.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.8.2.tgz"; - sha512 = "LBvjztnXarSHKyhivzM567icOOLOB98I7S9EEnjepuG+EZ0jiZzqOEMVRmzuYi+hRq3Cwh0hhjkwgJAQpKDz+g=="; + url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.13.3.tgz"; + sha512 = "6J2a+Wt9zgvTtCwi4x8rLtkDQzFNPqubfIgs3aR35ZsEXPwI4XHGo0cxnJPDriqncp2JK72vnRpNfIZ7v0L1Mw=="; }; }; "snyk-python-plugin-1.9.0" = { @@ -30190,6 +30399,15 @@ let sha512 = "zlyOHoCpmyVym9AwkboeepzEGrY3gHsM7eWP/nJ85TgCnQO5H5orKm3RL57PNbWRY+BnDmoQQ+udQgjym2+3sg=="; }; }; + "snyk-python-plugin-1.9.1" = { + name = "snyk-python-plugin"; + packageName = "snyk-python-plugin"; + version = "1.9.1"; + src = fetchurl { + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.9.1.tgz"; + sha512 = "4R040DBK77NSfSy3rCndmrv85YlLrKZU1ct59oZSoGb1PYdCi8kXRuq50UpSgasp6YR0yJxT22T38hNOAjTtVw=="; + }; + }; "snyk-resolve-1.0.1" = { name = "snyk-resolve"; packageName = "snyk-resolve"; @@ -30199,15 +30417,6 @@ let sha512 = "7+i+LLhtBo1Pkth01xv+RYJU8a67zmJ8WFFPvSxyCjdlKIcsps4hPQFebhz+0gC5rMemlaeIV6cqwqUf9PEDpw=="; }; }; - "snyk-resolve-deps-4.0.1" = { - name = "snyk-resolve-deps"; - packageName = "snyk-resolve-deps"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-4.0.1.tgz"; - sha512 = "gieaYoOuJLXzUmDDKfQJAqfwaxa43KmSqN2d9abRfgMXnLlX9IqyoZ1wqZMbd3WN7tsHSkpWvVwc4FHdQEkUKA=="; - }; - }; "snyk-resolve-deps-4.0.2" = { name = "snyk-resolve-deps"; packageName = "snyk-resolve-deps"; @@ -30226,6 +30435,15 @@ let sha512 = "bOUqsQ1Lysnwfnvf4QQIBfC0M0ZVuhlshTKd7pNwgAJ41YEPJNrPEpzOePl/HfKtwilEEwHh5YHvjYGegEKx0A=="; }; }; + "snyk-sbt-plugin-2.0.1" = { + name = "snyk-sbt-plugin"; + packageName = "snyk-sbt-plugin"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.0.1.tgz"; + sha512 = "AsGGMP0W3mlKygXUI5jjt54qWFttZEXT1A40+u21p8rZPXLZprwnd+QH9pZDd04d9W9aofGvON8NJeOn9KS39Q=="; + }; + }; "snyk-tree-1.0.0" = { name = "snyk-tree"; packageName = "snyk-tree"; @@ -30249,7 +30467,7 @@ let packageName = "socket.io"; version = "1.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz"; + url = "https://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz"; sha1 = "b566532888dae3ac9058a12f294015ebdfa8084a"; }; }; @@ -30312,7 +30530,7 @@ let packageName = "socket.io-client"; version = "1.0.6"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz"; + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz"; sha1 = "c86cb3e507ab2f96da4500bd34fcf46a1e9dfe5e"; }; }; @@ -30348,7 +30566,7 @@ let packageName = "socket.io-parser"; version = "2.1.2"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz"; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz"; sha1 = "876655b9edd555c5bdf7301cedf30a436c67b8b0"; }; }; @@ -30357,7 +30575,7 @@ let packageName = "socket.io-parser"; version = "2.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz"; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz"; sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a"; }; }; @@ -30366,7 +30584,7 @@ let packageName = "socket.io-parser"; version = "2.3.1"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz"; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz"; sha1 = "dd532025103ce429697326befd64005fcfe5b4a0"; }; }; @@ -30375,7 +30593,7 @@ let packageName = "socket.io-parser"; version = "3.2.0"; src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz"; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz"; sha512 = "FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA=="; }; }; @@ -30469,13 +30687,13 @@ let sha512 = "UMmCHovws/sxIBZsIRhIl8uRPou/RFDD0vVop81T1hG106NLLgqajKKuHAOtAP6hflnZ0UrVA2VFwddTd/NQyA=="; }; }; - "sodium-native-2.2.3" = { + "sodium-native-2.2.4" = { name = "sodium-native"; packageName = "sodium-native"; - version = "2.2.3"; + version = "2.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.2.3.tgz"; - sha512 = "0rQvKwlWW86YmmAhosnJ6/2PR3mdAtfuWW147L4x3/gwfL7XiJ7mf2BPvBwU16vsYQNY1yxOQg9YT/MN6qoZOA=="; + url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.2.4.tgz"; + sha512 = "zE3lJAEN9R/XzJmNUqfyqL3vAnES9rFuyeq5ouHmCOdkVcY5UKbCcl7eUyZ+LG4RcqVfx8CAcgwv9HRpgoNrlg=="; }; }; "sodium-universal-2.0.0" = { @@ -30591,7 +30809,7 @@ let packageName = "source-map"; version = "0.1.31"; src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz"; sha1 = "9f704d0d69d9e138a81badf6ebb4fde33d151c61"; }; }; @@ -30600,7 +30818,7 @@ let packageName = "source-map"; version = "0.4.4"; src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz"; sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b"; }; }; @@ -30649,6 +30867,15 @@ let sha1 = "32552aa64b458392a85eab3b0b5ee61527167aeb"; }; }; + "source-map-support-0.5.10" = { + name = "source-map-support"; + packageName = "source-map-support"; + version = "0.5.10"; + src = fetchurl { + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.10.tgz"; + sha512 = "YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ=="; + }; + }; "source-map-support-0.5.3" = { name = "source-map-support"; packageName = "source-map-support"; @@ -30667,15 +30894,6 @@ let sha512 = "N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g=="; }; }; - "source-map-support-0.5.9" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.5.9"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz"; - sha512 = "gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA=="; - }; - }; "source-map-url-0.4.0" = { name = "source-map-url"; packageName = "source-map-url"; @@ -30766,13 +30984,13 @@ let sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; }; }; - "spdx-license-ids-3.0.2" = { + "spdx-license-ids-3.0.3" = { name = "spdx-license-ids"; packageName = "spdx-license-ids"; - version = "3.0.2"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz"; - sha512 = "qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg=="; + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz"; + sha512 = "uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g=="; }; }; "spdy-1.32.5" = { @@ -30780,7 +30998,7 @@ let packageName = "spdy"; version = "1.32.5"; src = fetchurl { - url = "http://registry.npmjs.org/spdy/-/spdy-1.32.5.tgz"; + url = "https://registry.npmjs.org/spdy/-/spdy-1.32.5.tgz"; sha1 = "70eff23cde4e97d52a445f65afddcc5695eb5edb"; }; }; @@ -30807,7 +31025,7 @@ let packageName = "split"; version = "0.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/split/-/split-0.3.3.tgz"; + url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz"; sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f"; }; }; @@ -30825,7 +31043,7 @@ let packageName = "split-buffer"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/split-buffer/-/split-buffer-1.0.0.tgz"; + url = "https://registry.npmjs.org/split-buffer/-/split-buffer-1.0.0.tgz"; sha1 = "b7e8e0ab51345158b72c1f6dbef2406d51f1d027"; }; }; @@ -30847,13 +31065,13 @@ let sha512 = "RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw=="; }; }; - "split2-3.0.0" = { + "split2-3.1.0" = { name = "split2"; packageName = "split2"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/split2/-/split2-3.0.0.tgz"; - sha512 = "Cp7G+nUfKJyHCrAI8kze3Q00PFGEG1pMgrAlTFlDbn+GW24evSZHJuMl+iUJx1w/NTRDeBiTgvwnf6YOt94FMw=="; + url = "https://registry.npmjs.org/split2/-/split2-3.1.0.tgz"; + sha512 = "ePE1otNQVMnBRyqf3INbZvZwBPGsdBDThgrOWZ6z8zXGNVQNVCSEoOO9aBMTzDN1mXoNSZJ2kHSFH7AA5SPWww=="; }; }; "sprintf-js-1.0.3" = { @@ -30861,7 +31079,7 @@ let packageName = "sprintf-js"; version = "1.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; sha1 = "04e6926f662895354f3dd015203633b857297e2c"; }; }; @@ -30883,13 +31101,13 @@ let sha1 = "06cd70795ee58d1462d100a45c660df3179d3b39"; }; }; - "ssb-blobs-1.1.7" = { + "ssb-blobs-1.1.8" = { name = "ssb-blobs"; packageName = "ssb-blobs"; - version = "1.1.7"; + version = "1.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-blobs/-/ssb-blobs-1.1.7.tgz"; - sha512 = "y2GP3xIyGPbRYvpwUgA/U8QaCE2y+7cT22/yN6PcoMqbZOPI7qNP7eFzCXa/HYa7LuIczyID5/25UFkP84rrig=="; + url = "https://registry.npmjs.org/ssb-blobs/-/ssb-blobs-1.1.8.tgz"; + sha512 = "WcYjqv8F383QvgCTdNdYp+xzJACLL+OiVLD8Got5qmcevbwv2nrUNtQOhe5zJ5Qfl4o+Y/RYqEFGrUUq9oTCvg=="; }; }; "ssb-client-4.6.0" = { @@ -30901,40 +31119,40 @@ let sha512 = "LyH5Y/U7xvafmAuG1puyhNv4G3Ew9xC67dYgRX0wwbUf5iT422WB1Cvat9qGFAu3/BQbdctXtdEQPxaAn0+hYA=="; }; }; - "ssb-config-2.3.7" = { + "ssb-config-2.3.9" = { name = "ssb-config"; packageName = "ssb-config"; - version = "2.3.7"; + version = "2.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-config/-/ssb-config-2.3.7.tgz"; - sha512 = "djjLoNpDlE0K/UfhU1mNuJqOy8oJsv/6Q8RLDTHdby2Z+r2MxKRaACH3R9DMZyzgnd3wLjXba5ntNvsuabjx5g=="; + url = "https://registry.npmjs.org/ssb-config/-/ssb-config-2.3.9.tgz"; + sha512 = "UF+4+khFXILLBqtu9HfrpUwYnDXIdAyJe3u9X4GrApuoakxuSKwaUGakUxLPyo6COyV2brMqufUgf+fDOI8Ftw=="; }; }; - "ssb-db-18.6.2" = { + "ssb-db-18.6.5" = { name = "ssb-db"; packageName = "ssb-db"; - version = "18.6.2"; + version = "18.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-db/-/ssb-db-18.6.2.tgz"; - sha512 = "7Z/d9c+qGp/7Sg5RsqHwviOzUoOK52KlFbt+4GR8a95/b9KW9EO9nRDdOYXwa+hY+D0SZe8HMW3Qb/0NNga3uQ=="; + url = "https://registry.npmjs.org/ssb-db/-/ssb-db-18.6.5.tgz"; + sha512 = "/4nFP7yj1JD5jrwX9bHG2nipBefl++xXXbNWD14eL+Ohs3X8kdmJeBKnHgiIF7Je4HQOI31OmEIdyyLKum5niQ=="; }; }; - "ssb-ebt-5.2.7" = { + "ssb-ebt-5.3.5" = { name = "ssb-ebt"; packageName = "ssb-ebt"; - version = "5.2.7"; + version = "5.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-ebt/-/ssb-ebt-5.2.7.tgz"; - sha512 = "dLiLRtGMagSKRuOIBQzPDfAQf7LNFR8+g91tKxMPbV6WMENF2bojz3POd75i6BhXJhJx1A6zpO6IrMz3StmtbA=="; + url = "https://registry.npmjs.org/ssb-ebt/-/ssb-ebt-5.3.5.tgz"; + sha512 = "FgPhHMZ18HgRNMqMXvUwhkF+g9fYb1mfhO1mTGzw0sNLEHQrhTcHsdCWBZ8UdMTWPi0sVmWb5nqcC3qg37FGhQ=="; }; }; - "ssb-friends-3.1.7" = { + "ssb-friends-3.1.12" = { name = "ssb-friends"; packageName = "ssb-friends"; - version = "3.1.7"; + version = "3.1.12"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-friends/-/ssb-friends-3.1.7.tgz"; - sha512 = "3ph/L8m6zqNC1CX9BhCLqgDO227CVb86Mx7yHgSK6vilc9iby612VGsrRbAQaNiSRDPoBhLNOQLrQWaTkn7LBw=="; + url = "https://registry.npmjs.org/ssb-friends/-/ssb-friends-3.1.12.tgz"; + sha512 = "G8V8RtV0DLXY36rEpArd1zjSY88ErtaRaLuAtc6kIhUBBPlY0mb1wN5CdsuLWnlxis0Mwt5gK2rtjMG8jWC/jA=="; }; }; "ssb-git-0.5.0" = { @@ -30942,7 +31160,7 @@ let packageName = "ssb-git"; version = "0.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/ssb-git/-/ssb-git-0.5.0.tgz"; + url = "https://registry.npmjs.org/ssb-git/-/ssb-git-0.5.0.tgz"; sha1 = "5f4f712e42a23b895b128d61bc70dfb3bd5b40b4"; }; }; @@ -30960,17 +31178,17 @@ let packageName = "ssb-issues"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/ssb-issues/-/ssb-issues-1.0.0.tgz"; + url = "https://registry.npmjs.org/ssb-issues/-/ssb-issues-1.0.0.tgz"; sha1 = "9e857d170dff152c53a273eb9004a0a914a106e5"; }; }; - "ssb-keys-7.1.3" = { + "ssb-keys-7.1.4" = { name = "ssb-keys"; packageName = "ssb-keys"; - version = "7.1.3"; + version = "7.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-7.1.3.tgz"; - sha512 = "f66vIZ3LkeMx73enLTkPC9ecTUcUrjtVHvRt45nDmubGMom21Z82JQLWYbQ++09v3JG3B4XEir8inhv6AAISSQ=="; + url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-7.1.4.tgz"; + sha512 = "tRDoFAeTL4NVGE4WFgd4Jck7wmsz340iE3Z8KEpGyFkxo5LqH01Gl+8aCDKqNQoJpCByG7luSSTztS7zl6yk8w=="; }; }; "ssb-links-3.0.3" = { @@ -30978,7 +31196,7 @@ let packageName = "ssb-links"; version = "3.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/ssb-links/-/ssb-links-3.0.3.tgz"; + url = "https://registry.npmjs.org/ssb-links/-/ssb-links-3.0.3.tgz"; sha512 = "x09ShIMjwvdZI7aDZm8kc1v5YCGZa9ulCOoxrf/RYJ98s5gbTfO9CBCzeMBAeQ5kRwSuKjiOxJHdeEBkj4Y6hw=="; }; }; @@ -31032,7 +31250,7 @@ let packageName = "ssb-pull-requests"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/ssb-pull-requests/-/ssb-pull-requests-1.0.0.tgz"; + url = "https://registry.npmjs.org/ssb-pull-requests/-/ssb-pull-requests-1.0.0.tgz"; sha1 = "dfd30cd50eecd8546bd4aa7f06e7c8f501c08118"; }; }; @@ -31045,13 +31263,13 @@ let sha512 = "y4OA2MvGl1jU7bUTYsTmMNSqlPt4eh9401THUW1DO4aFyBFEWvpa3eKJHc8aTmaph2hutPPbdKgEFsWDzw26uw=="; }; }; - "ssb-ref-2.13.8" = { + "ssb-ref-2.13.9" = { name = "ssb-ref"; packageName = "ssb-ref"; - version = "2.13.8"; + version = "2.13.9"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-ref/-/ssb-ref-2.13.8.tgz"; - sha512 = "HG52vbajkz4jZx1UnyqDuiu6GCKDgf+F70ljwJb/z0iLYhUVx4uvW2gxDrwLUQ9+kSKTEud8wGhWCfui1zu29w=="; + url = "https://registry.npmjs.org/ssb-ref/-/ssb-ref-2.13.9.tgz"; + sha512 = "TfatNqLvoP+eW/pMIbCmNcaoDq4R2k8jCtWkwDKx4AtluN/LwtyP931d5Mh+2gmzA04W7kxkr6f5ENGgdadMYg=="; }; }; "ssb-validate-4.0.4" = { @@ -31086,17 +31304,17 @@ let packageName = "sshpk"; version = "1.14.1"; src = fetchurl { - url = "http://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz"; + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz"; sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb"; }; }; - "sshpk-1.15.2" = { + "sshpk-1.16.0" = { name = "sshpk"; packageName = "sshpk"; - version = "1.15.2"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz"; - sha512 = "Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA=="; + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.0.tgz"; + sha512 = "Zhev35/y7hRMcID/upReIvRse+I9SVhyVre/KTJSJQWMz3C3+G+HpO7m1wK/yckEtujKZ7dS4hkVxAnmHaIGVQ=="; }; }; "sshpk-1.7.1" = { @@ -31104,7 +31322,7 @@ let packageName = "sshpk"; version = "1.7.1"; src = fetchurl { - url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz"; + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz"; sha1 = "565e386c42a77e6062fbd14c0472ff21cd53398c"; }; }; @@ -31284,7 +31502,7 @@ let packageName = "stream-browserify"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz"; + url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz"; sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"; }; }; @@ -31311,7 +31529,7 @@ let packageName = "stream-combiner"; version = "0.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; + url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; }; }; @@ -31320,7 +31538,7 @@ let packageName = "stream-combiner"; version = "0.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz"; + url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz"; sha1 = "aec8cbac177b56b6f4fa479ced8c1912cee52858"; }; }; @@ -31360,6 +31578,15 @@ let sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw=="; }; }; + "stream-exhaust-1.0.2" = { + name = "stream-exhaust"; + packageName = "stream-exhaust"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz"; + sha512 = "b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw=="; + }; + }; "stream-http-2.8.3" = { name = "stream-http"; packageName = "stream-http"; @@ -31392,7 +31619,7 @@ let packageName = "stream-splicer"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz"; + url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz"; sha1 = "1b63be438a133e4b671cc1935197600175910d83"; }; }; @@ -31540,13 +31767,13 @@ let sha1 = "d40dbb686a3ace960c1cffca562bf2c45f8363ed"; }; }; - "string-similarity-1.2.2" = { + "string-similarity-2.0.0" = { name = "string-similarity"; packageName = "string-similarity"; - version = "1.2.2"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.2.tgz"; - sha512 = "IoHUjcw3Srl8nsPlW04U3qwWPk3oG2ffLM0tN853d/E/JlIvcmZmDY2Kz5HzKp4lEi2T7QD7Zuvjq/1rDw+XcQ=="; + url = "https://registry.npmjs.org/string-similarity/-/string-similarity-2.0.0.tgz"; + sha512 = "62FBZrVXV5cI23bQ9L49Y4d9u9yaH61JhAwLyUFUzQbHDjdihxdfCwIherg+vylR/s4ucCddK8iKSEO7kinffQ=="; }; }; "string-stream-0.0.7" = { @@ -31585,6 +31812,15 @@ let sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; }; }; + "string-width-3.0.0" = { + name = "string-width"; + packageName = "string-width"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/string-width/-/string-width-3.0.0.tgz"; + sha512 = "rr8CUxBbvOZDUvc5lNIJ+OC1nPVpz+Siw9VBtUjB9b6jZehZLFt0JMCZzShFHIsI8cbhm0EsNIfWJMFV3cu3Ew=="; + }; + }; "string.prototype.codepointat-0.2.1" = { name = "string.prototype.codepointat"; packageName = "string.prototype.codepointat"; @@ -31635,7 +31871,7 @@ let packageName = "string_decoder"; version = "0.10.31"; src = fetchurl { - url = "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; }; }; @@ -31653,7 +31889,7 @@ let packageName = "string_decoder"; version = "1.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; }; }; @@ -31698,7 +31934,7 @@ let packageName = "strip-ansi"; version = "0.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; }; }; @@ -31707,7 +31943,7 @@ let packageName = "strip-ansi"; version = "0.3.0"; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; sha1 = "25f48ea22ca79187f3174a4db8759347bb126220"; }; }; @@ -31716,7 +31952,7 @@ let packageName = "strip-ansi"; version = "2.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz"; sha1 = "df62c1aa94ed2f114e1d0f21fd1d50482b79a60e"; }; }; @@ -31725,7 +31961,7 @@ let packageName = "strip-ansi"; version = "3.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; }; }; @@ -31824,7 +32060,7 @@ let packageName = "strip-eof"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; + url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; }; }; @@ -31891,13 +32127,13 @@ let sha512 = "zhzBZev0uhT2IrFUerenXhfaE0vFUYwAZsnG0gIKGpfM/Gi6jOUQ3cmcvyTsXeDLIPiTubHESeO7EbD6FoPmzw=="; }; }; - "strong-log-transformer-2.0.0" = { + "strong-log-transformer-2.1.0" = { name = "strong-log-transformer"; packageName = "strong-log-transformer"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.0.0.tgz"; - sha512 = "FQmNqAXJgOX8ygOcvPLlGWBNT41mvNJ9ALoYf0GTwVt9t30mGTqpmp/oJx5gLcu52DXK10kS7dVWhx8aPXDTlg=="; + url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz"; + sha512 = "B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA=="; }; }; "strsplit-1.0.0" = { @@ -31959,7 +32195,7 @@ let packageName = "superagent"; version = "0.21.0"; src = fetchurl { - url = "http://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz"; + url = "https://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz"; sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87"; }; }; @@ -31968,7 +32204,7 @@ let packageName = "superagent"; version = "1.8.5"; src = fetchurl { - url = "http://registry.npmjs.org/superagent/-/superagent-1.8.5.tgz"; + url = "https://registry.npmjs.org/superagent/-/superagent-1.8.5.tgz"; sha1 = "1c0ddc3af30e80eb84ebc05cb2122da8fe940b55"; }; }; @@ -31990,6 +32226,15 @@ let sha512 = "qaGDf+QUYxgMYdJBWCezHnc3UjrCUwxm5bCfxBhTXI5BbCluVzmVNYzxvCw1jP9PXmwUZeOW2yPpGm9fLbhtFg=="; }; }; + "superagent-4.1.0" = { + name = "superagent"; + packageName = "superagent"; + version = "4.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/superagent/-/superagent-4.1.0.tgz"; + sha512 = "FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag=="; + }; + }; "superagent-proxy-2.0.0" = { name = "superagent-proxy"; packageName = "superagent-proxy"; @@ -32071,6 +32316,15 @@ let sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; }; }; + "supports-color-6.1.0" = { + name = "supports-color"; + packageName = "supports-color"; + version = "6.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz"; + sha512 = "qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ=="; + }; + }; "sver-compat-1.5.0" = { name = "sver-compat"; packageName = "sver-compat"; @@ -32193,7 +32447,7 @@ let packageName = "syntax-error"; version = "1.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz"; + url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz"; sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; @@ -32202,7 +32456,7 @@ let packageName = "table"; version = "3.8.3"; src = fetchurl { - url = "http://registry.npmjs.org/table/-/table-3.8.3.tgz"; + url = "https://registry.npmjs.org/table/-/table-3.8.3.tgz"; sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f"; }; }; @@ -32211,17 +32465,17 @@ let packageName = "table"; version = "4.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/table/-/table-4.0.3.tgz"; + url = "https://registry.npmjs.org/table/-/table-4.0.3.tgz"; sha512 = "S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg=="; }; }; - "table-5.1.1" = { + "table-5.2.0" = { name = "table"; packageName = "table"; - version = "5.1.1"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/table/-/table-5.1.1.tgz"; - sha512 = "NUjapYb/qd4PeFW03HnAuOJ7OMcBkJlqeClWxeNlQ0lXGSb52oZXGzkO0/I0ARegQ2eUT1g2VDJH0eUxDRcHmw=="; + url = "https://registry.npmjs.org/table/-/table-5.2.0.tgz"; + sha512 = "hAdBBAMCZl4/U3eQhsPN2Z8wRJC98lpRhDW2I86VQbPBqyj4E681VhvUkfb90qUJ4rnRfu8t4/8SGHPsAH1ygg=="; }; }; "tabtab-1.3.2" = { @@ -32229,7 +32483,7 @@ let packageName = "tabtab"; version = "1.3.2"; src = fetchurl { - url = "http://registry.npmjs.org/tabtab/-/tabtab-1.3.2.tgz"; + url = "https://registry.npmjs.org/tabtab/-/tabtab-1.3.2.tgz"; sha1 = "bb9c2ca6324f659fde7634c2caf3c096e1187ca7"; }; }; @@ -32293,17 +32547,17 @@ let packageName = "tape"; version = "2.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/tape/-/tape-2.3.3.tgz"; + url = "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz"; sha1 = "2e7ce0a31df09f8d6851664a71842e0ca5057af7"; }; }; - "tape-4.9.1" = { + "tape-4.9.2" = { name = "tape"; packageName = "tape"; - version = "4.9.1"; + version = "4.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/tape/-/tape-4.9.1.tgz"; - sha512 = "6fKIXknLpoe/Jp4rzHKFPpJUHDHDqn8jus99IfPnHIjyz78HYlefTGD3b5EkbQzuLfaEvmfPK3IolLgq2xT3kw=="; + url = "https://registry.npmjs.org/tape/-/tape-4.9.2.tgz"; + sha512 = "lPXKRKILZ1kZaUy5ynWKs8ATGSUO7HAFHCFnBam6FaGSqPdOwMWbxXHq4EXFLE8WRTleo/YOMXkaUTRmTB1Fiw=="; }; }; "tar-0.1.17" = { @@ -32311,7 +32565,7 @@ let packageName = "tar"; version = "0.1.17"; src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-0.1.17.tgz"; + url = "https://registry.npmjs.org/tar/-/tar-0.1.17.tgz"; sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc"; }; }; @@ -32320,7 +32574,7 @@ let packageName = "tar"; version = "2.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-2.2.1.tgz"; + url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz"; sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; }; }; @@ -32441,22 +32695,22 @@ let sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; }; }; - "terser-3.11.0" = { + "terser-3.14.1" = { name = "terser"; packageName = "terser"; - version = "3.11.0"; + version = "3.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-3.11.0.tgz"; - sha512 = "5iLMdhEPIq3zFWskpmbzmKwMQixKmTYwY3Ox9pjtSklBLnHiuQ0GKJLhL1HSYtyffHM3/lDIFBnb82m9D7ewwQ=="; + url = "https://registry.npmjs.org/terser/-/terser-3.14.1.tgz"; + sha512 = "NSo3E99QDbYSMeJaEk9YW2lTg3qS9V0aKGlb+PlOrei1X02r1wSBHCNX/O+yeTRFSWPKPIGj6MqvvdqV4rnVGw=="; }; }; - "terser-webpack-plugin-1.1.0" = { + "terser-webpack-plugin-1.2.1" = { name = "terser-webpack-plugin"; packageName = "terser-webpack-plugin"; - version = "1.1.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz"; - sha512 = "61lV0DSxMAZ8AyZG7/A4a3UPlrbOBo8NIQ4tJzLPAdGOQ+yoNC7l5ijEow27lBAL2humer01KLS6bGIMYQxKoA=="; + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.2.1.tgz"; + sha512 = "GGSt+gbT0oKcMDmPx4SRSfJPE1XaN3kQRWG4ghxKQw9cn5G9x6aCKSsgYdvyM0na9NJ4Drv0RG6jbBByZ5CMjw=="; }; }; "test-exclude-4.2.3" = { @@ -32572,7 +32826,7 @@ let packageName = "through"; version = "2.2.7"; src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.2.7.tgz"; + url = "https://registry.npmjs.org/through/-/through-2.2.7.tgz"; sha1 = "6e8e21200191d4eb6a99f6f010df46aa1c6eb2bd"; }; }; @@ -32581,7 +32835,7 @@ let packageName = "through"; version = "2.3.8"; src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.3.8.tgz"; + url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; }; }; @@ -32590,7 +32844,7 @@ let packageName = "through2"; version = "0.6.5"; src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; + url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; }; }; @@ -32599,7 +32853,7 @@ let packageName = "through2"; version = "2.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-2.0.3.tgz"; + url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz"; sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be"; }; }; @@ -32621,13 +32875,13 @@ let sha512 = "8B+sevlqP4OiCjonI1Zw03Sf8PuV1eRsYQgLad5eonILOdyeRsY27A/2Ze8IlvlMvq31OH+3fz/styI7Ya62yQ=="; }; }; - "through2-filter-2.0.0" = { + "through2-filter-3.0.0" = { name = "through2-filter"; packageName = "through2-filter"; - version = "2.0.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz"; - sha1 = "60bc55a0dacb76085db1f9dae99ab43f83d622ec"; + url = "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz"; + sha512 = "jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA=="; }; }; "thunkify-2.1.2" = { @@ -32653,7 +32907,7 @@ let packageName = "thunky"; version = "0.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz"; + url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz"; sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e"; }; }; @@ -32707,7 +32961,7 @@ let packageName = "timers-browserify"; version = "1.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; + url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d"; }; }; @@ -32986,7 +33240,7 @@ let packageName = "to-vfile"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/to-vfile/-/to-vfile-1.0.0.tgz"; + url = "https://registry.npmjs.org/to-vfile/-/to-vfile-1.0.0.tgz"; sha1 = "88defecd43adb2ef598625f0e3d59f7f342941ba"; }; }; @@ -33008,22 +33262,13 @@ let sha512 = "FOinMMjECHmDt6PZkSmcbM8ir41kGwYCbVW7NczWkWNNeuX9/mQHz31oNSJKZrkvgfas692ZoZ+G1jdM43qVGA=="; }; }; - "toml-2.3.3" = { + "toml-2.3.5" = { name = "toml"; packageName = "toml"; - version = "2.3.3"; + version = "2.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz"; - sha512 = "O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA=="; - }; - }; - "tomlify-j0.4-3.0.0" = { - name = "tomlify-j0.4"; - packageName = "tomlify-j0.4"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz"; - sha512 = "2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ=="; + url = "https://registry.npmjs.org/toml/-/toml-2.3.5.tgz"; + sha512 = "ulY/Z2yPWKl/3JvGJvnEe7mXqVt2+TtDoRxJNgTAwO+3lwXefeCHS697NN0KRy6q7U/b1MnSnj/UGF/4U0U2WQ=="; }; }; "topo-3.0.3" = { @@ -33040,7 +33285,7 @@ let packageName = "torrent-discovery"; version = "5.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/torrent-discovery/-/torrent-discovery-5.4.0.tgz"; + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-5.4.0.tgz"; sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29"; }; }; @@ -33112,7 +33357,7 @@ let packageName = "tough-cookie"; version = "2.3.4"; src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz"; sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA=="; }; }; @@ -33346,7 +33591,7 @@ let packageName = "tty-browserify"; version = "0.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"; + url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"; sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; }; }; @@ -33404,13 +33649,13 @@ let sha1 = "b75bc2df15649bb84e8b9aa3c0669c6c4bce0d25"; }; }; - "twig-1.12.0" = { + "twig-1.13.0" = { name = "twig"; packageName = "twig"; - version = "1.12.0"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/twig/-/twig-1.12.0.tgz"; - sha512 = "zm5OQXb8bQDGQUPytFgjqMKHhqcz/s6pU6Nwsy+rKPhsoOOVwYeHnziiDGFzeTDiFd28M8EVkEO8we6ikcrGjQ=="; + url = "https://registry.npmjs.org/twig/-/twig-1.13.0.tgz"; + sha512 = "kl7nq3Wuy5rsKP/HhbRiilTthsdlm+5ee9IFmnYpy/E7hU4IdEkWeaRtvp/brVSA3rOfNWN5Lvsdi6KusTB9Iw=="; }; }; "twitter-ng-0.6.2" = { @@ -33539,15 +33784,6 @@ let sha512 = "JoLI4g5zv5qNyT09f4YAvEZIIV1oOjqnewYg5D38dkQljIzpPT296dbIGvKro3digYI1bkb7W6EP1y4uDlmzLg=="; }; }; - "uglify-es-3.3.10" = { - name = "uglify-es"; - packageName = "uglify-es"; - version = "3.3.10"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz"; - sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww=="; - }; - }; "uglify-js-2.8.29" = { name = "uglify-js"; packageName = "uglify-js"; @@ -33733,7 +33969,7 @@ let packageName = "underscore"; version = "1.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz"; + url = "https://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz"; sha1 = "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4"; }; }; @@ -33742,7 +33978,7 @@ let packageName = "underscore"; version = "1.4.4"; src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"; + url = "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"; sha1 = "61a6a32010622afa07963bf325203cf12239d604"; }; }; @@ -33751,7 +33987,7 @@ let packageName = "underscore"; version = "1.5.2"; src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz"; + url = "https://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz"; sha1 = "1335c5e4f5e6d33bbb4b006ba8c86a00f556de08"; }; }; @@ -33760,7 +33996,7 @@ let packageName = "underscore"; version = "1.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; + url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; }; }; @@ -33769,7 +34005,7 @@ let packageName = "underscore"; version = "1.8.3"; src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; + url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; }; }; @@ -33796,10 +34032,28 @@ let packageName = "underscore.string"; version = "2.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"; + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"; sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d"; }; }; + "undertaker-1.2.0" = { + name = "undertaker"; + packageName = "undertaker"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/undertaker/-/undertaker-1.2.0.tgz"; + sha1 = "339da4646252d082dc378e708067299750e11b49"; + }; + }; + "undertaker-registry-1.0.1" = { + name = "undertaker-registry"; + packageName = "undertaker-registry"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz"; + sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50"; + }; + }; "unherit-1.1.1" = { name = "unherit"; packageName = "unherit"; @@ -33868,7 +34122,7 @@ let packageName = "unified"; version = "2.1.4"; src = fetchurl { - url = "http://registry.npmjs.org/unified/-/unified-2.1.4.tgz"; + url = "https://registry.npmjs.org/unified/-/unified-2.1.4.tgz"; sha1 = "14bc6cd40d98ffff75b405506bad873ecbbac3ba"; }; }; @@ -33877,7 +34131,7 @@ let packageName = "union"; version = "0.4.6"; src = fetchurl { - url = "http://registry.npmjs.org/union/-/union-0.4.6.tgz"; + url = "https://registry.npmjs.org/union/-/union-0.4.6.tgz"; sha1 = "198fbdaeba254e788b0efcb630bc11f24a2959e0"; }; }; @@ -33935,13 +34189,13 @@ let sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b"; }; }; - "unique-stream-2.2.1" = { + "unique-stream-2.3.1" = { name = "unique-stream"; packageName = "unique-stream"; - version = "2.2.1"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz"; - sha1 = "5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369"; + url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz"; + sha512 = "2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A=="; }; }; "unique-string-1.0.0" = { @@ -34115,13 +34369,13 @@ let sha512 = "NG1h/MdGIX3HzyqMjyj1laBCmlPYhcO4xEy7gEqqzGiSLw7XqDQCnY4nYSn5XSaH8mQ6TFkaujrO8d/PIZN85A=="; }; }; - "unzipper-0.9.4" = { + "unzipper-0.9.2" = { name = "unzipper"; packageName = "unzipper"; - version = "0.9.4"; + version = "0.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/unzipper/-/unzipper-0.9.4.tgz"; - sha512 = "kGrkTaphmXE+0/A5Q7rwcm/xHlDkXDOGEh6wuiN3SUQsyVWd7V51rwqttlNTT91JrLkfn34MoBNf38unF0vhRw=="; + url = "https://registry.npmjs.org/unzipper/-/unzipper-0.9.2.tgz"; + sha512 = "DPz9NINoFCBqE/VAorz82EoKYMo3piYm3YZ8guhcDEK/RxPGoe9wodFhfvEL7PBSxUObCmH4bIQJL0vsYM+WpA=="; }; }; "upath-1.1.0" = { @@ -34349,13 +34603,13 @@ let sha512 = "ZrxMCbffYtxQDqvREN9kBXK2CB9tPnd5PylHoqQX9ai+3HV9/S39FnA5JnhLOC82dxIQQg0nTN2wmhtAdGNtOA=="; }; }; - "utf-8-validate-5.0.1" = { + "utf-8-validate-5.0.2" = { name = "utf-8-validate"; packageName = "utf-8-validate"; - version = "5.0.1"; + version = "5.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.1.tgz"; - sha512 = "Qef1AuiWWxQeZ1Oa4DTV3ArRafpZvsK+CLrlB8khLfsV+9mwhj58hNSGmel0ns5jYP+3yEwav6vxxW7Gz85bVw=="; + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.2.tgz"; + sha512 = "SwV++i2gTD5qh2XqaPzBnNX88N6HdyhQrNNRykvcS0QKvItV9u3vPEJr+X5Hhfb1JC0r0e1alL0iB09rY8+nmw=="; }; }; "utf7-1.0.2" = { @@ -34372,7 +34626,7 @@ let packageName = "utf8"; version = "2.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz"; + url = "https://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz"; sha1 = "79ce59eced874809cab9a71fc7102c7d45d4118d"; }; }; @@ -34399,7 +34653,7 @@ let packageName = "util"; version = "0.10.3"; src = fetchurl { - url = "http://registry.npmjs.org/util/-/util-0.10.3.tgz"; + url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; }; }; @@ -34417,7 +34671,7 @@ let packageName = "util"; version = "0.4.9"; src = fetchurl { - url = "http://registry.npmjs.org/util/-/util-0.4.9.tgz"; + url = "https://registry.npmjs.org/util/-/util-0.4.9.tgz"; sha1 = "d95d5830d2328ec17dee3c80bfc50c33562b75a3"; }; }; @@ -34525,28 +34779,10 @@ let packageName = "uuid"; version = "2.0.3"; src = fetchurl { - url = "http://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz"; + url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz"; sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a"; }; }; - "uuid-3.0.1" = { - name = "uuid"; - packageName = "uuid"; - version = "3.0.1"; - src = fetchurl { - url = "http://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz"; - sha1 = "6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"; - }; - }; - "uuid-3.1.0" = { - name = "uuid"; - packageName = "uuid"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz"; - sha512 = "DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g=="; - }; - }; "uuid-3.3.2" = { name = "uuid"; packageName = "uuid"; @@ -34592,13 +34828,13 @@ let sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4"; }; }; - "v8flags-3.1.1" = { + "v8flags-3.1.2" = { name = "v8flags"; packageName = "v8flags"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.1.tgz"; - sha512 = "iw/1ViSEaff8NJ3HLyEjawk/8hjJib3E7pvG4pddVXfUg1983s3VGsiClDjhK64MQVDGqc1Q8r18S4VKQZS9EQ=="; + url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.2.tgz"; + sha512 = "MtivA7GF24yMPte9Rp/BWGCYQNaUj86zeYxV/x2RRJMKagImbbv3u8iJC57lNhWLPcGLJmHcHmFWkNsplbbLWw=="; }; }; "valid-identifier-0.0.1" = { @@ -34637,13 +34873,13 @@ let sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; }; }; - "validator-10.9.0" = { + "validator-10.10.0" = { name = "validator"; packageName = "validator"; - version = "10.9.0"; + version = "10.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-10.9.0.tgz"; - sha512 = "hZJcZSWz9poXBlAkjjcsNAdrZ6JbjD3kWlNjq/+vE7RLLS/+8PAj3qVVwrwsOz/WL8jPmZ1hYkRvtlUeZAm4ug=="; + url = "https://registry.npmjs.org/validator/-/validator-10.10.0.tgz"; + sha512 = "DyZyLJlMXM3CGdVaVHE/EDzCagMRoPI3mmGdxxNQbqkGqh56+M3d1i0ZAWd69En8U21DHbPTn12aOdhO+hfm5w=="; }; }; "value-or-function-3.0.0" = { @@ -34795,7 +35031,7 @@ let packageName = "vfile"; version = "1.4.0"; src = fetchurl { - url = "http://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz"; + url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz"; sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7"; }; }; @@ -34804,7 +35040,7 @@ let packageName = "vfile-find-down"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/vfile-find-down/-/vfile-find-down-1.0.0.tgz"; + url = "https://registry.npmjs.org/vfile-find-down/-/vfile-find-down-1.0.0.tgz"; sha1 = "84a4d66d03513f6140a84e0776ef0848d4f0ad95"; }; }; @@ -34813,7 +35049,7 @@ let packageName = "vfile-find-up"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/vfile-find-up/-/vfile-find-up-1.0.0.tgz"; + url = "https://registry.npmjs.org/vfile-find-up/-/vfile-find-up-1.0.0.tgz"; sha1 = "5604da6fe453b34350637984eb5fe4909e280390"; }; }; @@ -34822,7 +35058,7 @@ let packageName = "vfile-reporter"; version = "1.5.0"; src = fetchurl { - url = "http://registry.npmjs.org/vfile-reporter/-/vfile-reporter-1.5.0.tgz"; + url = "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-1.5.0.tgz"; sha1 = "21a7009bfe55e24df8ff432aa5bf6f6efa74e418"; }; }; @@ -34831,7 +35067,7 @@ let packageName = "vfile-sort"; version = "1.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/vfile-sort/-/vfile-sort-1.0.0.tgz"; + url = "https://registry.npmjs.org/vfile-sort/-/vfile-sort-1.0.0.tgz"; sha1 = "17ee491ba43e8951bb22913fcff32a7dc4d234d4"; }; }; @@ -34957,7 +35193,7 @@ let packageName = "vm-browserify"; version = "0.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz"; + url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz"; sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; }; }; @@ -34993,19 +35229,10 @@ let packageName = "vscode-jsonrpc"; version = "3.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.0.tgz"; + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.0.tgz"; sha512 = "PqHHjuTlz3ks0vyZv3IkdduJReA/lqe6OP5zRl5nXn2ptMLW++fBotNyayyZEQLIF6nNrx/Rn6WhMSHElf02Yw=="; }; }; - "vscode-jsonrpc-3.6.2" = { - name = "vscode-jsonrpc"; - packageName = "vscode-jsonrpc"; - version = "3.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.2.tgz"; - sha512 = "T24Jb5V48e4VgYliUXMnZ379ItbrXgOimweKaJshD84z+8q7ZOZjJan0MeDe+Ugb+uqERDVV8SBmemaGMSMugA=="; - }; - }; "vscode-jsonrpc-4.0.0" = { name = "vscode-jsonrpc"; packageName = "vscode-jsonrpc"; @@ -35020,7 +35247,7 @@ let packageName = "vscode-languageclient"; version = "4.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-4.0.1.tgz"; + url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-4.0.1.tgz"; sha512 = "0fuBZj9pMkeJ8OMyIvSGeRaRVhUaJt+yeFxi7a3sz/AbrngQdcxOovMXPgKuieoBSBKS05gXPS88BsWpJZfBkA=="; }; }; @@ -35029,26 +35256,26 @@ let packageName = "vscode-languageserver"; version = "4.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.0.0.tgz"; + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.0.0.tgz"; sha512 = "bxj9nRadNkXYfVG/fjA5a+KA5WaJCeP1F2Tnj3rYFS0pKALZQCPNqk3KO/LdiGFidjyICMG7xoHvYO9J9xosXg=="; }; }; - "vscode-languageserver-5.1.0" = { + "vscode-languageserver-5.2.1" = { name = "vscode-languageserver"; packageName = "vscode-languageserver"; - version = "5.1.0"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.1.0.tgz"; - sha512 = "CIsrgx2Y5VHS317g/HwkSTWYBIQmy0DwEyZPmB2pEpVOhYFwVsYpbiJwHIIyLQsQtmRaO4eA2xM8KPjNSdXpBw=="; + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz"; + sha512 = "GuayqdKZqAwwaCUjDvMTAVRPJOp/SLON3mJ07eGsx/Iq9HjRymhKWztX41rISqDKhHVVyFM+IywICyZDla6U3A=="; }; }; - "vscode-languageserver-protocol-3.13.0" = { + "vscode-languageserver-protocol-3.14.1" = { name = "vscode-languageserver-protocol"; packageName = "vscode-languageserver-protocol"; - version = "3.13.0"; + version = "3.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.13.0.tgz"; - sha512 = "2ZGKwI+P2ovQll2PGAp+2UfJH+FK9eait86VBUdkPd9HRlm8e58aYT9pV/NYanHOcp3pL6x2yTLVCFMcTer0mg=="; + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz"; + sha512 = "IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g=="; }; }; "vscode-languageserver-protocol-3.6.0" = { @@ -35056,17 +35283,17 @@ let packageName = "vscode-languageserver-protocol"; version = "3.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz"; + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz"; sha512 = "PN5hVQQQxrtHSZR8UCstqaoI9f2H9JctFTtdIpONWjzQNurWrc48qSXXU/vTfnbSrNou8qrJgkZ4QEZsyozOMA=="; }; }; - "vscode-languageserver-types-3.13.0" = { + "vscode-languageserver-types-3.14.0" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; - version = "3.13.0"; + version = "3.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.13.0.tgz"; - sha512 = "BnJIxS+5+8UWiNKCP7W3g9FlE7fErFw0ofP5BXJe7c2tl0VeWh+nNHFbwAS2vmVC4a5kYxHBjRy0UeOtziemVA=="; + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz"; + sha512 = "lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A=="; }; }; "vscode-uri-1.0.3" = { @@ -35159,13 +35386,13 @@ let sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; }; }; - "webassemblyjs-1.7.11" = { + "webassemblyjs-1.8.0" = { name = "webassemblyjs"; packageName = "webassemblyjs"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.7.11.tgz"; - sha512 = "vTwNncSEfuE51O1yHdcsino4LN1SYCiI4ws9OU1cImsqJ3vsydceDtzPcYXPFHm6Tie1ZH0HobXpYFExjronYw=="; + url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.8.0.tgz"; + sha512 = "kiJMIPsf8Laz/5Y13R242Flqj8WSjTxRtUcPWeNgYjoyh1ohiPJrDi8n0GoQOIXrOTKS4/UO4r6amgNpplJL1w=="; }; }; "webidl-conversions-2.0.1" = { @@ -35186,22 +35413,22 @@ let sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; }; }; - "webpack-4.27.1" = { + "webpack-4.28.4" = { name = "webpack"; packageName = "webpack"; - version = "4.27.1"; + version = "4.28.4"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.27.1.tgz"; - sha512 = "WArHiLvHrlfyRM8i7f+2SFbr/XbQ0bXqTkPF8JpHOzub5482Y3wx7rEO8stuLGOKOgZJcqcisLhD7LrM/+fVMw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.28.4.tgz"; + sha512 = "NxjD61WsK/a3JIdwWjtIpimmvE6UrRi3yG54/74Hk9rwNj5FPkA4DJCf1z4ByDWLkvZhTZE+P3C/eh6UD5lDcw=="; }; }; - "webpack-cli-3.1.2" = { + "webpack-cli-3.2.1" = { name = "webpack-cli"; packageName = "webpack-cli"; - version = "3.1.2"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz"; - sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ=="; + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.2.1.tgz"; + sha512 = "jeJveHwz/vwpJ3B8bxEL5a/rVKIpRNJDsKggfKnxuYeohNDW4Y/wB9N/XHJA093qZyS0r6mYL+/crLsIol4WKA=="; }; }; "webpack-core-0.6.9" = { @@ -35249,13 +35476,13 @@ let sha512 = "lchLOk435iDWs0jNuL+hiU14i3ERSrMA0IKSiJh7z6X/i4XNsutBZrtqu2CPOZuA4G/zabiqVAos0vW+S7GEVw=="; }; }; - "webtorrent-0.102.4" = { + "webtorrent-0.103.0" = { name = "webtorrent"; packageName = "webtorrent"; - version = "0.102.4"; + version = "0.103.0"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.102.4.tgz"; - sha512 = "Oa7NatbPlESqf5ETwgVUOXAbUjiZr7XNFbHhd88BRm+4vN9u3JgeIbF9Gnuxb5s26cHxPYpGJRVTtBsc6Z6w9Q=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.103.0.tgz"; + sha512 = "4N8+KQMtQw7KPz8Zjz8Y9S+olkpRA1kdUpbJynQHnSzIkTNJGPL9c6akBTOvtSfTtXs4kETts6eUIZkml6xRoA=="; }; }; "whatwg-fetch-2.0.4" = { @@ -35263,7 +35490,7 @@ let packageName = "whatwg-fetch"; version = "2.0.4"; src = fetchurl { - url = "http://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz"; + url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz"; sha512 = "dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng=="; }; }; @@ -35389,7 +35616,7 @@ let packageName = "win-detect-browsers"; version = "1.0.2"; src = fetchurl { - url = "http://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz"; + url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz"; sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0"; }; }; @@ -35470,7 +35697,7 @@ let packageName = "winston"; version = "0.6.2"; src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.6.2.tgz"; + url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz"; sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2"; }; }; @@ -35479,7 +35706,7 @@ let packageName = "winston"; version = "0.8.0"; src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.8.0.tgz"; + url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz"; sha1 = "61d0830fa699706212206b0a2b5ca69a93043668"; }; }; @@ -35488,7 +35715,7 @@ let packageName = "winston"; version = "0.8.3"; src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; + url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; }; }; @@ -35497,7 +35724,7 @@ let packageName = "winston"; version = "2.1.1"; src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; + url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; }; }; @@ -35519,13 +35746,13 @@ let sha512 = "FsQfEE+8YIEeuZEYhHDk5cILo1HOcWkGwvoidLrDgPog0r4bser1lEIOco2dN9zpDJ1M88hfDgZvxe5z4xNcwg=="; }; }; - "winston-transport-4.2.0" = { + "winston-transport-4.3.0" = { name = "winston-transport"; packageName = "winston-transport"; - version = "4.2.0"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.2.0.tgz"; - sha512 = "0R1bvFqxSlK/ZKTH86nymOuKv/cT1PQBMuDdA7k7f0S9fM44dNH6bXnuxwXPrN8lefJgtZq08BKdyZ0DZIy/rg=="; + url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz"; + sha512 = "B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A=="; }; }; "word-wrap-1.2.3" = { @@ -35578,7 +35805,7 @@ let packageName = "wrap-ansi"; version = "2.1.0"; src = fetchurl { - url = "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; }; }; @@ -35668,7 +35895,7 @@ let packageName = "ws"; version = "0.4.31"; src = fetchurl { - url = "http://registry.npmjs.org/ws/-/ws-0.4.31.tgz"; + url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz"; sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927"; }; }; @@ -35735,13 +35962,13 @@ let sha1 = "7f6194154fd1786cf261e68b5488c47127a04977"; }; }; - "xcode-1.0.0" = { + "xcode-1.1.0" = { name = "xcode"; packageName = "xcode"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/xcode/-/xcode-1.0.0.tgz"; - sha1 = "e1f5b1443245ded38c180796df1a10fdeda084ec"; + url = "https://registry.npmjs.org/xcode/-/xcode-1.1.0.tgz"; + sha512 = "hllHFtfsNu5WbVzj8KbGNdI3NgOYmTLZqyF4a9c9J1aGMhAdxmLLsXlpG0Bz8fEtKh6I3pyargRXN0ZlLpcF5w=="; }; }; "xdg-basedir-2.0.0" = { @@ -35821,7 +36048,7 @@ let packageName = "xmlbuilder"; version = "0.4.2"; src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz"; + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz"; sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83"; }; }; @@ -35830,7 +36057,7 @@ let packageName = "xmlbuilder"; version = "0.4.3"; src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz"; + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz"; sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58"; }; }; @@ -35839,7 +36066,7 @@ let packageName = "xmlbuilder"; version = "4.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz"; + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz"; sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3"; }; }; @@ -35848,7 +36075,7 @@ let packageName = "xmlbuilder"; version = "8.2.2"; src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz"; + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz"; sha1 = "69248673410b4ba42e1a6136551d2922335aa773"; }; }; @@ -35857,7 +36084,7 @@ let packageName = "xmlbuilder"; version = "9.0.7"; src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d"; }; }; @@ -35952,13 +36179,13 @@ let sha1 = "f164263325ae671f53836fb210c7ddbcfda46598"; }; }; - "xstream-11.7.0" = { + "xstream-11.9.0" = { name = "xstream"; packageName = "xstream"; - version = "11.7.0"; + version = "11.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/xstream/-/xstream-11.7.0.tgz"; - sha512 = "wO3TXiQd2/1UZNVsixDIcQgAN6TU4sGH7qIXvs1CRp1kgtkpU8YTfyKt/z/Z1psqcGnR0cJJxHaCnBxtktLx9w=="; + url = "https://registry.npmjs.org/xstream/-/xstream-11.9.0.tgz"; + sha512 = "xpEhx4jJiI0Z6GWcLaAq41HktXl9iZ/pCM9JvlcEN88uKKvlIpIRQUUN5EJozWHjlQ7TVQpYIljh9patB9UqSA=="; }; }; "xtend-3.0.0" = { @@ -36047,7 +36274,7 @@ let packageName = "yargs"; version = "1.3.3"; src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz"; + url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz"; sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; }; }; @@ -36060,15 +36287,6 @@ let sha512 = "ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig=="; }; }; - "yargs-11.0.0" = { - name = "yargs"; - packageName = "yargs"; - version = "11.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-11.0.0.tgz"; - sha512 = "Rjp+lMYQOWtgqojx1dEWorjCofi1YN7AoFvYV7b1gx/7dAAeuI4kN5SZiEvr0ZmsZTOpDRcCqrpI10L31tFkBw=="; - }; - }; "yargs-12.0.2" = { name = "yargs"; packageName = "yargs"; @@ -36101,7 +36319,7 @@ let packageName = "yargs"; version = "3.10.0"; src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; + url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; }; }; @@ -36110,7 +36328,7 @@ let packageName = "yargs"; version = "3.32.0"; src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; + url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995"; }; }; @@ -36119,7 +36337,7 @@ let packageName = "yargs"; version = "6.6.0"; src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz"; + url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz"; sha1 = "782ec21ef403345f830a808ca3d513af56065208"; }; }; @@ -36164,7 +36382,7 @@ let packageName = "yargs-parser"; version = "4.2.1"; src = fetchurl { - url = "http://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz"; + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz"; sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"; }; }; @@ -36195,15 +36413,6 @@ let sha512 = "yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ=="; }; }; - "yargs-parser-9.0.2" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "9.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz"; - sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"; - }; - }; "yauzl-2.10.0" = { name = "yauzl"; packageName = "yauzl"; @@ -36312,13 +36521,13 @@ let sha512 = "N3xXQVr4L61rZvGMpWe8XoCGX8vhU35dPyQ4fm5CY/KDlG0F75un14hjbckPXTDuKUY6V0dqR2giT6xN8Y4GEQ=="; }; }; - "zen-observable-ts-0.8.11" = { + "zen-observable-ts-0.8.13" = { name = "zen-observable-ts"; packageName = "zen-observable-ts"; - version = "0.8.11"; + version = "0.8.13"; src = fetchurl { - url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.11.tgz"; - sha512 = "8bs7rgGV4kz5iTb9isudkuQjtWwPnQ8lXq6/T76vrepYZVMsDEv6BXaEA+DHdJSK3KVLduagi9jSpSAJ5NgKHw=="; + url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.13.tgz"; + sha512 = "WDb8SM0tHCb6c0l1k60qXWlm1ok3zN9U4VkLdnBKQwIYwUoB9psH7LIFgR+JVCCMmBxUgOjskIid8/N02k/2Bg=="; }; }; "zerr-1.0.4" = { @@ -36363,14 +36572,14 @@ in asar = nodeEnv.buildNodePackage { name = "asar"; packageName = "asar"; - version = "0.14.5"; + version = "0.14.6"; src = fetchurl { - url = "https://registry.npmjs.org/asar/-/asar-0.14.5.tgz"; - sha512 = "2Di/TnY1sridHFKMFgxBh0Wk0gVxSZN4qQhRhjJn3UywZAvP5MHI0RNVSkpzmJ+n6t0BC8w/+1257wtSgQ3Kdg=="; + url = "https://registry.npmjs.org/asar/-/asar-0.14.6.tgz"; + sha512 = "ZqybKcdO5At6y3ge2RHxVImc6Eltb2t3sxT7lk4T4zjZBSFUuIGCIZY6f41dCjlvJSizN5QPRr8YTgMhpgBjLg=="; }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."asynckit-0.4.0" @@ -36425,27 +36634,27 @@ in sources."minimist-0.0.8" sources."mkdirp-0.5.1" sources."mkpath-0.1.0" - sources."mksnapshot-0.3.1" + sources."mksnapshot-0.3.4" sources."nopt-3.0.6" sources."oauth-sign-0.9.0" sources."once-1.4.0" sources."os-tmpdir-1.0.2" sources."path-is-absolute-1.0.1" sources."performance-now-2.1.0" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."q-1.5.1" sources."qs-6.5.2" sources."readable-stream-1.1.14" sources."request-2.88.0" - (sources."rimraf-2.6.2" // { + (sources."rimraf-2.6.3" // { dependencies = [ sources."glob-7.1.3" ]; }) sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."string_decoder-0.10.31" sources."tmp-0.0.28" (sources."touch-0.0.3" // { @@ -36478,10 +36687,10 @@ in azure-functions-core-tools = nodeEnv.buildNodePackage { name = "azure-functions-core-tools"; packageName = "azure-functions-core-tools"; - version = "2.3.148"; + version = "2.3.199"; src = fetchurl { - url = "https://registry.npmjs.org/azure-functions-core-tools/-/azure-functions-core-tools-2.3.148.tgz"; - sha512 = "Cmqcng1GYoyEFnVj6M31o+dRTAivxOrOIFbEhR5vKKWokq8GdkwnKNuP9LHOkA9S6y5n+KxbuY1dPpKHbJtdEQ=="; + url = "https://registry.npmjs.org/azure-functions-core-tools/-/azure-functions-core-tools-2.3.199.tgz"; + sha512 = "SomYaNoD6SLp+nKuqckGVhhKwvDvBT8mOXSzEh1IH7s/F7OLKQU9Oq/ZyVjkf2rVqAxW9mXSAmzzuxmd4ZAW3g=="; }; dependencies = [ sources."agent-base-4.2.1" @@ -36494,7 +36703,7 @@ in sources."buffer-indexof-polyfill-1.0.1" sources."buffers-0.1.1" sources."chainsaw-0.1.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."command-exists-1.2.8" @@ -36525,14 +36734,14 @@ in sources."process-nextick-args-2.0.0" sources."progress-2.0.3" sources."readable-stream-2.3.6" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."setimmediate-1.0.5" sources."string_decoder-1.1.1" sources."supports-color-5.5.0" sources."tmp-0.0.33" sources."traverse-0.3.9" - sources."unzipper-0.9.4" + sources."unzipper-0.9.2" sources."util-deprecate-1.0.2" sources."wrappy-1.0.2" ]; @@ -36550,7 +36759,7 @@ in packageName = "bower"; version = "1.8.4"; src = fetchurl { - url = "http://registry.npmjs.org/bower/-/bower-1.8.4.tgz"; + url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz"; sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a"; }; buildInputs = globalBuildInputs; @@ -36662,7 +36871,7 @@ in sources."read-pkg-up-1.0.1" sources."redent-1.0.0" sources."repeating-2.0.1" - (sources."rimraf-2.6.2" // { + (sources."rimraf-2.6.3" // { dependencies = [ sources."glob-7.1.3" ]; @@ -36674,7 +36883,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."sprintf-js-1.0.3" sources."strip-bom-2.0.0" sources."strip-indent-1.0.1" @@ -36706,7 +36915,7 @@ in }; dependencies = [ sources."JSONStream-1.3.5" - sources."acorn-6.0.4" + sources."acorn-6.0.5" sources."acorn-dynamic-import-4.0.0" sources."acorn-node-1.6.2" sources."acorn-walk-6.1.1" @@ -36824,7 +37033,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."ripemd160-2.0.2" sources."safe-buffer-5.1.2" sources."sha.js-2.4.11" @@ -36882,7 +37091,7 @@ in dependencies = [ sources."addr-to-ip-port-1.5.1" sources."airplay-js-0.2.16" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-1.1.1" sources."ansi-styles-2.2.1" sources."append-0.1.1" @@ -36941,11 +37150,10 @@ in sources."commander-2.19.0" sources."compact2string-1.4.0" sources."concat-map-0.0.1" - (sources."concat-stream-1.6.2" // { + (sources."concat-stream-2.0.0" // { dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.6" - sources."string_decoder-1.1.1" + sources."readable-stream-3.1.1" + sources."string_decoder-1.2.0" ]; }) sources."core-util-is-1.0.2" @@ -37040,10 +37248,10 @@ in sources."lru-2.0.1" sources."magnet-uri-5.2.4" sources."map-obj-1.0.1" - (sources."mdns-js-1.0.1" // { + (sources."mdns-js-1.0.3" // { dependencies = [ - sources."debug-3.2.6" - sources."ms-2.1.1" + sources."debug-3.1.0" + sources."semver-5.4.1" ]; }) (sources."meow-3.7.0" // { @@ -37117,7 +37325,7 @@ in sources."process-nextick-args-2.0.0" sources."promiscuous-0.6.0" sources."protobufjs-3.8.2" - sources."psl-1.1.29" + sources."psl-1.1.31" (sources."pump-0.3.5" // { dependencies = [ sources."once-1.2.0" @@ -37161,7 +37369,7 @@ in sources."redent-1.0.0" sources."repeating-2.0.1" sources."request-2.88.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."router-0.6.2" sources."run-parallel-1.1.9" sources."run-series-1.1.8" @@ -37195,10 +37403,10 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."speedometer-0.1.4" sources."srt2vtt-1.3.1" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."stream-transcoder-0.0.5" sources."string2compact-1.3.0" sources."string_decoder-0.10.31" @@ -37316,7 +37524,7 @@ in sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."axios-0.17.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."cli-cursor-2.1.0" sources."cli-spinners-1.3.1" sources."cli-table2-0.2.0" @@ -37327,7 +37535,7 @@ in sources."commander-2.19.0" sources."debug-3.1.0" sources."escape-string-regexp-1.0.5" - sources."follow-redirects-1.5.10" + sources."follow-redirects-1.6.1" sources."has-flag-3.0.0" sources."humanize-plus-1.8.2" sources."is-buffer-1.1.6" @@ -37380,7 +37588,7 @@ in sources."eventemitter3-3.1.0" sources."fast-safe-stringify-2.0.6" sources."fecha-2.3.3" - sources."follow-redirects-1.5.10" + sources."follow-redirects-1.6.1" sources."http-proxy-1.17.0" sources."inherits-2.0.3" sources."is-arrayish-0.3.2" @@ -37410,7 +37618,7 @@ in sources."triple-beam-1.3.0" sources."util-deprecate-1.0.2" sources."winston-3.1.0" - sources."winston-transport-4.2.0" + sources."winston-transport-4.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37437,11 +37645,11 @@ in sources."acorn-dynamic-import-4.0.0" (sources."acorn-node-1.6.2" // { dependencies = [ - sources."acorn-6.0.4" + sources."acorn-6.0.5" ]; }) sources."acorn-walk-6.1.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."aliasify-2.1.0" sources."ansi-0.3.1" sources."ansi-align-2.0.0" @@ -37476,7 +37684,7 @@ in (sources."boxen-1.3.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -37685,7 +37893,7 @@ in sources."xdg-basedir-2.0.0" ]; }) - sources."interpret-1.1.0" + sources."interpret-1.2.0" sources."ipaddr.js-1.8.0" sources."is-buffer-1.1.6" sources."is-builtin-module-1.0.0" @@ -37747,7 +37955,7 @@ in }) sources."module-deps-4.1.1" sources."ms-2.0.0" - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."negotiator-0.6.1" sources."nopt-4.0.1" sources."normalize-package-data-2.4.0" @@ -37783,7 +37991,6 @@ in sources."path-platform-0.11.15" sources."path-to-regexp-0.1.7" sources."pbkdf2-3.0.17" - sources."pegjs-0.10.0" sources."performance-now-2.1.0" sources."pify-3.0.0" sources."plist-2.1.0" @@ -37794,7 +38001,7 @@ in sources."properties-parser-0.3.1" sources."proxy-addr-2.0.4" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."public-encrypt-4.0.3" sources."punycode-1.4.1" sources."q-1.5.1" @@ -37830,9 +38037,9 @@ in sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."request-2.88.0" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."restore-cursor-1.0.1" - (sources."rimraf-2.6.2" // { + (sources."rimraf-2.6.3" // { dependencies = [ sources."glob-7.1.3" ]; @@ -37868,8 +38075,8 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - sources."sshpk-1.15.2" + sources."spdx-license-ids-3.0.3" + sources."sshpk-1.16.0" sources."statuses-1.4.0" sources."stream-browserify-2.0.1" sources."stream-buffers-2.2.0" @@ -37914,7 +38121,7 @@ in (sources."update-notifier-2.5.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -37944,11 +38151,7 @@ in sources."win-release-1.1.1" sources."wrappy-1.0.2" sources."write-file-atomic-2.3.0" - (sources."xcode-1.0.0" // { - dependencies = [ - sources."uuid-3.0.1" - ]; - }) + sources."xcode-1.1.0" sources."xdg-basedir-3.0.0" sources."xmlbuilder-8.2.2" sources."xmldom-0.1.27" @@ -38066,7 +38269,7 @@ in sources."extend-shallow-2.0.1" ]; }) - sources."fast-glob-2.2.4" + sources."fast-glob-2.2.6" (sources."fill-range-4.0.0" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -38084,7 +38287,7 @@ in ]; }) sources."glob-to-regexp-0.3.0" - sources."globby-8.0.1" + sources."globby-8.0.2" sources."graceful-fs-4.1.15" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -38219,7 +38422,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-string-3.1.0" (sources."static-extend-0.1.2" // { dependencies = [ @@ -38298,13 +38501,13 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.0" - sources."@types/node-10.12.12" + sources."@types/node-10.12.18" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.1.0" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."asynckit-0.4.0" - (sources."chalk-2.4.1" // { + (sources."chalk-2.4.2" // { dependencies = [ sources."ansi-styles-3.2.1" sources."supports-color-5.5.0" @@ -38414,7 +38617,7 @@ in ]; }) sources."which-1.3.1" - sources."xstream-11.7.0" + sources."xstream-11.9.0" sources."yallist-2.1.2" ]; buildInputs = globalBuildInputs; @@ -38429,10 +38632,10 @@ in create-react-app = nodeEnv.buildNodePackage { name = "create-react-app"; packageName = "create-react-app"; - version = "2.1.1"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/create-react-app/-/create-react-app-2.1.1.tgz"; - sha512 = "ZCDwk0joko6JqKscWEaNPs32GyxVQZOIXxa7KmzZwnxiUyWfsWoiXfbivK5KyPnUT8AYztexCH9VI0tBTiqlsg=="; + url = "https://registry.npmjs.org/create-react-app/-/create-react-app-2.1.3.tgz"; + sha512 = "bGx6vYVEZL39QZVP46u4HOh3gazqOcyW/dLWXFNRdmaiL7MBxObo0H3oxkK/YzBqFUvJ++EgncWarQr2PnEK+w=="; }; dependencies = [ sources."ansi-regex-2.1.1" @@ -38449,7 +38652,7 @@ in sources."cross-spawn-4.0.2" sources."debug-2.6.9" sources."duplexer2-0.0.2" - sources."envinfo-5.10.0" + sources."envinfo-5.11.1" sources."escape-string-regexp-1.0.5" sources."fs-extra-5.0.0" sources."fs.realpath-1.0.0" @@ -38475,7 +38678,7 @@ in sources."process-nextick-args-2.0.0" sources."pseudomap-1.0.2" sources."readable-stream-1.1.14" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."semver-5.5.1" sources."string_decoder-0.10.31" @@ -38524,10 +38727,10 @@ in dependencies = [ sources."ansi-styles-3.2.1" sources."babel-runtime-6.26.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."cross-spawn-5.1.0" sources."escape-string-regexp-1.0.5" sources."fs-extra-4.0.3" @@ -38590,7 +38793,7 @@ in }; dependencies = [ sources."abstract-random-access-1.1.2" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-align-2.0.0" sources."ansi-diff-1.1.1" sources."ansi-regex-3.0.0" @@ -38641,7 +38844,7 @@ in sources."camelcase-4.1.0" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."ci-info-1.6.0" sources."circular-append-file-1.0.1" sources."cli-boxes-1.0.0" @@ -38669,6 +38872,7 @@ in (sources."dat-dns-3.0.2" // { dependencies = [ sources."debug-2.6.9" + sources."ms-2.0.0" ]; }) sources."dat-doctor-2.1.0" @@ -38679,38 +38883,49 @@ in sources."dat-encoding-4.0.2" ]; }) - sources."dat-link-resolve-2.2.0" + (sources."dat-link-resolve-2.3.0" // { + dependencies = [ + sources."debug-4.1.1" + ]; + }) (sources."dat-log-1.2.0" // { dependencies = [ sources."neat-log-2.4.0" ]; }) - sources."dat-node-3.5.13" + (sources."dat-node-3.5.14" // { + dependencies = [ + sources."debug-4.1.1" + ]; + }) sources."dat-registry-4.0.0" sources."dat-secret-storage-4.0.1" sources."dat-storage-1.1.1" - sources."dat-swarm-defaults-1.0.1" - (sources."debug-3.2.6" // { - dependencies = [ - sources."ms-2.1.1" - ]; - }) + sources."dat-swarm-defaults-1.0.2" + sources."debug-3.2.6" + sources."decompress-response-3.3.0" sources."deep-equal-0.2.2" sources."deep-extend-0.6.0" sources."delayed-stream-1.0.0" - sources."diffy-2.0.0" + sources."diffy-2.1.0" sources."directory-index-html-2.1.0" (sources."discovery-channel-5.5.1" // { dependencies = [ sources."debug-2.6.9" + sources."ms-2.0.0" sources."thunky-0.1.0" ]; }) - sources."discovery-swarm-5.1.2" + (sources."discovery-swarm-5.1.4" // { + dependencies = [ + sources."debug-4.1.1" + ]; + }) (sources."dns-discovery-6.2.3" // { dependencies = [ sources."debug-2.6.9" sources."lru-2.0.1" + sources."ms-2.0.0" ]; }) sources."dns-packet-4.2.0" @@ -38729,7 +38944,7 @@ in sources."extglob-0.3.2" sources."extsprintf-1.3.0" sources."eyes-0.1.8" - sources."fast-bitfield-1.2.1" + sources."fast-bitfield-1.2.2" sources."fast-deep-equal-2.0.1" sources."fast-json-stable-stringify-2.0.0" sources."fd-read-stream-1.1.0" @@ -38758,19 +38973,19 @@ in sources."has-flag-3.0.0" sources."http-methods-0.1.0" sources."http-signature-1.2.0" - (sources."hypercore-6.22.0" // { + (sources."hypercore-6.22.4" // { dependencies = [ sources."process-nextick-args-1.0.7" sources."unordered-set-2.0.1" ]; }) sources."hypercore-crypto-1.0.0" - (sources."hypercore-protocol-6.8.0" // { + (sources."hypercore-protocol-6.9.0" // { dependencies = [ sources."varint-5.0.0" ]; }) - sources."hyperdrive-9.14.0" + sources."hyperdrive-9.14.2" sources."hyperdrive-http-4.3.4" sources."hyperdrive-network-speed-2.1.0" sources."i-0.3.6" @@ -38835,14 +39050,15 @@ in sources."lru-3.1.0" sources."lru-cache-4.1.5" sources."make-dir-1.3.0" - sources."math-random-1.0.1" - sources."memory-pager-1.2.0" - sources."menu-string-1.2.0" + sources."math-random-1.0.2" + sources."memory-pager-1.5.0" + sources."menu-string-1.3.0" sources."merkle-tree-stream-3.0.3" sources."micromatch-2.3.11" sources."mime-2.4.0" sources."mime-db-1.37.0" sources."mime-types-2.1.21" + sources."mimic-response-1.0.1" sources."min-document-2.19.0" sources."minimatch-3.0.4" sources."minimist-1.2.0" @@ -38852,26 +39068,25 @@ in sources."minimist-0.0.8" ]; }) - sources."ms-2.0.0" + sources."ms-2.1.1" sources."multi-random-access-2.1.1" sources."multicast-dns-7.2.0" - sources."multicb-1.2.2" sources."multistream-2.1.1" - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."mutexify-1.2.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanoassert-1.1.0" - sources."nanobus-4.3.5" + sources."nanobus-4.4.0" sources."nanoscheduler-1.0.3" sources."nanotiming-7.3.1" sources."ncp-1.0.1" - sources."neat-input-1.8.0" + sources."neat-input-1.9.0" sources."neat-log-3.1.0" sources."neat-spinner-1.0.0" sources."neat-tasks-1.1.1" sources."nets-3.2.0" sources."network-address-1.1.2" - sources."node-gyp-build-3.5.1" + sources."node-gyp-build-3.7.0" sources."normalize-path-2.1.1" sources."npm-run-path-2.0.2" sources."oauth-sign-0.9.0" @@ -38902,7 +39117,7 @@ in ]; }) sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" @@ -38924,13 +39139,13 @@ in sources."regex-cache-0.4.4" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" - sources."remove-array-items-1.1.0" + sources."remove-array-items-1.1.1" sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" sources."request-2.88.0" sources."revalidator-0.1.8" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."rusha-0.8.13" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" @@ -38944,23 +39159,26 @@ in sources."varint-5.0.0" ]; }) + sources."simple-concat-1.0.0" + sources."simple-get-3.0.3" sources."simple-sha1-2.1.1" sources."siphash24-1.1.1" sources."slice-ansi-1.0.0" sources."sodium-javascript-0.5.5" - sources."sodium-native-2.2.3" + sources."sodium-native-2.2.4" sources."sodium-universal-2.0.0" sources."sorted-array-functions-1.2.0" sources."sorted-indexof-1.0.0" sources."sparse-bitfield-3.0.3" sources."speedometer-1.1.0" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."stack-trace-0.0.10" sources."stream-collector-1.0.1" sources."stream-each-1.2.3" (sources."stream-parser-0.3.1" // { dependencies = [ sources."debug-2.6.9" + sources."ms-2.0.0" ]; }) sources."stream-shift-1.0.0" @@ -38972,6 +39190,7 @@ in (sources."subcommand-2.1.0" // { dependencies = [ sources."debug-2.6.9" + sources."ms-2.0.0" ]; }) sources."supports-color-5.5.0" @@ -38983,6 +39202,7 @@ in (sources."toiletdb-1.4.1" // { dependencies = [ sources."debug-2.6.9" + sources."ms-2.0.0" ]; }) (sources."tough-cookie-2.4.3" // { @@ -39132,7 +39352,7 @@ in sources."mime-types-2.1.21" sources."minimist-0.0.10" sources."ms-0.7.0" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."native-dns-git+https://github.com/okTurtles/node-dns.git#08433ec98f517eed3c6d5e47bdf62603539cd402" // { dependencies = [ sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#8bf2714c318cfe7d31bca2006385882ccbf503e4" @@ -39203,19 +39423,19 @@ in elasticdump = nodeEnv.buildNodePackage { name = "elasticdump"; packageName = "elasticdump"; - version = "4.1.1"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-4.1.1.tgz"; - sha512 = "xOHUFO48K7bHLhx8hVuIZlz7i8Zn8NVmsMGqx1YUGhsmSb1zwW/dCUfBqEHvH4iPtJf9pQPpc51wad0SmvR5XQ=="; + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-4.2.0.tgz"; + sha512 = "3oAyi6Ip+j37yMOXD2GnkwmMy4+YIkmUnx5DHc37Fs0Wl+VE24nUqPr/BdswxDUTucqGVufT5QULYUYS+evVbA=="; }; dependencies = [ sources."JSONStream-1.3.5" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."async-2.6.1" sources."asynckit-0.4.0" - sources."aws-sdk-2.373.0" + sources."aws-sdk-2.387.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" sources."base64-js-1.3.0" @@ -39227,7 +39447,7 @@ in sources."combined-stream-1.0.7" sources."core-util-is-1.0.2" sources."dashdash-1.14.1" - sources."decimal.js-10.0.1" + sources."decimal.js-10.0.2" sources."delayed-stream-1.0.0" sources."ecc-jsbn-0.1.2" sources."events-1.1.1" @@ -39263,22 +39483,18 @@ in sources."optimist-0.6.1" sources."performance-now-2.1.0" sources."process-nextick-args-2.0.0" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-1.3.2" sources."qs-6.5.2" sources."querystring-0.2.0" sources."readable-stream-2.3.6" - (sources."request-2.88.0" // { - dependencies = [ - sources."uuid-3.3.2" - ]; - }) + sources."request-2.88.0" sources."requestretry-3.1.0" sources."s3-stream-upload-2.0.2" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.1" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."string_decoder-1.1.1" sources."through-2.3.8" (sources."tough-cookie-2.4.3" // { @@ -39295,7 +39511,7 @@ in }) sources."url-0.10.3" sources."util-deprecate-1.0.2" - sources."uuid-3.1.0" + sources."uuid-3.3.2" sources."verror-1.10.0" sources."when-3.7.8" sources."wordwrap-0.0.3" @@ -39337,7 +39553,7 @@ in sha512 = "+zcutibM0LOG6uT48bMsSGzyPnptgenxBUjNMJFRYuddTrOFVH1dFCKUu512lsvihBUJixaxjIG+DjQbWlpO/Q=="; }; dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-styles-3.2.1" sources."anymatch-1.3.2" sources."arr-diff-2.0.0" @@ -39521,7 +39737,7 @@ in sources."lru-cache-4.1.5" sources."map-cache-0.2.2" sources."map-visit-1.0.0" - sources."math-random-1.0.1" + sources."math-random-1.0.2" sources."micromatch-2.3.11" sources."mime-db-1.37.0" sources."mime-types-2.1.21" @@ -39540,7 +39756,7 @@ in sources."ms-2.0.0" sources."murmur-hash-js-1.0.0" sources."mustache-2.3.2" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -39584,7 +39800,7 @@ in sources."preserve-0.2.0" sources."process-nextick-args-2.0.0" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" (sources."randomatic-3.1.1" // { @@ -39655,7 +39871,11 @@ in sources."request-promise-core-1.1.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" - sources."rimraf-2.6.2" + (sources."rimraf-2.6.3" // { + dependencies = [ + sources."glob-7.1.3" + ]; + }) sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" @@ -39694,7 +39914,7 @@ in sources."source-map-url-0.4.0" sources."split-1.0.1" sources."split-string-3.1.0" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -39829,7 +40049,7 @@ in sources."concat-map-0.0.1" sources."conf-1.4.0" sources."convert-source-map-1.6.0" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."cross-spawn-5.1.0" sources."currently-unhandled-0.4.1" sources."debug-2.6.9" @@ -39861,7 +40081,7 @@ in (sources."ink-0.3.1" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -39970,7 +40190,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" (sources."string-width-2.1.1" // { dependencies = [ sources."strip-ansi-4.0.0" @@ -40014,17 +40234,17 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "5.10.0"; + version = "5.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-5.10.0.tgz"; - sha512 = "HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-5.12.0.tgz"; + sha512 = "LntwyPxtOHrsJdcSwyQKVtHofPHdv+4+mFwEe91r2V13vqpM8yLr7b1sW+Oo/yheOPkWYsYlYJCkzlFAt8KV7g=="; }; dependencies = [ sources."@babel/code-frame-7.0.0" sources."@babel/highlight-7.0.0" - sources."acorn-6.0.4" + sources."acorn-6.0.5" sources."acorn-jsx-5.0.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-escapes-3.1.0" sources."ansi-regex-4.0.0" sources."ansi-styles-3.2.1" @@ -40032,9 +40252,8 @@ in sources."astral-regex-1.0.0" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."caller-path-0.1.0" - sources."callsites-0.2.0" - sources."chalk-2.4.1" + sources."callsites-3.0.0" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."circular-json-0.3.3" sources."cli-cursor-2.1.0" @@ -40043,7 +40262,7 @@ in sources."color-name-1.1.3" sources."concat-map-0.0.1" sources."cross-spawn-6.0.5" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."deep-is-0.1.3" sources."doctrine-2.1.0" sources."escape-string-regexp-1.0.5" @@ -40066,11 +40285,12 @@ in sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.3" - sources."globals-11.9.0" + sources."globals-11.10.0" sources."graceful-fs-4.1.15" sources."has-flag-3.0.0" sources."iconv-lite-0.4.24" sources."ignore-4.0.6" + sources."import-fresh-3.0.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.3" @@ -40083,7 +40303,7 @@ in sources."is-promise-2.1.0" sources."isexe-2.0.0" sources."js-tokens-4.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" sources."levn-0.3.0" @@ -40101,6 +40321,7 @@ in sources."onetime-2.0.1" sources."optionator-0.8.2" sources."os-tmpdir-1.0.2" + sources."parent-module-1.0.0" sources."path-is-absolute-1.0.1" sources."path-is-inside-1.0.2" sources."path-key-2.0.1" @@ -40109,10 +40330,9 @@ in sources."progress-2.0.3" sources."punycode-2.1.1" sources."regexpp-2.0.1" - sources."require-uncached-1.0.3" - sources."resolve-from-1.0.1" + sources."resolve-from-4.0.0" sources."restore-cursor-2.0.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."rxjs-6.3.3" sources."safer-buffer-2.1.2" @@ -40130,7 +40350,7 @@ in }) sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" - sources."table-5.1.1" + sources."table-5.2.0" sources."text-table-0.2.0" sources."through-2.3.8" sources."tmp-0.0.33" @@ -40162,9 +40382,9 @@ in dependencies = [ sources."@babel/code-frame-7.0.0" sources."@babel/highlight-7.0.0" - sources."acorn-6.0.4" + sources."acorn-6.0.5" sources."acorn-jsx-5.0.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-escapes-3.1.0" sources."ansi-regex-4.0.0" sources."ansi-styles-3.2.1" @@ -40172,9 +40392,8 @@ in sources."astral-regex-1.0.0" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."caller-path-0.1.0" - sources."callsites-0.2.0" - sources."chalk-2.4.1" + sources."callsites-3.0.0" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."circular-json-0.3.3" sources."cli-cursor-2.1.0" @@ -40183,11 +40402,11 @@ in sources."color-name-1.1.3" sources."concat-map-0.0.1" sources."cross-spawn-6.0.5" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."deep-is-0.1.3" sources."doctrine-2.1.0" sources."escape-string-regexp-1.0.5" - sources."eslint-5.10.0" + sources."eslint-5.12.0" sources."eslint-scope-4.0.0" sources."eslint-utils-1.3.1" sources."eslint-visitor-keys-1.0.0" @@ -40207,11 +40426,12 @@ in sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.3" - sources."globals-11.9.0" + sources."globals-11.10.0" sources."graceful-fs-4.1.15" sources."has-flag-3.0.0" sources."iconv-lite-0.4.24" sources."ignore-4.0.6" + sources."import-fresh-3.0.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.3" @@ -40224,7 +40444,7 @@ in sources."is-promise-2.1.0" sources."isexe-2.0.0" sources."js-tokens-4.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" sources."levn-0.3.0" @@ -40243,6 +40463,7 @@ in sources."onetime-2.0.1" sources."optionator-0.8.2" sources."os-tmpdir-1.0.2" + sources."parent-module-1.0.0" sources."path-is-absolute-1.0.1" sources."path-is-inside-1.0.2" sources."path-key-2.0.1" @@ -40252,11 +40473,10 @@ in sources."progress-2.0.3" sources."punycode-2.1.1" sources."regexpp-2.0.1" - sources."require-uncached-1.0.3" - sources."resolve-1.8.1" - sources."resolve-from-1.0.1" + sources."resolve-1.9.0" + sources."resolve-from-4.0.0" sources."restore-cursor-2.0.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."rxjs-6.3.3" sources."safer-buffer-2.1.2" @@ -40274,7 +40494,7 @@ in }) sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" - sources."table-5.1.1" + sources."table-5.2.0" sources."text-table-0.2.0" sources."through-2.3.8" sources."tmp-0.0.33" @@ -40320,7 +40540,7 @@ in sha1 = "81f5f98043cc2517053f96ba5d61ef5db430c010"; }; dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-escapes-1.4.0" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -40398,7 +40618,7 @@ in (sources."log-symbols-2.2.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -40426,7 +40646,7 @@ in (sources."ora-1.4.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."cli-cursor-2.1.0" sources."onetime-2.0.1" sources."restore-cursor-2.0.0" @@ -40446,7 +40666,7 @@ in sources."process-nextick-args-2.0.0" sources."progress-1.1.8" sources."promise-phantom-3.1.6" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."read-pkg-1.1.0" @@ -40464,8 +40684,8 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - sources."sshpk-1.15.2" + sources."spdx-license-ids-3.0.3" + sources."sshpk-1.16.0" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" sources."strip-bom-2.0.0" @@ -40522,7 +40742,7 @@ in sources."builtin-modules-1.1.1" sources."camelcase-4.1.0" sources."camelcase-keys-4.2.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."clean-stack-1.3.0" sources."cli-cursor-2.1.0" @@ -40647,7 +40867,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split2-2.2.0" sources."string-width-2.1.1" sources."string_decoder-1.1.1" @@ -40692,7 +40912,7 @@ in packageName = "forever"; version = "0.15.3"; src = fetchurl { - url = "http://registry.npmjs.org/forever/-/forever-0.15.3.tgz"; + url = "https://registry.npmjs.org/forever/-/forever-0.15.3.tgz"; sha1 = "77d9d7e15fd2f511ad9d84a110c7dd8fc8ecebc2"; }; dependencies = [ @@ -40860,7 +41080,7 @@ in sources."lazy-1.0.11" sources."map-cache-0.2.2" sources."map-visit-1.0.0" - sources."math-random-1.0.1" + sources."math-random-1.0.2" sources."micromatch-2.3.11" sources."minimatch-3.0.4" sources."minimist-0.0.10" @@ -40875,8 +41095,8 @@ in ]; }) sources."ms-2.0.0" - sources."mute-stream-0.0.7" - sources."nan-2.11.1" + sources."mute-stream-0.0.8" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -41002,7 +41222,7 @@ in sources."resumer-0.0.0" sources."ret-0.1.15" sources."revalidator-0.1.8" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" (sources."set-value-2.0.0" // { @@ -41114,7 +41334,7 @@ in }; dependencies = [ sources."async-2.6.1" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."lodash-4.17.11" sources."lodash.groupby-4.6.0" sources."microee-0.0.6" @@ -41144,7 +41364,7 @@ in sources."asyncmemo-1.0.0" sources."chloride-2.2.10" sources."chloride-test-1.2.2" - sources."colors-0.5.1" + sources."commander-2.19.0" sources."deep-equal-1.0.1" sources."deep-extend-0.6.0" sources."diff-3.5.0" @@ -41168,13 +41388,13 @@ in sources."is-my-ip-valid-1.0.0" sources."is-my-json-valid-2.19.0" sources."is-property-1.0.2" - sources."is-valid-domain-0.0.6" + sources."is-valid-domain-0.0.7" sources."json-buffer-2.0.11" sources."jsonpointer-4.0.1" sources."kvgraph-0.1.0" sources."kvset-1.0.0" - sources."libsodium-0.7.3" - sources."libsodium-wrappers-0.7.3" + sources."libsodium-0.7.4" + sources."libsodium-wrappers-0.7.4" sources."looper-4.0.0" sources."lrucache-1.0.3" sources."mime-db-1.37.0" @@ -41185,17 +41405,16 @@ in sources."minimist-0.0.8" ]; }) - sources."moment-2.22.2" + sources."moment-2.23.0" sources."moo-0.4.3" sources."multicb-1.2.2" sources."multiserver-1.13.7" sources."multiserver-address-1.0.1" - sources."muxrpc-6.4.1" - sources."nan-2.11.1" - sources."nearley-2.15.1" - sources."node-gyp-build-3.5.1" + sources."muxrpc-6.4.2" + sources."nan-2.12.1" + sources."nearley-2.16.0" + sources."node-gyp-build-3.7.0" sources."node-polyglot-1.0.0" - sources."nomnom-1.6.2" sources."non-private-ip-1.4.4" sources."options-0.0.6" sources."os-homedir-1.0.2" @@ -41255,7 +41474,7 @@ in sources."remove-markdown-0.1.0" sources."ret-0.1.15" sources."safe-buffer-5.1.2" - sources."secret-handshake-1.1.14" + sources."secret-handshake-1.1.15" sources."semver-5.6.0" sources."separator-escape-0.0.0" sources."sha.js-2.4.5" @@ -41268,15 +41487,15 @@ in ]; }) sources."sodium-chloride-1.1.2" - sources."sodium-native-2.2.3" + sources."sodium-native-2.2.4" sources."split-buffer-1.0.0" sources."ssb-avatar-0.2.0" sources."ssb-client-4.6.0" - sources."ssb-config-2.3.7" + sources."ssb-config-2.3.9" sources."ssb-git-0.5.0" sources."ssb-git-repo-2.8.3" sources."ssb-issues-1.0.0" - sources."ssb-keys-7.1.3" + sources."ssb-keys-7.1.4" sources."ssb-marked-0.6.0" (sources."ssb-mentions-0.1.2" // { dependencies = [ @@ -41290,7 +41509,7 @@ in }) sources."ssb-msgs-5.2.0" sources."ssb-pull-requests-1.0.0" - sources."ssb-ref-2.13.8" + sources."ssb-ref-2.13.9" (sources."stream-to-pull-stream-1.7.2" // { dependencies = [ sources."looper-3.0.0" @@ -41301,7 +41520,6 @@ in sources."tweetnacl-0.14.5" sources."tweetnacl-auth-0.3.1" sources."ultron-1.0.2" - sources."underscore-1.4.4" sources."ws-1.1.5" sources."xtend-4.0.1" ]; @@ -41334,10 +41552,10 @@ in graphql-cli = nodeEnv.buildNodePackage { name = "graphql-cli"; packageName = "graphql-cli"; - version = "2.17.0"; + version = "3.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-cli/-/graphql-cli-2.17.0.tgz"; - sha512 = "K82gG79pA3G8GzMeqFq5+kkdZi7K6UWlvmrWLuGaIvo8F1wdHAKDvfexjRGb5CPisqAJqQqbsGsfrg7If488kA=="; + url = "https://registry.npmjs.org/graphql-cli/-/graphql-cli-3.0.4.tgz"; + sha512 = "1AngeQkV3XsSAo7Eocy3kpoiHrP0Zog8euSs51pxz2tFy329W0+foe2FYyDPc3Gter3CbWqSs/E8ND9oowKXXg=="; }; dependencies = [ sources."@babel/generator-7.0.0-beta.38" @@ -41353,24 +41571,27 @@ in ]; }) sources."accepts-1.3.5" - sources."adm-zip-0.4.7" + sources."adm-zip-0.4.13" sources."agent-base-4.2.1" sources."ajv-5.5.2" sources."ansi-align-2.0.0" sources."ansi-escapes-3.1.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" - (sources."apollo-codegen-0.19.1" // { + (sources."apollo-codegen-0.20.2" // { dependencies = [ - (sources."graphql-config-1.2.1" // { - dependencies = [ - sources."graphql-0.12.3" - ]; - }) + sources."graphql-0.13.2" sources."node-fetch-1.7.3" sources."yargs-10.1.2" ]; }) + sources."apollo-codegen-core-0.20.1" + sources."apollo-codegen-flow-0.20.0" + sources."apollo-codegen-flow-legacy-0.20.0" + sources."apollo-codegen-scala-0.20.0" + sources."apollo-codegen-swift-0.20.0" + sources."apollo-codegen-typescript-0.20.0" + sources."apollo-codegen-typescript-legacy-0.20.0" sources."argparse-1.0.10" sources."array-flatten-1.1.1" sources."asn1-0.2.4" @@ -41399,9 +41620,9 @@ in sources."camelcase-4.1.0" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."change-case-3.0.2" - sources."chardet-0.4.2" + sources."chardet-0.7.0" sources."ci-info-1.6.0" sources."cli-boxes-1.0.0" sources."cli-cursor-2.1.0" @@ -41430,9 +41651,9 @@ in sources."content-type-1.0.4" sources."cookie-0.3.1" sources."cookie-signature-1.0.6" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" - sources."cosmiconfig-3.1.0" + sources."cosmiconfig-4.0.0" sources."create-error-class-3.0.2" (sources."cross-fetch-2.2.2" // { dependencies = [ @@ -41463,13 +41684,14 @@ in }) sources."dot-case-2.1.1" sources."dot-prop-4.2.0" - sources."dotenv-5.0.1" + sources."dotenv-6.2.0" sources."duplexer3-0.1.4" sources."ecc-jsbn-0.1.2" sources."ecdsa-sig-formatter-1.0.10" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" sources."encoding-0.1.12" + sources."end-of-stream-1.4.1" sources."errno-0.1.7" sources."error-ex-1.3.2" sources."es6-promise-4.2.5" @@ -41494,7 +41716,7 @@ in ]; }) sources."extend-3.0.2" - sources."external-editor-2.2.0" + sources."external-editor-3.0.3" sources."extsprintf-1.3.0" sources."fast-deep-equal-1.1.0" sources."fast-json-stable-stringify-2.0.0" @@ -41527,11 +41749,7 @@ in sources."ms-2.1.1" ]; }) - (sources."graphql-0.13.2" // { - dependencies = [ - sources."iterall-1.2.2" - ]; - }) + sources."graphql-14.0.2" (sources."graphql-cli-prepare-1.4.19" // { dependencies = [ sources."chalk-2.3.1" @@ -41546,15 +41764,19 @@ in sources."graphql-config-extension-graphcool-1.0.11" sources."graphql-config-extension-prisma-0.2.5" sources."graphql-import-0.4.5" - sources."graphql-playground-html-1.6.4" - sources."graphql-playground-middleware-express-1.7.6" + sources."graphql-playground-html-1.6.6" + sources."graphql-playground-middleware-express-1.7.8" sources."graphql-request-1.8.2" - sources."graphql-schema-linter-0.1.1" + (sources."graphql-schema-linter-0.1.6" // { + dependencies = [ + sources."graphql-0.13.2" + ]; + }) sources."graphql-static-binding-0.9.3" sources."har-schema-2.0.0" (sources."har-validator-5.1.3" // { dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."fast-deep-equal-2.0.1" sources."json-schema-traverse-0.4.1" ]; @@ -41583,7 +41805,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."inquirer-5.1.0" + sources."inquirer-6.2.0" sources."invert-kv-1.0.0" sources."ip-regex-1.0.3" sources."ipaddr.js-1.8.0" @@ -41614,11 +41836,12 @@ in ]; }) sources."isstream-0.1.2" - sources."iterall-1.1.3" - sources."js-base64-2.4.9" - sources."js-yaml-3.12.0" + sources."iterall-1.2.2" + sources."js-base64-2.5.0" + sources."js-yaml-3.12.1" sources."jsbn-0.1.1" sources."jsesc-2.5.2" + sources."json-parse-better-errors-1.0.2" sources."json-schema-0.2.3" (sources."json-schema-ref-parser-3.3.1" // { dependencies = [ @@ -41667,6 +41890,7 @@ in sources."pify-3.0.0" ]; }) + sources."map-age-cleaner-0.1.3" sources."media-typer-0.3.0" sources."mem-1.1.0" sources."merge-descriptors-1.0.1" @@ -41704,17 +41928,19 @@ in sources."ono-4.0.11" sources."open-0.0.5" sources."opn-5.4.0" - sources."ora-1.4.0" + sources."ora-3.0.0" sources."os-locale-2.1.0" sources."os-tmpdir-1.0.2" + sources."p-defer-1.0.0" sources."p-finally-1.0.0" + sources."p-is-promise-1.1.0" sources."p-limit-1.3.0" sources."p-locate-2.0.0" sources."p-try-1.0.0" sources."package-json-4.0.1" sources."param-case-2.1.1" sources."parse-github-url-1.0.2" - sources."parse-json-3.0.0" + sources."parse-json-4.0.0" sources."parse-passwd-1.0.0" sources."parseurl-1.3.2" sources."pascal-case-2.0.1" @@ -41742,7 +41968,8 @@ in sources."proxy-addr-2.0.4" sources."prr-1.0.1" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" + sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" sources."range-parser-1.2.0" @@ -41776,9 +42003,9 @@ in sources."resolve-dir-1.0.1" sources."resolve-from-4.0.0" sources."restore-cursor-2.0.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" - sources."rxjs-5.5.12" + sources."rxjs-6.3.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."scuid-1.1.0" @@ -41796,7 +42023,7 @@ in sources."simple-errors-1.0.1" sources."snake-case-2.1.0" sources."source-map-0.5.7" - (sources."source-map-support-0.5.9" // { + (sources."source-map-support-0.5.10" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -41804,9 +42031,9 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.4.0" sources."stealthy-require-1.1.1" (sources."string-width-2.1.1" // { @@ -41821,7 +42048,6 @@ in sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" sources."swap-case-1.1.2" - sources."symbol-observable-1.0.1" sources."sync-exec-0.6.2" sources."term-size-1.2.0" sources."through-2.3.8" @@ -41838,6 +42064,7 @@ in }) sources."traverse-chain-0.1.0" sources."trim-right-1.0.1" + sources."tslib-1.9.3" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-is-1.6.16" @@ -41856,7 +42083,7 @@ in sources."utils-merge-1.0.1" sources."uuid-3.3.2" sources."validate-npm-package-license-3.0.4" - sources."validator-10.9.0" + sources."validator-10.10.0" sources."vary-1.1.2" sources."verror-1.10.0" sources."wcwidth-1.0.1" @@ -41878,9 +42105,21 @@ in sources."y18n-3.2.1" sources."yallist-2.1.2" sources."yaml-ast-parser-0.0.40" - (sources."yargs-11.0.0" // { + (sources."yargs-12.0.5" // { dependencies = [ - sources."yargs-parser-9.0.2" + sources."camelcase-5.0.0" + sources."execa-1.0.0" + sources."find-up-3.0.0" + sources."get-stream-4.1.0" + sources."invert-kv-2.0.0" + sources."lcid-2.0.0" + sources."locate-path-3.0.0" + sources."mem-4.0.0" + sources."os-locale-3.1.0" + sources."p-limit-2.1.0" + sources."p-locate-3.0.0" + sources."p-try-2.0.0" + sources."yargs-parser-11.1.1" ]; }) sources."yargs-parser-8.1.0" @@ -41985,8 +42224,8 @@ in ]; }) sources."findup-sync-2.0.0" - sources."fined-1.1.0" - sources."flagged-respawn-1.0.0" + sources."fined-1.1.1" + sources."flagged-respawn-1.0.1" sources."for-in-1.0.2" sources."for-own-1.0.0" sources."fragment-cache-0.2.1" @@ -42068,7 +42307,7 @@ in sources."regex-not-1.0.2" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-dir-1.0.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" @@ -42153,7 +42392,7 @@ in }) sources."urix-0.1.0" sources."use-3.1.1" - sources."v8flags-3.1.1" + sources."v8flags-3.1.2" sources."which-1.3.1" ]; buildInputs = globalBuildInputs; @@ -42168,42 +42407,67 @@ in gulp = nodeEnv.buildNodePackage { name = "gulp"; packageName = "gulp"; - version = "3.9.1"; + version = "4.0.0"; src = fetchurl { - url = "http://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz"; - sha1 = "571ce45928dd40af6514fc4011866016c13845b4"; + url = "https://registry.npmjs.org/gulp/-/gulp-4.0.0.tgz"; + sha1 = "95766c601dade4a77ed3e7b2b6dc03881b596366"; }; dependencies = [ + sources."ansi-colors-1.1.0" sources."ansi-gray-0.1.1" sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" sources."ansi-wrap-0.1.0" + sources."anymatch-2.0.0" + sources."append-buffer-1.0.2" sources."archy-1.0.0" sources."arr-diff-4.0.0" + sources."arr-filter-1.1.2" sources."arr-flatten-1.1.0" + sources."arr-map-2.0.2" sources."arr-union-3.1.0" - sources."array-differ-1.0.0" sources."array-each-1.0.1" + (sources."array-initial-1.1.0" // { + dependencies = [ + sources."is-number-4.0.0" + ]; + }) + (sources."array-last-1.3.0" // { + dependencies = [ + sources."is-number-4.0.0" + ]; + }) sources."array-slice-1.1.0" - sources."array-uniq-1.0.3" + (sources."array-sort-1.0.0" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) sources."array-unique-0.3.2" sources."assign-symbols-1.0.0" + sources."async-done-1.3.1" + sources."async-each-1.0.1" + sources."async-settle-1.0.0" sources."atob-2.1.2" + sources."bach-1.2.0" sources."balanced-match-1.0.0" (sources."base-0.11.2" // { dependencies = [ sources."define-property-1.0.0" ]; }) - sources."beeper-1.1.1" + sources."binary-extensions-1.12.0" sources."brace-expansion-1.1.11" (sources."braces-2.3.2" // { dependencies = [ sources."extend-shallow-2.0.1" ]; }) + sources."buffer-equal-1.0.0" + sources."buffer-from-1.1.1" + sources."builtin-modules-1.1.1" sources."cache-base-1.0.1" - sources."chalk-1.1.3" + sources."camelcase-3.0.0" + sources."chokidar-2.0.4" (sources."class-utils-0.3.6" // { dependencies = [ sources."define-property-0.2.5" @@ -42221,24 +42485,47 @@ in sources."kind-of-5.1.0" ]; }) - sources."clone-1.0.4" - sources."clone-stats-0.0.1" + sources."cliui-3.2.0" + sources."clone-2.1.2" + sources."clone-buffer-1.0.0" + sources."clone-stats-1.0.0" + (sources."cloneable-readable-1.1.2" // { + dependencies = [ + sources."process-nextick-args-2.0.0" + ]; + }) + sources."code-point-at-1.1.0" + sources."collection-map-1.0.0" sources."collection-visit-1.0.0" sources."color-support-1.1.3" sources."component-emitter-1.2.1" sources."concat-map-0.0.1" + sources."concat-stream-1.6.2" + sources."convert-source-map-1.6.0" sources."copy-descriptor-0.1.1" + sources."copy-props-2.0.4" sources."core-util-is-1.0.2" - sources."dateformat-2.2.0" + sources."d-1.0.0" sources."debug-2.6.9" + sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" - sources."defaults-1.0.3" + (sources."default-compare-1.0.0" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."default-resolution-2.0.0" + sources."define-properties-1.1.3" sources."define-property-2.0.2" - sources."deprecated-0.0.1" sources."detect-file-1.0.0" - sources."duplexer2-0.0.2" - sources."end-of-stream-0.1.5" - sources."escape-string-regexp-1.0.5" + sources."duplexify-3.6.1" + sources."each-props-1.3.2" + sources."end-of-stream-1.4.1" + sources."error-ex-1.3.2" + sources."es5-ext-0.10.46" + sources."es6-iterator-2.0.3" + sources."es6-symbol-3.1.1" + sources."es6-weak-map-2.0.2" (sources."expand-brackets-2.1.4" // { dependencies = [ sources."define-property-0.2.5" @@ -42276,41 +42563,39 @@ in sources."extend-shallow-2.0.1" ]; }) - sources."find-index-0.1.1" - sources."findup-sync-2.0.0" - sources."fined-1.1.0" - sources."first-chunk-stream-1.0.0" - sources."flagged-respawn-1.0.0" + sources."find-up-1.1.2" + (sources."findup-sync-2.0.0" // { + dependencies = [ + sources."is-glob-3.1.0" + ]; + }) + sources."fined-1.1.1" + sources."flagged-respawn-1.0.1" + sources."flush-write-stream-1.0.3" sources."for-in-1.0.2" sources."for-own-1.0.0" sources."fragment-cache-0.2.1" - sources."gaze-0.5.2" + sources."fs-mkdirp-stream-1.0.0" + sources."fs.realpath-1.0.0" + sources."fsevents-1.2.4" + sources."function-bind-1.1.1" + sources."get-caller-file-1.0.3" sources."get-value-2.0.6" - sources."glob-4.5.3" - (sources."glob-stream-3.1.18" // { + sources."glob-7.1.3" + (sources."glob-parent-3.1.0" // { dependencies = [ - sources."readable-stream-1.0.34" - sources."through2-0.6.5" + sources."is-glob-3.1.0" ]; }) - sources."glob-watcher-0.0.6" - sources."glob2base-0.0.12" + sources."glob-stream-6.1.0" + sources."glob-watcher-5.0.3" sources."global-modules-1.0.0" sources."global-prefix-1.0.2" - (sources."globule-0.1.0" // { - dependencies = [ - sources."glob-3.1.21" - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - sources."minimatch-0.2.14" - ]; - }) - sources."glogg-1.0.1" - sources."graceful-fs-3.0.11" - sources."gulp-util-3.0.8" + sources."glogg-1.0.2" + sources."graceful-fs-4.1.15" + sources."gulp-cli-2.0.1" sources."gulplog-1.0.0" - sources."has-ansi-2.0.0" - sources."has-gulplog-0.1.0" + sources."has-symbols-1.0.0" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { dependencies = [ @@ -42318,18 +42603,25 @@ in ]; }) sources."homedir-polyfill-1.0.1" + sources."hosted-git-info-2.7.1" sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."interpret-1.1.0" + sources."interpret-1.2.0" + sources."invert-kv-1.0.0" sources."is-absolute-1.0.0" sources."is-accessor-descriptor-1.0.0" + sources."is-arrayish-0.2.1" + sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" + sources."is-builtin-module-1.0.0" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" - sources."is-glob-3.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."is-glob-4.0.0" + sources."is-negated-glob-1.0.0" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -42339,51 +42631,41 @@ in sources."is-relative-1.0.0" sources."is-unc-path-1.0.0" sources."is-utf8-0.2.1" + sources."is-valid-glob-1.0.0" sources."is-windows-1.0.2" - sources."isarray-0.0.1" + sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" + sources."json-stable-stringify-without-jsonify-1.0.1" + sources."just-debounce-1.0.0" sources."kind-of-6.0.2" + sources."last-run-1.1.1" + sources."lazystream-1.0.0" + sources."lcid-1.0.0" + sources."lead-1.0.0" sources."liftoff-2.5.0" - sources."lodash-1.0.2" - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._getnative-3.9.1" - sources."lodash._isiterateecall-3.0.9" - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - sources."lodash._root-3.0.1" - sources."lodash.escape-3.2.0" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - sources."lodash.keys-3.1.2" - sources."lodash.restparam-3.6.1" - sources."lodash.template-3.6.2" - sources."lodash.templatesettings-3.1.1" - sources."lru-cache-2.7.3" + sources."load-json-file-1.1.0" + sources."lodash.debounce-4.0.8" sources."make-iterator-1.0.1" sources."map-cache-0.2.2" sources."map-visit-1.0.0" + sources."matchdep-2.0.0" sources."micromatch-3.1.10" - sources."minimatch-2.0.10" - sources."minimist-1.2.0" + sources."minimatch-3.0.4" (sources."mixin-deep-1.3.1" // { dependencies = [ sources."is-extendable-1.0.1" ]; }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) sources."ms-2.0.0" - sources."multipipe-0.1.2" + sources."mute-stdout-1.0.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" - sources."natives-1.1.6" - sources."object-assign-3.0.0" + sources."next-tick-1.0.0" + sources."normalize-package-data-2.4.0" + sources."normalize-path-2.1.1" + sources."now-and-later-2.0.0" + sources."number-is-nan-1.0.1" (sources."object-copy-0.1.0" // { dependencies = [ sources."define-property-0.2.5" @@ -42397,44 +42679,70 @@ in sources."kind-of-3.2.2" ]; }) + sources."object-keys-1.0.12" sources."object-visit-1.0.1" + sources."object.assign-4.1.0" sources."object.defaults-1.1.0" sources."object.map-1.0.1" sources."object.pick-1.3.0" - sources."once-1.3.3" - sources."orchestrator-0.3.8" - sources."ordered-read-streams-0.1.0" - sources."os-homedir-1.0.2" + sources."object.reduce-1.0.1" + sources."once-1.4.0" + sources."ordered-read-streams-1.0.1" + sources."os-locale-1.4.0" sources."parse-filepath-1.0.2" + sources."parse-json-2.2.0" sources."parse-node-version-1.0.0" sources."parse-passwd-1.0.0" sources."pascalcase-0.1.1" + sources."path-dirname-1.0.2" + sources."path-exists-2.1.0" + sources."path-is-absolute-1.0.1" sources."path-parse-1.0.6" sources."path-root-0.1.1" sources."path-root-regex-0.1.2" + sources."path-type-1.1.0" + sources."pify-2.3.0" + sources."pinkie-2.0.4" + sources."pinkie-promise-2.0.1" sources."posix-character-classes-0.1.1" sources."pretty-hrtime-1.0.3" - sources."process-nextick-args-2.0.0" - sources."readable-stream-1.1.14" + sources."process-nextick-args-1.0.7" + sources."pump-2.0.1" + sources."pumpify-1.5.1" + sources."read-pkg-1.1.0" + sources."read-pkg-up-1.0.1" + (sources."readable-stream-2.3.6" // { + dependencies = [ + sources."process-nextick-args-2.0.0" + ]; + }) + sources."readdirp-2.2.1" sources."rechoir-0.6.2" sources."regex-not-1.0.2" + sources."remove-bom-buffer-3.0.0" + sources."remove-bom-stream-1.2.0" + sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" - sources."replace-ext-0.0.1" - sources."resolve-1.8.1" + sources."replace-ext-1.0.0" + sources."replace-homedir-1.0.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."resolve-1.9.0" sources."resolve-dir-1.0.1" + sources."resolve-options-1.1.0" sources."resolve-url-0.2.1" sources."ret-0.1.15" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" - sources."semver-4.3.6" - sources."sequencify-0.0.7" + sources."semver-5.6.0" + sources."semver-greatest-satisfied-range-1.1.0" + sources."set-blocking-2.0.0" (sources."set-value-2.0.0" // { dependencies = [ sources."extend-shallow-2.0.1" ]; }) - sources."sigmund-1.0.1" (sources."snapdragon-0.8.2" // { dependencies = [ sources."define-property-0.2.5" @@ -42467,7 +42775,12 @@ in sources."source-map-resolve-0.5.2" sources."source-map-url-0.4.0" sources."sparkles-1.0.1" + sources."spdx-correct-3.1.0" + sources."spdx-exceptions-2.2.0" + sources."spdx-expression-parse-3.0.0" + sources."spdx-license-ids-3.0.3" sources."split-string-3.1.0" + sources."stack-trace-0.0.10" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -42485,20 +42798,17 @@ in sources."kind-of-5.1.0" ]; }) - sources."stream-consume-0.1.1" - sources."string_decoder-0.10.31" + sources."stream-exhaust-1.0.2" + sources."stream-shift-1.0.0" + sources."string-width-1.0.2" + sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" - sources."strip-bom-1.0.0" - sources."supports-color-2.0.0" - (sources."through2-2.0.5" // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.6" - sources."string_decoder-1.1.1" - ]; - }) - sources."tildify-1.2.0" + sources."strip-bom-2.0.0" + sources."sver-compat-1.5.0" + sources."through2-2.0.5" + sources."through2-filter-3.0.0" sources."time-stamp-1.1.0" + sources."to-absolute-glob-2.0.2" (sources."to-object-path-0.3.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -42506,14 +42816,18 @@ in }) sources."to-regex-3.0.2" sources."to-regex-range-2.1.1" + sources."to-through-2.0.0" + sources."typedarray-0.0.6" sources."unc-path-regex-0.1.2" + sources."undertaker-1.2.0" + sources."undertaker-registry-1.0.1" (sources."union-value-1.0.0" // { dependencies = [ sources."extend-shallow-2.0.1" sources."set-value-0.4.3" ]; }) - sources."unique-stream-1.0.0" + sources."unique-stream-2.3.1" (sources."unset-value-1.0.0" // { dependencies = [ (sources."has-value-0.3.1" // { @@ -42522,30 +42836,30 @@ in ]; }) sources."has-values-0.1.4" - sources."isarray-1.0.0" ]; }) + sources."upath-1.1.0" sources."urix-0.1.0" sources."use-3.1.1" - sources."user-home-1.1.1" sources."util-deprecate-1.0.2" - sources."v8flags-2.1.1" - sources."vinyl-0.5.3" - (sources."vinyl-fs-0.3.14" // { - dependencies = [ - sources."clone-0.2.0" - sources."readable-stream-1.0.34" - sources."through2-0.6.5" - sources."vinyl-0.4.6" - ]; - }) + sources."v8flags-3.1.2" + sources."validate-npm-package-license-3.0.4" + sources."value-or-function-3.0.0" + sources."vinyl-2.2.0" + sources."vinyl-fs-3.0.3" + sources."vinyl-sourcemap-1.1.0" sources."which-1.3.1" + sources."which-module-1.0.0" + sources."wrap-ansi-2.1.0" sources."wrappy-1.0.2" sources."xtend-4.0.1" + sources."y18n-3.2.1" + sources."yargs-7.1.0" + sources."yargs-parser-5.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "The streaming build system"; + description = "The streaming build system."; homepage = http://gulpjs.com/; license = "MIT"; }; @@ -42650,8 +42964,8 @@ in }) sources."find-up-1.1.2" sources."findup-sync-2.0.0" - sources."fined-1.1.0" - sources."flagged-respawn-1.0.0" + sources."fined-1.1.1" + sources."flagged-respawn-1.0.1" sources."for-in-1.0.2" sources."for-own-1.0.0" sources."fragment-cache-0.2.1" @@ -42659,7 +42973,7 @@ in sources."get-value-2.0.6" sources."global-modules-1.0.0" sources."global-prefix-1.0.2" - sources."glogg-1.0.1" + sources."glogg-1.0.2" sources."graceful-fs-4.1.15" sources."gulplog-1.0.0" sources."has-value-1.0.0" @@ -42672,7 +42986,7 @@ in sources."hosted-git-info-2.7.1" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."interpret-1.1.0" + sources."interpret-1.2.0" sources."invert-kv-1.0.0" sources."is-absolute-1.0.0" (sources."is-accessor-descriptor-1.0.0" // { @@ -42787,7 +43101,7 @@ in sources."replace-homedir-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-dir-1.0.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" @@ -42828,7 +43142,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-string-3.1.0" sources."stack-trace-0.0.10" (sources."static-extend-0.1.2" // { @@ -42874,7 +43188,7 @@ in sources."urix-0.1.0" sources."use-3.1.1" sources."util-deprecate-1.0.2" - sources."v8flags-3.1.1" + sources."v8flags-3.1.2" sources."validate-npm-package-license-3.0.4" sources."which-1.3.1" sources."which-module-1.0.0" @@ -42906,7 +43220,7 @@ in sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" sources."agent-base-4.2.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-align-2.0.0" sources."ansi-escapes-3.1.0" sources."ansi-regex-3.0.0" @@ -42917,7 +43231,7 @@ in sources."asap-2.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."ast-types-0.11.7" + sources."ast-types-0.12.1" sources."async-2.6.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" @@ -42935,7 +43249,7 @@ in sources."camelcase-2.1.1" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.4.2" sources."ci-info-1.6.0" sources."cli-1.0.1" @@ -43090,7 +43404,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isstream-0.1.2" - (sources."js-yaml-3.12.0" // { + (sources."js-yaml-3.12.1" // { dependencies = [ sources."esprima-4.0.1" ]; @@ -43187,7 +43501,7 @@ in sources."proxy-agent-2.3.1" sources."proxy-from-env-1.0.0" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" (sources."raw-body-2.3.3" // { @@ -43227,33 +43541,33 @@ in sources."shelljs-0.3.0" sources."signal-exit-3.0.2" sources."smart-buffer-1.1.15" - sources."snyk-1.116.2" + sources."snyk-1.122.0" sources."snyk-config-2.2.0" - sources."snyk-docker-plugin-1.13.1" + sources."snyk-docker-plugin-1.17.0" sources."snyk-go-plugin-1.6.1" - sources."snyk-gradle-plugin-2.1.1" + sources."snyk-gradle-plugin-2.1.3" sources."snyk-module-1.9.1" - sources."snyk-mvn-plugin-2.0.0" - (sources."snyk-nodejs-lockfile-parser-1.9.0" // { + sources."snyk-mvn-plugin-2.0.1" + (sources."snyk-nodejs-lockfile-parser-1.10.1" // { dependencies = [ sources."lodash-4.17.10" ]; }) sources."snyk-nuget-plugin-1.6.5" sources."snyk-php-plugin-1.5.1" - sources."snyk-policy-1.13.1" - sources."snyk-python-plugin-1.9.0" + sources."snyk-policy-1.13.3" + sources."snyk-python-plugin-1.9.1" sources."snyk-resolve-1.0.1" sources."snyk-resolve-deps-4.0.2" - sources."snyk-sbt-plugin-2.0.0" + sources."snyk-sbt-plugin-2.0.1" sources."snyk-tree-1.0.0" sources."snyk-try-require-1.3.1" sources."socks-1.1.10" sources."socks-proxy-agent-3.0.1" sources."source-map-0.6.1" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.5.0" sources."string-width-2.1.1" sources."string_decoder-0.10.31" @@ -43269,7 +43583,7 @@ in sources."thunkify-2.1.2" sources."timed-out-4.0.1" sources."tmp-0.0.33" - sources."toml-2.3.3" + sources."toml-2.3.5" (sources."tough-cookie-2.4.3" // { dependencies = [ sources."punycode-1.4.1" @@ -43295,7 +43609,7 @@ in sources."util-deprecate-1.0.2" sources."uuid-3.3.2" sources."verror-1.10.0" - sources."vscode-languageserver-types-3.13.0" + sources."vscode-languageserver-types-3.14.0" sources."which-1.3.1" sources."widest-line-2.0.1" sources."win-release-1.1.1" @@ -43381,7 +43695,7 @@ in sources."debug-3.1.0" sources."ecstatic-3.3.0" sources."eventemitter3-3.1.0" - sources."follow-redirects-1.5.10" + sources."follow-redirects-1.6.1" sources."he-1.2.0" sources."http-proxy-1.17.0" sources."mime-1.6.0" @@ -43421,32 +43735,42 @@ in ionic = nodeEnv.buildNodePackage { name = "ionic"; packageName = "ionic"; - version = "4.5.0"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/ionic/-/ionic-4.5.0.tgz"; - sha512 = "N25knF6/eV9UguOXO2TpEhCRiudkIuDDtZLfek5la65ageZ0VurRQDDm7D1ko0keYHiP0oynptw+J0Vl/0bYng=="; + url = "https://registry.npmjs.org/ionic/-/ionic-4.7.1.tgz"; + sha512 = "sNOkCgtceYghjtAdQchH+GpEyULx8G/Nohcri7+yDA7luCyh3zOT4tEbJk36QxJ6X7SNG/OSUjtW1CDlK7cMhw=="; }; dependencies = [ - sources."@ionic/cli-framework-1.5.0" - sources."@ionic/discover-1.0.8" - sources."@ionic/utils-fs-0.0.5" - sources."@ionic/utils-network-0.0.4" + sources."@ionic/cli-framework-1.5.3" + sources."@ionic/discover-1.0.10" + sources."@ionic/utils-fs-1.0.0" + sources."@ionic/utils-network-0.0.6" sources."agent-base-4.2.1" - sources."ansi-align-2.0.0" + (sources."ansi-align-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" + ]; + }) sources."ansi-escapes-3.1.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" - sources."ast-types-0.11.7" + sources."ast-types-0.12.1" sources."astral-regex-1.0.0" sources."async-limiter-1.0.0" sources."asynckit-0.4.0" sources."balanced-match-1.0.0" - sources."boxen-1.3.0" + (sources."boxen-1.3.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" + ]; + }) sources."brace-expansion-1.1.11" sources."bytes-3.0.0" sources."camelcase-4.1.0" sources."capture-stack-trace-1.0.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."chownr-1.1.1" sources."ci-info-1.6.0" @@ -43466,7 +43790,7 @@ in sources."cross-spawn-6.0.5" sources."crypto-random-string-1.0.0" sources."data-uri-to-buffer-1.2.0" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."deep-extend-0.6.0" sources."deep-is-0.1.3" sources."degenerator-1.0.4" @@ -43477,6 +43801,7 @@ in sources."duplexer2-0.1.4" sources."duplexer3-0.1.4" sources."elementtree-0.1.7" + sources."emoji-regex-7.0.3" sources."es6-promise-4.2.5" sources."es6-promisify-5.0.0" sources."escape-string-regexp-1.0.5" @@ -43492,6 +43817,7 @@ in sources."file-uri-to-path-1.0.0" sources."form-data-2.3.3" sources."formidable-1.2.1" + sources."fs-extra-7.0.1" sources."fs-minipass-1.2.5" sources."fs.realpath-1.0.0" (sources."ftp-0.3.10" // { @@ -43531,7 +43857,15 @@ in sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."inquirer-6.2.1" + (sources."inquirer-6.2.1" // { + dependencies = [ + (sources."string-width-2.1.1" // { + dependencies = [ + sources."strip-ansi-4.0.0" + ]; + }) + ]; + }) sources."ip-1.1.5" sources."is-ci-1.2.1" sources."is-fullwidth-code-point-2.0.0" @@ -43546,6 +43880,7 @@ in sources."is-wsl-1.1.0" sources."isarray-1.0.0" sources."isexe-2.0.0" + sources."jsonfile-4.0.0" sources."latest-version-3.1.0" (sources."leek-0.0.24" // { dependencies = [ @@ -43568,6 +43903,7 @@ in sources."lodash.restparam-3.6.1" (sources."log-update-2.3.0" // { dependencies = [ + sources."string-width-2.1.1" sources."strip-ansi-4.0.0" sources."wrap-ansi-3.0.1" ]; @@ -43577,7 +43913,7 @@ in sources."macos-release-2.0.0" sources."make-dir-1.3.0" sources."methods-1.1.2" - sources."mime-1.6.0" + sources."mime-2.4.0" sources."mime-db-1.37.0" sources."mime-types-2.1.21" sources."mimic-fn-1.2.0" @@ -43596,7 +43932,6 @@ in }) sources."ms-2.1.1" sources."mute-stream-0.0.7" - sources."ncp-2.0.0" sources."netmask-1.0.6" sources."nice-try-1.0.5" sources."npm-run-path-2.0.2" @@ -43639,7 +43974,7 @@ in sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."restore-cursor-2.0.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."rsvp-3.6.2" sources."run-async-2.3.0" sources."rxjs-6.3.3" @@ -43657,19 +43992,15 @@ in sources."socks-2.2.2" sources."socks-proxy-agent-4.0.1" sources."source-map-0.6.1" - (sources."split2-3.0.0" // { + (sources."split2-3.1.0" // { dependencies = [ - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" ]; }) sources."ssh-config-1.1.5" sources."statuses-1.5.0" sources."stream-combiner2-1.1.1" - (sources."string-width-2.1.1" // { - dependencies = [ - sources."strip-ansi-4.0.0" - ]; - }) + sources."string-width-3.0.0" sources."string_decoder-1.1.1" (sources."strip-ansi-5.0.0" // { dependencies = [ @@ -43678,9 +44009,9 @@ in }) sources."strip-eof-1.0.0" sources."strip-json-comments-2.0.1" - (sources."superagent-3.8.3" // { + (sources."superagent-4.1.0" // { dependencies = [ - sources."debug-3.2.6" + sources."readable-stream-3.1.1" ]; }) (sources."superagent-proxy-2.0.0" // { @@ -43709,6 +44040,7 @@ in sources."tslib-1.9.3" sources."type-check-0.3.2" sources."unique-string-1.0.0" + sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."untildify-3.0.3" sources."unzip-response-2.0.1" @@ -43717,11 +44049,17 @@ in sources."util-deprecate-1.0.2" sources."uuid-3.3.2" sources."which-1.3.1" - sources."widest-line-2.0.1" + (sources."widest-line-2.0.1" // { + dependencies = [ + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" + ]; + }) sources."windows-release-3.1.0" sources."wordwrap-1.0.0" (sources."wrap-ansi-4.0.0" // { dependencies = [ + sources."string-width-2.1.1" sources."strip-ansi-4.0.0" ]; }) @@ -43791,9 +44129,9 @@ in sources."minimist-0.0.8" ]; }) - sources."moment-2.22.2" + sources."moment-2.23.0" sources."mv-2.1.1" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."ncp-2.0.0" sources."once-1.4.0" sources."optimist-0.6.1" @@ -43858,234 +44196,75 @@ in javascript-typescript-langserver = nodeEnv.buildNodePackage { name = "javascript-typescript-langserver"; packageName = "javascript-typescript-langserver"; - version = "2.11.1"; + version = "2.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.11.1.tgz"; - sha512 = "Kkal2i0jcXsgwgn61gnhVJuh0R0J+HqyzREVaeBvZHgMCAQVW02kYwVbY8xzpBfcZmDBYcT5LrPBBQa27C9tRA=="; + url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.11.2.tgz"; + sha512 = "ntxgW8oAKKGU+Gk21u7HK+/LG8+D4jekxPxOrJYov82CJRb/k/9MKX+gdk7Eh1VSaujwDKJIWzCOWpna4Vtw3A=="; }; dependencies = [ - (sources."@commitlint/cli-7.2.1" // { - dependencies = [ - sources."chalk-2.3.1" - ]; - }) - sources."@commitlint/config-conventional-7.1.2" - sources."@commitlint/ensure-7.2.0" - sources."@commitlint/execute-rule-7.1.2" - sources."@commitlint/format-7.2.1" - sources."@commitlint/is-ignored-7.2.1" - sources."@commitlint/lint-7.2.1" - sources."@commitlint/load-7.2.1" - sources."@commitlint/message-7.1.2" - sources."@commitlint/parse-7.1.2" - sources."@commitlint/read-7.1.2" - sources."@commitlint/resolve-extends-7.1.2" - sources."@commitlint/rules-7.2.0" - sources."@commitlint/to-lines-7.1.2" - sources."@commitlint/top-level-7.1.2" - sources."@marionebl/sander-0.6.1" - sources."JSONStream-1.3.5" sources."ansi-color-0.2.1" sources."ansi-styles-3.2.1" sources."any-promise-1.3.0" - sources."argparse-1.0.10" - sources."array-find-index-1.0.2" - sources."array-ify-1.0.0" - sources."arrify-1.0.1" sources."assertion-error-1.1.0" - (sources."babel-polyfill-6.26.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."babel-runtime-6.26.0" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" sources."bufrw-1.2.1" - sources."builtin-modules-1.1.1" - sources."caller-path-0.1.0" - sources."callsites-0.2.0" - sources."camelcase-4.1.0" - sources."camelcase-keys-4.2.0" sources."chai-4.2.0" sources."chai-as-promised-7.1.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."check-error-1.0.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."commander-2.19.0" - sources."compare-func-1.3.2" sources."concat-map-0.0.1" - sources."conventional-changelog-angular-1.6.6" - (sources."conventional-commits-parser-2.1.7" // { - dependencies = [ - sources."meow-4.0.1" - ]; - }) - sources."core-js-2.6.0" - sources."core-util-is-1.0.2" - sources."cosmiconfig-4.0.0" - sources."currently-unhandled-0.4.1" - sources."dargs-4.1.0" - sources."decamelize-1.2.0" - (sources."decamelize-keys-1.1.0" // { - dependencies = [ - sources."map-obj-1.0.1" - ]; - }) sources."deep-eql-3.0.1" sources."deep-equal-1.0.1" - sources."dot-prop-3.0.0" sources."error-7.0.2" - sources."error-ex-1.3.2" sources."escape-string-regexp-1.0.5" - sources."esprima-4.0.1" sources."fast-json-patch-2.0.7" - sources."find-up-2.1.0" sources."fs.realpath-1.0.0" sources."get-func-name-2.0.0" - sources."get-stdin-5.0.1" - (sources."git-raw-commits-1.3.6" // { - dependencies = [ - sources."meow-4.0.1" - ]; - }) sources."glob-7.1.3" - sources."global-dirs-0.1.1" - sources."graceful-fs-4.1.15" sources."has-flag-3.0.0" - sources."hosted-git-info-2.7.1" - sources."indent-string-3.2.0" sources."inflight-1.0.6" sources."inherits-2.0.3" - sources."ini-1.3.5" - sources."is-arrayish-0.2.1" - sources."is-builtin-module-1.0.0" - sources."is-directory-0.3.1" - sources."is-obj-1.0.1" - sources."is-plain-obj-1.1.0" - sources."is-text-path-1.0.1" - sources."isarray-1.0.0" - sources."iterare-0.0.8" + sources."iterare-1.1.2" (sources."jaeger-client-3.13.0" // { dependencies = [ sources."opentracing-0.13.0" ]; }) - sources."js-yaml-3.12.0" - sources."json-parse-better-errors-1.0.2" - sources."jsonparse-1.3.1" - sources."load-json-file-4.0.0" - sources."locate-path-2.0.0" sources."lodash-4.17.11" - sources."lodash._reinterpolate-3.0.0" - sources."lodash.camelcase-4.3.0" - sources."lodash.every-4.6.0" - sources."lodash.flattendeep-4.4.0" - sources."lodash.foreach-4.5.0" - sources."lodash.kebabcase-4.1.1" - sources."lodash.map-4.6.0" - sources."lodash.maxby-4.6.0" - sources."lodash.merge-4.6.1" - sources."lodash.mergewith-4.6.1" - sources."lodash.omit-4.5.0" - sources."lodash.pick-4.4.0" - sources."lodash.snakecase-4.1.1" - sources."lodash.startcase-4.4.0" - sources."lodash.template-4.4.0" - sources."lodash.templatesettings-4.1.0" - sources."lodash.topairs-4.3.0" - sources."lodash.upperfirst-4.3.1" sources."long-2.4.0" - sources."loud-rejection-1.6.0" - sources."map-obj-2.0.0" - sources."meow-5.0.0" sources."minimatch-3.0.4" - sources."minimist-1.2.0" - sources."minimist-options-3.0.2" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) sources."mz-2.7.0" sources."node-int64-0.4.0" - sources."normalize-package-data-2.4.0" - sources."number-is-nan-1.0.1" sources."object-assign-4.1.1" sources."object-hash-1.3.1" sources."once-1.4.0" sources."opentracing-0.14.3" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" - sources."parse-json-4.0.0" - sources."path-exists-3.0.0" sources."path-is-absolute-1.0.1" - sources."path-type-3.0.0" sources."pathval-1.1.0" - sources."pify-3.0.0" - sources."process-nextick-args-2.0.0" - sources."q-1.5.1" - sources."quick-lru-1.1.0" - sources."read-pkg-3.0.0" - sources."read-pkg-up-3.0.0" - sources."readable-stream-2.3.6" - sources."redent-2.0.0" - sources."regenerator-runtime-0.11.1" - sources."require-from-string-2.0.2" - (sources."require-uncached-1.0.3" // { - dependencies = [ - sources."resolve-from-1.0.1" - ]; - }) - sources."resolve-from-4.0.0" - sources."resolve-global-0.1.0" - sources."rimraf-2.6.2" sources."rxjs-5.5.12" - sources."safe-buffer-5.1.2" sources."semaphore-async-await-1.5.1" - sources."semver-5.6.0" - sources."signal-exit-3.0.2" - sources."spdx-correct-3.1.0" - sources."spdx-exceptions-2.2.0" - sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - sources."split2-2.2.0" - sources."sprintf-js-1.0.3" - sources."string-similarity-1.2.2" + sources."string-similarity-2.0.0" sources."string-template-0.2.1" - sources."string_decoder-1.1.1" - sources."strip-bom-3.0.0" - sources."strip-indent-2.0.0" sources."supports-color-5.5.0" sources."symbol-observable-1.0.1" - sources."text-extensions-1.9.0" sources."thenify-3.3.0" sources."thenify-all-1.6.0" sources."thriftrw-3.11.3" - sources."through-2.3.8" - sources."through2-2.0.5" - sources."trim-newlines-2.0.0" - sources."trim-off-newlines-1.0.1" sources."type-detect-4.0.8" sources."typescript-3.0.3" - sources."util-deprecate-1.0.2" sources."uuid-3.3.2" - sources."validate-npm-package-license-3.0.4" - sources."vscode-jsonrpc-3.6.2" - sources."vscode-languageserver-5.1.0" - (sources."vscode-languageserver-protocol-3.13.0" // { - dependencies = [ - sources."vscode-jsonrpc-4.0.0" - ]; - }) - sources."vscode-languageserver-types-3.13.0" + sources."vscode-jsonrpc-4.0.0" + sources."vscode-languageserver-5.2.1" + sources."vscode-languageserver-protocol-3.14.1" + sources."vscode-languageserver-types-3.14.0" sources."vscode-uri-1.0.6" sources."wrappy-1.0.2" sources."xorshift-0.2.1" sources."xtend-4.0.1" - sources."yargs-parser-10.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44216,7 +44395,7 @@ in sha512 = "MwPmLywK9RSX0SPsUJjN7i+RQY9w/yC17Lbrq9ViEefpLRgqAR2BgrMN2AbifkUuhDV8tRauLhLda/9+bE0YQA=="; }; dependencies = [ - sources."@types/node-10.12.12" + sources."@types/node-10.12.18" sources."@types/semver-5.5.0" sources."abbrev-1.1.1" sources."balanced-match-1.0.0" @@ -44330,7 +44509,7 @@ in sources."graphlib-2.1.7" sources."inherits-2.0.3" sources."isarray-1.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."lodash-4.17.11" sources."methods-1.1.2" sources."mime-1.6.0" @@ -44363,14 +44542,14 @@ in json-server = nodeEnv.buildNodePackage { name = "json-server"; packageName = "json-server"; - version = "0.14.0"; + version = "0.14.2"; src = fetchurl { - url = "https://registry.npmjs.org/json-server/-/json-server-0.14.0.tgz"; - sha512 = "8RVRAb1TO6LlCny6+8GC+sXDsESYv7gv7fSLdVANklVt866I416/7Z5fdqrtzSru92nyreddgavbEk8pjqcWoA=="; + url = "https://registry.npmjs.org/json-server/-/json-server-0.14.2.tgz"; + sha512 = "MfU7069e/kLp1e33n3JQ2DAH9UJrs/UYlXbzWgegBTXoGEmVkIzkO3T8ZyIkCTDBWzUeGTCBZV7brdyTcm6LWg=="; }; dependencies = [ sources."accepts-1.3.5" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-align-2.0.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" @@ -44388,7 +44567,7 @@ in sources."camelcase-4.1.0" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."ci-info-1.6.0" sources."cli-boxes-1.0.0" sources."cliui-4.1.0" @@ -44421,6 +44600,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" + sources."end-of-stream-1.4.1" sources."errorhandler-1.5.0" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -44445,7 +44625,7 @@ in sources."statuses-1.4.0" ]; }) - sources."find-up-2.1.0" + sources."find-up-3.0.0" sources."forever-agent-0.6.1" sources."form-data-2.3.3" sources."forwarded-0.1.2" @@ -44466,7 +44646,7 @@ in sources."imurmurhash-0.1.4" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."invert-kv-1.0.0" + sources."invert-kv-2.0.0" sources."ipaddr.js-1.8.0" sources."is-ci-1.2.1" sources."is-fullwidth-code-point-2.0.0" @@ -44490,18 +44670,23 @@ in sources."json-stringify-safe-5.0.1" sources."jsprim-1.4.1" sources."latest-version-3.1.0" - sources."lcid-1.0.0" - sources."locate-path-2.0.0" + sources."lcid-2.0.0" + sources."locate-path-3.0.0" sources."lodash-4.17.11" sources."lodash-id-0.14.0" - sources."lowdb-0.15.5" + sources."lowdb-1.0.0" sources."lowercase-keys-1.0.1" sources."lru-cache-4.1.5" sources."make-dir-1.3.0" + sources."map-age-cleaner-0.1.3" sources."media-typer-0.3.0" - sources."mem-1.1.0" + sources."mem-4.0.0" sources."merge-descriptors-1.0.1" - sources."method-override-2.3.10" + (sources."method-override-3.0.0" // { + dependencies = [ + sources."debug-3.1.0" + ]; + }) sources."methods-1.1.2" sources."mime-1.4.1" sources."mime-db-1.37.0" @@ -44510,19 +44695,29 @@ in sources."minimist-1.2.0" sources."morgan-1.9.1" sources."ms-2.0.0" - sources."nanoid-1.3.4" + sources."nanoid-2.0.0" sources."negotiator-0.6.1" + sources."nice-try-1.0.5" sources."npm-run-path-2.0.2" sources."number-is-nan-1.0.1" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."on-finished-2.3.0" sources."on-headers-1.0.1" - sources."os-locale-2.1.0" + sources."once-1.4.0" + (sources."os-locale-3.1.0" // { + dependencies = [ + sources."cross-spawn-6.0.5" + sources."execa-1.0.0" + sources."get-stream-4.1.0" + ]; + }) + sources."p-defer-1.0.0" sources."p-finally-1.0.0" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" + sources."p-is-promise-1.1.0" + sources."p-limit-2.1.0" + sources."p-locate-3.0.0" + sources."p-try-2.0.0" sources."package-json-4.0.1" sources."parseurl-1.3.2" sources."path-exists-3.0.0" @@ -44536,7 +44731,8 @@ in sources."prepend-http-1.0.4" sources."proxy-addr-2.0.4" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" + sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" sources."range-parser-1.2.0" @@ -44564,7 +44760,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.5.0" sources."steno-0.4.4" sources."string-width-2.1.1" @@ -44603,12 +44799,17 @@ in sources."strip-ansi-3.0.1" ]; }) + sources."wrappy-1.0.2" sources."write-file-atomic-2.3.0" sources."xdg-basedir-3.0.0" - sources."y18n-3.2.1" + sources."y18n-4.0.0" sources."yallist-2.1.2" - sources."yargs-10.1.2" - sources."yargs-parser-8.1.0" + sources."yargs-12.0.5" + (sources."yargs-parser-11.1.1" // { + dependencies = [ + sources."camelcase-5.0.0" + ]; + }) ]; buildInputs = globalBuildInputs; meta = { @@ -44622,10 +44823,10 @@ in js-yaml = nodeEnv.buildNodePackage { name = "js-yaml"; packageName = "js-yaml"; - version = "3.12.0"; + version = "3.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz"; - sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A=="; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.1.tgz"; + sha512 = "um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA=="; }; dependencies = [ sources."argparse-1.0.10" @@ -44644,10 +44845,10 @@ in karma = nodeEnv.buildNodePackage { name = "karma"; packageName = "karma"; - version = "3.1.3"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/karma/-/karma-3.1.3.tgz"; - sha512 = "JU4FYUtFEGsLZd6ZJzLrivcPj0TkteBiIRDcXWFsltPMGgZMDtby/MIzNOzgyZv/9dahs9vHpSxerC/ZfeX9Qw=="; + url = "https://registry.npmjs.org/karma/-/karma-3.1.4.tgz"; + sha512 = "31Vo8Qr5glN+dZEVIpnPCxEGleqE0EY6CtC2X9TagRV3rRQ3SNrvfhddICkJgUK3AgqpeKSZau03QumTGhGoSw=="; }; dependencies = [ sources."accepts-1.3.5" @@ -44720,7 +44921,7 @@ in sources."content-type-1.0.4" sources."cookie-0.3.1" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" sources."custom-event-1.0.1" sources."date-format-1.2.0" @@ -44798,7 +44999,7 @@ in ]; }) sources."flatted-2.0.0" - (sources."follow-redirects-1.5.10" // { + (sources."follow-redirects-1.6.1" // { dependencies = [ sources."debug-3.1.0" ]; @@ -44873,7 +45074,7 @@ in sources."mixin-deep-1.3.1" sources."mkdirp-0.5.1" sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."negotiator-0.6.1" sources."normalize-path-2.1.1" @@ -44920,7 +45121,7 @@ in sources."resolve-url-0.2.1" sources."ret-0.1.15" sources."rfdc-1.1.2" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" @@ -45105,8 +45306,7 @@ in sources."is-valid-glob-1.0.0" sources."is-windows-1.0.2" sources."isarray-1.0.0" - sources."json-stable-stringify-1.0.1" - sources."jsonify-0.0.0" + sources."json-stable-stringify-without-jsonify-1.0.1" sources."lazystream-1.0.0" sources."lead-1.0.0" sources."minimatch-3.0.4" @@ -45131,11 +45331,11 @@ in sources."stream-shift-1.0.0" sources."string_decoder-1.1.1" sources."through2-2.0.5" - sources."through2-filter-2.0.0" + sources."through2-filter-3.0.0" sources."to-absolute-glob-2.0.2" sources."to-through-2.0.0" sources."unc-path-regex-0.1.2" - sources."unique-stream-2.2.1" + sources."unique-stream-2.3.1" sources."util-deprecate-1.0.2" sources."value-or-function-3.0.0" sources."vinyl-2.2.0" @@ -45165,7 +45365,7 @@ in sources."abab-1.0.4" sources."acorn-2.7.0" sources."acorn-globals-1.0.9" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."asn1-0.2.4" @@ -45180,7 +45380,7 @@ in sources."brace-expansion-1.1.11" sources."camelcase-2.1.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."cheerio-0.20.0" sources."cli-cursor-2.1.0" sources."cli-spinners-1.3.1" @@ -45214,13 +45414,14 @@ in sources."domhandler-2.3.0" sources."domutils-1.5.1" sources."ecc-jsbn-0.1.2" + sources."end-of-stream-1.4.1" sources."entities-1.1.2" sources."escape-string-regexp-1.0.5" sources."escodegen-1.11.0" sources."esprima-3.1.3" sources."estraverse-4.2.0" sources."esutils-2.0.2" - sources."execa-0.10.0" + sources."execa-1.0.0" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."eyes-0.1.8" @@ -45232,7 +45433,7 @@ in sources."form-data-2.3.3" sources."fs.realpath-1.0.0" sources."get-caller-file-1.0.3" - sources."get-stream-3.0.0" + sources."get-stream-4.1.0" sources."getpass-0.1.7" sources."glob-7.1.3" sources."har-schema-2.0.0" @@ -45275,8 +45476,8 @@ in sources."minimatch-3.0.4" sources."minimist-0.0.8" sources."mkdirp-0.5.1" - sources."moment-2.22.2" - sources."mute-stream-0.0.7" + sources."moment-2.23.0" + sources."mute-stream-0.0.8" (sources."nconf-0.10.0" // { dependencies = [ sources."yargs-3.32.0" @@ -45302,7 +45503,7 @@ in sources."p-defer-1.0.0" sources."p-finally-1.0.0" sources."p-is-promise-1.1.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."parse5-1.5.1" @@ -45313,7 +45514,8 @@ in sources."pkginfo-0.4.1" sources."prelude-ls-1.1.2" sources."prompt-1.0.0" - sources."psl-1.1.29" + sources."psl-1.1.31" + sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" sources."read-1.0.7" @@ -45328,7 +45530,7 @@ in sources."require-main-filename-1.0.1" sources."restore-cursor-2.0.0" sources."revalidator-0.1.8" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.4" @@ -45339,7 +45541,7 @@ in sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" sources."source-map-0.6.1" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."stack-trace-0.0.10" sources."string-width-1.0.2" sources."string_decoder-0.10.31" @@ -45386,7 +45588,7 @@ in sources."invert-kv-2.0.0" sources."is-fullwidth-code-point-2.0.0" sources."lcid-2.0.0" - sources."os-locale-3.0.1" + sources."os-locale-3.1.0" sources."string-width-2.1.1" sources."strip-ansi-4.0.0" ]; @@ -45409,64 +45611,67 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "3.6.0"; + version = "3.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-3.6.0.tgz"; - sha512 = "iQFAgrgtv18SI5LtQBBca0WVeYvk2r8eYgiEQtcZBT63T5R9RVv+snsviIiOp0z6gD43tcyiWXiLvBdp1IY/Rg=="; + url = "https://registry.npmjs.org/lerna/-/lerna-3.10.5.tgz"; + sha512 = "rJ67oqEiF8AVw+9phKbGkC0k0oqu1rdnmzrIfVS40EQCwEtzBC1ABX1886PBV0N40Pt9wCy6a0Jhrd+PV4IiIQ=="; }; dependencies = [ - sources."@lerna/add-3.6.0" - sources."@lerna/batch-packages-3.6.0" - sources."@lerna/bootstrap-3.6.0" - sources."@lerna/changed-3.6.0" - sources."@lerna/check-working-tree-3.6.0" + sources."@lerna/add-3.10.5" + sources."@lerna/batch-packages-3.10.0" + sources."@lerna/bootstrap-3.10.5" + sources."@lerna/changed-3.10.5" + sources."@lerna/check-working-tree-3.10.0" sources."@lerna/child-process-3.3.0" - sources."@lerna/clean-3.6.0" - sources."@lerna/cli-3.6.0" - sources."@lerna/collect-updates-3.6.0" - sources."@lerna/command-3.6.0" - sources."@lerna/conventional-commits-3.6.0" - (sources."@lerna/create-3.6.0" // { + sources."@lerna/clean-3.10.1" + sources."@lerna/cli-3.10.0" + sources."@lerna/collect-updates-3.10.1" + sources."@lerna/command-3.10.0" + sources."@lerna/conventional-commits-3.10.0" + (sources."@lerna/create-3.10.0" // { dependencies = [ sources."camelcase-4.1.0" ]; }) sources."@lerna/create-symlink-3.6.0" - sources."@lerna/describe-ref-3.6.0" - sources."@lerna/diff-3.6.0" - sources."@lerna/exec-3.6.0" - sources."@lerna/filter-options-3.6.0" - sources."@lerna/filter-packages-3.6.0" + sources."@lerna/describe-ref-3.10.0" + sources."@lerna/diff-3.10.0" + sources."@lerna/exec-3.10.1" + sources."@lerna/filter-options-3.10.1" + sources."@lerna/filter-packages-3.10.0" sources."@lerna/get-npm-exec-opts-3.6.0" + sources."@lerna/get-packed-3.7.0" sources."@lerna/global-options-3.1.3" - sources."@lerna/has-npm-version-3.3.0" - sources."@lerna/import-3.6.0" - sources."@lerna/init-3.6.0" - sources."@lerna/link-3.6.0" - sources."@lerna/list-3.6.0" - sources."@lerna/listable-3.6.0" + sources."@lerna/has-npm-version-3.10.0" + sources."@lerna/import-3.10.0" + sources."@lerna/init-3.10.0" + sources."@lerna/link-3.10.0" + sources."@lerna/list-3.10.1" + sources."@lerna/listable-3.10.0" sources."@lerna/log-packed-3.6.0" - sources."@lerna/npm-conf-3.4.1" - sources."@lerna/npm-dist-tag-3.6.0" - sources."@lerna/npm-install-3.6.0" - sources."@lerna/npm-publish-3.6.0" - sources."@lerna/npm-run-script-3.6.0" + sources."@lerna/npm-conf-3.7.0" + sources."@lerna/npm-dist-tag-3.8.5" + sources."@lerna/npm-install-3.10.0" + sources."@lerna/npm-publish-3.10.5" + sources."@lerna/npm-run-script-3.10.0" sources."@lerna/output-3.6.0" - sources."@lerna/package-3.6.0" - sources."@lerna/package-graph-3.6.0" - sources."@lerna/project-3.6.0" + sources."@lerna/pack-directory-3.10.5" + sources."@lerna/package-3.7.2" + sources."@lerna/package-graph-3.10.0" + sources."@lerna/project-3.10.0" sources."@lerna/prompt-3.6.0" - sources."@lerna/publish-3.6.0" + sources."@lerna/publish-3.10.5" + sources."@lerna/pulse-till-done-3.7.1" sources."@lerna/resolve-symlink-3.6.0" - sources."@lerna/rimraf-dir-3.6.0" - sources."@lerna/run-3.6.0" - sources."@lerna/run-lifecycle-3.6.0" + sources."@lerna/rimraf-dir-3.10.0" + sources."@lerna/run-3.10.1" + sources."@lerna/run-lifecycle-3.10.5" sources."@lerna/run-parallel-batches-3.0.0" - sources."@lerna/symlink-binary-3.6.0" - sources."@lerna/symlink-dependencies-3.6.0" + sources."@lerna/symlink-binary-3.10.0" + sources."@lerna/symlink-dependencies-3.10.0" sources."@lerna/timer-3.5.0" sources."@lerna/validation-error-3.6.0" - sources."@lerna/version-3.6.0" + sources."@lerna/version-3.10.5" sources."@lerna/write-log-file-3.6.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" @@ -45474,7 +45679,7 @@ in sources."abbrev-1.1.1" sources."agent-base-4.2.1" sources."agentkeepalive-3.5.2" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-escapes-3.1.0" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" @@ -45521,7 +45726,11 @@ in sources."builtins-1.0.3" sources."byline-5.0.0" sources."byte-size-4.0.4" - sources."cacache-11.3.1" + (sources."cacache-11.3.2" // { + dependencies = [ + sources."lru-cache-5.1.1" + ]; + }) sources."cache-base-1.0.1" sources."call-me-maybe-1.0.1" sources."caller-callsite-2.0.0" @@ -45534,7 +45743,7 @@ in ]; }) sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."chownr-1.1.1" sources."ci-info-1.6.0" @@ -45662,7 +45871,7 @@ in }) sources."extsprintf-1.3.0" sources."fast-deep-equal-2.0.1" - (sources."fast-glob-2.2.4" // { + (sources."fast-glob-2.2.6" // { dependencies = [ sources."is-glob-4.0.0" ]; @@ -45735,7 +45944,7 @@ in sources."glob-7.1.3" sources."glob-parent-3.1.0" sources."glob-to-regexp-0.3.0" - sources."globby-8.0.1" + sources."globby-8.0.2" sources."graceful-fs-4.1.15" (sources."handlebars-4.0.12" // { dependencies = [ @@ -45823,7 +46032,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isstream-0.1.2" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."jsbn-0.1.1" sources."json-parse-better-errors-1.0.2" sources."json-schema-0.2.3" @@ -45872,7 +46081,11 @@ in sources."lodash.template-4.4.0" sources."lodash.templatesettings-4.1.0" sources."loud-rejection-1.6.0" - sources."lru-cache-4.1.5" + (sources."lru-cache-4.1.5" // { + dependencies = [ + sources."yallist-2.1.2" + ]; + }) sources."make-dir-1.3.0" sources."make-fetch-happen-4.0.1" sources."map-age-cleaner-0.1.3" @@ -45889,11 +46102,7 @@ in sources."minimatch-3.0.4" sources."minimist-1.2.0" sources."minimist-options-3.0.2" - (sources."minipass-2.3.5" // { - dependencies = [ - sources."yallist-3.0.3" - ]; - }) + sources."minipass-2.3.5" sources."minizlib-1.2.1" sources."mississippi-3.0.0" (sources."mixin-deep-1.3.1" // { @@ -45917,6 +46126,7 @@ in (sources."node-gyp-3.8.0" // { dependencies = [ sources."semver-5.3.0" + sources."tar-2.2.1" ]; }) sources."nopt-3.0.6" @@ -45925,7 +46135,7 @@ in sources."npm-lifecycle-2.1.0" sources."npm-logical-tree-1.2.1" sources."npm-package-arg-6.1.0" - sources."npm-packlist-1.1.12" + sources."npm-packlist-1.2.0" sources."npm-pick-manifest-2.2.3" sources."npm-profile-4.0.1" sources."npm-registry-fetch-3.8.0" @@ -45957,18 +46167,13 @@ in ]; }) sources."os-homedir-1.0.2" - (sources."os-locale-3.0.1" // { - dependencies = [ - sources."execa-0.10.0" - sources."get-stream-3.0.0" - ]; - }) + sources."os-locale-3.1.0" sources."os-tmpdir-1.0.2" sources."osenv-0.1.5" sources."p-defer-1.0.0" sources."p-finally-1.0.0" sources."p-is-promise-1.1.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-map-1.2.0" sources."p-map-series-1.0.0" @@ -45976,10 +46181,9 @@ in sources."p-reduce-1.0.0" sources."p-try-2.0.0" sources."p-waterfall-1.0.0" - (sources."pacote-9.2.3" // { + (sources."pacote-9.3.0" // { dependencies = [ - sources."tar-4.4.8" - sources."yallist-3.0.3" + sources."lru-cache-5.1.1" ]; }) sources."parallel-transform-1.1.0" @@ -46013,7 +46217,7 @@ in sources."proto-list-1.2.4" sources."protoduck-5.0.1" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { dependencies = [ @@ -46058,7 +46262,7 @@ in sources."restore-cursor-2.0.0" sources."ret-0.1.15" sources."retry-0.10.1" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."run-queue-1.0.3" sources."rxjs-6.3.3" @@ -46115,12 +46319,12 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-1.0.1" sources."split-string-3.1.0" sources."split2-2.2.0" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."ssri-6.0.1" (sources."static-extend-0.1.2" // { dependencies = [ @@ -46153,9 +46357,9 @@ in sources."strip-bom-3.0.0" sources."strip-eof-1.0.0" sources."strip-indent-2.0.0" - sources."strong-log-transformer-2.0.0" + sources."strong-log-transformer-2.1.0" sources."supports-color-5.5.0" - sources."tar-2.2.1" + sources."tar-4.4.8" sources."temp-dir-1.0.0" sources."temp-write-3.4.0" sources."text-extensions-1.9.0" @@ -46234,7 +46438,7 @@ in sources."write-pkg-3.2.0" sources."xtend-4.0.1" sources."y18n-4.0.0" - sources."yallist-2.1.2" + sources."yallist-3.0.3" sources."yargs-12.0.5" sources."yargs-parser-11.1.1" ]; @@ -46256,7 +46460,7 @@ in sha512 = "31CmtPEZraNUtuUREYjSqRkeETFdyEHSEPAGq4erDlUXtda7pzNmctdljdIagSb589d/qXGWiiP31R5JVf+v0w=="; }; dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."asap-2.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" @@ -46300,14 +46504,14 @@ in sources."performance-now-2.1.0" sources."promise-7.3.1" sources."prr-1.0.1" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."request-2.88.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."source-map-0.6.1" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."tough-cookie-2.4.3" // { dependencies = [ sources."punycode-1.4.1" @@ -46514,7 +46718,7 @@ in sources."mixin-deep-1.3.1" sources."morgan-1.9.1" sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."negotiator-0.6.1" sources."normalize-path-2.1.1" @@ -46680,7 +46884,7 @@ in dependencies = [ sources."accepts-1.3.5" sources."after-0.8.2" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."anymatch-1.3.2" sources."argparse-1.0.10" sources."arr-diff-2.0.0" @@ -46814,7 +47018,7 @@ in sources."fsevents-1.2.4" sources."get-value-2.0.6" sources."getpass-0.1.7" - sources."github-slugger-1.2.0" + sources."github-slugger-1.2.1" sources."glob-base-0.3.0" sources."glob-parent-2.0.0" sources."graceful-fs-4.1.15" @@ -46898,7 +47102,7 @@ in sources."markdown-it-emoji-1.4.0" sources."markdown-it-github-headings-1.1.1" sources."markdown-it-task-checkbox-1.0.6" - sources."math-random-1.0.1" + sources."math-random-1.0.2" sources."mdurl-1.0.1" sources."media-typer-0.3.0" sources."merge-descriptors-1.0.1" @@ -46914,7 +47118,7 @@ in ]; }) sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -46963,7 +47167,7 @@ in sources."preserve-0.2.0" sources."process-nextick-args-2.0.0" sources."proxy-addr-2.0.4" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" (sources."randomatic-3.1.1" // { @@ -47076,7 +47280,7 @@ in sources."snapdragon-util-3.0.1" (sources."socket.io-2.2.0" // { dependencies = [ - sources."debug-4.1.0" + sources."debug-4.1.1" sources."ms-2.1.1" ]; }) @@ -47097,7 +47301,7 @@ in sources."source-map-url-0.4.0" sources."split-string-3.1.0" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -47180,12 +47384,12 @@ in src = ../interpreters/clojurescript/lumo; dependencies = [ sources."@babel/code-frame-7.0.0" - sources."@babel/core-7.2.0" - sources."@babel/generator-7.2.0" + sources."@babel/core-7.2.2" + sources."@babel/generator-7.2.2" sources."@babel/helper-annotate-as-pure-7.0.0" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0" sources."@babel/helper-call-delegate-7.1.0" - sources."@babel/helper-create-class-features-plugin-7.2.1" + sources."@babel/helper-create-class-features-plugin-7.2.3" sources."@babel/helper-define-map-7.1.0" sources."@babel/helper-explode-assignable-expression-7.1.0" sources."@babel/helper-function-name-7.1.0" @@ -47193,21 +47397,21 @@ in sources."@babel/helper-hoist-variables-7.0.0" sources."@babel/helper-member-expression-to-functions-7.0.0" sources."@babel/helper-module-imports-7.0.0" - sources."@babel/helper-module-transforms-7.1.0" + sources."@babel/helper-module-transforms-7.2.2" sources."@babel/helper-optimise-call-expression-7.0.0" sources."@babel/helper-plugin-utils-7.0.0" sources."@babel/helper-regex-7.0.0" sources."@babel/helper-remap-async-to-generator-7.1.0" - sources."@babel/helper-replace-supers-7.1.0" + sources."@babel/helper-replace-supers-7.2.3" sources."@babel/helper-simple-access-7.1.0" sources."@babel/helper-split-export-declaration-7.0.0" sources."@babel/helper-wrap-function-7.2.0" sources."@babel/helpers-7.2.0" sources."@babel/highlight-7.0.0" - sources."@babel/parser-7.2.0" + sources."@babel/parser-7.2.3" sources."@babel/plugin-external-helpers-7.0.0" sources."@babel/plugin-proposal-async-generator-functions-7.2.0" - sources."@babel/plugin-proposal-class-properties-7.2.1" + sources."@babel/plugin-proposal-class-properties-7.2.3" sources."@babel/plugin-proposal-json-strings-7.2.0" sources."@babel/plugin-proposal-object-rest-spread-7.2.0" sources."@babel/plugin-proposal-optional-catch-binding-7.2.0" @@ -47220,7 +47424,7 @@ in sources."@babel/plugin-transform-async-to-generator-7.2.0" sources."@babel/plugin-transform-block-scoped-functions-7.2.0" sources."@babel/plugin-transform-block-scoping-7.2.0" - sources."@babel/plugin-transform-classes-7.2.0" + sources."@babel/plugin-transform-classes-7.2.2" sources."@babel/plugin-transform-computed-properties-7.2.0" sources."@babel/plugin-transform-destructuring-7.2.0" sources."@babel/plugin-transform-dotall-regex-7.2.0" @@ -47239,25 +47443,25 @@ in sources."@babel/plugin-transform-regenerator-7.0.0" sources."@babel/plugin-transform-runtime-7.2.0" sources."@babel/plugin-transform-shorthand-properties-7.2.0" - sources."@babel/plugin-transform-spread-7.2.0" + sources."@babel/plugin-transform-spread-7.2.2" sources."@babel/plugin-transform-sticky-regex-7.2.0" sources."@babel/plugin-transform-template-literals-7.2.0" sources."@babel/plugin-transform-typeof-symbol-7.2.0" sources."@babel/plugin-transform-unicode-regex-7.2.0" - sources."@babel/preset-env-7.2.0" + sources."@babel/preset-env-7.2.3" sources."@babel/preset-stage-2-7.0.0" sources."@babel/runtime-7.2.0" - sources."@babel/template-7.1.2" - sources."@babel/traverse-7.1.6" - sources."@babel/types-7.2.0" + sources."@babel/template-7.2.2" + sources."@babel/traverse-7.2.3" + sources."@babel/types-7.2.2" sources."@calebboyd/semaphore-1.3.1" sources."@comandeer/babel-plugin-banner-4.1.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" sources."@sindresorhus/is-0.7.0" - sources."@szmarczak/http-timer-1.1.1" + sources."@szmarczak/http-timer-1.1.2" sources."@types/estree-0.0.39" - sources."@types/node-10.12.12" + sources."@types/node-10.12.18" sources."@webassemblyjs/ast-1.7.11" sources."@webassemblyjs/floating-point-hex-parser-1.7.11" sources."@webassemblyjs/helper-api-error-1.7.11" @@ -47279,13 +47483,13 @@ in sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.1" sources."ace.improved-0.2.1" - sources."acorn-6.0.4" + sources."acorn-6.0.5" (sources."acorn-dynamic-import-3.0.0" // { dependencies = [ sources."acorn-5.7.3" ]; }) - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ajv-errors-1.0.1" sources."ajv-keywords-3.2.0" sources."amdefine-1.0.1" @@ -47378,7 +47582,7 @@ in sources."babel-helper-remove-or-void-0.4.3" sources."babel-helper-to-multiple-sequence-expressions-0.5.0" sources."babel-jest-23.6.0" - sources."babel-loader-8.0.4" + sources."babel-loader-8.0.5" sources."babel-messages-6.23.0" sources."babel-plugin-istanbul-4.1.6" sources."babel-plugin-jest-hoist-23.2.0" @@ -47436,7 +47640,7 @@ in ]; }) sources."base64-js-0.0.8" - sources."big.js-3.2.0" + sources."big.js-5.2.2" sources."binary-extensions-1.12.0" sources."bl-1.2.2" sources."bluebird-3.5.3" @@ -47450,7 +47654,7 @@ in sources."browserify-rsa-4.0.1" sources."browserify-sign-4.0.4" sources."browserify-zlib-0.2.0" - sources."browserslist-4.3.5" + sources."browserslist-4.4.0" sources."buffer-3.6.0" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -47460,7 +47664,7 @@ in sources."buffer-xor-1.0.3" sources."builtin-modules-1.1.1" sources."builtin-status-codes-3.0.0" - sources."cacache-11.3.1" + sources."cacache-11.3.2" (sources."cache-base-1.0.1" // { dependencies = [ sources."isobject-3.0.1" @@ -47473,15 +47677,15 @@ in }) sources."call-me-maybe-1.0.1" sources."camelcase-5.0.0" - sources."caniuse-lite-1.0.30000917" + sources."caniuse-lite-1.0.30000928" sources."caw-2.0.1" - (sources."chalk-2.4.1" // { + (sources."chalk-2.4.2" // { dependencies = [ sources."ansi-styles-3.2.1" sources."supports-color-5.5.0" ]; }) - sources."cherow-1.6.8" + sources."cherow-1.6.9" (sources."chokidar-2.0.4" // { dependencies = [ sources."array-unique-0.3.2" @@ -47537,7 +47741,7 @@ in sources."collection-visit-1.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."commander-2.14.1" + sources."commander-2.8.1" sources."commondir-1.0.1" sources."component-emitter-1.2.1" sources."concat-map-0.0.1" @@ -47545,11 +47749,11 @@ in sources."config-chain-1.1.12" sources."console-browserify-1.1.0" sources."constants-browserify-1.0.0" - sources."content-disposition-0.5.2" + sources."content-disposition-0.5.3" sources."convert-source-map-1.6.0" sources."copy-concurrently-1.0.5" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" sources."create-ecdh-4.0.3" sources."create-hash-1.2.0" @@ -47560,7 +47764,7 @@ in sources."cyclist-0.2.2" sources."date-now-0.1.4" sources."death-1.1.0" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" sources."decompress-4.2.0" @@ -47599,6 +47803,7 @@ in ]; }) sources."des.js-1.0.0" + sources."detect-file-1.0.0" sources."detect-indent-4.0.0" sources."diffie-hellman-5.0.3" (sources."dir-glob-2.0.0" // { @@ -47616,14 +47821,14 @@ in }) sources."duplexer3-0.1.4" sources."duplexify-3.6.1" - sources."electron-to-chromium-1.3.88" + sources."electron-to-chromium-1.3.102" sources."elliptic-6.4.1" sources."emojis-list-2.1.0" sources."end-of-stream-1.4.1" sources."enhanced-resolve-4.1.0" sources."errno-0.1.7" sources."error-ex-1.3.2" - sources."es-abstract-1.12.0" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" sources."escape-string-regexp-1.0.5" sources."eslint-scope-3.7.1" @@ -47634,9 +47839,14 @@ in sources."esutils-2.0.2" sources."events-1.1.1" sources."evp_bytestokey-1.0.3" - sources."execa-0.10.0" + (sources."execa-1.0.0" // { + dependencies = [ + sources."get-stream-4.1.0" + ]; + }) sources."expand-brackets-0.1.5" sources."expand-range-1.8.2" + sources."expand-tilde-2.0.2" sources."ext-list-2.2.2" sources."ext-name-5.0.0" (sources."extend-shallow-3.0.2" // { @@ -47646,7 +47856,7 @@ in }) sources."extglob-0.3.2" sources."fast-deep-equal-2.0.1" - (sources."fast-glob-2.2.4" // { + (sources."fast-glob-2.2.6" // { dependencies = [ sources."arr-diff-4.0.0" sources."array-unique-0.3.2" @@ -47714,8 +47924,51 @@ in sources."filename-reserved-regex-2.0.0" sources."filenamify-2.1.0" sources."fill-range-2.2.4" - sources."find-cache-dir-1.0.0" + sources."find-cache-dir-2.0.0" sources."find-up-2.1.0" + (sources."findup-sync-2.0.0" // { + dependencies = [ + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.2" + sources."debug-2.6.9" + sources."define-property-1.0.0" + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + ]; + }) + sources."extend-shallow-2.0.1" + sources."extglob-2.0.4" + sources."fill-range-4.0.0" + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."is-extglob-2.1.1" + sources."is-glob-3.1.0" + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."isobject-3.0.1" + sources."kind-of-6.0.2" + sources."micromatch-3.1.10" + sources."ms-2.0.0" + ]; + }) sources."flow-bin-0.85.0" sources."flush-write-stream-1.0.3" sources."for-in-1.0.2" @@ -47735,20 +47988,22 @@ in sources."glob-base-0.3.0" sources."glob-parent-2.0.0" sources."glob-to-regexp-0.3.0" + sources."global-modules-1.0.0" sources."global-modules-path-2.3.1" - sources."globals-11.9.0" - (sources."globby-8.0.1" // { + sources."global-prefix-1.0.2" + sources."globals-11.10.0" + (sources."globby-8.0.2" // { dependencies = [ sources."pify-3.0.0" ]; }) sources."google-closure-compiler-js-20170910.0.1" - (sources."got-9.3.2" // { + (sources."got-9.5.1" // { dependencies = [ - sources."@sindresorhus/is-0.12.0" - sources."cacheable-request-5.2.0" + sources."@sindresorhus/is-0.14.0" + sources."cacheable-request-6.0.0" sources."get-stream-4.1.0" - sources."http-cache-semantics-4.0.1" + sources."http-cache-semantics-4.0.2" sources."normalize-url-3.3.0" sources."p-cancelable-1.0.0" ]; @@ -47779,28 +48034,20 @@ in sources."hash-base-3.0.4" sources."hash.js-1.1.7" sources."hmac-drbg-1.0.1" + sources."homedir-polyfill-1.0.1" sources."hosted-git-info-2.7.1" sources."http-cache-semantics-3.8.1" sources."https-browserify-1.0.0" sources."ieee754-1.1.12" sources."iferr-0.1.5" sources."ignore-3.3.10" - (sources."import-local-2.0.0" // { - dependencies = [ - sources."find-up-3.0.0" - sources."locate-path-3.0.0" - sources."p-limit-2.0.0" - sources."p-locate-3.0.0" - sources."p-try-2.0.0" - sources."pkg-dir-3.0.0" - ]; - }) + sources."import-local-2.0.0" sources."imurmurhash-0.1.4" sources."indexof-0.0.1" sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."interpret-1.1.0" + sources."interpret-1.2.0" sources."into-stream-3.1.0" sources."invariant-2.2.4" sources."invert-kv-2.0.0" @@ -47856,7 +48103,7 @@ in sources."istanbul-lib-coverage-1.2.1" sources."istanbul-lib-instrument-1.10.2" sources."isurl-1.0.0" - sources."js-levenshtein-1.1.4" + sources."js-levenshtein-1.1.6" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" sources."json-buffer-3.0.0" @@ -47867,11 +48114,12 @@ in sources."keyv-3.0.0" sources."kind-of-3.2.2" sources."lcid-2.0.0" + sources."lightercollective-0.1.0" sources."load-json-file-1.1.0" sources."loader-runner-2.3.1" - (sources."loader-utils-1.1.0" // { + (sources."loader-utils-1.2.3" // { dependencies = [ - sources."json5-0.5.1" + sources."json5-1.0.1" ]; }) sources."locate-path-2.0.0" @@ -47882,7 +48130,7 @@ in sources."log-symbols-2.2.0" sources."loose-envify-1.4.0" sources."lowercase-keys-1.0.1" - sources."lru-cache-4.1.5" + sources."lru-cache-5.1.1" sources."magic-string-0.25.1" (sources."make-dir-1.3.0" // { dependencies = [ @@ -47892,7 +48140,7 @@ in sources."map-age-cleaner-0.1.3" sources."map-cache-0.2.2" sources."map-visit-1.0.0" - sources."math-random-1.0.1" + sources."math-random-1.0.2" sources."md5.js-1.3.5" sources."mem-4.0.0" sources."memory-fs-0.4.1" @@ -47920,7 +48168,7 @@ in sources."move-concurrently-1.0.1" sources."ms-2.1.1" sources."multistream-2.1.1" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -47943,7 +48191,7 @@ in sources."punycode-1.4.1" ]; }) - sources."node-releases-1.1.0" + sources."node-releases-1.1.3" sources."normalize-package-data-2.4.0" sources."normalize-path-2.1.1" (sources."normalize-url-2.0.1" // { @@ -47993,7 +48241,7 @@ in ]; }) sources."os-browserify-0.3.0" - sources."os-locale-3.0.1" + sources."os-locale-3.1.0" sources."p-cancelable-0.4.1" sources."p-defer-1.0.0" sources."p-event-2.1.0" @@ -48009,6 +48257,7 @@ in sources."parse-asn1-5.1.1" sources."parse-glob-3.0.4" sources."parse-json-2.2.0" + sources."parse-passwd-1.0.0" sources."pascalcase-0.1.1" sources."path-browserify-0.0.0" sources."path-dirname-1.0.2" @@ -48022,7 +48271,15 @@ in sources."pify-2.3.0" sources."pinkie-2.0.4" sources."pinkie-promise-2.0.1" - sources."pkg-dir-2.0.0" + (sources."pkg-dir-3.0.0" // { + dependencies = [ + sources."find-up-3.0.0" + sources."locate-path-3.0.0" + sources."p-limit-2.1.0" + sources."p-locate-3.0.0" + sources."p-try-2.0.0" + ]; + }) sources."posix-character-classes-0.1.1" sources."posix-getopt-git://github.com/anmonteiro/node-getopt#master" sources."prepend-http-2.0.0" @@ -48035,7 +48292,6 @@ in sources."promise-inflight-1.0.1" sources."proto-list-1.2.4" sources."prr-1.0.1" - sources."pseudomap-1.0.2" sources."public-encrypt-4.0.3" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { @@ -48130,20 +48386,30 @@ in sources."replace-ext-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-cwd-2.0.0" - (sources."resolve-dependencies-2.2.0" // { + (sources."resolve-dependencies-2.2.1" // { dependencies = [ + sources."dir-glob-git://github.com/nexe/dir-glob.git#84f4381fe041b6afd425e8d5c14c33809430d8f1" + sources."globby-git://github.com/nexe/globby.git#de057b69c2bca74391bfd913ed0145ce4e42563a" + sources."ignore-4.0.6" + (sources."path-type-3.0.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) sources."pify-4.0.1" + sources."slash-2.0.0" ]; }) + sources."resolve-dir-1.0.1" sources."resolve-from-3.0.0" sources."resolve-url-0.2.1" sources."responselike-1.0.2" sources."restore-cursor-2.0.0" sources."ret-0.1.15" sources."retry-0.12.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."ripemd160-2.0.2" sources."rollup-0.67.0" sources."rollup-plugin-babel-4.0.3" @@ -48155,19 +48421,14 @@ in ]; }) sources."rollup-plugin-replace-2.1.0" - sources."rollup-plugin-uglify-3.0.0" sources."rollup-pluginutils-2.3.3" sources."run-queue-1.0.3" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."schema-utils-0.4.7" - (sources."seek-bzip-1.0.5" // { - dependencies = [ - sources."commander-2.8.1" - ]; - }) + sources."seek-bzip-1.0.5" sources."semver-5.6.0" - sources."serialize-javascript-1.5.0" + sources."serialize-javascript-1.6.1" sources."set-blocking-2.0.0" (sources."set-value-2.0.0" // { dependencies = [ @@ -48212,7 +48473,7 @@ in sources."source-list-map-0.1.8" sources."source-map-0.5.7" sources."source-map-resolve-0.5.2" - (sources."source-map-support-0.5.9" // { + (sources."source-map-support-0.5.10" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -48222,7 +48483,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-string-3.1.0" sources."ssri-6.0.1" (sources."static-extend-0.1.2" // { @@ -48261,24 +48522,16 @@ in sources."strip-eof-1.0.0" sources."strip-outer-1.0.1" sources."supports-color-2.0.0" - sources."symbol-observable-1.2.0" sources."tapable-1.1.1" sources."tar-stream-1.6.2" - (sources."terser-3.11.0" // { + (sources."terser-3.14.1" // { dependencies = [ sources."commander-2.17.1" sources."source-map-0.6.1" ]; }) - (sources."terser-webpack-plugin-1.1.0" // { + (sources."terser-webpack-plugin-1.2.1" // { dependencies = [ - sources."find-cache-dir-2.0.0" - sources."find-up-3.0.0" - sources."locate-path-3.0.0" - sources."p-limit-2.0.0" - sources."p-locate-3.0.0" - sources."p-try-2.0.0" - sources."pkg-dir-3.0.0" sources."schema-utils-1.0.0" sources."source-map-0.6.1" ]; @@ -48305,11 +48558,6 @@ in sources."tty-browserify-0.0.0" sources."tunnel-agent-0.6.0" sources."typedarray-0.0.6" - (sources."uglify-es-3.3.10" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) sources."unbzip2-stream-1.3.1" sources."unicode-canonical-property-names-ecmascript-1.0.4" sources."unicode-match-property-ecmascript-1.0.4" @@ -48354,7 +48602,7 @@ in sources."vm-browserify-0.0.4" sources."watchpack-1.6.0" sources."wcwidth-1.0.1" - (sources."webpack-4.27.1" // { + (sources."webpack-4.28.4" // { dependencies = [ sources."acorn-5.7.3" sources."arr-diff-4.0.0" @@ -48397,7 +48645,7 @@ in sources."ms-2.0.0" ]; }) - (sources."webpack-cli-3.1.2" // { + (sources."webpack-cli-3.2.1" // { dependencies = [ sources."supports-color-5.5.0" ]; @@ -48430,12 +48678,12 @@ in sources."wrappy-1.0.2" sources."xtend-4.0.1" sources."y18n-4.0.0" - sources."yallist-2.1.2" + sources."yallist-3.0.3" (sources."yargs-12.0.5" // { dependencies = [ sources."find-up-3.0.0" sources."locate-path-3.0.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" ]; @@ -48746,9 +48994,9 @@ in }) sources."find-index-0.1.1" sources."findup-sync-2.0.0" - sources."fined-1.1.0" + sources."fined-1.1.1" sources."first-chunk-stream-1.0.0" - sources."flagged-respawn-1.0.0" + sources."flagged-respawn-1.0.1" (sources."flush-write-stream-1.0.3" // { dependencies = [ sources."readable-stream-2.3.6" @@ -48792,7 +49040,7 @@ in sources."minimatch-0.2.14" ]; }) - sources."glogg-1.0.1" + sources."glogg-1.0.2" sources."graceful-fs-3.0.11" sources."gulp-3.9.1" (sources."gulp-clean-css-3.10.0" // { @@ -48843,7 +49091,7 @@ in sources."source-map-0.6.1" sources."string_decoder-1.1.1" sources."through2-2.0.5" - sources."unique-stream-2.2.1" + sources."unique-stream-2.3.1" sources."vinyl-2.2.0" sources."vinyl-fs-3.0.3" ]; @@ -48887,7 +49135,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.5" - sources."interpret-1.1.0" + sources."interpret-1.2.0" sources."is-absolute-1.0.0" sources."is-accessor-descriptor-1.0.0" sources."is-buffer-1.1.6" @@ -48917,6 +49165,7 @@ in sources."jsbn-0.1.1" sources."json-schema-0.2.3" sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-without-jsonify-1.0.1" sources."json-stringify-safe-5.0.1" sources."jsonify-0.0.0" (sources."jsprim-1.4.1" // { @@ -49068,7 +49317,7 @@ in sources."repeat-string-1.6.1" sources."replace-ext-1.0.0" sources."request-2.81.0" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-dir-1.0.1" sources."resolve-options-1.1.0" sources."resolve-url-0.2.1" @@ -49119,7 +49368,7 @@ in sources."source-map-url-0.4.0" sources."sparkles-1.0.1" sources."split-string-3.1.0" - (sources."sshpk-1.15.2" // { + (sources."sshpk-1.16.0" // { dependencies = [ sources."assert-plus-1.0.0" ]; @@ -49150,7 +49399,7 @@ in sources."strip-bom-string-1.0.0" sources."supports-color-2.0.0" sources."through2-0.6.5" - (sources."through2-filter-2.0.0" // { + (sources."through2-filter-3.0.0" // { dependencies = [ sources."readable-stream-2.3.6" sources."string_decoder-1.1.1" @@ -49314,7 +49563,7 @@ in sources."graphlib-2.1.7" sources."inherits-2.0.3" sources."isarray-1.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."json-refs-2.1.7" sources."lodash-4.17.11" sources."methods-1.1.2" @@ -49408,7 +49657,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -49502,7 +49751,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.0" sources."proto-list-1.2.4" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."readable-stream-2.3.6" @@ -49519,8 +49768,8 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - sources."sshpk-1.15.2" + sources."spdx-license-ids-3.0.3" + sources."sshpk-1.16.0" sources."ssri-5.3.0" sources."string-width-1.0.2" sources."string_decoder-1.1.1" @@ -49566,7 +49815,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -49634,18 +49883,18 @@ in sources."path-is-absolute-1.0.1" sources."performance-now-2.1.0" sources."process-nextick-args-2.0.0" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."readable-stream-2.3.6" sources."request-2.88.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."semver-5.3.0" sources."set-blocking-2.0.0" sources."signal-exit-3.0.2" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."string-width-1.0.2" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" @@ -49677,10 +49926,10 @@ in node-gyp-build = nodeEnv.buildNodePackage { name = "node-gyp-build"; packageName = "node-gyp-build"; - version = "3.5.1"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.5.1.tgz"; - sha512 = "AKJ4SyHiYvqwy5P9GaAnxi5IG3HSEPHV/1YDMlBA0vEEmi7qxeeSfKlCAau3XFvAPFR9EV6gvD9p2b0s8ghyww=="; + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.7.0.tgz"; + sha512 = "L/Eg02Epx6Si2NXmedx+Okg+4UHqmaf3TNcxd50SF9NQGcJaON3AtU++kax69XV7YWz4tUspqZSAsVofhFKG2w=="; }; buildInputs = globalBuildInputs; meta = { @@ -49840,12 +50089,12 @@ in ]; }) sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."negotiator-0.6.1" (sources."node-pre-gyp-0.6.39" // { dependencies = [ sources."glob-7.1.3" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."semver-5.6.0" ]; }) @@ -49909,8 +50158,8 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - (sources."sshpk-1.15.2" // { + sources."spdx-license-ids-3.0.3" + (sources."sshpk-1.16.0" // { dependencies = [ sources."assert-plus-1.0.0" ]; @@ -49928,7 +50177,7 @@ in (sources."tar-pack-3.4.1" // { dependencies = [ sources."glob-7.1.3" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" ]; }) sources."tough-cookie-2.3.4" @@ -50029,7 +50278,7 @@ in sources."needle-2.2.4" sources."nopt-4.0.1" sources."npm-bundled-1.0.5" - sources."npm-packlist-1.1.12" + sources."npm-packlist-1.2.0" sources."npmlog-4.1.2" sources."number-is-nan-1.0.1" sources."object-assign-4.1.1" @@ -50045,7 +50294,7 @@ in ]; }) sources."readable-stream-2.3.6" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.4" @@ -50074,10 +50323,10 @@ in nodemon = nodeEnv.buildNodePackage { name = "nodemon"; packageName = "nodemon"; - version = "1.18.7"; + version = "1.18.9"; src = fetchurl { - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.7.tgz"; - sha512 = "xuC1V0F5EcEyKQ1VhHYD13owznQbUw29JKvZ8bVH7TmuvVNHvvbp9pLgE4PjTMRJVe0pJ8fGRvwR2nMiosIsPQ=="; + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.9.tgz"; + sha512 = "oj/eEVTEI47pzYAjGkpcNw0xYwTl4XSTUQv2NPQI6PpN3b75PhpuYk3Vb3U80xHCyM2Jm+1j68ULHXl4OR3Afw=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -50110,7 +50359,7 @@ in sources."cache-base-1.0.1" sources."camelcase-4.1.0" sources."capture-stack-trace-1.0.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chokidar-2.0.4" sources."ci-info-1.6.0" (sources."class-utils-0.3.6" // { @@ -50253,7 +50502,7 @@ in sources."minimist-1.2.0" sources."mixin-deep-1.3.1" sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."nopt-1.0.10" sources."normalize-path-2.1.1" @@ -50285,7 +50534,7 @@ in sources."prepend-http-1.0.4" sources."process-nextick-args-2.0.0" sources."pseudomap-1.0.2" - sources."pstree.remy-1.1.2" + sources."pstree.remy-1.1.6" sources."rc-1.2.8" sources."readable-stream-2.3.6" sources."readdirp-2.2.1" @@ -50593,7 +50842,7 @@ in sources."har-schema-2.0.0" (sources."har-validator-5.1.3" // { dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" ]; }) sources."hash-sum-1.0.2" @@ -50634,11 +50883,10 @@ in sources."jsbn-0.1.1" sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" - sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-without-jsonify-1.0.1" sources."json-stringify-safe-5.0.1" sources."jsonata-1.5.4" sources."jsonfile-4.0.0" - sources."jsonify-0.0.0" sources."jsprim-1.4.1" sources."leven-1.0.2" sources."libbase64-0.1.0" @@ -50686,7 +50934,7 @@ in sources."minimist-0.0.8" ]; }) - sources."moment-2.22.2" + sources."moment-2.23.0" sources."moment-timezone-0.5.23" (sources."mqtt-2.18.8" // { dependencies = [ @@ -50695,7 +50943,7 @@ in ]; }) sources."mqtt-packet-5.6.0" - sources."mri-1.1.1" + sources."mri-1.1.4" sources."ms-2.0.0" sources."multer-1.4.1" sources."mustache-2.3.2" @@ -50753,7 +51001,7 @@ in sources."process-nextick-args-2.0.0" sources."proxy-addr-2.0.4" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { dependencies = [ @@ -50765,7 +51013,7 @@ in sources."random-bytes-1.0.0" sources."range-parser-1.2.0" sources."raw-body-2.3.3" - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" sources."reinterval-1.1.0" sources."remove-trailing-separator-1.1.0" sources."request-2.88.0" @@ -50786,7 +51034,7 @@ in sources."source-map-0.6.1" sources."split2-2.2.0" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.5.0" sources."stream-shift-1.0.0" sources."streamsearch-0.1.2" @@ -50797,7 +51045,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."through2-filter-2.0.0" + sources."through2-filter-3.0.0" sources."to-absolute-glob-2.0.2" (sources."tough-cookie-2.4.3" // { dependencies = [ @@ -50814,7 +51062,7 @@ in sources."uid2-0.0.3" sources."ultron-1.1.1" sources."unc-path-regex-0.1.2" - sources."unique-stream-2.2.1" + sources."unique-stream-2.3.1" sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."uri-js-4.2.2" @@ -50861,10 +51109,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "6.4.1"; + version = "6.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-6.4.1.tgz"; - sha512 = "mXJL1NTVU136PtuopXCUQaNWuHlXCTp4McwlSW8S9/Aj8OEPAlSBgo8og7kJ01MjCDrkmqFQTvN5tTEhBMhXQg=="; + url = "https://registry.npmjs.org/npm/-/npm-6.5.0.tgz"; + sha512 = "SPq8zG2Kto+Xrq55E97O14Jla13PmQT5kSnvwBj88BmJZ5Nvw++OmlWfhjkB67pcgP5UEXljEtnGFKZtOgt6MQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -50886,7 +51134,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -50990,20 +51238,20 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.0" sources."proto-list-1.2.4" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."readable-stream-2.3.6" sources."request-2.88.0" sources."retry-0.6.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."semver-4.3.6" sources."set-blocking-2.0.0" sources."signal-exit-3.0.2" sources."slide-1.1.6" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."string-width-1.0.2" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" @@ -51060,7 +51308,7 @@ in (sources."boxen-1.3.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -51109,7 +51357,7 @@ in sources."is-stream-1.1.0" sources."isexe-2.0.0" sources."jju-1.4.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."json-parse-helpfulerror-1.0.3" sources."json5-1.0.1" sources."latest-version-3.1.0" @@ -51174,7 +51422,7 @@ in (sources."update-notifier-2.5.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -51222,7 +51470,7 @@ in sources."vscode-languageclient-4.0.1" sources."vscode-languageserver-4.0.0" sources."vscode-languageserver-protocol-3.6.0" - sources."vscode-languageserver-types-3.13.0" + sources."vscode-languageserver-types-3.14.0" sources."vscode-uri-1.0.3" sources."wrappy-1.0.2" ]; @@ -51347,7 +51595,7 @@ in dependencies = [ sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."is-fullwidth-code-point-2.0.0" sources."lodash-4.17.11" sources."string-width-2.1.1" @@ -51455,7 +51703,7 @@ in sources."repeating-2.0.1" sources."restore-cursor-2.0.0" sources."reverse-http-1.3.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."run-parallel-1.1.9" sources."run-series-1.1.8" @@ -51480,7 +51728,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."speedometer-0.1.4" sources."stream-buffers-2.2.0" sources."string-width-1.0.2" @@ -51547,7 +51795,7 @@ in sources."accepts-1.2.13" sources."addr-to-ip-port-1.5.1" sources."after-0.8.2" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."archiver-3.0.0" sources."archiver-utils-2.0.0" sources."arraybuffer.slice-0.0.6" @@ -51827,7 +52075,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.0" sources."proxy-addr-1.0.10" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."pump-1.0.3" sources."punycode-2.1.1" sources."qs-6.5.2" @@ -51849,7 +52097,7 @@ in sources."remove-trailing-separator-1.1.0" sources."request-2.88.0" sources."response-time-2.3.2" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."rndm-1.2.0" sources."run-parallel-1.1.9" sources."run-series-1.1.8" @@ -51922,7 +52170,7 @@ in ]; }) sources."speedometer-0.1.4" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.5.0" (sources."stream-counter-0.2.0" // { dependencies = [ @@ -51990,10 +52238,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "2.21.1"; + version = "2.25.1"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-2.21.1.tgz"; - sha512 = "0UEIdUM8VqRHolaBPREYhTEuu/Zfi4qp3Kp0u6ioCtn7Yi33sGFdApEczb/SenmaqtnWD7OUIO74v8Aw9wnYeg=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-2.25.1.tgz"; + sha512 = "VlDIaWSEQJuIQOFzhcg4YQ7enQMrJHb11eUclMj1VxIOxCZX51e/EDu+PZ0IO/4iQsgifiVoQcBbacBKi55jDA=="; }; buildInputs = globalBuildInputs; meta = { @@ -52007,20 +52255,20 @@ in parcel-bundler = nodeEnv.buildNodePackage { name = "parcel-bundler"; packageName = "parcel-bundler"; - version = "1.10.3"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.10.3.tgz"; - sha512 = "Lj31fr5o2AZFbazghL/MrubzvJEXLwx24rd3MiR3lncmqCXbd5q0hgl1kpV6X+vRaN9/cSDR8G0lotmgl5OyZg=="; + url = "https://registry.npmjs.org/parcel-bundler/-/parcel-bundler-1.11.0.tgz"; + sha512 = "H0w/Obx76vWiG+UtofznfcHZJBmd6JA5iCn7zrGBINyVAh+Nt/JLD6QDROghHLXfJkO4XyczsB+fO+nPbXlFfA=="; }; dependencies = [ sources."@babel/code-frame-7.0.0" - (sources."@babel/core-7.2.0" // { + (sources."@babel/core-7.2.2" // { dependencies = [ sources."json5-2.1.0" sources."source-map-0.5.7" ]; }) - (sources."@babel/generator-7.2.0" // { + (sources."@babel/generator-7.2.2" // { dependencies = [ sources."source-map-0.5.7" ]; @@ -52036,18 +52284,18 @@ in sources."@babel/helper-hoist-variables-7.0.0" sources."@babel/helper-member-expression-to-functions-7.0.0" sources."@babel/helper-module-imports-7.0.0" - sources."@babel/helper-module-transforms-7.1.0" + sources."@babel/helper-module-transforms-7.2.2" sources."@babel/helper-optimise-call-expression-7.0.0" sources."@babel/helper-plugin-utils-7.0.0" sources."@babel/helper-regex-7.0.0" sources."@babel/helper-remap-async-to-generator-7.1.0" - sources."@babel/helper-replace-supers-7.1.0" + sources."@babel/helper-replace-supers-7.2.3" sources."@babel/helper-simple-access-7.1.0" sources."@babel/helper-split-export-declaration-7.0.0" sources."@babel/helper-wrap-function-7.2.0" sources."@babel/helpers-7.2.0" sources."@babel/highlight-7.0.0" - sources."@babel/parser-7.2.0" + sources."@babel/parser-7.2.3" sources."@babel/plugin-proposal-async-generator-functions-7.2.0" sources."@babel/plugin-proposal-json-strings-7.2.0" sources."@babel/plugin-proposal-object-rest-spread-7.2.0" @@ -52063,13 +52311,13 @@ in sources."@babel/plugin-transform-async-to-generator-7.2.0" sources."@babel/plugin-transform-block-scoped-functions-7.2.0" sources."@babel/plugin-transform-block-scoping-7.2.0" - sources."@babel/plugin-transform-classes-7.2.0" + sources."@babel/plugin-transform-classes-7.2.2" sources."@babel/plugin-transform-computed-properties-7.2.0" sources."@babel/plugin-transform-destructuring-7.2.0" sources."@babel/plugin-transform-dotall-regex-7.2.0" sources."@babel/plugin-transform-duplicate-keys-7.2.0" sources."@babel/plugin-transform-exponentiation-operator-7.2.0" - sources."@babel/plugin-transform-flow-strip-types-7.2.0" + sources."@babel/plugin-transform-flow-strip-types-7.2.3" sources."@babel/plugin-transform-for-of-7.2.0" sources."@babel/plugin-transform-function-name-7.2.0" sources."@babel/plugin-transform-literals-7.2.0" @@ -52083,24 +52331,31 @@ in sources."@babel/plugin-transform-react-jsx-7.2.0" sources."@babel/plugin-transform-regenerator-7.0.0" sources."@babel/plugin-transform-shorthand-properties-7.2.0" - sources."@babel/plugin-transform-spread-7.2.0" + sources."@babel/plugin-transform-spread-7.2.2" sources."@babel/plugin-transform-sticky-regex-7.2.0" sources."@babel/plugin-transform-template-literals-7.2.0" sources."@babel/plugin-transform-typeof-symbol-7.2.0" sources."@babel/plugin-transform-unicode-regex-7.2.0" - sources."@babel/preset-env-7.2.0" + sources."@babel/preset-env-7.2.3" sources."@babel/runtime-7.2.0" - sources."@babel/template-7.1.2" - sources."@babel/traverse-7.1.6" - sources."@babel/types-7.2.0" + sources."@babel/template-7.2.2" + sources."@babel/traverse-7.2.3" + sources."@babel/types-7.2.2" + sources."@iarna/toml-2.2.1" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" - sources."@types/node-10.12.12" + sources."@parcel/fs-1.11.0" + sources."@parcel/logger-1.11.0" + sources."@parcel/utils-1.11.0" + sources."@parcel/watcher-1.11.0" + sources."@parcel/workers-1.11.0" + sources."@types/node-10.12.18" + sources."@types/q-1.5.1" sources."@types/semver-5.5.0" sources."abbrev-1.1.1" sources."acorn-5.7.3" sources."alphanum-sort-1.0.2" - sources."ansi-regex-2.1.1" + sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" sources."ansi-to-html-0.6.9" sources."anymatch-2.0.0" @@ -52122,6 +52377,7 @@ in sources."atob-2.1.2" (sources."autoprefixer-6.7.7" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."browserslist-1.7.7" (sources."chalk-1.1.3" // { @@ -52147,7 +52403,7 @@ in ]; }) sources."babylon-walk-1.0.2" - sources."balanced-match-0.4.2" + sources."balanced-match-1.0.0" (sources."base-0.11.2" // { dependencies = [ sources."define-property-1.0.0" @@ -52158,11 +52414,7 @@ in sources."bindings-1.2.1" sources."bn.js-4.11.8" sources."boolbase-1.0.0" - (sources."brace-expansion-1.1.11" // { - dependencies = [ - sources."balanced-match-1.0.0" - ]; - }) + sources."brace-expansion-1.1.11" sources."braces-2.3.2" sources."brfs-1.6.1" sources."brorand-1.1.0" @@ -52176,8 +52428,12 @@ in sources."pako-1.0.7" ]; }) - sources."browserslist-4.3.5" - sources."buffer-4.9.1" + sources."browserslist-4.4.0" + (sources."buffer-4.9.1" // { + dependencies = [ + sources."isarray-1.0.0" + ]; + }) sources."buffer-equal-0.0.1" sources."buffer-from-1.1.1" sources."buffer-xor-1.0.3" @@ -52188,13 +52444,14 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-db-1.0.30000917" - sources."caniuse-lite-1.0.30000917" - sources."chalk-2.4.1" + sources."caniuse-db-1.0.30000928" + sources."caniuse-lite-1.0.30000928" + sources."chalk-2.4.2" sources."chokidar-2.0.4" sources."cipher-base-1.0.4" (sources."clap-1.2.3" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."chalk-1.1.3" sources."strip-ansi-3.0.1" @@ -52205,8 +52462,8 @@ in sources."cli-cursor-2.1.0" sources."cli-spinners-1.3.1" sources."clone-2.1.2" - sources."clones-1.1.0" - sources."coa-2.0.1" + sources."clones-1.2.0" + sources."coa-2.0.2" sources."collection-visit-1.0.0" sources."color-3.1.0" sources."color-convert-1.9.3" @@ -52230,7 +52487,7 @@ in sources."constants-browserify-1.0.0" sources."convert-source-map-1.6.0" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" sources."cosmiconfig-5.0.7" sources."create-ecdh-4.0.3" @@ -52239,11 +52496,7 @@ in sources."cross-spawn-6.0.5" sources."crypto-browserify-3.12.0" sources."css-color-names-0.0.4" - (sources."css-declaration-sorter-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."css-declaration-sorter-4.0.1" sources."css-select-2.0.2" sources."css-select-base-adapter-0.1.1" (sources."css-tree-1.0.0-alpha.28" // { @@ -52255,23 +52508,11 @@ in sources."css-url-regex-1.1.0" sources."css-what-2.1.2" sources."cssesc-2.0.0" - (sources."cssnano-4.1.7" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."cssnano-preset-default-4.0.5" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."cssnano-4.1.8" + sources."cssnano-preset-default-4.0.6" sources."cssnano-util-get-arguments-4.0.0" sources."cssnano-util-get-match-4.0.0" - (sources."cssnano-util-raw-cache-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."cssnano-util-raw-cache-4.0.1" sources."cssnano-util-same-parent-4.0.1" (sources."csso-3.5.1" // { dependencies = [ @@ -52281,7 +52522,7 @@ in }) sources."date-now-0.1.4" sources."deasync-0.1.14" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" sources."deep-is-0.1.3" @@ -52327,12 +52568,12 @@ in sources."duplexer2-0.1.4" sources."editorconfig-0.15.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.88" + sources."electron-to-chromium-1.3.102" sources."elliptic-6.4.1" sources."encodeurl-1.0.2" sources."entities-1.1.2" sources."error-ex-1.3.2" - sources."es-abstract-1.12.0" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -52355,12 +52596,8 @@ in sources."define-property-1.0.0" ]; }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."isarray-0.0.1" - ]; - }) - sources."fast-glob-2.2.4" + sources."falafel-2.1.0" + sources."fast-glob-2.2.6" sources."fast-levenshtein-2.0.6" sources."filesize-3.6.1" sources."fill-range-4.0.0" @@ -52371,7 +52608,6 @@ in sources."fresh-0.5.2" sources."fs.realpath-1.0.0" sources."fsevents-1.2.4" - sources."fswatcher-child-1.1.1" sources."function-bind-1.1.1" sources."get-port-3.2.0" sources."get-value-2.0.6" @@ -52382,11 +52618,15 @@ in ]; }) sources."glob-to-regexp-0.3.0" - sources."globals-11.9.0" + sources."globals-11.10.0" sources."graceful-fs-4.1.15" sources."grapheme-breaker-0.3.2" sources."has-1.0.3" - sources."has-ansi-2.0.0" + (sources."has-ansi-2.0.0" // { + dependencies = [ + sources."ansi-regex-2.1.1" + ]; + }) sources."has-flag-3.0.0" sources."has-symbols-1.0.0" sources."has-value-1.0.0" @@ -52404,6 +52644,7 @@ in sources."html-comment-regex-1.1.2" (sources."htmlnano-0.1.10" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."browserslist-1.7.7" sources."caniuse-api-1.6.1" @@ -52453,7 +52694,7 @@ in }) (sources."htmlparser2-3.10.0" // { dependencies = [ - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" ]; }) sources."http-errors-1.6.3" @@ -52503,14 +52744,14 @@ in sources."is-url-1.2.4" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" - sources."isarray-1.0.0" + sources."isarray-0.0.1" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."js-base64-2.4.9" + sources."js-base64-2.5.0" sources."js-beautify-1.8.9" - sources."js-levenshtein-1.1.4" + sources."js-levenshtein-1.1.6" sources."js-tokens-4.0.0" - (sources."js-yaml-3.12.0" // { + (sources."js-yaml-3.12.1" // { dependencies = [ sources."esprima-4.0.1" ]; @@ -52566,7 +52807,7 @@ in ]; }) sources."ms-2.1.1" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."define-property-2.0.2" @@ -52579,7 +52820,7 @@ in sources."node-addon-api-1.6.2" sources."node-forge-0.7.6" sources."node-libs-browser-2.1.0" - sources."node-releases-1.1.0" + sources."node-releases-1.1.3" sources."nopt-4.0.1" sources."normalize-path-2.1.1" sources."normalize-range-0.1.2" @@ -52593,7 +52834,7 @@ in sources."object-visit-1.0.1" sources."object.getownpropertydescriptors-2.0.3" sources."object.pick-1.3.0" - sources."object.values-1.0.4" + sources."object.values-1.1.0" sources."on-finished-2.3.0" sources."once-1.4.0" sources."onetime-2.0.1" @@ -52617,44 +52858,21 @@ in sources."pbkdf2-3.0.17" sources."physical-cpu-count-2.0.0" sources."posix-character-classes-0.1.1" - sources."postcss-6.0.23" - (sources."postcss-calc-7.0.1" // { + (sources."postcss-7.0.11" // { dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-colormin-4.0.2" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-convert-values-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-discard-comments-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-discard-duplicates-4.0.2" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-discard-empty-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-discard-overridden-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" + sources."supports-color-6.1.0" ]; }) + sources."postcss-calc-7.0.1" + sources."postcss-colormin-4.0.2" + sources."postcss-convert-values-4.0.1" + sources."postcss-discard-comments-4.0.1" + sources."postcss-discard-duplicates-4.0.2" + sources."postcss-discard-empty-4.0.1" + sources."postcss-discard-overridden-4.0.1" (sources."postcss-discard-unused-2.2.3" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" (sources."chalk-1.1.3" // { dependencies = [ @@ -52670,6 +52888,7 @@ in }) (sources."postcss-filter-plugins-2.0.3" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" (sources."chalk-1.1.3" // { dependencies = [ @@ -52685,6 +52904,7 @@ in }) (sources."postcss-merge-idents-2.1.7" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" (sources."chalk-1.1.3" // { dependencies = [ @@ -52698,91 +52918,34 @@ in sources."supports-color-3.2.3" ]; }) - (sources."postcss-merge-longhand-4.0.9" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."postcss-merge-longhand-4.0.10" (sources."postcss-merge-rules-4.0.2" // { dependencies = [ - sources."postcss-7.0.6" sources."postcss-selector-parser-3.1.1" ]; }) sources."postcss-message-helpers-2.0.0" - (sources."postcss-minify-font-values-4.0.2" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-minify-gradients-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-minify-params-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."postcss-minify-font-values-4.0.2" + sources."postcss-minify-gradients-4.0.1" + sources."postcss-minify-params-4.0.1" (sources."postcss-minify-selectors-4.0.1" // { dependencies = [ - sources."postcss-7.0.6" sources."postcss-selector-parser-3.1.1" ]; }) - (sources."postcss-normalize-charset-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-display-values-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-positions-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-repeat-style-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-string-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-timing-functions-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-unicode-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-url-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-normalize-whitespace-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-ordered-values-4.1.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."postcss-normalize-charset-4.0.1" + sources."postcss-normalize-display-values-4.0.1" + sources."postcss-normalize-positions-4.0.1" + sources."postcss-normalize-repeat-style-4.0.1" + sources."postcss-normalize-string-4.0.1" + sources."postcss-normalize-timing-functions-4.0.1" + sources."postcss-normalize-unicode-4.0.1" + sources."postcss-normalize-url-4.0.1" + sources."postcss-normalize-whitespace-4.0.1" + sources."postcss-ordered-values-4.1.1" (sources."postcss-reduce-idents-2.4.0" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" (sources."chalk-1.1.3" // { dependencies = [ @@ -52796,30 +52959,15 @@ in sources."supports-color-3.2.3" ]; }) - (sources."postcss-reduce-initial-4.0.2" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-reduce-transforms-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - sources."postcss-selector-parser-5.0.0-rc.4" - (sources."postcss-svgo-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) - (sources."postcss-unique-selectors-4.0.1" // { - dependencies = [ - sources."postcss-7.0.6" - ]; - }) + sources."postcss-reduce-initial-4.0.2" + sources."postcss-reduce-transforms-4.0.1" + sources."postcss-selector-parser-5.0.0" + sources."postcss-svgo-4.0.1" + sources."postcss-unique-selectors-4.0.1" sources."postcss-value-parser-3.3.1" (sources."postcss-zindex-2.2.0" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" (sources."chalk-1.1.3" // { dependencies = [ @@ -52835,6 +52983,7 @@ in }) (sources."posthtml-0.11.3" // { dependencies = [ + sources."isarray-1.0.0" sources."isobject-2.1.0" sources."posthtml-parser-0.3.3" ]; @@ -52858,10 +53007,22 @@ in sources."randombytes-2.0.6" sources."randomfill-1.0.4" sources."range-parser-1.2.0" - sources."readable-stream-2.3.6" + (sources."readable-stream-2.3.6" // { + dependencies = [ + sources."isarray-1.0.0" + ]; + }) sources."readdirp-2.2.1" - sources."reduce-css-calc-1.3.0" - sources."reduce-function-call-1.0.2" + (sources."reduce-css-calc-1.3.0" // { + dependencies = [ + sources."balanced-match-0.4.2" + ]; + }) + (sources."reduce-function-call-1.0.2" // { + dependencies = [ + sources."balanced-match-0.4.2" + ]; + }) sources."regenerate-1.4.0" sources."regenerate-unicode-properties-7.0.0" sources."regenerator-runtime-0.12.1" @@ -52882,17 +53043,18 @@ in sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-from-3.0.0" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" sources."rgb-regex-1.0.1" sources."rgba-regex-1.0.0" + sources."rimraf-2.6.3" sources."ripemd160-2.0.2" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" - sources."safer-eval-1.2.3" + sources."safer-eval-1.3.0" sources."sax-1.2.4" sources."semver-5.6.0" (sources."send-0.16.2" // { @@ -52901,7 +53063,7 @@ in sources."ms-2.0.0" ]; }) - sources."serialize-to-js-1.2.1" + sources."serialize-to-js-1.2.2" sources."serve-static-1.13.2" sources."set-value-2.0.0" sources."setimmediate-1.0.5" @@ -52933,7 +53095,7 @@ in sources."sort-keys-1.1.2" sources."source-map-0.6.1" sources."source-map-resolve-0.5.2" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" sources."source-map-url-0.4.0" (sources."split-string-3.1.0" // { dependencies = [ @@ -52951,20 +53113,15 @@ in sources."stream-http-2.8.3" sources."strict-uri-encode-1.1.0" sources."string_decoder-1.1.1" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) + sources."strip-ansi-4.0.0" (sources."stylehacks-4.0.1" // { dependencies = [ - sources."postcss-7.0.6" sources."postcss-selector-parser-3.1.1" ]; }) sources."supports-color-5.5.0" sources."svgo-1.1.1" - (sources."terser-3.11.0" // { + (sources."terser-3.14.1" // { dependencies = [ sources."commander-2.17.1" ]; @@ -52984,8 +53141,6 @@ in ]; }) sources."to-regex-range-2.1.1" - sources."toml-2.3.3" - sources."tomlify-j0.4-3.0.0" sources."trim-right-1.0.1" sources."tty-browserify-0.0.0" sources."type-check-0.3.2" @@ -53011,6 +53166,7 @@ in ]; }) sources."has-values-0.1.4" + sources."isarray-1.0.0" ]; }) sources."upath-1.1.0" @@ -53066,14 +53222,14 @@ in pulp = nodeEnv.buildNodePackage { name = "pulp"; packageName = "pulp"; - version = "12.3.0"; + version = "12.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pulp/-/pulp-12.3.0.tgz"; - sha512 = "Sm1XQg2h2JBVHWK3bxSHnmMdMoM0hEi5cbGfBBLpM6E2qU1vjJhDJsO/8bEkxC2RvNAAEOWROKMI3tTzmVxLbQ=="; + url = "https://registry.npmjs.org/pulp/-/pulp-12.3.1.tgz"; + sha512 = "UVkXppOVShd8GRe+dGWGihGhYgPnwGv2GszGAUUKlWg61qB5yFBlcNHJywyE0yZhuA5HWTt5JCmnfVYqTL0hqQ=="; }; dependencies = [ sources."JSONStream-1.3.5" - sources."acorn-6.0.4" + sources."acorn-6.0.5" sources."acorn-dynamic-import-4.0.0" sources."acorn-node-1.6.2" sources."acorn-walk-6.1.1" @@ -53326,8 +53482,8 @@ in ]; }) sources."ms-2.0.0" - sources."mute-stream-0.0.7" - sources."nan-2.11.1" + sources."mute-stream-0.0.8" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."neo-async-2.6.0" sources."node-static-0.7.11" @@ -53388,10 +53544,10 @@ in sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-url-0.2.1" sources."ret-0.1.15" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."ripemd160-2.0.2" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" @@ -53618,7 +53774,7 @@ in sources."minimist-0.0.8" ]; }) - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."ncp-0.4.2" sources."once-1.4.0" sources."path-is-absolute-1.0.1" @@ -53626,7 +53782,7 @@ in sources."prompt-0.2.14" sources."read-1.0.7" sources."revalidator-0.1.8" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."semver-5.6.0" sources."stack-trace-0.0.10" sources."strip-ansi-3.0.1" @@ -53657,7 +53813,7 @@ in sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198"; }; dependencies = [ - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."asynckit-0.4.0" @@ -53682,7 +53838,7 @@ in sources."crc-0.2.0" sources."crypto-0.0.3" sources."dashdash-1.14.1" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."delayed-stream-1.0.0" sources."ecc-jsbn-0.1.2" sources."events.node-0.4.9" @@ -53747,7 +53903,7 @@ in }) sources."pause-0.0.1" sources."performance-now-2.1.0" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-0.6.5" sources."range-parser-0.0.4" @@ -53758,7 +53914,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."send-0.1.4" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."stream-counter-0.2.0" sources."string-1.6.1" sources."string_decoder-0.10.31" @@ -53786,10 +53942,10 @@ in scuttlebot = nodeEnv.buildNodePackage { name = "scuttlebot"; packageName = "scuttlebot"; - version = "13.2.1"; + version = "13.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/scuttlebot/-/scuttlebot-13.2.1.tgz"; - sha512 = "Ehe2C7G987KLYqUZX5lek5nqRBU5z00cxvquQQJ+TW2k1HMJMZaXnk50/vFyrdmsJEDcFQtehWalG6xNnPJOvw=="; + url = "https://registry.npmjs.org/scuttlebot/-/scuttlebot-13.2.2.tgz"; + sha512 = "QRBWq6TSK1Tk2lE978avGJyOgh1Glnru5zR/i6RWmaq3n0rYxFxEslGvpu3TupInCaog98DU1n6nDLszQvvtdA=="; }; dependencies = [ sources."abstract-leveldown-5.0.0" @@ -53883,7 +54039,6 @@ in sources."code-point-at-1.1.0" sources."collapse-white-space-1.0.4" sources."collection-visit-1.0.0" - sources."colors-0.5.1" sources."commander-2.19.0" sources."compare-at-paths-1.0.0" sources."component-emitter-1.2.1" @@ -53924,7 +54079,7 @@ in sources."detab-1.0.2" sources."detect-libc-1.0.3" sources."discontinuous-range-1.0.0" - sources."dynamic-dijkstra-1.0.0" + sources."dynamic-dijkstra-1.0.1" sources."ed2curve-0.1.4" sources."elegant-spinner-1.0.1" sources."emoji-named-characters-1.0.2" @@ -53933,7 +54088,7 @@ in sources."end-of-stream-1.4.1" sources."epidemic-broadcast-trees-6.3.5" sources."errno-0.1.7" - sources."es-abstract-1.12.0" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" sources."escape-string-regexp-1.0.5" sources."exit-hook-1.1.1" @@ -54082,14 +54237,14 @@ in sources."is-primitive-2.0.0" sources."is-regex-1.0.4" sources."is-symbol-1.0.2" - sources."is-valid-domain-0.0.6" + sources."is-valid-domain-0.0.7" sources."is-windows-1.0.2" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-2.1.0" sources."json-buffer-2.0.11" sources."kind-of-3.2.2" - sources."layered-graph-1.1.2" + sources."layered-graph-1.1.3" sources."level-4.0.0" sources."level-codec-9.0.0" sources."level-errors-2.0.0" @@ -54125,8 +54280,8 @@ in }) sources."levelup-3.1.1" sources."libnested-1.4.1" - sources."libsodium-0.7.3" - sources."libsodium-wrappers-0.7.3" + sources."libsodium-0.7.4" + sources."libsodium-wrappers-0.7.4" sources."log-symbols-1.0.2" sources."log-update-1.0.2" sources."longest-streak-1.0.0" @@ -54138,7 +54293,7 @@ in sources."map-merge-1.1.0" sources."map-visit-1.0.0" sources."markdown-table-0.4.0" - sources."math-random-1.0.1" + sources."math-random-1.0.2" sources."mdmanifest-1.0.8" sources."micromatch-2.3.11" sources."mimic-response-1.0.1" @@ -54165,10 +54320,10 @@ in }) sources."multiblob-http-0.4.2" sources."multicb-1.2.2" - sources."multiserver-3.0.2" + sources."multiserver-3.1.0" sources."multiserver-address-1.0.1" sources."multiserver-scopes-1.0.0" - sources."muxrpc-6.4.1" + sources."muxrpc-6.4.2" (sources."muxrpc-validation-2.0.1" // { dependencies = [ sources."pull-stream-2.28.4" @@ -54184,7 +54339,7 @@ in sources."rimraf-2.4.5" ]; }) - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."arr-diff-4.0.0" @@ -54193,11 +54348,10 @@ in ]; }) sources."ncp-2.0.0" - sources."nearley-2.15.1" + sources."nearley-2.16.0" sources."nice-try-1.0.5" - sources."node-abi-2.5.0" - sources."node-gyp-build-3.5.1" - sources."nomnom-1.6.2" + sources."node-abi-2.5.1" + sources."node-gyp-build-3.7.0" sources."non-private-ip-1.4.4" sources."noop-logger-0.1.1" sources."normalize-path-2.1.1" @@ -54264,7 +54418,7 @@ in sources."pull-abortable-4.0.0" sources."pull-box-stream-1.0.13" sources."pull-cat-1.1.11" - sources."pull-catch-1.0.0" + sources."pull-catch-1.0.1" sources."pull-cont-0.1.1" sources."pull-core-1.1.0" (sources."pull-cursor-3.0.0" // { @@ -54405,17 +54559,17 @@ in sources."restore-cursor-1.0.1" sources."resumer-0.0.0" sources."ret-0.1.15" - (sources."rimraf-2.6.2" // { + (sources."rimraf-2.6.3" // { dependencies = [ sources."glob-7.1.3" ]; }) sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" - sources."secret-handshake-1.1.14" - (sources."secret-stack-5.0.0" // { + sources."secret-handshake-1.1.15" + (sources."secret-stack-5.1.0" // { dependencies = [ - sources."debug-4.1.0" + sources."debug-4.1.1" sources."ms-2.1.1" ]; }) @@ -54468,23 +54622,23 @@ in ]; }) sources."sodium-chloride-1.1.2" - sources."sodium-native-2.2.3" + sources."sodium-native-2.2.4" sources."source-map-0.5.7" sources."source-map-resolve-0.5.2" sources."source-map-url-0.4.0" sources."split-buffer-1.0.0" sources."split-string-3.1.0" - sources."ssb-blobs-1.1.7" + sources."ssb-blobs-1.1.8" (sources."ssb-client-4.6.0" // { dependencies = [ sources."multiserver-1.13.7" ]; }) - sources."ssb-config-2.3.7" - sources."ssb-db-18.6.2" - sources."ssb-ebt-5.2.7" - sources."ssb-friends-3.1.7" - sources."ssb-keys-7.1.3" + sources."ssb-config-2.3.9" + sources."ssb-db-18.6.5" + sources."ssb-ebt-5.3.5" + sources."ssb-friends-3.1.12" + sources."ssb-keys-7.1.4" sources."ssb-links-3.0.3" sources."ssb-msgs-5.2.0" (sources."ssb-query-2.3.0" // { @@ -54493,7 +54647,7 @@ in sources."map-filter-reduce-3.2.2" ]; }) - sources."ssb-ref-2.13.8" + sources."ssb-ref-2.13.9" sources."ssb-validate-4.0.4" sources."ssb-ws-5.1.1" sources."stack-0.1.0" @@ -54523,7 +54677,7 @@ in sources."strip-ansi-3.0.1" sources."strip-json-comments-2.0.1" sources."supports-color-2.0.0" - (sources."tape-4.9.1" // { + (sources."tape-4.9.2" // { dependencies = [ sources."glob-7.1.3" ]; @@ -54560,7 +54714,6 @@ in sources."typewiselite-1.0.0" sources."uint48be-1.0.2" sources."ultron-1.0.2" - sources."underscore-1.4.4" sources."unherit-1.1.1" sources."unified-2.1.4" (sources."union-value-1.0.0" // { @@ -54748,7 +54901,7 @@ in sources."CSSwhat-0.4.7" sources."accepts-1.3.5" sources."after-0.8.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."array-flatten-1.1.1" sources."arraybuffer.slice-0.0.6" sources."asn1-0.2.4" @@ -54862,7 +55015,7 @@ in sources."mkdirp-0.5.1" sources."moment-2.7.0" sources."ms-2.0.0" - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."nan-0.3.2" sources."negotiator-0.6.1" sources."oauth-sign-0.9.0" @@ -54877,7 +55030,7 @@ in sources."pause-stream-0.0.11" sources."performance-now-2.1.0" sources."proxy-addr-2.0.4" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."range-parser-1.2.0" @@ -54919,7 +55072,7 @@ in ]; }) sources."split-1.0.1" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."statuses-1.4.0" sources."stream-combiner-0.2.2" sources."string_decoder-0.10.31" @@ -54960,10 +55113,10 @@ in sloc = nodeEnv.buildNodePackage { name = "sloc"; packageName = "sloc"; - version = "0.2.0"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/sloc/-/sloc-0.2.0.tgz"; - sha1 = "b42d3da1a442a489f454c32c628e8ebf0007875c"; + url = "https://registry.npmjs.org/sloc/-/sloc-0.2.1.tgz"; + sha512 = "8XJnwCFR4DatLz1s0nGFe6IJPJ+5pjRFhoBuBKq8SLgFI40eD7ak6jOXpzeG0tmIpyOc1zCs9bjKAxMFm1451A=="; }; dependencies = [ sources."arr-diff-4.0.0" @@ -55253,7 +55406,7 @@ in sources."minimist-0.0.8" sources."mkdirp-0.5.1" sources."mv-2.1.1" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."ncp-2.0.0" sources."negotiator-0.5.3" sources."node-uuid-1.4.8" @@ -55346,10 +55499,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.116.2"; + version = "1.122.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.116.2.tgz"; - sha512 = "zkW+IjSEDJ5f4leXck7a7aF36pJcIKRk3o2or78cnabq1mxQzgY8+ooECPDBnwvqySIwUKA8jOjnGRujaNCMpg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.122.0.tgz"; + sha512 = "esbJEF/HubMdQqjArOqHXWP4iyGXs99yk5gbcs/wwDys2RNEHTQZAYTfQSdNGMHo/Ynylfcyqrhgcg3IR7wtjQ=="; }; dependencies = [ sources."@snyk/dep-graph-1.1.2" @@ -55365,7 +55518,7 @@ in sources."archy-1.0.0" sources."argparse-1.0.10" sources."asap-2.0.6" - sources."ast-types-0.11.7" + sources."ast-types-0.12.1" sources."async-1.5.2" sources."balanced-match-1.0.0" (sources."boxen-1.3.0" // { @@ -55378,7 +55531,7 @@ in sources."bytes-3.0.0" sources."camelcase-2.1.1" sources."capture-stack-trace-1.0.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.4.2" sources."ci-info-1.6.0" sources."cli-boxes-1.0.0" @@ -55483,7 +55636,7 @@ in sources."isarray-0.0.1" sources."isexe-2.0.0" sources."isobject-3.0.1" - (sources."js-yaml-3.12.0" // { + (sources."js-yaml-3.12.1" // { dependencies = [ sources."esprima-4.0.1" ]; @@ -55593,29 +55746,29 @@ in sources."signal-exit-3.0.2" sources."smart-buffer-1.1.15" sources."snyk-config-2.2.0" - sources."snyk-docker-plugin-1.13.1" + sources."snyk-docker-plugin-1.17.0" sources."snyk-go-plugin-1.6.1" - sources."snyk-gradle-plugin-2.1.1" + sources."snyk-gradle-plugin-2.1.3" sources."snyk-module-1.9.1" - sources."snyk-mvn-plugin-2.0.0" - (sources."snyk-nodejs-lockfile-parser-1.9.0" // { + sources."snyk-mvn-plugin-2.0.1" + (sources."snyk-nodejs-lockfile-parser-1.10.1" // { dependencies = [ sources."lodash-4.17.10" ]; }) sources."snyk-nuget-plugin-1.6.5" sources."snyk-php-plugin-1.5.1" - sources."snyk-policy-1.13.1" - sources."snyk-python-plugin-1.9.0" + sources."snyk-policy-1.13.3" + sources."snyk-python-plugin-1.9.1" sources."snyk-resolve-1.0.1" sources."snyk-resolve-deps-4.0.2" - sources."snyk-sbt-plugin-2.0.0" + sources."snyk-sbt-plugin-2.0.1" sources."snyk-tree-1.0.0" sources."snyk-try-require-1.3.1" sources."socks-1.1.10" sources."socks-proxy-agent-3.0.1" sources."source-map-0.6.1" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" sources."sprintf-js-1.0.3" sources."statuses-1.5.0" sources."string-width-2.1.1" @@ -55632,7 +55785,7 @@ in sources."thunkify-2.1.2" sources."timed-out-4.0.1" sources."tmp-0.0.33" - sources."toml-2.3.3" + sources."toml-2.3.5" sources."tslib-1.9.3" sources."type-check-0.3.2" (sources."undefsafe-2.0.2" // { @@ -55649,7 +55802,7 @@ in sources."util-0.10.4" sources."util-deprecate-1.0.2" sources."uuid-3.3.2" - sources."vscode-languageserver-types-3.13.0" + sources."vscode-languageserver-types-3.14.0" sources."which-1.3.1" sources."widest-line-2.0.1" sources."win-release-1.1.1" @@ -55711,7 +55864,7 @@ in sources."component-emitter-1.2.1" sources."component-inherit-0.0.3" sources."cookie-0.3.1" - sources."debug-4.1.0" + sources."debug-4.1.1" (sources."engine.io-3.3.2" // { dependencies = [ sources."debug-3.1.0" @@ -55789,9 +55942,14 @@ in sha512 = "GBkJbnTuFpM4jFbiERHDWhZc/S/kpHToqmZag3aEBjPYK44JAN2QBjvrGIxLOoCyMZjuFQIfTO2eJd8uwLY/9g=="; }; dependencies = [ + sources."@types/q-1.5.1" + sources."ansi-styles-3.2.1" sources."argparse-1.0.10" sources."boolbase-1.0.0" - sources."coa-2.0.1" + sources."chalk-2.4.2" + sources."coa-2.0.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."colors-1.1.2" sources."css-select-2.0.2" sources."css-select-base-adapter-0.1.1" @@ -55812,29 +55970,32 @@ in sources."domelementtype-1.3.1" sources."domutils-1.7.0" sources."entities-1.1.2" - sources."es-abstract-1.12.0" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" + sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."function-bind-1.1.1" sources."has-1.0.3" + sources."has-flag-3.0.0" sources."has-symbols-1.0.0" sources."is-callable-1.1.4" sources."is-date-object-1.0.1" sources."is-regex-1.0.4" sources."is-symbol-1.0.2" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."mdn-data-1.1.4" sources."minimist-0.0.8" sources."mkdirp-0.5.1" sources."nth-check-1.0.2" sources."object-keys-1.0.12" sources."object.getownpropertydescriptors-2.0.3" - sources."object.values-1.0.4" + sources."object.values-1.1.0" sources."q-1.5.1" sources."sax-1.2.4" sources."source-map-0.5.7" sources."sprintf-js-1.0.3" sources."stable-0.1.8" + sources."supports-color-5.5.0" sources."unquote-1.1.1" sources."util.promisify-1.0.0" ]; @@ -55894,7 +56055,7 @@ in (sources."boxen-1.3.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -55956,7 +56117,7 @@ in sources."content-type-1.0.4" sources."cookiejar-2.1.2" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" sources."create-error-class-3.0.2" (sources."cross-spawn-5.1.0" // { @@ -56122,7 +56283,7 @@ in ]; }) sources."js-string-escape-1.0.1" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."json-refs-2.1.7" (sources."json-schema-deref-sync-0.3.4" // { dependencies = [ @@ -56196,10 +56357,10 @@ in sources."ms-2.0.0" sources."multer-1.4.1" sources."mute-stream-0.0.5" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."native-promise-only-0.8.1" - (sources."nodemon-1.18.7" // { + (sources."nodemon-1.18.9" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" @@ -56256,7 +56417,7 @@ in sources."prepend-http-1.0.4" sources."process-nextick-args-2.0.0" sources."pseudomap-1.0.2" - sources."pstree.remy-1.1.2" + sources."pstree.remy-1.1.6" sources."punycode-2.1.1" sources."qs-4.0.0" sources."range-parser-1.2.0" @@ -56283,7 +56444,7 @@ in sources."resolve-url-0.2.1" sources."restore-cursor-1.0.1" sources."ret-0.1.15" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-0.1.0" sources."rx-lite-3.1.2" sources."safe-buffer-5.1.2" @@ -56444,7 +56605,7 @@ in (sources."update-notifier-2.5.0" // { dependencies = [ sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."supports-color-5.5.0" ]; }) @@ -56456,7 +56617,7 @@ in sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."valid-url-1.0.9" - sources."validator-10.9.0" + sources."validator-10.10.0" sources."which-1.3.1" sources."widest-line-2.0.1" sources."wordwrap-0.0.3" @@ -56485,7 +56646,7 @@ in sha512 = "lST8jq/DougDUADb+vBaufwjqNChwABSJTkWf+5GG4xNVJoR/atEaMe/G7buaVZrpGCy+zoaq1TuycQy8xX+Bg=="; }; dependencies = [ - sources."acorn-6.0.4" + sources."acorn-6.0.5" sources."acorn-loose-6.0.0" sources."acorn-walk-6.1.1" sources."balanced-match-1.0.0" @@ -56527,10 +56688,10 @@ in three = nodeEnv.buildNodePackage { name = "three"; packageName = "three"; - version = "0.99.0"; + version = "0.100.0"; src = fetchurl { - url = "https://registry.npmjs.org/three/-/three-0.99.0.tgz"; - sha512 = "DmNNq6H6nRGaqxScJ8x7v5VjdtDZR72oTVwDdKbB2BYNFxCkAoo9vdFAznEsMu9YzTV2yFvbVs7qHRzvJZzTIg=="; + url = "https://registry.npmjs.org/three/-/three-0.100.0.tgz"; + sha512 = "/lN2rdE1OqIwJr4/HcSaOisiCY0uVA0sqPpbCG5nil2uICEdS0LfGwSVYTtZDsIpR76r3++h5H3Hzg5D+SJBRQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -56544,10 +56705,10 @@ in tiddlywiki = nodeEnv.buildNodePackage { name = "tiddlywiki"; packageName = "tiddlywiki"; - version = "5.1.18"; + version = "5.1.19"; src = fetchurl { - url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.1.18.tgz"; - sha512 = "BJqn9kgnexliEEH40DfArmbuXnQIXUWs5DCxwhCd80zJwqxJJ/HlI7rW7dD6KSht4oVtPg/QQvOw84EmqMOHTA=="; + url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.1.19.tgz"; + sha512 = "G7JnwrQJ6d2ue49yaBl7WzmTOV/WH/mm4WgknChr6z8sSUVU+czPoYBXfwqHOuCbdZqWRPjiYfjkdm+eUiWodw=="; }; buildInputs = globalBuildInputs; meta = { @@ -56561,10 +56722,10 @@ in triton = nodeEnv.buildNodePackage { name = "triton"; packageName = "triton"; - version = "6.2.0"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/triton/-/triton-6.2.0.tgz"; - sha512 = "wERRcxLL1DnjCl5N/t68zu1/cPpqLs70clFI2ke1fLfwjuGF+PdZhO8dZwZZROJqOwlOozCqf3qMWiMAfztWzQ=="; + url = "https://registry.npmjs.org/triton/-/triton-6.3.0.tgz"; + sha512 = "Ten1ofJ4SS+VA/POnb+erqv6NsvTygSmJgTqo2ABoKm2rlHgB2Y5ADSEsoif5vekEboSnOg5CabSxYzUjj1NMw=="; }; dependencies = [ sources."asn1-0.2.4" @@ -56633,11 +56794,11 @@ in sources."minimatch-3.0.4" sources."minimist-0.0.8" sources."mkdirp-0.5.1" - sources."moment-2.22.2" + sources."moment-2.23.0" sources."mooremachine-2.2.1" - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."mv-2.1.1" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."ncp-2.0.0" sources."once-1.3.2" sources."path-is-absolute-1.0.1" @@ -56813,7 +56974,7 @@ in sources."abbrev-1.1.1" sources."accepts-1.3.5" sources."after-0.8.2" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" (sources."are-we-there-yet-1.1.5" // { @@ -56906,13 +57067,14 @@ in ]; }) sources."ecc-jsbn-0.1.2" - (sources."editions-2.1.0" // { + (sources."editions-2.1.3" // { dependencies = [ sources."semver-5.6.0" ]; }) sources."ee-first-1.1.1" sources."encodeurl-1.0.2" + sources."end-of-stream-1.4.1" (sources."engine.io-3.2.1" // { dependencies = [ sources."debug-3.1.0" @@ -56925,15 +57087,11 @@ in ]; }) sources."engine.io-parser-2.1.3" - (sources."errlop-1.0.3" // { - dependencies = [ - sources."editions-1.3.4" - ]; - }) + sources."errlop-1.1.1" sources."escape-html-1.0.3" sources."etag-1.8.1" sources."eve-0.5.4" - sources."execa-0.10.0" + sources."execa-1.0.0" (sources."express-4.16.4" // { dependencies = [ sources."statuses-1.4.0" @@ -56968,7 +57126,7 @@ in sources."fs.realpath-1.0.0" sources."gauge-2.7.4" sources."get-caller-file-1.0.3" - sources."get-stream-3.0.0" + sources."get-stream-4.1.0" sources."getmac-1.4.6" sources."getpass-0.1.7" sources."glob-7.1.3" @@ -57070,13 +57228,13 @@ in sources."once-1.4.0" sources."opn-5.4.0" sources."os-homedir-1.0.2" - sources."os-locale-3.0.1" + sources."os-locale-3.1.0" sources."os-tmpdir-1.0.2" sources."osenv-0.1.5" sources."p-defer-1.0.0" sources."p-finally-1.0.0" sources."p-is-promise-1.1.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."parseqs-0.0.5" @@ -57094,7 +57252,8 @@ in sources."process-nextick-args-2.0.0" sources."proxy-addr-2.0.4" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" + sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" sources."random-bytes-1.0.0" @@ -57119,7 +57278,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."retry-0.10.1" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."semver-5.5.1" @@ -57160,8 +57319,8 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" - sources."sshpk-1.15.2" + sources."spdx-license-ids-3.0.3" + sources."sshpk-1.16.0" sources."ssri-5.3.0" sources."stack-trace-0.0.10" sources."statuses-1.5.0" @@ -57175,13 +57334,13 @@ in sources."combined-stream-1.0.7" sources."component-emitter-1.2.1" sources."cookiejar-2.1.2" - sources."debug-4.1.0" + sources."debug-4.1.1" sources."delayed-stream-1.0.0" sources."form-data-2.3.3" sources."formidable-1.2.1" sources."mime-2.4.0" sources."ms-2.1.1" - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" sources."string_decoder-1.2.0" ]; }) @@ -57258,7 +57417,7 @@ in }; dependencies = [ sources."absolute-0.0.1" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-escapes-3.1.0" sources."ansi-red-0.1.1" sources."ansi-regex-3.0.0" @@ -57290,7 +57449,7 @@ in sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" sources."caw-2.0.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."cli-cursor-2.1.0" sources."cli-spinners-1.3.1" @@ -57378,7 +57537,7 @@ in sources."inherits-2.0.3" sources."ini-1.3.5" sources."inquirer-6.2.1" - sources."is-3.2.1" + sources."is-3.3.0" sources."is-extendable-0.1.1" sources."is-fullwidth-code-point-2.0.0" sources."is-natural-number-4.0.1" @@ -57392,7 +57551,7 @@ in sources."isarray-1.0.0" sources."isstream-0.1.2" sources."isurl-1.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."jsbn-0.1.1" sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" @@ -57447,7 +57606,7 @@ in sources."prepend-http-1.0.4" sources."process-nextick-args-2.0.0" sources."proto-list-1.2.4" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."read-metadata-1.0.0" @@ -57455,7 +57614,7 @@ in sources."recursive-readdir-2.2.2" sources."request-2.88.0" sources."restore-cursor-2.0.0" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."rxjs-6.3.3" sources."safe-buffer-5.1.2" @@ -57469,7 +57628,7 @@ in sources."signal-exit-3.0.2" sources."source-map-0.6.1" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" sources."stat-mode-0.2.2" (sources."string-width-2.1.1" // { dependencies = [ @@ -57493,7 +57652,7 @@ in sources."timed-out-4.0.1" sources."tmp-0.0.33" sources."to-buffer-1.1.1" - sources."toml-2.3.3" + sources."toml-2.3.5" (sources."tough-cookie-2.4.3" // { dependencies = [ sources."punycode-1.4.1" @@ -57541,17 +57700,15 @@ in "@vue/cli" = nodeEnv.buildNodePackage { name = "_at_vue_slash_cli"; packageName = "@vue/cli"; - version = "3.2.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli/-/cli-3.2.1.tgz"; - sha512 = "40UjvK94VDlmQMqJwrGuZ7U7N1x2Wa6xK02yXn+030X4F04YZFUc5s3mF9NUSdxstp1bsMnOBFAXOlAdoz8ukw=="; + url = "https://registry.npmjs.org/@vue/cli/-/cli-3.3.0.tgz"; + sha512 = "iRncrlX1naNvNV9fgMuYVyHQhXpetbv+GqCM8HoXAekeF5iFhOCtA0U92pp4UnFIadc+kKtul+8VZZaHbrlIBQ=="; }; dependencies = [ sources."@akryum/winattr-3.0.0" sources."@apollographql/apollo-tools-0.2.9" - sources."@apollographql/apollo-upload-server-5.0.3" sources."@apollographql/graphql-playground-html-1.6.6" - sources."@babel/runtime-corejs2-7.2.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" sources."@protobufjs/aspromise-1.1.2" @@ -57574,73 +57731,64 @@ in sources."@types/express-serve-static-core-4.16.0" sources."@types/long-4.0.0" sources."@types/mime-2.0.0" - sources."@types/node-10.12.12" + sources."@types/node-10.12.18" sources."@types/range-parser-1.2.3" sources."@types/serve-static-1.13.2" sources."@types/ws-6.0.1" sources."@types/zen-observable-0.8.0" - sources."@vue/cli-shared-utils-3.2.0" - (sources."@vue/cli-ui-3.2.1" // { + sources."@vue/cli-shared-utils-3.3.0" + (sources."@vue/cli-ui-3.3.0" // { dependencies = [ sources."clone-2.1.2" ]; }) - sources."@vue/cli-ui-addon-webpack-3.2.1" - sources."@vue/cli-ui-addon-widgets-3.2.1" + sources."@vue/cli-ui-addon-webpack-3.3.0" + sources."@vue/cli-ui-addon-widgets-3.3.0" sources."abbrev-1.1.1" sources."accepts-1.3.5" sources."aggregate-error-1.0.0" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-align-2.0.0" sources."ansi-escapes-3.1.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" sources."anymatch-2.0.0" - sources."apollo-cache-1.1.21" - (sources."apollo-cache-control-0.3.3" // { + sources."apollo-cache-1.1.22" + (sources."apollo-cache-control-0.4.0" // { dependencies = [ - sources."graphql-extensions-0.3.3" + sources."graphql-extensions-0.4.0" ]; }) - sources."apollo-cache-inmemory-1.3.11" - sources."apollo-client-2.4.7" + sources."apollo-cache-inmemory-1.3.12" + sources."apollo-client-2.4.8" sources."apollo-datasource-0.2.1" - (sources."apollo-engine-reporting-0.1.3" // { + (sources."apollo-engine-reporting-0.2.0" // { dependencies = [ - sources."graphql-extensions-0.3.3" + sources."graphql-extensions-0.4.0" ]; }) - sources."apollo-engine-reporting-protobuf-0.1.0" - (sources."apollo-env-0.2.5" // { - dependencies = [ - sources."core-js-3.0.0-beta.4" - ]; - }) - sources."apollo-link-1.2.4" - sources."apollo-link-context-1.0.10" - sources."apollo-link-dedup-1.0.11" - sources."apollo-link-http-common-0.2.6" + sources."apollo-engine-reporting-protobuf-0.2.0" + sources."apollo-env-0.2.5" + sources."apollo-link-1.2.6" + sources."apollo-link-context-1.0.12" + sources."apollo-link-dedup-1.0.13" + sources."apollo-link-http-common-0.2.8" sources."apollo-link-persisted-queries-0.2.2" sources."apollo-link-state-0.4.2" - sources."apollo-link-ws-1.0.10" - (sources."apollo-server-caching-0.2.1" // { - dependencies = [ - sources."lru-cache-5.1.1" - sources."yallist-3.0.3" - ]; - }) - sources."apollo-server-core-2.2.6" + sources."apollo-link-ws-1.0.12" + sources."apollo-server-caching-0.2.1" + sources."apollo-server-core-2.3.1" sources."apollo-server-env-2.2.0" sources."apollo-server-errors-2.2.0" - sources."apollo-server-express-2.2.6" - sources."apollo-server-plugin-base-0.1.6" - (sources."apollo-tracing-0.3.3" // { + sources."apollo-server-express-2.3.1" + sources."apollo-server-plugin-base-0.2.1" + (sources."apollo-tracing-0.4.0" // { dependencies = [ - sources."graphql-extensions-0.3.3" + sources."graphql-extensions-0.4.0" ]; }) sources."apollo-upload-client-9.1.0" - sources."apollo-utilities-1.0.26" + sources."apollo-utilities-1.0.27" sources."argparse-1.0.10" sources."arr-diff-4.0.0" sources."arr-flatten-1.1.0" @@ -57679,6 +57827,7 @@ in (sources."body-parser-1.18.3" // { dependencies = [ sources."debug-2.6.9" + sources."http-errors-1.6.3" ]; }) sources."boxen-1.3.0" @@ -57691,13 +57840,7 @@ in sources."buffer-fill-1.0.0" sources."buffer-from-1.1.1" sources."builtins-1.0.3" - (sources."busboy-0.2.14" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.1.14" - sources."string_decoder-0.10.31" - ]; - }) + sources."busboy-0.3.0" sources."bytes-3.0.0" sources."cache-base-1.0.1" sources."call-me-maybe-1.0.1" @@ -57705,7 +57848,7 @@ in sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" sources."caw-2.0.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."chokidar-2.0.4" sources."ci-info-1.6.0" @@ -57748,16 +57891,21 @@ in sources."cookie-0.3.1" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-3.0.0-beta.8" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."create-error-class-3.0.2" sources."cross-spawn-6.0.5" - sources."cross-spawn-async-2.2.5" + (sources."cross-spawn-async-2.2.5" // { + dependencies = [ + sources."lru-cache-4.1.5" + sources."yallist-2.1.2" + ]; + }) sources."crypto-random-string-1.0.0" sources."csv-parser-1.12.1" sources."dashdash-1.14.1" - (sources."debug-3.2.6" // { + (sources."debug-4.1.1" // { dependencies = [ sources."ms-2.1.1" ]; @@ -57783,7 +57931,7 @@ in ]; }) sources."deep-extend-0.6.0" - sources."deepmerge-2.2.1" + sources."deepmerge-3.0.0" sources."defaults-1.0.3" sources."define-properties-1.1.3" sources."define-property-2.0.2" @@ -57792,13 +57940,7 @@ in sources."depd-1.1.2" sources."deprecated-decorator-0.1.6" sources."destroy-1.0.4" - (sources."dicer-0.2.5" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.1.14" - sources."string_decoder-0.10.31" - ]; - }) + sources."dicer-0.3.0" sources."diff-3.5.0" sources."dir-glob-2.0.0" sources."dot-prop-4.2.0" @@ -57816,8 +57958,8 @@ in sources."encodeurl-1.0.2" sources."end-of-stream-1.4.1" sources."entities-1.1.2" - sources."envinfo-5.12.1" - sources."es-abstract-1.12.0" + sources."envinfo-6.0.1" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -57873,7 +58015,7 @@ in sources."extract-files-4.1.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-2.0.1" - sources."fast-glob-2.2.4" + sources."fast-glob-2.2.6" sources."fast-json-stable-stringify-2.0.0" sources."fd-slicer-1.1.0" sources."figures-2.0.0" @@ -57899,9 +58041,10 @@ in sources."fragment-cache-0.2.1" sources."fresh-0.5.2" sources."from2-2.3.0" + sources."fs-capacitor-1.0.1" sources."fs-constants-1.0.0" sources."fs-exists-sync-0.1.0" - sources."fs-extra-6.0.1" + sources."fs-extra-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-1.2.4" sources."fswin-2.17.1227" @@ -57922,7 +58065,7 @@ in }) sources."glob-to-regexp-0.3.0" sources."global-dirs-0.1.1" - (sources."globby-8.0.1" // { + (sources."globby-8.0.2" // { dependencies = [ sources."slash-1.0.0" ]; @@ -57932,12 +58075,13 @@ in sources."graceful-fs-4.1.15" sources."graceful-readlink-1.0.1" sources."graphql-14.0.2" - sources."graphql-anywhere-4.1.23" - sources."graphql-extensions-0.3.6" + sources."graphql-anywhere-4.1.24" + sources."graphql-extensions-0.4.1" sources."graphql-subscriptions-1.0.0" sources."graphql-tag-2.10.0" sources."graphql-tools-4.0.3" sources."graphql-type-json-0.2.1" + sources."graphql-upload-8.0.3" sources."growly-1.3.0" sources."har-schema-2.0.0" sources."har-validator-5.1.3" @@ -57953,9 +58097,9 @@ in ]; }) sources."hash.js-1.1.7" - sources."hoek-5.0.4" + sources."hoek-6.1.2" sources."homedir-polyfill-1.0.1" - sources."http-errors-1.6.3" + sources."http-errors-1.7.1" sources."http-signature-1.2.0" sources."iconv-lite-0.4.23" sources."ieee754-1.1.12" @@ -58020,10 +58164,10 @@ in sources."isurl-1.0.0" sources."iterall-1.2.2" sources."javascript-stringify-1.6.0" - sources."joi-13.7.0" + sources."joi-14.3.1" sources."js-message-1.0.5" sources."js-queue-2.0.0" - sources."js-yaml-3.12.0" + sources."js-yaml-3.12.1" sources."jsbn-0.1.1" sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" @@ -58033,7 +58177,6 @@ in sources."jsonify-0.0.0" sources."jsprim-1.4.1" sources."kind-of-6.0.2" - sources."klaw-sync-4.0.0" sources."latest-version-3.1.0" sources."launch-editor-2.2.1" sources."lodash-4.17.11" @@ -58044,7 +58187,7 @@ in sources."long-4.0.0" sources."lowdb-1.0.0" sources."lowercase-keys-1.0.1" - sources."lru-cache-4.1.5" + sources."lru-cache-5.1.1" sources."make-dir-1.3.0" sources."make-error-1.3.5" sources."map-cache-0.2.2" @@ -58079,7 +58222,7 @@ in }) sources."ms-2.0.0" sources."mute-stream-0.0.7" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanoid-2.0.0" (sources."nanomatch-1.2.13" // { dependencies = [ @@ -58098,7 +58241,12 @@ in sources."node-fetch-2.3.0" sources."node-ipc-9.1.1" sources."node-notifier-5.3.0" - sources."nodemon-1.18.7" + (sources."nodemon-1.18.9" // { + dependencies = [ + sources."debug-3.2.6" + sources."ms-2.1.1" + ]; + }) sources."nopt-1.0.10" sources."normalize-path-2.1.1" sources."npm-conf-1.1.3" @@ -58128,7 +58276,7 @@ in sources."onetime-2.0.1" sources."opn-5.4.0" sources."optimism-0.6.8" - sources."ora-2.1.0" + sources."ora-3.0.0" sources."os-tmpdir-1.0.2" sources."p-finally-1.0.0" sources."package-json-4.0.1" @@ -58149,6 +58297,8 @@ in dependencies = [ sources."cross-spawn-5.1.0" sources."execa-0.9.0" + sources."lru-cache-4.1.5" + sources."yallist-2.1.2" ]; }) sources."pify-3.0.0" @@ -58170,13 +58320,17 @@ in sources."proxy-addr-2.0.4" sources."ps-list-4.1.0" sources."pseudomap-1.0.2" - sources."psl-1.1.29" - sources."pstree.remy-1.1.2" + sources."psl-1.1.31" + sources."pstree.remy-1.1.6" sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" sources."range-parser-1.2.0" - sources."raw-body-2.3.3" + (sources."raw-body-2.3.3" // { + dependencies = [ + sources."http-errors-1.6.3" + ]; + }) sources."rc-1.2.8" sources."readable-stream-2.3.6" sources."readdirp-2.2.1" @@ -58185,7 +58339,6 @@ in sources."source-map-0.6.1" ]; }) - sources."regenerator-runtime-0.12.1" (sources."regex-not-1.0.2" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -58200,13 +58353,13 @@ in sources."request-2.88.0" sources."request-promise-core-1.1.1" sources."request-promise-native-1.0.5" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" sources."retry-0.12.0" - sources."rimraf-2.6.2" - sources."rss-parser-3.5.4" + sources."rimraf-2.6.3" + sources."rss-parser-3.6.2" sources."run-async-2.3.0" sources."rxjs-6.3.3" sources."safe-buffer-5.1.2" @@ -58225,6 +58378,7 @@ in (sources."send-0.16.2" // { dependencies = [ sources."debug-2.6.9" + sources."http-errors-1.6.3" sources."statuses-1.4.0" ]; }) @@ -58268,7 +58422,7 @@ in }) sources."source-map-0.5.7" sources."source-map-resolve-0.5.2" - (sources."source-map-support-0.5.9" // { + (sources."source-map-support-0.5.10" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -58282,7 +58436,7 @@ in }) sources."split2-2.2.0" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -58334,6 +58488,8 @@ in dependencies = [ sources."cross-spawn-5.1.0" sources."execa-0.7.0" + sources."lru-cache-4.1.5" + sources."yallist-2.1.2" ]; }) sources."through-2.3.8" @@ -58354,11 +58510,8 @@ in ]; }) sources."to-regex-range-2.1.1" - (sources."topo-3.0.3" // { - dependencies = [ - sources."hoek-6.1.2" - ]; - }) + sources."toidentifier-1.0.0" + sources."topo-3.0.3" sources."touch-3.1.0" (sources."tough-cookie-2.4.3" // { dependencies = [ @@ -58410,7 +58563,11 @@ in sources."validate-npm-package-name-3.0.0" sources."vary-1.1.2" sources."verror-1.10.0" - sources."vue-cli-plugin-apollo-0.18.1" + (sources."vue-cli-plugin-apollo-0.18.1" // { + dependencies = [ + sources."deepmerge-2.2.1" + ]; + }) sources."watch-1.0.2" sources."wcwidth-1.0.1" sources."which-1.3.1" @@ -58422,7 +58579,7 @@ in sources."xml2js-0.4.19" sources."xmlbuilder-9.0.7" sources."xtend-4.0.1" - sources."yallist-2.1.2" + sources."yallist-3.0.3" (sources."yaml-front-matter-3.4.1" // { dependencies = [ sources."commander-1.0.0" @@ -58431,7 +58588,7 @@ in sources."yauzl-2.10.0" sources."yn-2.0.0" sources."zen-observable-0.8.11" - sources."zen-observable-ts-0.8.11" + sources."zen-observable-ts-0.8.13" ]; buildInputs = globalBuildInputs; meta = { @@ -58445,30 +58602,32 @@ in "@webassemblyjs/cli" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_cli"; packageName = "@webassemblyjs/cli"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/cli/-/cli-1.7.11.tgz"; - sha512 = "j2KPAIyvXa6fuOr5bQEEb8UHF7WCbEguia5BMJotgxNo37LA/1c4Do/rxFornYKkcmf5IOLjDr197SMUlys3+g=="; + url = "https://registry.npmjs.org/@webassemblyjs/cli/-/cli-1.8.0.tgz"; + sha512 = "kqBDQgMx1MUzqfMNuO62X+tfHNc9y0a30S7glATCqFaHVBb4ODRG0jmzcFBrs+FySgob5RgZBHM30c0ErvHpXw=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.7.11" - sources."@webassemblyjs/floating-point-hex-parser-1.7.11" - sources."@webassemblyjs/helper-api-error-1.7.11" - sources."@webassemblyjs/helper-code-frame-1.7.11" - sources."@webassemblyjs/helper-flaten-ast-1.7.11" - sources."@webassemblyjs/helper-fsm-1.7.11" - sources."@webassemblyjs/helper-module-context-1.7.11" - sources."@webassemblyjs/helper-wasm-bytecode-1.7.11" - sources."@webassemblyjs/ieee754-1.7.11" - sources."@webassemblyjs/leb128-1.7.11" - sources."@webassemblyjs/utf8-1.7.11" - sources."@webassemblyjs/validation-1.7.11" - sources."@webassemblyjs/wasm-parser-1.7.11" - sources."@webassemblyjs/wast-parser-1.7.11" - sources."@webassemblyjs/wast-printer-1.7.11" + sources."@webassemblyjs/ast-1.8.0" + sources."@webassemblyjs/floating-point-hex-parser-1.8.0" + sources."@webassemblyjs/helper-api-error-1.8.0" + sources."@webassemblyjs/helper-code-frame-1.8.0" + sources."@webassemblyjs/helper-compiler-1.8.0" + sources."@webassemblyjs/helper-flatten-ast-1.8.0" + sources."@webassemblyjs/helper-fsm-1.8.0" + sources."@webassemblyjs/helper-module-context-1.8.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.8.0" + sources."@webassemblyjs/ieee754-1.8.0" + sources."@webassemblyjs/leb128-1.8.0" + sources."@webassemblyjs/utf8-1.8.0" + sources."@webassemblyjs/validation-1.8.0" + sources."@webassemblyjs/wasm-parser-1.8.0" + sources."@webassemblyjs/wast-parser-1.8.0" + sources."@webassemblyjs/wast-printer-1.8.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.1" - sources."webassemblyjs-1.7.11" + sources."mamacro-0.0.3" + sources."webassemblyjs-1.8.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58481,30 +58640,32 @@ in "@webassemblyjs/repl" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_repl"; packageName = "@webassemblyjs/repl"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/repl/-/repl-1.7.11.tgz"; - sha512 = "rU4ikGGLw6rXQtYLzAvy3GDGpf/0FhKLmVUc3uQJbMQwDvW6FT8kp7sUiZYCwr/UECUurjj2fnGu4FDuIi2Iqg=="; + url = "https://registry.npmjs.org/@webassemblyjs/repl/-/repl-1.8.0.tgz"; + sha512 = "BoXkzmEnEL0m28y/SMEsdmVc+Eaxp+cgNQw7ZUhPgPFNgHlpqLvINk3XJoTrJsvVlVTKb2pArfrYjno/rZXR8Q=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.7.11" - sources."@webassemblyjs/floating-point-hex-parser-1.7.11" - sources."@webassemblyjs/helper-api-error-1.7.11" - sources."@webassemblyjs/helper-code-frame-1.7.11" - sources."@webassemblyjs/helper-flaten-ast-1.7.11" - sources."@webassemblyjs/helper-fsm-1.7.11" - sources."@webassemblyjs/helper-module-context-1.7.11" - sources."@webassemblyjs/helper-wasm-bytecode-1.7.11" - sources."@webassemblyjs/ieee754-1.7.11" - sources."@webassemblyjs/leb128-1.7.11" - sources."@webassemblyjs/utf8-1.7.11" - sources."@webassemblyjs/validation-1.7.11" - sources."@webassemblyjs/wasm-parser-1.7.11" - sources."@webassemblyjs/wast-parser-1.7.11" - sources."@webassemblyjs/wast-printer-1.7.11" + sources."@webassemblyjs/ast-1.8.0" + sources."@webassemblyjs/floating-point-hex-parser-1.8.0" + sources."@webassemblyjs/helper-api-error-1.8.0" + sources."@webassemblyjs/helper-code-frame-1.8.0" + sources."@webassemblyjs/helper-compiler-1.8.0" + sources."@webassemblyjs/helper-flatten-ast-1.8.0" + sources."@webassemblyjs/helper-fsm-1.8.0" + sources."@webassemblyjs/helper-module-context-1.8.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.8.0" + sources."@webassemblyjs/ieee754-1.8.0" + sources."@webassemblyjs/leb128-1.8.0" + sources."@webassemblyjs/utf8-1.8.0" + sources."@webassemblyjs/validation-1.8.0" + sources."@webassemblyjs/wasm-parser-1.8.0" + sources."@webassemblyjs/wast-parser-1.8.0" + sources."@webassemblyjs/wast-printer-1.8.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.1" - sources."webassemblyjs-1.7.11" + sources."mamacro-0.0.3" + sources."webassemblyjs-1.8.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58517,28 +58678,28 @@ in "@webassemblyjs/wasm-strip" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_wasm-strip"; packageName = "@webassemblyjs/wasm-strip"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-strip/-/wasm-strip-1.7.11.tgz"; - sha512 = "mHlWMZuNz/Or8GHH38HhMQ7O4m9N4XpVjL3I+oQ6emVyJqHvvgybn76lTaI8mKaEh3e4EmaUeIC9gknEhdaJVA=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-strip/-/wasm-strip-1.8.0.tgz"; + sha512 = "3u0YAFQkF1myzuWPGN/qN98bTg+MplDHaSRqN4P4nLv6vJBabUiqMaGkpNaX3NWG8nGG8wttllhXnnc0emOPvA=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.7.11" - sources."@webassemblyjs/floating-point-hex-parser-1.7.11" - sources."@webassemblyjs/helper-api-error-1.7.11" - sources."@webassemblyjs/helper-buffer-1.7.11" - sources."@webassemblyjs/helper-code-frame-1.7.11" - sources."@webassemblyjs/helper-fsm-1.7.11" - sources."@webassemblyjs/helper-module-context-1.7.11" - sources."@webassemblyjs/helper-wasm-bytecode-1.7.11" - sources."@webassemblyjs/helper-wasm-section-1.7.11" - sources."@webassemblyjs/ieee754-1.7.11" - sources."@webassemblyjs/leb128-1.7.11" - sources."@webassemblyjs/utf8-1.7.11" - sources."@webassemblyjs/wasm-gen-1.7.11" - sources."@webassemblyjs/wasm-parser-1.7.11" - sources."@webassemblyjs/wast-parser-1.7.11" - sources."@webassemblyjs/wast-printer-1.7.11" + sources."@webassemblyjs/ast-1.8.0" + sources."@webassemblyjs/floating-point-hex-parser-1.8.0" + sources."@webassemblyjs/helper-api-error-1.8.0" + sources."@webassemblyjs/helper-buffer-1.8.0" + sources."@webassemblyjs/helper-code-frame-1.8.0" + sources."@webassemblyjs/helper-fsm-1.8.0" + sources."@webassemblyjs/helper-module-context-1.8.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.8.0" + sources."@webassemblyjs/helper-wasm-section-1.8.0" + sources."@webassemblyjs/ieee754-1.8.0" + sources."@webassemblyjs/leb128-1.8.0" + sources."@webassemblyjs/utf8-1.8.0" + sources."@webassemblyjs/wasm-gen-1.8.0" + sources."@webassemblyjs/wasm-parser-1.8.0" + sources."@webassemblyjs/wast-parser-1.8.0" + sources."@webassemblyjs/wast-printer-1.8.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.1" ]; @@ -58553,35 +58714,35 @@ in "@webassemblyjs/wasm-text-gen" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_wasm-text-gen"; packageName = "@webassemblyjs/wasm-text-gen"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-text-gen/-/wasm-text-gen-1.7.11.tgz"; - sha512 = "hU3q8os4NyVxC0QpDcaPyUqsfL3aMw4vjIxhw83QbBUo/nJxqn7hQ5tcB/YiHpUxASrlEAt5dcuIupdto84DZA=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-text-gen/-/wasm-text-gen-1.8.0.tgz"; + sha512 = "6ptvCEaptgD6wDHBbcBHG4sx+WrNy4hjzKNpAPCMqhFarQKgHKOSQuM9iZEOxBUAC0lysG0G6l4redIbPCI6Wg=="; }; dependencies = [ sources."@babel/code-frame-7.0.0" - sources."@babel/generator-7.2.0" + sources."@babel/generator-7.2.2" sources."@babel/highlight-7.0.0" - sources."@babel/parser-7.2.0" - sources."@babel/template-7.1.2" - sources."@babel/types-7.2.0" - sources."@webassemblyjs/ast-1.7.11" - sources."@webassemblyjs/floating-point-hex-parser-1.7.11" - sources."@webassemblyjs/helper-api-error-1.7.11" - sources."@webassemblyjs/helper-code-frame-1.7.11" - sources."@webassemblyjs/helper-fsm-1.7.11" - sources."@webassemblyjs/helper-module-context-1.7.11" - sources."@webassemblyjs/helper-wasm-bytecode-1.7.11" - sources."@webassemblyjs/ieee754-1.7.11" - sources."@webassemblyjs/leb128-1.7.11" - sources."@webassemblyjs/utf8-1.7.11" - sources."@webassemblyjs/wasm-parser-1.7.11" - sources."@webassemblyjs/wast-parser-1.7.11" - sources."@webassemblyjs/wast-printer-1.7.11" + sources."@babel/parser-7.2.3" + sources."@babel/template-7.2.2" + sources."@babel/types-7.2.2" + sources."@webassemblyjs/ast-1.8.0" + sources."@webassemblyjs/floating-point-hex-parser-1.8.0" + sources."@webassemblyjs/helper-api-error-1.8.0" + sources."@webassemblyjs/helper-code-frame-1.8.0" + sources."@webassemblyjs/helper-fsm-1.8.0" + sources."@webassemblyjs/helper-module-context-1.8.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.8.0" + sources."@webassemblyjs/ieee754-1.8.0" + sources."@webassemblyjs/leb128-1.8.0" + sources."@webassemblyjs/utf8-1.8.0" + sources."@webassemblyjs/wasm-parser-1.8.0" + sources."@webassemblyjs/wast-parser-1.8.0" + sources."@webassemblyjs/wast-printer-1.8.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.1" sources."ansi-styles-3.2.1" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."commander-2.19.0" @@ -58607,21 +58768,21 @@ in "@webassemblyjs/wast-refmt" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_wast-refmt"; packageName = "@webassemblyjs/wast-refmt"; - version = "1.7.11"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wast-refmt/-/wast-refmt-1.7.11.tgz"; - sha512 = "o5PX9iAsVyEjt5HptTCyHPctSs3J17l33bGSSOejqEZpdRbKqPF3+5AXbBflU4eDOEU1daKqbVq4bRAYcH6dfg=="; + url = "https://registry.npmjs.org/@webassemblyjs/wast-refmt/-/wast-refmt-1.8.0.tgz"; + sha512 = "jHbX9oi5J19xklru38TM5ImxRBcac5Jx5BtOYePzR/e5IOBMCZFNLWCUQJb5b6Pj/2MWJ4qFlGGaQhwyoFGloQ=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.7.11" - sources."@webassemblyjs/floating-point-hex-parser-1.7.11" - sources."@webassemblyjs/helper-api-error-1.7.11" - sources."@webassemblyjs/helper-code-frame-1.7.11" - sources."@webassemblyjs/helper-fsm-1.7.11" - sources."@webassemblyjs/helper-module-context-1.7.11" - sources."@webassemblyjs/helper-wasm-bytecode-1.7.11" - sources."@webassemblyjs/wast-parser-1.7.11" - sources."@webassemblyjs/wast-printer-1.7.11" + sources."@webassemblyjs/ast-1.8.0" + sources."@webassemblyjs/floating-point-hex-parser-1.8.0" + sources."@webassemblyjs/helper-api-error-1.8.0" + sources."@webassemblyjs/helper-code-frame-1.8.0" + sources."@webassemblyjs/helper-fsm-1.8.0" + sources."@webassemblyjs/helper-module-context-1.8.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.8.0" + sources."@webassemblyjs/wast-parser-1.8.0" + sources."@webassemblyjs/wast-printer-1.8.0" sources."@xtuc/long-4.2.1" ]; buildInputs = globalBuildInputs; @@ -58635,10 +58796,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "4.27.1"; + version = "4.28.4"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.27.1.tgz"; - sha512 = "WArHiLvHrlfyRM8i7f+2SFbr/XbQ0bXqTkPF8JpHOzub5482Y3wx7rEO8stuLGOKOgZJcqcisLhD7LrM/+fVMw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.28.4.tgz"; + sha512 = "NxjD61WsK/a3JIdwWjtIpimmvE6UrRi3yG54/74Hk9rwNj5FPkA4DJCf1z4ByDWLkvZhTZE+P3C/eh6UD5lDcw=="; }; dependencies = [ sources."@webassemblyjs/ast-1.7.11" @@ -58663,7 +58824,7 @@ in sources."@xtuc/long-4.2.1" sources."acorn-5.7.3" sources."acorn-dynamic-import-3.0.0" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ajv-errors-1.0.1" sources."ajv-keywords-3.2.0" sources."anymatch-2.0.0" @@ -58689,7 +58850,7 @@ in ]; }) sources."base64-js-1.3.0" - sources."big.js-3.2.0" + sources."big.js-5.2.2" sources."binary-extensions-1.12.0" sources."bluebird-3.5.3" sources."bn.js-4.11.8" @@ -58710,7 +58871,7 @@ in sources."buffer-from-1.1.1" sources."buffer-xor-1.0.3" sources."builtin-status-codes-3.0.0" - sources."cacache-11.3.1" + sources."cacache-11.3.2" sources."cache-base-1.0.1" sources."chokidar-2.0.4" sources."chownr-1.1.1" @@ -58856,13 +59017,13 @@ in sources."isobject-3.0.1" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-0.4.1" - sources."json5-0.5.1" + sources."json5-1.0.1" sources."kind-of-6.0.2" sources."loader-runner-2.3.1" - sources."loader-utils-1.1.0" + sources."loader-utils-1.2.3" sources."locate-path-3.0.0" sources."lodash.debounce-4.0.8" - sources."lru-cache-4.1.5" + sources."lru-cache-5.1.1" sources."make-dir-1.3.0" sources."map-cache-0.2.2" sources."map-visit-1.0.0" @@ -58873,17 +59034,21 @@ in sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-3.0.4" - sources."minimist-0.0.8" + sources."minimist-1.2.0" sources."mississippi-3.0.0" (sources."mixin-deep-1.3.1" // { dependencies = [ sources."is-extendable-1.0.1" ]; }) - sources."mkdirp-0.5.1" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) sources."move-concurrently-1.0.1" sources."ms-2.0.0" - sources."nan-2.11.1" + sources."nan-2.12.1" sources."nanomatch-1.2.13" sources."neo-async-2.6.0" (sources."node-libs-browser-2.1.0" // { @@ -58909,7 +59074,7 @@ in sources."object.pick-1.3.0" sources."once-1.4.0" sources."os-browserify-0.3.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."pako-1.0.7" @@ -58928,7 +59093,6 @@ in sources."process-nextick-args-2.0.0" sources."promise-inflight-1.0.1" sources."prr-1.0.1" - sources."pseudomap-1.0.2" sources."public-encrypt-4.0.3" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { @@ -58949,13 +59113,13 @@ in sources."repeat-string-1.6.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."ripemd160-2.0.2" sources."run-queue-1.0.3" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."schema-utils-0.4.7" - sources."serialize-javascript-1.5.0" + sources."serialize-javascript-1.6.1" (sources."set-value-2.0.0" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -58994,7 +59158,7 @@ in sources."source-list-map-2.0.1" sources."source-map-0.5.7" sources."source-map-resolve-0.5.2" - (sources."source-map-support-0.5.9" // { + (sources."source-map-support-0.5.10" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -59025,12 +59189,12 @@ in sources."stream-shift-1.0.0" sources."string_decoder-1.1.1" sources."tapable-1.1.1" - (sources."terser-3.11.0" // { + (sources."terser-3.14.1" // { dependencies = [ sources."source-map-0.6.1" ]; }) - (sources."terser-webpack-plugin-1.1.0" // { + (sources."terser-webpack-plugin-1.2.1" // { dependencies = [ sources."schema-utils-1.0.0" sources."source-map-0.6.1" @@ -59089,7 +59253,7 @@ in sources."wrappy-1.0.2" sources."xtend-4.0.1" sources."y18n-4.0.0" - sources."yallist-2.1.2" + sources."yallist-3.0.3" ]; buildInputs = globalBuildInputs; meta = { @@ -59100,6 +59264,340 @@ in production = true; bypassCache = true; }; + webpack-cli = nodeEnv.buildNodePackage { + name = "webpack-cli"; + packageName = "webpack-cli"; + version = "3.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.2.1.tgz"; + sha512 = "jeJveHwz/vwpJ3B8bxEL5a/rVKIpRNJDsKggfKnxuYeohNDW4Y/wB9N/XHJA093qZyS0r6mYL+/crLsIol4WKA=="; + }; + dependencies = [ + sources."ansi-regex-3.0.0" + sources."ansi-styles-3.2.1" + sources."arr-diff-4.0.0" + sources."arr-flatten-1.1.0" + sources."arr-union-3.1.0" + sources."array-unique-0.3.2" + sources."assign-symbols-1.0.0" + sources."atob-2.1.2" + (sources."base-0.11.2" // { + dependencies = [ + sources."define-property-1.0.0" + ]; + }) + sources."big.js-5.2.2" + (sources."braces-2.3.2" // { + dependencies = [ + sources."extend-shallow-2.0.1" + ]; + }) + sources."cache-base-1.0.1" + sources."camelcase-5.0.0" + sources."chalk-2.4.2" + (sources."class-utils-0.3.6" // { + dependencies = [ + sources."define-property-0.2.5" + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cliui-4.1.0" + sources."code-point-at-1.1.0" + sources."collection-visit-1.0.0" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."component-emitter-1.2.1" + sources."copy-descriptor-0.1.1" + sources."core-util-is-1.0.2" + sources."cross-spawn-6.0.5" + sources."debug-2.6.9" + sources."decamelize-1.2.0" + sources."decode-uri-component-0.2.0" + sources."define-property-2.0.2" + sources."detect-file-1.0.0" + sources."emojis-list-2.1.0" + sources."end-of-stream-1.4.1" + sources."enhanced-resolve-4.1.0" + sources."errno-0.1.7" + sources."escape-string-regexp-1.0.5" + sources."execa-1.0.0" + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."extend-shallow-2.0.1" + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."expand-tilde-2.0.2" + (sources."extend-shallow-3.0.2" // { + dependencies = [ + sources."is-extendable-1.0.1" + ]; + }) + (sources."extglob-2.0.4" // { + dependencies = [ + sources."define-property-1.0.0" + sources."extend-shallow-2.0.1" + ]; + }) + (sources."fill-range-4.0.0" // { + dependencies = [ + sources."extend-shallow-2.0.1" + ]; + }) + sources."find-up-3.0.0" + sources."findup-sync-2.0.0" + sources."for-in-1.0.2" + sources."fragment-cache-0.2.1" + sources."get-caller-file-1.0.3" + sources."get-stream-4.1.0" + sources."get-value-2.0.6" + sources."global-modules-1.0.0" + sources."global-modules-path-2.3.1" + sources."global-prefix-1.0.2" + sources."graceful-fs-4.1.15" + sources."has-flag-3.0.0" + sources."has-value-1.0.0" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."homedir-polyfill-1.0.1" + sources."import-local-2.0.0" + sources."inherits-2.0.3" + sources."ini-1.3.5" + sources."interpret-1.2.0" + sources."invert-kv-2.0.0" + sources."is-accessor-descriptor-1.0.0" + sources."is-buffer-1.1.6" + sources."is-data-descriptor-1.0.0" + sources."is-descriptor-1.0.2" + sources."is-extendable-0.1.1" + sources."is-extglob-2.1.1" + sources."is-fullwidth-code-point-1.0.0" + sources."is-glob-3.1.0" + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."is-plain-object-2.0.4" + sources."is-stream-1.1.0" + sources."is-windows-1.0.2" + sources."isarray-1.0.0" + sources."isexe-2.0.0" + sources."isobject-3.0.1" + sources."json5-1.0.1" + sources."kind-of-6.0.2" + sources."lcid-2.0.0" + sources."lightercollective-0.1.0" + sources."loader-utils-1.2.3" + sources."locate-path-3.0.0" + sources."map-age-cleaner-0.1.3" + sources."map-cache-0.2.2" + sources."map-visit-1.0.0" + sources."mem-4.0.0" + sources."memory-fs-0.4.1" + sources."micromatch-3.1.10" + sources."mimic-fn-1.2.0" + sources."minimist-1.2.0" + (sources."mixin-deep-1.3.1" // { + dependencies = [ + sources."is-extendable-1.0.1" + ]; + }) + sources."ms-2.0.0" + sources."nanomatch-1.2.13" + sources."nice-try-1.0.5" + sources."npm-run-path-2.0.2" + sources."number-is-nan-1.0.1" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-accessor-descriptor-0.1.6" + sources."is-data-descriptor-0.1.4" + (sources."is-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."kind-of-3.2.2" + ]; + }) + sources."object-visit-1.0.1" + sources."object.pick-1.3.0" + sources."once-1.4.0" + sources."os-locale-3.1.0" + sources."p-defer-1.0.0" + sources."p-finally-1.0.0" + sources."p-is-promise-1.1.0" + sources."p-limit-2.1.0" + sources."p-locate-3.0.0" + sources."p-try-2.0.0" + sources."parse-passwd-1.0.0" + sources."pascalcase-0.1.1" + sources."path-exists-3.0.0" + sources."path-key-2.0.1" + sources."pkg-dir-3.0.0" + sources."posix-character-classes-0.1.1" + sources."process-nextick-args-2.0.0" + sources."prr-1.0.1" + sources."pump-3.0.0" + sources."readable-stream-2.3.6" + sources."regex-not-1.0.2" + sources."repeat-element-1.1.3" + sources."repeat-string-1.6.1" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."resolve-cwd-2.0.0" + sources."resolve-dir-1.0.1" + sources."resolve-from-3.0.0" + sources."resolve-url-0.2.1" + sources."ret-0.1.15" + sources."safe-buffer-5.1.2" + sources."safe-regex-1.1.0" + sources."semver-5.6.0" + sources."set-blocking-2.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."extend-shallow-2.0.1" + ]; + }) + sources."shebang-command-1.2.0" + sources."shebang-regex-1.0.0" + sources."signal-exit-3.0.2" + (sources."snapdragon-0.8.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."extend-shallow-2.0.1" + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."snapdragon-node-2.1.1" // { + dependencies = [ + sources."define-property-1.0.0" + ]; + }) + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.2" + sources."source-map-url-0.4.0" + sources."split-string-3.1.0" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."string-width-2.1.1" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."string_decoder-1.1.1" + sources."strip-ansi-4.0.0" + sources."strip-eof-1.0.0" + sources."supports-color-5.5.0" + sources."tapable-1.1.1" + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."to-regex-3.0.2" + sources."to-regex-range-2.1.1" + (sources."union-value-1.0.0" // { + dependencies = [ + sources."extend-shallow-2.0.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { + dependencies = [ + sources."isobject-2.1.0" + ]; + }) + sources."has-values-0.1.4" + ]; + }) + sources."urix-0.1.0" + sources."use-3.1.1" + sources."util-deprecate-1.0.2" + sources."v8-compile-cache-2.0.2" + sources."which-1.3.1" + sources."which-module-2.0.0" + (sources."wrap-ansi-2.1.0" // { + dependencies = [ + sources."ansi-regex-2.1.1" + sources."string-width-1.0.2" + sources."strip-ansi-3.0.1" + ]; + }) + sources."wrappy-1.0.2" + sources."y18n-4.0.0" + sources."yargs-12.0.5" + sources."yargs-parser-11.1.1" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "CLI for webpack & friends"; + homepage = "https://github.com/webpack/webpack-cli#readme"; + license = "MIT"; + }; + production = true; + bypassCache = true; + }; webtorrent-cli = nodeEnv.buildNodePackage { name = "webtorrent-cli"; packageName = "webtorrent-cli"; @@ -59153,7 +59651,7 @@ in sources."buffer-fill-1.0.0" sources."buffer-from-1.1.1" sources."buffer-indexof-1.1.1" - sources."bufferutil-4.0.0" + sources."bufferutil-4.0.1" sources."bufferview-1.0.1" sources."bytebuffer-3.5.5" sources."castv2-0.1.9" @@ -59243,11 +59741,7 @@ in sources."magnet-uri-5.2.4" sources."mdns-js-0.5.0" sources."mdns-js-packet-0.2.0" - (sources."mediasource-2.2.2" // { - dependencies = [ - sources."readable-stream-2.3.6" - ]; - }) + sources."mediasource-2.3.0" sources."memory-chunk-store-1.3.0" sources."mime-2.4.0" sources."mimic-response-1.0.1" @@ -59258,7 +59752,7 @@ in sources."minimist-0.0.8" ]; }) - sources."moment-2.22.2" + sources."moment-2.23.0" sources."mp4-box-encoding-1.3.0" (sources."mp4-stream-2.0.3" // { dependencies = [ @@ -59279,7 +59773,7 @@ in sources."netmask-1.0.6" sources."network-address-1.1.2" sources."next-event-1.0.0" - sources."node-gyp-build-3.4.0" + sources."node-gyp-build-3.7.0" sources."node-ssdp-2.9.1" sources."nodebmc-0.0.7" sources."once-1.4.0" @@ -59311,7 +59805,7 @@ in sources."randombytes-2.0.6" sources."range-parser-1.2.0" sources."range-slice-stream-2.0.0" - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" sources."record-cache-1.1.0" (sources."render-media-3.1.3" // { dependencies = [ @@ -59319,7 +59813,7 @@ in sources."ms-2.1.1" ]; }) - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-parallel-1.1.9" sources."run-parallel-limit-1.0.5" sources."run-series-1.1.8" @@ -59329,9 +59823,9 @@ in sources."semver-5.1.1" sources."simple-concat-1.0.0" sources."simple-get-2.8.1" - (sources."simple-peer-9.1.2" // { + (sources."simple-peer-9.2.0" // { dependencies = [ - sources."debug-3.2.6" + sources."debug-4.1.1" sources."ms-2.1.1" sources."readable-stream-2.3.6" ]; @@ -59377,13 +59871,13 @@ in ]; }) sources."ut_pex-1.2.1" - sources."utf-8-validate-5.0.1" + sources."utf-8-validate-5.0.2" sources."util-deprecate-1.0.2" sources."videostream-2.6.0" sources."vlc-command-1.1.2" - (sources."webtorrent-0.102.4" // { + (sources."webtorrent-0.103.0" // { dependencies = [ - sources."debug-3.2.6" + sources."debug-4.1.1" sources."ms-2.1.1" sources."simple-get-3.0.3" ]; @@ -59408,21 +59902,21 @@ in web-ext = nodeEnv.buildNodePackage { name = "web-ext"; packageName = "web-ext"; - version = "2.9.2"; + version = "2.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/web-ext/-/web-ext-2.9.2.tgz"; - sha512 = "eJYKR7BMlpWXSeOP91LvsQkLHKcRE8wWkQYdlEkHzntASlFMbGZcIk6/R5myA/Yo5E87WWoCmqKO9rdUSVtQMA=="; + url = "https://registry.npmjs.org/web-ext/-/web-ext-2.9.3.tgz"; + sha512 = "aZnlxuYOMUUBS5C8NBhhAj7T0ouJexlW5Cx5ObtOheoguG3fqXUl+KTY19L1Am/bJoyHC8otGTgew9Z0WHeTtg=="; }; dependencies = [ sources."@babel/polyfill-7.0.0" (sources."@babel/register-7.0.0" // { dependencies = [ - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" ]; }) sources."@cliqz-oss/firefox-client-0.3.1" sources."@cliqz-oss/node-firefox-connect-1.2.1" - sources."@types/node-10.12.12" + sources."@types/node-10.12.18" sources."@yarnpkg/lockfile-1.1.0" sources."JSONSelect-0.2.1" sources."abbrev-1.1.1" @@ -59435,11 +59929,11 @@ in sources."adbkit-2.11.0" sources."adbkit-logcat-1.1.0" sources."adbkit-monkey-1.0.1" - (sources."addons-linter-1.3.8" // { + (sources."addons-linter-1.4.1" // { dependencies = [ sources."find-up-3.0.0" sources."locate-path-3.0.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."source-map-support-0.5.6" @@ -59449,7 +59943,7 @@ in }) sources."adm-zip-0.4.13" sources."agent-base-4.2.1" - sources."ajv-6.5.4" + sources."ajv-6.5.5" sources."ajv-keywords-3.2.0" sources."ajv-merge-patch-4.1.0" sources."ansi-align-2.0.0" @@ -59490,7 +59984,7 @@ in sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" - sources."ast-types-0.11.7" + sources."ast-types-0.12.1" sources."async-0.2.10" sources."async-each-1.0.1" sources."asynckit-0.4.0" @@ -59553,7 +60047,11 @@ in sources."chalk-2.4.0" sources."chardet-0.4.2" sources."cheerio-1.0.0-rc.2" - sources."chokidar-2.0.4" + (sources."chokidar-2.0.4" // { + dependencies = [ + sources."fsevents-1.2.4" + ]; + }) sources."circular-json-0.3.3" (sources."class-utils-0.3.6" // { dependencies = [ @@ -59610,7 +60108,7 @@ in }) sources."configstore-3.1.2" sources."copy-descriptor-0.1.1" - sources."core-js-2.6.0" + sources."core-js-2.6.2" sources."core-util-is-1.0.2" sources."crc-3.8.0" (sources."crc32-stream-2.0.0" // { @@ -59647,20 +60145,21 @@ in sources."degenerator-1.0.4" sources."delayed-stream-1.0.0" sources."depd-1.1.2" - (sources."dispensary-0.26.0" // { + (sources."dispensary-0.27.0" // { dependencies = [ sources."async-2.6.1" sources."decamelize-1.2.0" sources."find-up-3.0.0" sources."locate-path-3.0.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."pino-5.8.1" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" sources."yargs-12.0.5" ]; }) + sources."dockerfile-ast-0.0.12" sources."doctrine-2.1.0" (sources."dom-serializer-0.1.0" // { dependencies = [ @@ -59680,7 +60179,7 @@ in sources."end-of-stream-1.4.1" sources."entities-1.1.2" sources."error-ex-1.3.2" - sources."es-abstract-1.12.0" + sources."es-abstract-1.13.0" sources."es-to-primitive-1.2.0" sources."es5-ext-0.10.46" sources."es6-error-4.1.1" @@ -59740,9 +60239,10 @@ in }) sources."eslint-scope-4.0.0" sources."eslint-visitor-keys-1.0.0" - (sources."espree-4.0.0" // { + (sources."espree-4.1.0" // { dependencies = [ - sources."acorn-jsx-4.1.1" + sources."acorn-6.0.5" + sources."acorn-jsx-5.0.1" ]; }) sources."esprima-3.1.3" @@ -59826,7 +60326,7 @@ in sources."fs-constants-1.0.0" sources."fs-extra-4.0.3" sources."fs.realpath-1.0.0" - sources."fsevents-1.2.4" + sources."fsevents-2.0.1" (sources."ftp-0.3.10" // { dependencies = [ sources."isarray-0.0.1" @@ -59870,18 +60370,14 @@ in ]; }) sources."global-dirs-0.1.1" - sources."globals-11.9.0" + sources."globals-11.10.0" sources."got-6.7.1" sources."graceful-fs-4.1.15" sources."graceful-readlink-1.0.1" sources."graphlib-2.1.7" sources."growly-1.3.0" sources."har-schema-2.0.0" - (sources."har-validator-5.1.3" // { - dependencies = [ - sources."ajv-6.6.1" - ]; - }) + sources."har-validator-5.1.3" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-color-0.1.7" @@ -59929,7 +60425,7 @@ in sources."strip-ansi-4.0.0" ]; }) - sources."interpret-1.1.0" + sources."interpret-1.2.0" sources."invert-kv-2.0.0" sources."ip-1.1.5" sources."is-absolute-0.1.7" @@ -59988,7 +60484,7 @@ in sources."jetpack-id-1.0.0" sources."js-select-0.6.0" sources."js-tokens-3.0.2" - (sources."js-yaml-3.12.0" // { + (sources."js-yaml-3.12.1" // { dependencies = [ sources."esprima-4.0.1" ]; @@ -60091,7 +60587,7 @@ in sources."minimist-0.0.8" ]; }) - sources."moment-2.22.2" + sources."moment-2.23.0" sources."ms-2.0.0" sources."multimatch-2.1.0" sources."mute-stream-0.0.7" @@ -60102,7 +60598,7 @@ in ]; }) sources."mz-2.7.0" - sources."nan-2.11.1" + sources."nan-2.12.1" (sources."nanomatch-1.2.13" // { dependencies = [ sources."kind-of-6.0.2" @@ -60206,16 +60702,16 @@ in sources."pify-3.0.0" sources."pinkie-2.0.4" sources."pinkie-promise-2.0.1" - sources."pino-5.5.0" + sources."pino-5.9.0" sources."pino-std-serializers-2.3.0" sources."pirates-4.0.0" sources."pkg-dir-2.0.0" sources."pluralize-7.0.0" sources."po2json-0.4.5" sources."posix-character-classes-0.1.1" - (sources."postcss-7.0.5" // { + (sources."postcss-7.0.6" // { dependencies = [ - sources."chalk-2.4.1" + sources."chalk-2.4.2" ]; }) sources."prelude-ls-1.1.2" @@ -60233,7 +60729,7 @@ in }) sources."proxy-from-env-1.0.0" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" @@ -60251,7 +60747,7 @@ in sources."path-exists-2.1.0" ]; }) - sources."readable-stream-3.0.6" + sources."readable-stream-3.1.1" (sources."readdirp-2.2.1" // { dependencies = [ sources."readable-stream-2.3.6" @@ -60285,12 +60781,12 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."require-uncached-1.0.3" - sources."resolve-1.8.1" + sources."resolve-1.9.0" sources."resolve-from-1.0.1" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" - sources."rimraf-2.6.2" + sources."rimraf-2.6.3" sources."run-async-2.3.0" sources."rx-lite-3.1.2" sources."rx-lite-aggregates-4.0.8" @@ -60319,7 +60815,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shell-quote-1.6.1" - sources."shelljs-0.8.2" + sources."shelljs-0.8.3" sources."shellwords-0.1.1" (sources."sign-addon-0.3.1" // { dependencies = [ @@ -60371,15 +60867,15 @@ in ]; }) sources."snapdragon-util-3.0.1" - (sources."snyk-1.103.2" // { + (sources."snyk-1.110.2" // { dependencies = [ sources."ansi-regex-3.0.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."debug-3.2.6" sources."inquirer-3.3.0" sources."ms-2.1.1" sources."rx-lite-4.0.8" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" sources."strip-ansi-4.0.0" ]; }) @@ -60389,25 +60885,25 @@ in sources."ms-2.1.1" ]; }) - (sources."snyk-docker-plugin-1.12.0" // { + (sources."snyk-docker-plugin-1.12.3" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" ]; }) - sources."snyk-go-plugin-1.5.2" - sources."snyk-gradle-plugin-2.1.0" - (sources."snyk-module-1.8.2" // { + sources."snyk-go-plugin-1.6.0" + sources."snyk-gradle-plugin-2.1.1" + (sources."snyk-module-1.9.1" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" ]; }) sources."snyk-mvn-plugin-2.0.0" - (sources."snyk-nodejs-lockfile-parser-1.5.1" // { + (sources."snyk-nodejs-lockfile-parser-1.7.1" // { dependencies = [ sources."lodash-4.17.10" - sources."source-map-support-0.5.9" + sources."source-map-support-0.5.10" ]; }) (sources."snyk-nuget-plugin-1.6.5" // { @@ -60422,20 +60918,20 @@ in sources."ms-2.1.1" ]; }) - (sources."snyk-policy-1.12.0" // { + (sources."snyk-policy-1.13.1" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" ]; }) - sources."snyk-python-plugin-1.8.2" + sources."snyk-python-plugin-1.9.0" (sources."snyk-resolve-1.0.1" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" ]; }) - (sources."snyk-resolve-deps-4.0.1" // { + (sources."snyk-resolve-deps-4.0.2" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.1" @@ -60460,11 +60956,11 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-0.3.3" sources."split-string-3.1.0" sources."sprintf-js-1.0.3" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -60535,7 +61031,7 @@ in sources."to-object-path-0.3.0" sources."to-regex-3.0.2" sources."to-regex-range-2.1.1" - sources."toml-2.3.3" + sources."toml-2.3.5" sources."tosource-1.0.0" (sources."tough-cookie-2.4.3" // { dependencies = [ @@ -60583,6 +61079,7 @@ in sources."uuid-3.3.2" sources."validate-npm-package-license-3.0.4" sources."verror-1.10.0" + sources."vscode-languageserver-types-3.14.0" sources."watchpack-1.5.0" sources."wcwidth-1.0.1" sources."webidl-conversions-4.0.2" @@ -60674,10 +61171,10 @@ in yarn = nodeEnv.buildNodePackage { name = "yarn"; packageName = "yarn"; - version = "1.12.3"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.12.3.tgz"; - sha512 = "8f5rWNDvkhAmCxmn8C0LsNWMxTYVk4VGKiq0sIB6HGZjaZTHsGIH87SUmVDUEd2Wk54bqKoUlbVWgQFCQhRkVw=="; + url = "https://registry.npmjs.org/yarn/-/yarn-1.13.0.tgz"; + sha512 = "Unfw2eefv8imt4ZMPhvFVP44WCz38huDxkHs+Yqrx4wBTK75Tr0mh3V4rh+2Nw5iQq0rcM/VafotCZo9qTb5DA=="; }; buildInputs = globalBuildInputs; meta = { @@ -60701,7 +61198,7 @@ in sources."@nodelib/fs.stat-1.1.3" sources."@sindresorhus/is-0.7.0" sources."aggregate-error-1.0.0" - sources."ajv-6.6.1" + sources."ajv-6.6.2" sources."ansi-0.3.1" sources."ansi-align-2.0.0" sources."ansi-escapes-3.1.0" @@ -60762,7 +61259,7 @@ in sources."camelcase-keys-2.1.0" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" - sources."chalk-2.4.1" + sources."chalk-2.4.2" sources."chardet-0.7.0" sources."ci-info-1.6.0" (sources."class-utils-0.3.6" // { @@ -60878,7 +61375,7 @@ in }) sources."extsprintf-1.3.0" sources."fast-deep-equal-2.0.1" - sources."fast-glob-2.2.4" + sources."fast-glob-2.2.6" sources."fast-json-stable-stringify-2.0.0" sources."figures-2.0.0" (sources."fill-range-4.0.0" // { @@ -60912,7 +61409,7 @@ in sources."glob-to-regexp-0.3.0" sources."global-dirs-0.1.1" sources."global-tunnel-ng-2.7.1" - sources."globby-8.0.1" + sources."globby-8.0.2" sources."got-8.3.2" sources."graceful-fs-4.1.15" sources."grouped-queue-0.3.3" @@ -61149,7 +61646,7 @@ in sources."process-nextick-args-2.0.0" sources."proto-list-1.2.4" sources."pseudomap-1.0.2" - sources."psl-1.1.29" + sources."psl-1.1.31" sources."punycode-2.1.1" sources."qs-6.5.2" sources."query-string-5.1.1" @@ -61160,7 +61657,7 @@ in sources."find-up-3.0.0" sources."load-json-file-4.0.0" sources."locate-path-3.0.0" - sources."p-limit-2.0.0" + sources."p-limit-2.1.0" sources."p-locate-3.0.0" sources."p-try-2.0.0" sources."parse-json-4.0.0" @@ -61251,9 +61748,9 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.2" + sources."spdx-license-ids-3.0.3" sources."split-string-3.1.0" - sources."sshpk-1.15.2" + sources."sshpk-1.16.0" (sources."static-extend-0.1.2" // { dependencies = [ sources."define-property-0.2.5" @@ -61350,7 +61847,7 @@ in sources."tunnel-0.0.6" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."twig-1.12.0" + sources."twig-1.13.0" sources."typedarray-0.0.6" (sources."union-value-1.0.0" // { dependencies = [ From 8c468623b4b798dd6eca6d61c6719aed0eaa524b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 15 Jan 2019 00:18:48 +0800 Subject: [PATCH 138/167] add myself to maintainers list --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index bda3ffbc05ae..c531ac22bdd8 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3930,6 +3930,11 @@ github = "sauyon"; name = "Sauyon Lee"; }; + sb0 = { + email = "sb@m-labs.hk"; + github = "sbourdeauducq"; + name = "Sébastien Bourdeauducq"; + }; sboosali = { email = "SamBoosalis@gmail.com"; github = "sboosali"; From 31cd0f806078a7db5a04c371b8be72cb7be69970 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 15 Jan 2019 00:28:22 +0800 Subject: [PATCH 139/167] pythonPackages.pyvcd: init at 0.1.4 --- .../python-modules/pyvcd/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/pyvcd/default.nix diff --git a/pkgs/development/python-modules/pyvcd/default.nix b/pkgs/development/python-modules/pyvcd/default.nix new file mode 100644 index 000000000000..b3d4483d65dc --- /dev/null +++ b/pkgs/development/python-modules/pyvcd/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchPypi +, setuptools_scm +, six +, pytest }: + +buildPythonPackage rec { + version = "0.1.4"; + pname = "pyvcd"; + + src = fetchPypi { + inherit pname version; + sha256 = "0dv9wac5y5z9j54ypyc59csxdiy9ybpphw9ipxp1k8nfg65q9jxx"; + }; + + buildInputs = [ setuptools_scm ]; + propagatedBuildInputs = [ six ]; + + checkPhase = '' + py.test + ''; + + checkInputs = [ pytest ]; + + meta = with lib; { + description = "Python package for writing Value Change Dump (VCD) files"; + homepage = https://github.com/SanDisk-Open-Source/pyvcd; + license = licenses.mit; + maintainers = [ maintainers.sb0 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 923834df80cc..8ebd6d3fc346 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -698,6 +698,8 @@ in { pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ }); + pyvcd = callPackage ../development/python-modules/pyvcd { }; + pyvoro = callPackage ../development/python-modules/pyvoro { }; relatorio = callPackage ../development/python-modules/relatorio { }; From e0fad4b9c57b6d7f67a9b667cf80850bcca57e30 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 14 Jan 2019 19:45:26 +0100 Subject: [PATCH 140/167] =?UTF-8?q?pulseeffects:=204.4.5=20=E2=86=92=204.4?= =?UTF-8?q?.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/audio/pulseeffects/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/pulseeffects/default.nix b/pkgs/applications/audio/pulseeffects/default.nix index 36215914838d..f414c64d671f 100644 --- a/pkgs/applications/audio/pulseeffects/default.nix +++ b/pkgs/applications/audio/pulseeffects/default.nix @@ -45,13 +45,13 @@ let ]; in stdenv.mkDerivation rec { pname = "pulseeffects"; - version = "4.4.5"; + version = "4.4.6"; src = fetchFromGitHub { owner = "wwmm"; repo = "pulseeffects"; rev = "v${version}"; - sha256 = "1dcly8rzbfnfqrl7biicbixdqgqazrwa4x8l3m3r8f4bf3sqpmhd"; + sha256 = "0zvcj2qliz2rlcz59ag4ljrs78qb7kpyaph16qvi07ij7c5bm333"; }; nativeBuildInputs = [ From 0da3f6851988164e714e15ccf0204edc4594ade6 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Mon, 14 Jan 2019 20:28:08 +0100 Subject: [PATCH 141/167] tdesktopPackages.preview: 1.5.4 -> 1.5.7 --- .../networking/instant-messengers/telegram/tdesktop/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index 2aa090742044..1322992601aa 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -14,5 +14,7 @@ in { stable = mkTelegram stableVersion; preview = mkTelegram (stableVersion // { stable = false; + version = "1.5.7"; + sha256Hash = "0mpnz287ahzrcr50ira6h6ry5jjhp5wqi660s3kncxpq1wllj0h6"; }); } From 31ad79f43243ef7a0b058afa2fb8f0088966b05e Mon Sep 17 00:00:00 2001 From: elseym Date: Mon, 14 Jan 2019 12:47:20 +0100 Subject: [PATCH 142/167] sonarr service: add more options to module --- nixos/modules/services/misc/sonarr.nix | 60 ++++++++++++++++++++------ 1 file changed, 47 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/misc/sonarr.nix b/nixos/modules/services/misc/sonarr.nix index 97b67a0b5033..a99445a268d7 100644 --- a/nixos/modules/services/misc/sonarr.nix +++ b/nixos/modules/services/misc/sonarr.nix @@ -9,6 +9,32 @@ in options = { services.sonarr = { enable = mkEnableOption "Sonarr"; + + dataDir = mkOption { + type = types.str; + default = "/var/lib/sonarr/.config/NzbDrone"; + description = "The directory where Sonarr stores its data files."; + }; + + openFirewall = mkOption { + type = types.bool; + default = false; + description = '' + Open ports in the firewall for the Sonarr web interface + ''; + }; + + user = mkOption { + type = types.str; + default = "sonarr"; + description = "User account under which Sonaar runs."; + }; + + group = mkOption { + type = types.str; + default = "sonarr"; + description = "Group under which Sonaar runs."; + }; }; }; @@ -18,30 +44,38 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; preStart = '' - test -d /var/lib/sonarr/ || { - echo "Creating sonarr data directory in /var/lib/sonarr/" - mkdir -p /var/lib/sonarr/ + test -d ${cfg.dataDir} || { + echo "Creating sonarr data directory in ${cfg.dataDir}" + mkdir -p ${cfg.dataDir} } - chown -R sonarr:sonarr /var/lib/sonarr/ - chmod 0700 /var/lib/sonarr/ + chown -R ${cfg.user}:${cfg.group} ${cfg.dataDir} + chmod 0700 ${cfg.dataDir} ''; serviceConfig = { Type = "simple"; - User = "sonarr"; - Group = "sonarr"; + User = cfg.user; + Group = cfg.group; PermissionsStartOnly = "true"; - ExecStart = "${pkgs.sonarr}/bin/NzbDrone --no-browser"; + ExecStart = "${pkgs.sonarr}/bin/NzbDrone -nobrowser -data='${cfg.dataDir}'"; Restart = "on-failure"; }; }; - users.users.sonarr = { - uid = config.ids.uids.sonarr; - home = "/var/lib/sonarr"; - group = "sonarr"; + networking.firewall = mkIf cfg.openFirewall { + allowedTCPPorts = [ 8989 ]; }; - users.groups.sonarr.gid = config.ids.gids.sonarr; + users.users = mkIf (cfg.user == "sonarr") { + sonarr = { + group = cfg.group; + home = cfg.dataDir; + uid = config.ids.uids.sonarr; + }; + }; + + users.groups = mkIf (cfg.group == "sonarr") { + sonarr.gid = config.ids.gids.sonarr; + }; }; } From 44e1aabd02c45cf43dd22a4a977716617eb553ed Mon Sep 17 00:00:00 2001 From: elseym Date: Sun, 13 Jan 2019 13:38:20 +0100 Subject: [PATCH 143/167] nzbget service: fix preStart script and add more options to module --- nixos/modules/services/misc/nzbget.nix | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/nzbget.nix b/nixos/modules/services/misc/nzbget.nix index a472b6c7157c..e24cecf20807 100644 --- a/nixos/modules/services/misc/nzbget.nix +++ b/nixos/modules/services/misc/nzbget.nix @@ -16,6 +16,20 @@ in { description = "The NZBGet package to use"; }; + dataDir = mkOption { + type = types.str; + default = "/var/lib/nzbget"; + description = "The directory where NZBGet stores its configuration files."; + }; + + openFirewall = mkOption { + type = types.bool; + default = false; + description = '' + Open ports in the firewall for the NZBGet web interface + ''; + }; + user = mkOption { type = types.str; default = "nzbget"; @@ -40,7 +54,8 @@ in { p7zip ]; preStart = '' - datadir=/var/lib/nzbget + datadir=${cfg.dataDir} + configfile=${cfg.dataDir}/nzbget.conf cfgtemplate=${cfg.package}/share/nzbget/nzbget.conf test -d $datadir || { echo "Creating nzbget data directory in $datadir" @@ -60,7 +75,7 @@ in { ''; script = '' - configfile=/var/lib/nzbget/nzbget.conf + configfile=${cfg.dataDir}/nzbget.conf args="--daemon --configfile $configfile" # The script in preStart (above) copies nzbget's config template to datadir on first run, containing paths that point to the nzbget derivation installed at the time. # These paths break when nzbget is upgraded & the original derivation is garbage collected. If such broken paths are found in the config file, override them to point to @@ -86,6 +101,10 @@ in { }; }; + networking.firewall = mkIf cfg.openFirewall { + allowedTCPPorts = [ 8989 ]; + }; + users.users = mkIf (cfg.user == "nzbget") { nzbget = { group = cfg.group; From 0dc4a9bb5007201376548c2448ccbc04419b2563 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Mon, 14 Jan 2019 20:36:51 +0100 Subject: [PATCH 144/167] android-studio: 3.2.1.0 -> 3.3.0.20 androidStudioPackages.beta: 3.3.0.19 -> 3.3.0.20 --- pkgs/applications/editors/android-studio/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix index cab5b1f31e41..b64e07b63e4c 100644 --- a/pkgs/applications/editors/android-studio/default.nix +++ b/pkgs/applications/editors/android-studio/default.nix @@ -8,15 +8,11 @@ let inherit (gnome2) GConf gnome_vfs; }; stableVersion = { - version = "3.2.1.0"; # "Android Studio 3.2.1" - build = "181.5056338"; - sha256Hash = "117skqjax1xz9plarhdnrw2rwprjpybdc7mx7wggxapyy920vv5r"; - }; - betaVersion = { - version = "3.3.0.19"; # "Android Studio 3.3 RC 3" - build = "182.5183351"; - sha256Hash = "1rql4kxjic4qjcd8zssw2mmi55cxpzd0wp5g0kzwk5wybsfdcqhy"; + version = "3.3.0.20"; # "Android Studio 3.3" + build = "182.5199772"; + sha256Hash = "0dracganibnkyapn2pk2qqnxpwmii57371ycri4nccaci9v9pcjw"; }; + betaVersion = stableVersion; latestVersion = { # canary & dev version = "3.4.0.9"; # "Android Studio 3.4 Canary 10" build = "183.5202479"; From 7788e5d536bc40246a06449a96fcf5ae3dbe88b7 Mon Sep 17 00:00:00 2001 From: Johannes Frankenau Date: Fri, 11 Jan 2019 11:18:50 +0100 Subject: [PATCH 145/167] darktable: 2.4.4 -> 2.6.0 --- pkgs/applications/graphics/darktable/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index 51a401d4b8c8..bf5a2e2c34d1 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -3,16 +3,16 @@ , ilmbase, gtk3, intltool, lcms2, lensfun, libX11, libexif, libgphoto2, libjpeg , libpng, librsvg, libtiff, openexr, osm-gps-map, pkgconfig, sqlite, libxslt , openjpeg, lua, pugixml, colord, colord-gtk, libwebp, libsecret, gnome3 -, ocl-icd, pcre, gtk-mac-integration +, ocl-icd, pcre, gtk-mac-integration, isocodes }: stdenv.mkDerivation rec { - version = "2.4.4"; + version = "2.6.0"; name = "darktable-${version}"; src = fetchurl { url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz"; - sha256 = "0kdhmiw4wxk2w9v2hms9yk8nl4ymdshnqyj0l07nivzzr6w20hwn"; + sha256 = "0y04cx0a0rwdclmn16f5y0z2vnm7yxly291gzjgdhcn59a77sga8"; }; nativeBuildInputs = [ cmake ninja llvm pkgconfig intltool perl desktop-file-utils wrapGAppsHook ]; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { cairo curl exiv2 glib gtk3 ilmbase lcms2 lensfun libexif libgphoto2 libjpeg libpng librsvg libtiff openexr sqlite libxslt libsoup graphicsmagick json-glib openjpeg lua pugixml - libwebp libsecret gnome3.adwaita-icon-theme osm-gps-map pcre + libwebp libsecret gnome3.adwaita-icon-theme osm-gps-map pcre isocodes ] ++ stdenv.lib.optionals stdenv.isLinux [ colord colord-gtk libX11 ocl-icd ] ++ stdenv.lib.optional stdenv.isDarwin gtk-mac-integration; From c74b019ab27b922e4182cc835a970098d84fe5d6 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Mon, 14 Jan 2019 22:50:27 +0100 Subject: [PATCH 146/167] python.pkgs.cypari2: fix build (#53966) Broken by a typo in f665828fa374580f4b2fd725761d23e18f55e526 causing the sitePackages path to be wrong. --- pkgs/development/python-modules/cypari2/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cypari2/default.nix b/pkgs/development/python-modules/cypari2/default.nix index 09326ad1a0bc..c9f647d77b86 100644 --- a/pkgs/development/python-modules/cypari2/default.nix +++ b/pkgs/development/python-modules/cypari2/default.nix @@ -23,8 +23,7 @@ buildPythonPackage rec { # That is because while the default install phase succeeds to build the package, # it fails to generate the file "auto_paridecl.pxd". installPhase = '' - mkdir -p "$out/lib/${python.sitePackages}" - export PYTHONPATH="$out/lib/${python.sitePackages}:$PYTHONPATH" + export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH" # install "." instead of "*.whl" ${python.pythonForBuild.pkgs.bootstrapped-pip}/bin/pip install --no-index --prefix=$out --no-cache --build=tmpdir . From 65f08fc212eee259a95d9a3f0bb52e3b47853e7c Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Mon, 14 Jan 2019 23:03:50 +0100 Subject: [PATCH 147/167] osquery: fix build It seems as without the appropriate linker flag `-lcrypto` the `libcrypto.sh` can't be found by `ld` which broke one of the linker processes during compilation. See also https://hydra.nixos.org/build/87208819 --- pkgs/tools/system/osquery/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix index c7faf4d3889e..32c085e2ec5f 100644 --- a/pkgs/tools/system/osquery/default.nix +++ b/pkgs/tools/system/osquery/default.nix @@ -39,6 +39,10 @@ stdenv.mkDerivation rec { pkgconfig cmake pythonPackages.python pythonPackages.jinja2 doxygen fpm ]; + NIX_LDFLAGS = [ + "-lcrypto" + ]; + buildInputs = let gflags' = google-gflags.overrideAttrs (old: { cmakeFlags = stdenv.lib.filter (f: isNull (builtins.match ".*STATIC.*" f)) old.cmakeFlags; From 4dbf45bc5ea4f872413cffda9570420d35f40f8c Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Mon, 14 Jan 2019 23:01:06 +0100 Subject: [PATCH 148/167] programs/nano: Generate nanorc if `syntaxHighlight` enabled * prepend a newline to the `include` directive * generate the nanorc by default, since `cfg.syntaxHighlight` is `true` --- nixos/modules/programs/nano.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/nano.nix b/nixos/modules/programs/nano.nix index 27b6d446c75d..6a4d46338e19 100644 --- a/nixos/modules/programs/nano.nix +++ b/nixos/modules/programs/nano.nix @@ -2,6 +2,7 @@ let cfg = config.programs.nano; + LF = "\n"; in { @@ -33,9 +34,9 @@ in ###### implementation - config = lib.mkIf (cfg.nanorc != "") { + config = lib.mkIf (cfg.nanorc != "" || cfg.syntaxHighlight) { environment.etc."nanorc".text = lib.concatStrings [ cfg.nanorc - (lib.optionalString cfg.syntaxHighlight ''include "${pkgs.nano}/share/nano/*.nanorc"'') ]; + (lib.optionalString cfg.syntaxHighlight ''${LF}include "${pkgs.nano}/share/nano/*.nanorc"'') ]; }; } From 8b925a8f327ccdc8a54f31860ce398c9859a258d Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 14 Jan 2019 23:47:12 +0100 Subject: [PATCH 149/167] mbed-cli: init at 1.8.3 (#53954) --- pkgs/development/tools/mbed-cli/default.nix | 23 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/tools/mbed-cli/default.nix diff --git a/pkgs/development/tools/mbed-cli/default.nix b/pkgs/development/tools/mbed-cli/default.nix new file mode 100644 index 000000000000..62489800cbbd --- /dev/null +++ b/pkgs/development/tools/mbed-cli/default.nix @@ -0,0 +1,23 @@ +{ lib, python3Packages }: + +with python3Packages; + +buildPythonApplication rec { + pname = "mbed-cli"; + version = "1.8.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "04vn2v0d7y3vmm8cswzvn2z85balgp3095n5flvgf3r60fdlhlmp"; + }; + + doCheck = false; # no tests available in Pypi + + meta = with lib; { + homepage = https://github.com/ARMmbed/mbed-cli; + description = "Arm Mbed Command Line Interface"; + license = licenses.asl20; + maintainers = with maintainers; [ rvolosatovs ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7ba426805f6..0b0f679bceeb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8842,6 +8842,8 @@ in mage = callPackage ../development/tools/build-managers/mage { }; + mbed-cli = callPackage ../development/tools/mbed-cli { }; + minify = callPackage ../development/web/minify { }; minizinc = callPackage ../development/tools/minizinc { }; From dd6aae6209309eaa9b8174b1a5331a859db3319f Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 14 Jan 2019 16:22:44 -0600 Subject: [PATCH 150/167] aminal: 0.8.5 -> 0.8.6 https://github.com/liamg/aminal/releases/tag/v0.8.6 --- pkgs/applications/misc/aminal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/aminal/default.nix b/pkgs/applications/misc/aminal/default.nix index 49b6de4352ce..1c769e58705a 100644 --- a/pkgs/applications/misc/aminal/default.nix +++ b/pkgs/applications/misc/aminal/default.nix @@ -12,7 +12,7 @@ buildGoPackage rec { name = "aminal-${version}"; - version = "0.8.5"; + version = "0.8.6"; goPackagePath = "github.com/liamg/aminal"; @@ -36,7 +36,7 @@ buildGoPackage rec { owner = "liamg"; repo = "aminal"; rev = "v${version}"; - sha256 = "1m4wz08jz9lffzfm3ddmmqdj8nh05f2bxi4pfxy216637r9mr0lq"; + sha256 = "0qhjdckj2kr0vza6qssd9z8dfrsif1qxb1mal1d4wgdsy12lrmwl"; }; preBuild = '' From 14840a99b14fd90c3d5cf0216ee95fc8f25000fa Mon Sep 17 00:00:00 2001 From: "nagato.pain" Date: Fri, 21 Dec 2018 14:05:00 -0800 Subject: [PATCH 151/167] pythonPackages.yarg: init at 0.1.9 --- .../python-modules/yarg/default.nix | 27 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/python-modules/yarg/default.nix diff --git a/pkgs/development/python-modules/yarg/default.nix b/pkgs/development/python-modules/yarg/default.nix new file mode 100644 index 000000000000..f49ed20b2b92 --- /dev/null +++ b/pkgs/development/python-modules/yarg/default.nix @@ -0,0 +1,27 @@ +{ lib, buildPythonPackage, fetchFromGitHub, requests, nose, mock }: + +buildPythonPackage rec { + pname = "yarg"; + version = "0.1.9"; + + src = fetchFromGitHub { + owner = "kura"; + repo = pname; + rev = version; + sha256 = "1isq02s404fp9whkm8w2kvb2ik1sz0r258iby0q532zw81lga0d0"; + }; + + propagatedBuildInputs = [ requests ]; + + checkInputs = [ nose mock ]; + checkPhase = '' + nosetests + ''; + + meta = with lib; { + description = "An easy to use PyPI client"; + homepage = https://yarg.readthedocs.io; + license = licenses.mit; + maintainers = with maintainers; [ psyanticy ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 76fda7c140f5..feebec23f18e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -748,6 +748,8 @@ in { WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { }; + yarg = callPackage ../development/python-modules/yarg { }; + # packages defined here aafigure = callPackage ../development/python-modules/aafigure { }; From 709c6c46b933a5c344dd43314c0996f5172e2cdf Mon Sep 17 00:00:00 2001 From: "nagato.pain" Date: Fri, 21 Dec 2018 14:11:12 -0800 Subject: [PATCH 152/167] pipreqs: init at 0.4.9 --- pkgs/tools/misc/pipreqs/default.nix | 24 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/tools/misc/pipreqs/default.nix diff --git a/pkgs/tools/misc/pipreqs/default.nix b/pkgs/tools/misc/pipreqs/default.nix new file mode 100644 index 000000000000..15c5cbc0eb11 --- /dev/null +++ b/pkgs/tools/misc/pipreqs/default.nix @@ -0,0 +1,24 @@ +{ lib, python2Packages }: + +# Using python 2 because when packaging with python 3 pipreqs fails to parse python 2 code. +python2Packages.buildPythonApplication rec { + pname = "pipreqs"; + version = "0.4.9"; + + src = python2Packages.fetchPypi { + inherit pname version; + sha256 = "cec6eecc4685967b27eb386037565a737d036045f525b9eb314631a68d60e4bc"; + }; + + propagatedBuildInputs = with python2Packages; [ yarg docopt ]; + + # Tests requires network access. Works fine without sandboxing + doCheck = false; + + meta = with lib; { + description = "Generate requirements.txt file for any project based on imports"; + homepage = https://github.com/bndr/pipreqs; + license = licenses.asl20; + maintainers = with maintainers; [ psyanticy ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2ba9ac670cd5..965dd133e33b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4857,6 +4857,8 @@ with pkgs; pirate-get = callPackage ../tools/networking/pirate-get { }; + pipreqs = callPackage ../tools/misc/pipreqs { }; + pius = callPackage ../tools/security/pius { }; pixiewps = callPackage ../tools/networking/pixiewps {}; From be034bab3bbe6c156d765d8d86780d565d324a4c Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 14 Jan 2019 17:17:09 -0600 Subject: [PATCH 153/167] pythonPackages.pytestrunner: fix homepage (#53970) --- pkgs/development/python-modules/pytestrunner/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytestrunner/default.nix b/pkgs/development/python-modules/pytestrunner/default.nix index 4d9b9b761577..451ad789b313 100644 --- a/pkgs/development/python-modules/pytestrunner/default.nix +++ b/pkgs/development/python-modules/pytestrunner/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { meta = with stdenv.lib; { description = "Invoke py.test as distutils command with dependency resolution"; - homepage = https://bitbucket.org/pytest-dev/pytest-runner; + homepage = https://github.com/pytest-dev/pytest-runner; license = licenses.mit; }; } From be445a9074f139d63e704fa82610d25456562c3d Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 14 Jan 2019 17:24:12 -0600 Subject: [PATCH 154/167] pythonPackages.munkres: 1.0.6 -> 1.0.12 (#53971) * re-enable tests * fetch from github, no sdist on pypi --- .../python-modules/munkres/default.nix | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/munkres/default.nix b/pkgs/development/python-modules/munkres/default.nix index af69834dd6f6..a3d9e992cb30 100644 --- a/pkgs/development/python-modules/munkres/default.nix +++ b/pkgs/development/python-modules/munkres/default.nix @@ -1,19 +1,24 @@ { stdenv , buildPythonPackage -, fetchPypi +, fetchFromGitHub +, nose }: buildPythonPackage rec { pname = "munkres"; - version = "1.0.6"; + version = "1.0.12"; - src = fetchPypi { - inherit pname version; - sha256 = "c78f803b9b776bfb20a25c9c7bb44adbf0f9202c2024d51aa5969d21e560208d"; + # No sdist for 1.0.12, see https://github.com/bmc/munkres/issues/25 + src = fetchFromGitHub { + owner = "bmc"; + repo = pname; + rev = "release-${version}"; + sha256 = "0m3rkn0z3ialndxmyg26xn081znna34i5maa1i4nkhy6nf0ixdjm"; }; - # error: invalid command 'test' - doCheck = false; + checkInputs = [ nose ]; + + checkPhase = "nosetests"; meta = with stdenv.lib; { homepage = http://bmc.github.com/munkres/; From 7412dc5fae4b4cd1a4d0a2896b6155ca9bb81fdb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 13 Jan 2019 15:22:24 -0500 Subject: [PATCH 155/167] pythonPackages.black: fix build * Add aiohttp to dependencies, because `blackd` requires it. * Fix darwin build. --- pkgs/development/python-modules/black/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix index f070ab4fd7a4..6ad124e8fd4b 100644 --- a/pkgs/development/python-modules/black/default.nix +++ b/pkgs/development/python-modules/black/default.nix @@ -1,5 +1,5 @@ { stdenv, buildPythonPackage, fetchPypi, pythonOlder -, attrs, click, toml, appdirs +, attrs, click, toml, appdirs, aiohttp , glibcLocales, pytest }: buildPythonPackage rec { @@ -15,14 +15,15 @@ buildPythonPackage rec { checkInputs = [ pytest glibcLocales ]; + # Don't know why these tests fails checkPhase = '' - # no idea, why those fail. - LC_ALL="en_US.UTF-8" HOME="$NIX_BUILD_TOP" \ - pytest \ - -k "not test_cache_multiple_files and not test_failed_formatting_does_not_get_cached" + LC_ALL="en_US.UTF-8" pytest \ + --deselect tests/test_black.py::BlackTestCase::test_expression_diff \ + --deselect tests/test_black.py::BlackTestCase::test_cache_multiple_files \ + --deselect tests/test_black.py::BlackTestCase::test_failed_formatting_does_not_get_cached ''; - propagatedBuildInputs = [ attrs appdirs click toml ]; + propagatedBuildInputs = [ attrs appdirs click toml aiohttp ]; meta = with stdenv.lib; { description = "The uncompromising Python code formatter"; From ee3949d7207dabcd7ff46725ed8219a7127bbb00 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 23:46:00 -0600 Subject: [PATCH 156/167] nextpnr: use qtbase-5.11 instead of 5.12 This fixes a bizarre regression in the NextPNR GUI that causes the background of the OpenGL floorplanning window to become 'transparent' on certain platforms, greatly limiting its utility. However, QT 5.11 seems to work just fine here. Signed-off-by: Austin Seipp --- pkgs/top-level/all-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 08717d34b779..77b3bbb038f2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7412,7 +7412,11 @@ in neko = callPackage ../development/compilers/neko { }; - nextpnr = libsForQt5.callPackage ../development/compilers/nextpnr { }; + nextpnr = libsForQt5.callPackage ../development/compilers/nextpnr { + # QT 5.12 has a weird regression involving the floorplanning window having + # a 'blank' or 'transparent' background, so fall back to 5.11 for now. + qtbase = qt511.qtbase; + }; nasm = callPackage ../development/compilers/nasm { }; From 9d5a7af4e57b79b36cb3920b9ba50b3cbd27d2ea Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Mon, 14 Jan 2019 21:50:15 -0600 Subject: [PATCH 157/167] ocamlPackages.zarith: use buildOcaml instead of mkDerivation This has two main advantages: - By setting hasSharedObjects = true, buildOcaml will automatically include a setup-hook.sh that sets CAML_LD_LIBRARY_PATH in dependent expressions. This is needed to pick up dllzarith.so properly which is shipped as party of the library. - We can kill the ugly assert in the expression and instead change it to use minimumSupportedOcamlVersion. Signed-off-by: Austin Seipp --- .../ocaml-modules/zarith/default.nix | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index e5d954970589..d91f6e1c8a31 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -1,8 +1,9 @@ -{ stdenv, fetchurl, ocaml, findlib, pkgconfig, gmp, perl }: +{ stdenv, buildOcaml, fetchurl +, ocaml, findlib, pkgconfig, perl +, gmp +}: -assert stdenv.lib.versionAtLeast ocaml.version "3.12.1"; - -let param = +let source = if stdenv.lib.versionAtLeast ocaml.version "4.02" then { version = "1.7"; @@ -15,18 +16,20 @@ let param = }; in -stdenv.mkDerivation rec { - name = "zarith-${version}"; - inherit (param) version; +buildOcaml rec { + name = "zarith"; + inherit (source) version; + src = fetchurl { inherit (source) url sha256; }; - src = fetchurl { - inherit (param) url sha256; - }; + minimumSupportedOcamlVersion = "3.12.1"; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ ocaml findlib perl ]; propagatedBuildInputs = [ gmp ]; + # needed so setup-hook.sh sets CAML_LD_LIBRARY_PATH for dllzarith.so + hasSharedObjects = true; + patchPhase = "patchShebangs ./z_pp.pl"; configurePhase = '' ./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib From b44d5136e8a8d2d40727699acf38eccf8a0b15e1 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 15 Jan 2019 00:35:11 -0600 Subject: [PATCH 158/167] Revert "ocamlPackages.zarith: use buildOcaml instead of mkDerivation" This reverts commit 9d5a7af4e57b79b36cb3920b9ba50b3cbd27d2ea. --- .../ocaml-modules/zarith/default.nix | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index d91f6e1c8a31..e5d954970589 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -1,9 +1,8 @@ -{ stdenv, buildOcaml, fetchurl -, ocaml, findlib, pkgconfig, perl -, gmp -}: +{ stdenv, fetchurl, ocaml, findlib, pkgconfig, gmp, perl }: -let source = +assert stdenv.lib.versionAtLeast ocaml.version "3.12.1"; + +let param = if stdenv.lib.versionAtLeast ocaml.version "4.02" then { version = "1.7"; @@ -16,20 +15,18 @@ let source = }; in -buildOcaml rec { - name = "zarith"; - inherit (source) version; - src = fetchurl { inherit (source) url sha256; }; +stdenv.mkDerivation rec { + name = "zarith-${version}"; + inherit (param) version; - minimumSupportedOcamlVersion = "3.12.1"; + src = fetchurl { + inherit (param) url sha256; + }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ ocaml findlib perl ]; propagatedBuildInputs = [ gmp ]; - # needed so setup-hook.sh sets CAML_LD_LIBRARY_PATH for dllzarith.so - hasSharedObjects = true; - patchPhase = "patchShebangs ./z_pp.pl"; configurePhase = '' ./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib From 564653f91d7031495a0b955c744a578352f34576 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Mon, 14 Jan 2019 21:50:15 -0600 Subject: [PATCH 159/167] ocamlPackages.zarith: use buildOcaml instead of mkDerivation This has two main advantages: - By setting hasSharedObjects = true, buildOcaml will automatically include a setup-hook.sh that sets CAML_LD_LIBRARY_PATH in dependent expressions. This is needed to pick up dllzarith.so properly which is shipped as part of the library. - We can kill the ugly assert in the expression and instead change it to use minimumSupportedOcamlVersion. (Note: this was reverted in b44d5136e8a8d2d407, but the change is exactly equivalent -- I wasn't sure what impact zarith might actually have without checking OfBorg, which I wanted to do first.) Signed-off-by: Austin Seipp --- .../ocaml-modules/zarith/default.nix | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index e5d954970589..d91f6e1c8a31 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -1,8 +1,9 @@ -{ stdenv, fetchurl, ocaml, findlib, pkgconfig, gmp, perl }: +{ stdenv, buildOcaml, fetchurl +, ocaml, findlib, pkgconfig, perl +, gmp +}: -assert stdenv.lib.versionAtLeast ocaml.version "3.12.1"; - -let param = +let source = if stdenv.lib.versionAtLeast ocaml.version "4.02" then { version = "1.7"; @@ -15,18 +16,20 @@ let param = }; in -stdenv.mkDerivation rec { - name = "zarith-${version}"; - inherit (param) version; +buildOcaml rec { + name = "zarith"; + inherit (source) version; + src = fetchurl { inherit (source) url sha256; }; - src = fetchurl { - inherit (param) url sha256; - }; + minimumSupportedOcamlVersion = "3.12.1"; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ ocaml findlib perl ]; propagatedBuildInputs = [ gmp ]; + # needed so setup-hook.sh sets CAML_LD_LIBRARY_PATH for dllzarith.so + hasSharedObjects = true; + patchPhase = "patchShebangs ./z_pp.pl"; configurePhase = '' ./configure -installdir $out/lib/ocaml/${ocaml.version}/site-lib From 49db581e8c420fee33c79b7ef6a9e567fe0d8790 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Tue, 15 Jan 2019 10:05:45 +0100 Subject: [PATCH 160/167] elan: 0.7.1 -> 0.7.2 --- pkgs/applications/science/logic/elan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/elan/default.nix b/pkgs/applications/science/logic/elan/default.nix index f0b912c57fc5..b5a6a5b963e5 100644 --- a/pkgs/applications/science/logic/elan/default.nix +++ b/pkgs/applications/science/logic/elan/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage rec { name = "elan-${version}"; - version = "0.7.1"; + version = "0.7.2"; cargoSha256 = "0vv7kr7rc3lvas7ngp5dp99ajjd5v8k5937ish7zqz1k4970q2f1"; @@ -10,7 +10,7 @@ rustPlatform.buildRustPackage rec { owner = "kha"; repo = "elan"; rev = "v${version}"; - sha256 = "0x5s1wm78yx5ci63wrmlkzm6k3281p33gn4dzw25k5s4vx0p9n24"; + sha256 = "0844fydfxvacyx02gwxbzpmiamsp22malyy5m4wpvrky4dkpn3qj"; }; nativeBuildInputs = [ pkgconfig ]; From 034e4a0f5666a2be6058eb7ff819b51ec5389bc3 Mon Sep 17 00:00:00 2001 From: Enno Lohmeier Date: Mon, 14 Jan 2019 13:16:24 +0100 Subject: [PATCH 161/167] fava: 1.7 -> 1.9 --- pkgs/applications/office/fava/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/office/fava/default.nix b/pkgs/applications/office/fava/default.nix index 29ea9ff2910f..6f0fcca480ae 100644 --- a/pkgs/applications/office/fava/default.nix +++ b/pkgs/applications/office/fava/default.nix @@ -5,18 +5,28 @@ let in buildPythonApplication rec { pname = "fava"; - version = "1.7"; + version = "1.9"; src = fetchPypi { inherit pname version; - sha256 = "c4eba4203bddaa7bc9d54971d2afeeebab0bc80ce89be1375a41a07c4e82b62f"; + sha256 = "115r99l6xfliafgkpcf0mndqrvijix5mflg2i56s7xwqr3ch8z9k"; }; doCheck = false; propagatedBuildInputs = with python3.pkgs; - [ flask dateutil pygments wheel markdown2 flaskbabel tornado - click beancount ]; + [ + Babel + cheroot + flaskbabel + flask + jinja2 + beancount + click + markdown2 + ply + simplejson + ]; meta = { homepage = https://beancount.github.io/fava; From 862f7627084f45d4a1b23f32c4f6e67453d1e5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 15 Jan 2019 11:14:25 +0100 Subject: [PATCH 162/167] seafile-shared: 6.2.9 -> 6.2.10 --- pkgs/misc/seafile-shared/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/seafile-shared/default.nix b/pkgs/misc/seafile-shared/default.nix index 4f47485e2ef6..cc885136ed0d 100644 --- a/pkgs/misc/seafile-shared/default.nix +++ b/pkgs/misc/seafile-shared/default.nix @@ -1,14 +1,14 @@ {stdenv, fetchFromGitHub, which, autoreconfHook, pkgconfig, curl, vala, python, intltool, fuse, ccnet}: stdenv.mkDerivation rec { - version = "6.2.9"; + version = "6.2.10"; name = "seafile-shared-${version}"; src = fetchFromGitHub { owner = "haiwen"; repo = "seafile"; rev = "v${version}"; - sha256 = "03hdpajhpmdxf1fdpvz2j82smqcmhvpvx2dxyaprqjg8j7b4qbj9"; + sha256 = "18gnri8zpgaxcfg08lwzlrkc4zmqszdjg930vy4q8ixggh6jywjf"; }; nativeBuildInputs = [ pkgconfig which autoreconfHook vala intltool ]; From d6c86cb4f010953c7d8abf901806f5b254a82244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 15 Jan 2019 11:16:05 +0100 Subject: [PATCH 163/167] seafile-client: 6.2.9 -> 6.2.10 --- pkgs/applications/networking/seafile-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix index e91568b21935..38bbcd04adc9 100644 --- a/pkgs/applications/networking/seafile-client/default.nix +++ b/pkgs/applications/networking/seafile-client/default.nix @@ -5,14 +5,14 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "6.2.9"; + version = "6.2.10"; name = "seafile-client-${version}"; src = fetchFromGitHub { owner = "haiwen"; repo = "seafile-client"; rev = "v${version}"; - sha256 = "0h235kdr86lfh1z10admgn2ghnn04w9rlrzf2yhqqilw1k1giavj"; + sha256 = "15am8wwqgwqzhw1d2p190n9yljcnb0ck90j0grb5ksqj5n5hx5bi"; }; nativeBuildInputs = [ pkgconfig cmake makeWrapper ]; From db7017362776cd04fc07ae89ec2d00f247df5ecd Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 15 Jan 2019 13:11:09 +0100 Subject: [PATCH 164/167] Revert "nixos/modules/misc/nixpkgs.nix: Use pure Nixpkgs function" As a workaround for #51025 and https://github.com/NixOS/nix/issues/1232 This reverts commit 5f894a67f565129ac683434c3040ba85c2df3750. --- nixos/modules/misc/nixpkgs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/misc/nixpkgs.nix b/nixos/modules/misc/nixpkgs.nix index 93fbf16841e5..3a717fddaba2 100644 --- a/nixos/modules/misc/nixpkgs.nix +++ b/nixos/modules/misc/nixpkgs.nix @@ -55,7 +55,7 @@ let check = builtins.isAttrs; }; - defaultPkgs = import ../../../pkgs/top-level/default.nix { + defaultPkgs = import ../../.. { inherit (cfg) config overlays localSystem crossSystem; }; @@ -68,7 +68,7 @@ in pkgs = mkOption { defaultText = literalExample - ''import "''${nixos}/../pkgs/top-level" { + ''import "''${nixos}/.." { inherit (cfg) config overlays localSystem crossSystem; } ''; From 813164e0cddf9d243e76c25775902273bf6d3b51 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 15 Jan 2019 13:09:52 +0100 Subject: [PATCH 165/167] swayidle: init at 1.1 --- .../window-managers/sway/idle.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 32 insertions(+) create mode 100644 pkgs/applications/window-managers/sway/idle.nix diff --git a/pkgs/applications/window-managers/sway/idle.nix b/pkgs/applications/window-managers/sway/idle.nix new file mode 100644 index 000000000000..8227f4a8fa7e --- /dev/null +++ b/pkgs/applications/window-managers/sway/idle.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub +, meson, ninja, pkgconfig, scdoc +, wayland, wayland-protocols, systemd +}: + +stdenv.mkDerivation rec { + name = "swayidle-${version}"; + version = "1.1"; + + src = fetchFromGitHub { + owner = "swaywm"; + repo = "swayidle"; + rev = version; + sha256 = "1xmcd5wajyrxc8171pl7vhxqg4da482k5n1h0x1j9n07wz50wjqm"; + }; + + nativeBuildInputs = [ meson ninja pkgconfig scdoc ]; + buildInputs = [ wayland wayland-protocols systemd ]; + + meta = with stdenv.lib; { + description = "Idle management daemon for Wayland"; + longDescription = '' + Sway's idle management daemon. It is compatible with any Wayland + compositor which implements the KDE idle protocol. + ''; + inherit (src.meta) homepage; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ primeos ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 77b3bbb038f2..f98b0d86208f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17607,6 +17607,7 @@ in sway = callPackage ../applications/window-managers/sway { }; sway-beta = callPackage ../applications/window-managers/sway/beta.nix { }; + swayidle = callPackage ../applications/window-managers/sway/idle.nix { }; velox = callPackage ../applications/window-managers/velox { stConf = config.st.conf or null; From 8d8ed937257be1d353cc1123ab77a3de7220674e Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 15 Jan 2019 13:28:44 +0100 Subject: [PATCH 166/167] swaylock: init at 1.2 --- .../window-managers/sway/lock.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 35 insertions(+) create mode 100644 pkgs/applications/window-managers/sway/lock.nix diff --git a/pkgs/applications/window-managers/sway/lock.nix b/pkgs/applications/window-managers/sway/lock.nix new file mode 100644 index 000000000000..b99721ba19e3 --- /dev/null +++ b/pkgs/applications/window-managers/sway/lock.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub +, meson, ninja, pkgconfig, scdoc +, wayland, wayland-protocols, wlroots, libxkbcommon, cairo, pango, gdk_pixbuf, pam +}: + +stdenv.mkDerivation rec { + name = "swaylock-${version}"; + version = "1.2"; + + src = fetchFromGitHub { + owner = "swaywm"; + repo = "swaylock"; + rev = version; + sha256 = "1nqirrkkdhb6b2hc78ghi2yzblcx9jcgc9qwm1jvnk2iqwqbzclg"; + }; + + nativeBuildInputs = [ meson ninja pkgconfig scdoc ]; + buildInputs = [ wayland wayland-protocols wlroots libxkbcommon cairo pango + gdk_pixbuf pam + ]; + + mesonFlags = "-Dsway-version=${version}"; # TODO: Should probably be swaylock-version + + meta = with stdenv.lib; { + description = "Screen locker for Wayland"; + longDescription = '' + swaylock is a screen locking utility for Wayland compositors. + ''; + inherit (src.meta) homepage; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ primeos ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f98b0d86208f..9f5c172cdb73 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17608,6 +17608,7 @@ in sway = callPackage ../applications/window-managers/sway { }; sway-beta = callPackage ../applications/window-managers/sway/beta.nix { }; swayidle = callPackage ../applications/window-managers/sway/idle.nix { }; + swaylock = callPackage ../applications/window-managers/sway/lock.nix { }; velox = callPackage ../applications/window-managers/velox { stConf = config.st.conf or null; From 36c904d6372dd55d039ff5f52d0f9058d3ac5556 Mon Sep 17 00:00:00 2001 From: Vladyslav Mykhailichenko Date: Mon, 14 Jan 2019 12:17:22 +0200 Subject: [PATCH 167/167] hexyl: 0.3.1 -> 0.4.0 --- pkgs/tools/misc/hexyl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/hexyl/default.nix b/pkgs/tools/misc/hexyl/default.nix index 27dfdae32812..a672544f1300 100644 --- a/pkgs/tools/misc/hexyl/default.nix +++ b/pkgs/tools/misc/hexyl/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { name = "hexyl-${version}"; - version = "0.3.1"; + version = "0.4.0"; src = fetchFromGitHub { owner = "sharkdp"; repo = "hexyl"; rev = "v${version}"; - sha256 = "1q4klph45a7zjzwajrccb51yc3k1p16mjlnqislpm43h653f728q"; + sha256 = "09h01y0r7km0vgljgc8bgiswbrq47id408vpya2da4mijbg4h82r"; }; - cargoSha256 = "17mp6amib58akh175qprqsz3qkffgdacfm3dhkbysiqmw5m2p2p7"; + cargoSha256 = "1zy2jvzx62yjaiq25560krz1648vqwfr5kjbq3wz7nlmf1cs7s2c"; meta = with stdenv.lib; { description = "A command-line hex viewer";